From 1c2accfc9da0da74a8176823a6ca789f17477476 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 26 Apr 2004 22:22:09 +0000 Subject: [PATCH] make it easier to do a gtk2 build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/b | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/wxPython/b b/wxPython/b index a7cd219611..5c97518e56 100755 --- a/wxPython/b +++ b/wxPython/b @@ -24,8 +24,22 @@ python$PYVER -c "import sys;print '\n', sys.version, '\n'" SETUP="python$PYVER -u setup.py" -FLAGS="USE_SWIG=1 SWIG=/opt/swig/bin/swig" # BUILD_GLCANVAS=0" +FLAGS="USE_SWIG=1 SWIG=/opt/swig/bin/swig" OTHERFLAGS="" +PORTFLAGS="" + + +if [ "$1" = "gtk1" ]; then + PORTFLAGS="" + shift +elif [ "$1" = "gtk2" ]; then + PORTFLAGS="WXPORT=gtk2 UNICODE=1" + shift +fi + +FLAGS="$FLAGS $PORTFLAGS" + + # "c" --> clean @@ -42,7 +56,6 @@ elif [ "$1" = "d" ]; then # "t" --> touch *.i files elif [ "$1" = "t" ]; then shift - #CMD="set CMD=touch src\*.i; touch contrib\glcanvas\*.i; touch contrib\ogl\*.i; touch contrib\stc\*.i" CMD='find . -name "*.i" | xargs touch' # "i" --> install -- 2.50.0