Note to add --disable-gui

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@67004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2011-02-23 18:43:48 +00:00
parent 6e019c14b7
commit ce66c3ea4e

View File

@@ -91,10 +91,6 @@ compiler you use.
3. Installing under Unix/BeOS 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 Please note that GNU make may be required to build wxBase, please use it if
you get any errors from the native Unix make. you get any errors from the native Unix make.
@@ -103,7 +99,7 @@ The recommended way to build wxBase is:
% cd ..../wxWidgets % cd ..../wxWidgets
% mkdir base-release # or any other directory of your liking % mkdir base-release # or any other directory of your liking
% cd base-release % cd base-release
% ../configure % ../configure --disable-gui
# ignore the error messages about missing samples # ignore the error messages about missing samples
% make % make
% make install % make install
@@ -112,7 +108,7 @@ You can also do:
% mkdir base-debug % mkdir base-debug
% cd base-debug % cd base-debug
% ../configure --enable-debug % ../configure --disable-gui --enable-debug
% make % make
To build the sample then cd to samples/console and make there. To build the sample then cd to samples/console and make there.