From: Robin Dunn Date: Thu, 13 Nov 2008 17:19:58 +0000 (+0000) Subject: Set TOOLKIT_LOWERCASE correctly for the various flavors of wxOSX X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a70ab3b804b6c363f8bcbed0b4fce94b7fb03612 Set TOOLKIT_LOWERCASE correctly for the various flavors of wxOSX git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56755 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/configure b/configure index 34b371ea14..ad112d7880 100755 --- a/configure +++ b/configure @@ -47001,13 +47001,13 @@ fi TOOLKIT_LOWERCASE=xxx if test "$TOOLKIT" = "MAC"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_carbon fi if test "$TOOLKIT" = "OSX_CARBON"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_carbon fi if test "$TOOLKIT" = "OSX_COCOA"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_cocoa fi if test "$TOOLKIT_LOWERCASE" = "xxx"; then TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[A-Z]' '[a-z]'` diff --git a/configure.in b/configure.in index fc1357f7ac..764a9eacfb 100644 --- a/configure.in +++ b/configure.in @@ -7601,13 +7601,13 @@ AC_SUBST(DEBUG_INFO) AC_SUBST(DEBUG_FLAG) TOOLKIT_LOWERCASE=xxx if test "$TOOLKIT" = "MAC"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_carbon fi if test "$TOOLKIT" = "OSX_CARBON"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_carbon fi if test "$TOOLKIT" = "OSX_COCOA"; then - TOOLKIT_LOWERCASE=osx + TOOLKIT_LOWERCASE=osx_cocoa fi if test "$TOOLKIT_LOWERCASE" = "xxx"; then TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[[A-Z]]' '[[a-z]]'`