finished Vadim's new wxUSEs under Unix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13271 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-12-31 11:54:23 +00:00
parent c72619486d
commit 4cdb0ab00b
2 changed files with 935 additions and 650 deletions

1546
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -732,8 +732,13 @@ if test $DEBUG_CONFIGURE = 1; then
DEFAULT_wxUSE_TREELAYOUT=no
DEFAULT_wxUSE_METAFILE=no
DEFAULT_wxUSE_MIMETYPE=no
DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
DEFAULT_wxUSE_SYSTEM_OPTIONS=no
DEFAULT_wxUSE_PROTOCOL=no
DEFAULT_wxUSE_PROTOCOL_HTTP=no
DEFAULT_wxUSE_PROTOCOL_FTP=no
DEFAULT_wxUSE_PROTOCOL_FILE=no
DEFAULT_wxUSE_URL=no
DEFAULT_wxUSE_COMMONDLGS=no
DEFAULT_wxUSE_CHOICEDLG=no
DEFAULT_wxUSE_COLOURDLG=no
@@ -898,6 +903,11 @@ else
DEFAULT_wxUSE_METAFILE=yes
DEFAULT_wxUSE_MIMETYPE=yes
DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
DEFAULT_wxUSE_PROTOCOL=yes
DEFAULT_wxUSE_PROTOCOL_HTTP=yes
DEFAULT_wxUSE_PROTOCOL_FTP=yes
DEFAULT_wxUSE_PROTOCOL_FILE=yes
DEFAULT_wxUSE_URL=yes
DEFAULT_wxUSE_COMMONDLGS=yes
DEFAULT_wxUSE_CHOICEDLG=yes
@@ -1117,6 +1127,13 @@ WX_ARG_ENABLE(snglinst, [ --enable-snglinst use wxSingleInstanceChec
WX_ARG_ENABLE(mimetype, [ --enable-mimetype use wxMimeTypesManager], wxUSE_MIMETYPE)
WX_ARG_ENABLE(system_options,[ --enable-sysoptions use wxSystemOptions], wxUSE_SYSTEM_OPTIONS)
WX_ARG_ENABLE(url, [ --enable-url use wxURL class], wxUSE_URL)
WX_ARG_ENABLE(protocol, [ --enable-protocol use wxProtocol class], wxUSE_PROTOCOL)
WX_ARG_ENABLE(protocol_http, [ --enable-protocol-http HTTP support in wxProtocol], wxUSE_PROTOCOL_HTTP)
WX_ARG_ENABLE(protocol_ftp, [ --enable-protocol-ftp FTP support in wxProtocol], wxUSE_PROTOCOL_FTP)
WX_ARG_ENABLE(protocol_file, [ --enable-protocol-file FILE support in wxProtocol], wxUSE_PROTOCOL_FILE)
dnl ---------------------------------------------------------------------------
dnl "big" options (i.e. those which change a lot of things throughout the library)
dnl ---------------------------------------------------------------------------
@@ -4634,6 +4651,24 @@ if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
fi
if test "$wxUSE_URL" = "yes"; then
AC_DEFINE(wxUSE_URL)
fi
if test "$wxUSE_PROTOCOL" = "yes"; then
AC_DEFINE(wxUSE_PROTOCOL)
if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then
AC_DEFINE(wxUSE_PROTOCOL_HTTP)
fi
if test "$wxUSE_PROTOCOL_FTP" = "yes"; then
AC_DEFINE(wxUSE_PROTOCOL_FTP)
fi
if test "$wxUSE_PROTOCOL_FILE" = "yes"; then
AC_DEFINE(wxUSE_PROTOCOL_FILE)
fi
fi
if test "$wxUSE_MINIFRAME" = "yes"; then
AC_DEFINE(wxUSE_MINIFRAME)
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"