]> git.saurik.com Git - wxWidgets.git/commitdiff
Document the use of --disable-gui for building wxBase.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Feb 2010 00:03:39 +0000 (00:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Feb 2010 00:03:39 +0000 (00:03 +0000)
We don't have a special configure version for wxBase where GUI is off by
default and it doesn't seem to be worth the trouble to create one. Instead
just tell people to use --disable-gui themselves.

Closes #11733.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/base/readme.txt

index 97cb8f6a5909a9727a89f93327ab938894646673..8e39d30598009c93d98562497aefa9b60856826b 100644 (file)
@@ -91,10 +91,6 @@ compiler you use.
 3. Installing under Unix/BeOS
 -----------------------------
 
-NB: If you're building wxBase from the wxWidgets distribution and not from a
-    separate wxBase one you will need to add "--disable-gui" to configure
-    arguments below!
-
 Please note that GNU make may be required to build wxBase, please use it if
 you get any errors from the native Unix make.
 
@@ -103,7 +99,7 @@ The recommended way to build wxBase is:
         % cd ..../wxWidgets
         % mkdir base-release # or any other directory of your liking
         % cd base-release
-        % ../configure
+        % ../configure --disable-gui
         # ignore the error messages about missing samples
         % make
         % make install
@@ -112,7 +108,7 @@ You can also do:
 
         % mkdir base-debug
         % cd base-debug
-        % ../configure --enable-debug
+        % ../configure --disable-gui --enable-debug
         % make
 
 To build the sample then cd to samples/console and make there.