Removing hardcoded ansi and 2.3 support for Mac build scripts.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35636 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2005-09-21 04:43:48 +00:00
parent ae4e0c7a5c
commit fc87210f7d

View File

@@ -83,7 +83,17 @@ elif [ "$OSTYPE" = "darwin" ]; then
# re-generate SWIG files # re-generate SWIG files
./b $PY_VERSION t ./b $PY_VERSION t
sudo distrib/mac/wxPythonOSX/build 2.3 panther inplace PY_DOT_VER=2.3
if [ "$PY_VERSION" = "24" ]; then
PY_DOT_VER=2.4
fi
UNICODE_OPT=
if [ "$UNICODE" = "1" ]; then
UNICODE_OPT=unicode
fi
sudo distrib/mac/wxPythonOSX/build $PY_DOT_VER panther inplace $UNICODE_OPT
exit exit
else else
echo "OSTYPE $OSTYPE not yet supported by this build script." echo "OSTYPE $OSTYPE not yet supported by this build script."