]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/scripts/mac/mac_options.inc
compilation fix for ASCII STL build (#9661)
[wxWidgets.git] / distrib / scripts / mac / mac_options.inc
index 629f969dd92ee181ae1d8787b0debe65abe8bae7..3b4666f3676725881359bd533d464862fc399c33 100644 (file)
@@ -4,27 +4,25 @@ WXPYTHON=0
 UNICODE=0
 DEBUG=0
 CARBON=1
-COCOA=0
+PORT="mac"
 STATIC=0
 
 # Process command line options.
 for i in "$@"; do
     case "$i" in
-    unicode)       UNICODE=1 ;;
-    ansi)          UNICODE=0 ;;
-    debug)         DEBUG=1 ;;
-    wxpython)      WXPYTHON=1 ;;
+       unicode)       UNICODE=1 ;;
+       ansi)          UNICODE=0 ;;
+       debug)         DEBUG=1 ;;
+       wxpython)      WXPYTHON=1 ;;
        universal)     UNIVERSAL=1 ;;
-       carbon)        CARBON=1 ;;
-       cocoa)         COCOA=1 ;;
+       carbon)        PORT="mac" ;;
+       cocoa)         PORT="cocoa" ;;
        static)        STATIC=1 ;;
-       *)
+       *)             
            usage
            exit
            ;;
     esac
 done
 
-if [ "$COCOA" = "1" ]; then
-  OTHER_OPTS="--with-cocoa "
-fi
\ No newline at end of file
+OTHER_OPTS="--with-$PORT "
\ No newline at end of file