Remove unnecessary Mac-specific TOOLKIT_LOWERCASE setting.
TOOLKIT is never set to "MAC" at all (it is one of OSX_{CARBON,COCOA,IPHONE}) so it is not necessary to test for it. And for the other cases the special logic for OS X ports was the same as the general case so it seems to be unnecessary as well. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
14
configure
vendored
14
configure
vendored
@@ -48024,19 +48024,7 @@ fi
|
||||
|
||||
|
||||
|
||||
TOOLKIT_LOWERCASE=xxx
|
||||
if test "$TOOLKIT" = "MAC"; then
|
||||
TOOLKIT_LOWERCASE=osx_carbon
|
||||
fi
|
||||
if test "$TOOLKIT" = "OSX_CARBON"; then
|
||||
TOOLKIT_LOWERCASE=osx_carbon
|
||||
fi
|
||||
if test "$TOOLKIT" = "OSX_COCOA"; then
|
||||
TOOLKIT_LOWERCASE=osx_cocoa
|
||||
fi
|
||||
if test "$TOOLKIT_LOWERCASE" = "xxx"; then
|
||||
TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[A-Z]' '[a-z]'`
|
||||
fi
|
||||
TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[A-Z]' '[a-z]'`
|
||||
|
||||
|
||||
|
||||
|
14
configure.in
14
configure.in
@@ -7819,19 +7819,7 @@ AC_SUBST(EXTRALIBS_HILDON)
|
||||
AC_SUBST(UNICODE)
|
||||
AC_SUBST(DEBUG_INFO)
|
||||
AC_SUBST(DEBUG_FLAG)
|
||||
TOOLKIT_LOWERCASE=xxx
|
||||
if test "$TOOLKIT" = "MAC"; then
|
||||
TOOLKIT_LOWERCASE=osx_carbon
|
||||
fi
|
||||
if test "$TOOLKIT" = "OSX_CARBON"; then
|
||||
TOOLKIT_LOWERCASE=osx_carbon
|
||||
fi
|
||||
if test "$TOOLKIT" = "OSX_COCOA"; then
|
||||
TOOLKIT_LOWERCASE=osx_cocoa
|
||||
fi
|
||||
if test "$TOOLKIT_LOWERCASE" = "xxx"; then
|
||||
TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[[A-Z]]' '[[a-z]]'`
|
||||
fi
|
||||
TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[[A-Z]]' '[[a-z]]'`
|
||||
AC_SUBST(TOOLKIT_LOWERCASE)
|
||||
AC_SUBST(TOOLKIT_VERSION)
|
||||
AC_SUBST(DYLIB_RPATH_INSTALL)
|
||||
|
Reference in New Issue
Block a user