[Lunar-commits] r19561 - in moonbase/trunk/libs: wxGTK wxPython

Moritz Heiber moe at lunar-linux.org
Mon Apr 3 19:24:36 UTC 2006


Author: moe
Date: 2006-04-03 19:24:35 +0000 (Mon, 03 Apr 2006)
New Revision: 19561

Modified:
   moonbase/trunk/libs/wxGTK/BUILD
   moonbase/trunk/libs/wxPython/BUILD
Log:
Make use of some of the goofies wxWidgets ships with
these days.



Modified: moonbase/trunk/libs/wxGTK/BUILD
===================================================================
--- moonbase/trunk/libs/wxGTK/BUILD	2006-04-03 19:09:35 UTC (rev 19560)
+++ moonbase/trunk/libs/wxGTK/BUILD	2006-04-03 19:24:35 UTC (rev 19561)
@@ -6,16 +6,21 @@
   ./configure   --build=$BUILD	   \
                 --prefix=/usr      \
 		--with-gtk         \
+		--enable-shared	   \
 		--enable-optimise  \
 		$OPTS             &&
   default_make                    &&
 
-  cd contrib/src/stc  &&
-  make                &&
-  make install        &&
-  
-  cd ../ogl  &&
-  make all   &&
-  make install
+  for DIR in contrib/src/stc \
+	     contrib/src/gizmos \
+	     contrib/src/ogl;
+  do
 
+  cd $DIR;
+  make;
+  make install;
+  cd $SOURCE_DIRECTORY;
+
+  done
+
 ) > $C_FIFO 2>&1

Modified: moonbase/trunk/libs/wxPython/BUILD
===================================================================
--- moonbase/trunk/libs/wxPython/BUILD	2006-04-03 19:09:35 UTC (rev 19560)
+++ moonbase/trunk/libs/wxPython/BUILD	2006-04-03 19:24:35 UTC (rev 19561)
@@ -3,9 +3,8 @@
   cd $SOURCE_DIRECTORY/wxPython  &&
   prepare_install  &&
   python setup.py install WXPORT=gtk2 UNICODE=1 \
-        BUILD_OGL=0 BUILD_GLCANVAS=0 \
-        BUILD_STC=0 BUILD_GIZMOS=0 \
-        BUILD_ANIMATE=0 \
-        WX_CONFIG=/usr/bin/wx-config
+	 BUILD_GLCANVAS=0 \
+	 BUILD_ANIMATE=0  \
+         WX_CONFIG=/usr/bin/wx-config
 
 ) > $C_FIFO 2>&1



More information about the Lunar-commits mailing list