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:
16
configure
vendored
16
configure
vendored
@@ -28514,7 +28514,7 @@ fi
|
||||
|
||||
|
||||
case "${host}" in
|
||||
x86_64-*-mingw32* )
|
||||
x86_64-*-mingw32* )
|
||||
LIBS="$LIBS -lwinspool -lwinmm -lshell32 -lcomctl32 -lcomdlg32 -lwctl3d32 -ladvapi32 -lwsock32 -lgdi32"
|
||||
|
||||
WINDRES_CPU_DEFINE="--define WX_CPU_AMD64"
|
||||
@@ -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]'`
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user