new configure flags

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33645 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-04-16 06:29:37 +00:00
parent ba74db02e8
commit ff006095c2

View File

@@ -181,7 +181,12 @@ WXDIR=`pwd`
# Configure and build wxWidgets # Configure and build wxWidgets
mkdir bld mkdir bld
cd bld cd bld
../configure --with-gtk \ ../configure \
%if %{using_gtk1}
--with-gtk=1 \
%else
--with-gtk=2 \
%endif
--prefix=%{wxpref} \ --prefix=%{wxpref} \
--enable-monolithic \ --enable-monolithic \
--disable-rpath \ --disable-rpath \
@@ -190,13 +195,10 @@ cd bld
--enable-optimise \ --enable-optimise \
--enable-sound --with-sdl \ --enable-sound --with-sdl \
--enable-display \ --enable-display \
%if %{using_gtk1}
--disable-gtk2 \
%else
--enable-gtk2 \
%endif
%if %{unicode} %if %{unicode}
--enable-unicode \ --enable-unicode \
%else
--disable-unicode \
%endif %endif
%if %{debug_flag} %if %{debug_flag}
--enable-debug_flag \ --enable-debug_flag \