+test "$host_alias" != "$target_alias" &&
+ test "$program_prefix$program_suffix$program_transform_name" = \
+ NONENONEs,x,x, &&
+ program_prefix=${target_alias}-
+
+
+
+WX_MAJOR_VERSION_NUMBER=2
+WX_MINOR_VERSION_NUMBER=1
+WX_RELEASE_NUMBER=12
+
+WX_INTERFACE_AGE=0
+WX_BINARY_AGE=0
+
+WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER
+
+WX_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER
+WX_CURRENT=`expr $WX_RELEASE_NUMBER - $WX_INTERFACE_AGE`
+WX_REVISION=$WX_INTERFACE_AGE
+WX_AGE=`expr $WX_BINARY_AGE - $WX_INTERFACE_AGE`
+
+
+USE_UNIX=1
+USE_WIN32=0
+USE_BEOS=0
+
+USE_LINUX=
+USE_SGI=
+USE_HPUX=
+USE_SYSV=
+USE_SVR4=
+USE_AIX=
+USE_SUN=
+USE_SOLARIS=
+USE_SUNOS=
+USE_ALPHA=
+USE_OSF=
+USE_BSD=
+USE_FREEBSD=
+USE_VMS=
+USE_ULTRIX=
+USE_CYGWIN=
+USE_MINGW=
+USE_DATA_GENERAL=
+
+NEEDS_D_REENTRANT_FOR_R_FUNCS=0
+
+ALL_TOOLKITS="CYGWIN GTK MINGW MOTIF WINE PM"
+
+DEFAULT_wxUSE_GTK=0
+DEFAULT_wxUSE_MOTIF=0
+DEFAULT_wxUSE_MSW=0
+DEFAULT_wxUSE_WINE=0
+DEFAULT_wxUSE_PM=0
+
+DEFAULT_DEFAULT_wxUSE_GTK=0
+DEFAULT_DEFAULT_wxUSE_MOTIF=0
+DEFAULT_DEFAULT_wxUSE_MSW=0
+DEFAULT_DEFAULT_wxUSE_WINE=0
+DEFAULT_DEFAULT_wxUSE_PM=0
+
+case "${host}" in
+ *-hp-hpux* )
+ USE_HPUX=1
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ NEEDS_D_REENTRANT_FOR_R_FUNCS=1
+ cat >> confdefs.h <<\EOF
+#define __HPUX__ 1
+EOF
+
+ ;;
+ *-*-linux* )
+ USE_LINUX=1
+ cat >> confdefs.h <<\EOF
+#define __LINUX__ 1
+EOF
+
+ TMP=`uname -m`
+ if test "x$TMP" = "xalpha"; then
+ USE_ALPHA=1
+ cat >> confdefs.h <<\EOF
+#define __ALPHA__ 1
+EOF
+
+ fi
+ DEFAULT_DEFAULT_wxUSE_GTK=1
+ ;;
+ *-*-irix5* | *-*-irix6* )
+ USE_SGI=1
+ USE_SVR4=1
+ cat >> confdefs.h <<\EOF
+#define __SGI__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SVR4__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+ *-*-solaris2* )
+ USE_SUN=1
+ USE_SOLARIS=1
+ USE_SVR4=1
+ cat >> confdefs.h <<\EOF
+#define __SUN__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SOLARIS__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SVR4__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ NEEDS_D_REENTRANT_FOR_R_FUNCS=1
+ ;;
+ *-*-sunos4* )
+ USE_SUN=1
+ USE_SUNOS=1
+ USE_BSD=1
+ cat >> confdefs.h <<\EOF
+#define __SUN__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SUNOS__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __BSD__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+ *-*-freebsd* | *-*-netbsd*)
+ USE_BSD=1
+ USE_FREEBSD=1
+ cat >> confdefs.h <<\EOF
+#define __FREEBSD__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __BSD__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_GTK=1
+ ;;
+ *-*-osf* )
+ USE_ALPHA=1
+ USE_OSF=1
+ cat >> confdefs.h <<\EOF
+#define __ALPHA__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __OSF__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+ *-*-dgux5* )
+ USE_ALPHA=1
+ USE_SVR4=1
+ cat >> confdefs.h <<\EOF
+#define __ALPHA__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SVR4__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+ *-*-sysv5* )
+ USE_SYSV=1
+ USE_SVR4=1
+ cat >> confdefs.h <<\EOF
+#define __SYSV__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SVR4__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+ *-*-aix* )
+ USE_AIX=1
+ USE_SYSV=1
+ USE_SVR4=1
+ cat >> confdefs.h <<\EOF
+#define __AIX__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SYSV__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __SVR4__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MOTIF=1
+ ;;
+
+ *-*-cygwin32* | *-*-mingw32* )
+ USE_UNIX=0
+ USE_WIN32=1
+ cat >> confdefs.h <<\EOF
+#define __WIN32__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __WIN95__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __WINDOWS__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define __GNUWIN32__ 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define STRICT 1
+EOF
+
+ cat >> confdefs.h <<\EOF
+#define WINVER 0x0400
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_MSW=1
+ ;;
+
+ *-pc-os2_emx )
+ cat >> confdefs.h <<\EOF
+#define __EMX__ 1
+EOF
+
+ DEFAULT_DEFAULT_wxUSE_PM=1
+ ;;
+
+ *-*-beos* )
+ USE_BEOS=1
+ cat >> confdefs.h <<\EOF
+#define __BEOS__ 1
+EOF
+
+ ;;
+
+ *)
+ { echo "configure: error: unknown system type ${host}." 1>&2; exit 1; }
+esac
+
+if test "$USE_UNIX" = 1 ; then
+ wxUSE_UNIX=yes
+ cat >> confdefs.h <<\EOF
+#define __UNIX__ 1
+EOF
+
+
+ SRC_SUBDIRS="$SRC_SUBDIRS unix"
+ INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS unix"
+fi
+
+if test "$USE_BEOS" = 1; then
+ SRC_SUBDIRS="$SRC_SUBDIRS be"
+ INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS be"
+fi
+
+if test "$USE_LINUX" = 1; then
+ echo $ac_n "checking for gettext in -lc""... $ac_c" 1>&6
+echo "configure:1168: checking for gettext in -lc" >&5
+ac_lib_var=`echo c'_'gettext | sed 'y%./+-%__p_%'`
+if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ ac_save_LIBS="$LIBS"
+LIBS="-lc $LIBS"
+cat > conftest.$ac_ext <<EOF
+#line 1176 "configure"
+#include "confdefs.h"
+/* Override any gcc2 internal prototype to avoid an error. */
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char gettext();
+
+int main() {
+gettext()
+; return 0; }
+EOF
+if { (eval echo configure:1187: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=no"
+fi
+rm -f conftest*
+LIBS="$ac_save_LIBS"
+
+fi
+if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
+ echo "$ac_t""yes" 1>&6
+ cat >> confdefs.h <<\EOF
+#define wxHAVE_GLIBC2 1
+EOF
+
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+fi
+
+
+
+
+ wx_arg_cache_file="configarg.cache"
+ echo "loading argument cache $wx_arg_cache_file"
+ rm -f ${wx_arg_cache_file}.tmp
+ touch ${wx_arg_cache_file}.tmp
+ touch ${wx_arg_cache_file}
+
+
+DEBUG_CONFIGURE=0
+if test $DEBUG_CONFIGURE = 1; then
+ DEFAULT_wxUSE_THREADS=yes
+
+ DEFAULT_wxUSE_SHARED=yes
+ DEFAULT_wxUSE_OPTIMISE=yes
+ DEFAULT_wxUSE_PROFILE=no
+ DEFAULT_wxUSE_NO_DEPS=no
+ DEFAULT_wxUSE_NO_RTTI=no
+ DEFAULT_wxUSE_NO_EXCEPTIONS=no
+ DEFAULT_wxUSE_PERMISSIVE=no
+ DEFAULT_wxUSE_DEBUG_FLAG=yes
+ DEFAULT_wxUSE_DEBUG_INFO=yes
+ DEFAULT_wxUSE_DEBUG_GDB=yes
+ DEFAULT_wxUSE_MEM_TRACING=no
+ DEFAULT_wxUSE_DEBUG_CONTEXT=no
+ DEFAULT_wxUSE_DMALLOC=no
+ DEFAULT_wxUSE_APPLE_IEEE=no
+
+ DEFAULT_wxUSE_LOG=yes
+
+ DEFAULT_wxUSE_GUI=yes
+
+ DEFAULT_wxUSE_ZLIB=no
+ DEFAULT_wxUSE_LIBPNG=no
+ DEFAULT_wxUSE_LIBJPEG=no
+ DEFAULT_wxUSE_LIBTIFF=no
+ DEFAULT_wxUSE_ODBC=no
+
+ DEFAULT_wxUSE_STD_IOSTREAM=no
+ DEFAULT_wxUSE_FILE=no
+ DEFAULT_wxUSE_TEXTFILE=no
+ DEFAULT_wxUSE_TIMEDATE=no
+ DEFAULT_wxUSE_WAVE=no
+ DEFAULT_wxUSE_INTL=no
+ DEFAULT_wxUSE_CONFIG=no
+ DEFAULT_wxUSE_STREAMS=no
+ DEFAULT_wxUSE_SOCKETS=no
+ DEFAULT_wxUSE_DIALUP_MANAGER=no
+ DEFAULT_wxUSE_SERIAL=no
+ DEFAULT_wxUSE_JOYSTICK=no
+ DEFAULT_wxUSE_DYNLIB_CLASS=no
+ DEFAULT_wxUSE_LONGLONG=no
+
+ DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
+ DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
+ DEFAULT_wxUSE_POSTSCRIPT=no
+
+ DEFAULT_wxUSE_X_RESOURCES=no
+ DEFAULT_wxUSE_CLIPBOARD=no
+ DEFAULT_wxUSE_TOOLTIPS=no
+ DEFAULT_wxUSE_DRAG_AND_DROP=no
+ DEFAULT_wxUSE_SPLINES=no
+
+ DEFAULT_wxUSE_MDI_ARCHITECTURE=no
+ DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
+ DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
+
+ DEFAULT_wxUSE_PROLOGIO=no
+ DEFAULT_wxUSE_RESOURCES=no
+ DEFAULT_wxUSE_CONSTRAINTS=no
+ DEFAULT_wxUSE_IPC=no
+ DEFAULT_wxUSE_HELP=no
+ DEFAULT_wxUSE_WXTREE=no
+ DEFAULT_wxUSE_METAFILE=no
+
+ DEFAULT_wxUSE_COMMONDLGS=no
+ DEFAULT_wxUSE_DIRDLG=no
+ DEFAULT_wxUSE_TEXTDLG=no
+ DEFAULT_wxUSE_STARTUP_TIPS=no
+ DEFAULT_wxUSE_PROGRESSDLG=no
+ DEFAULT_wxUSE_MINIFRAME=no
+ DEFAULT_wxUSE_HTML=no
+ DEFAULT_wxUSE_FS_INET=no
+ DEFAULT_wxUSE_FS_ZIP=no
+ DEFAULT_wxUSE_BUSYINFO=no
+ DEFAULT_wxUSE_ZIPSTREAM=no
+ DEFAULT_wxUSE_VALIDATORS=yes
+
+ DEFAULT_wxUSE_ACCEL=no
+ DEFAULT_wxUSE_CARET=no
+ DEFAULT_wxUSE_BMPBUTTON=no
+ DEFAULT_wxUSE_CHECKBOX=no
+ DEFAULT_wxUSE_CHECKLST=no
+ DEFAULT_wxUSE_CHOICE=yes
+ DEFAULT_wxUSE_COMBOBOX=no
+ DEFAULT_wxUSE_GAUGE=no
+ DEFAULT_wxUSE_GRID=no
+ DEFAULT_wxUSE_NEW_GRID=no
+ DEFAULT_wxUSE_IMAGLIST=no
+ DEFAULT_wxUSE_LISTBOX=no
+ DEFAULT_wxUSE_LISTCTRL=no
+ DEFAULT_wxUSE_NOTEBOOK=no
+ DEFAULT_wxUSE_RADIOBOX=no
+ DEFAULT_wxUSE_RADIOBTN=no
+ DEFAULT_wxUSE_SASH=no
+ DEFAULT_wxUSE_SCROLLBAR=no
+ DEFAULT_wxUSE_SLIDER=no
+ DEFAULT_wxUSE_SPINBTN=no
+ DEFAULT_wxUSE_SPINCTRL=no
+ DEFAULT_wxUSE_SPLITTER=no
+ DEFAULT_wxUSE_STATBMP=no
+ DEFAULT_wxUSE_STATBOX=no
+ DEFAULT_wxUSE_STATLINE=no
+ DEFAULT_wxUSE_STATUSBAR=yes
+ DEFAULT_wxUSE_TABDIALOG=no
+ DEFAULT_wxUSE_TOOLBAR=no
+ DEFAULT_wxUSE_TOOLBAR_NATIVE=no
+ DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
+ DEFAULT_wxUSE_TREECTRL=no
+
+ DEFAULT_wxUSE_UNICODE=no
+ DEFAULT_wxUSE_WCSRTOMBS=no
+
+ DEFAULT_wxUSE_GIF=no
+ DEFAULT_wxUSE_PCX=no
+ DEFAULT_wxUSE_PNM=no
+else
+ DEFAULT_wxUSE_THREADS=yes
+
+ DEFAULT_wxUSE_SHARED=yes
+ DEFAULT_wxUSE_OPTIMISE=yes
+ DEFAULT_wxUSE_PROFILE=no
+ DEFAULT_wxUSE_NO_DEPS=no
+ DEFAULT_wxUSE_NO_RTTI=no
+ DEFAULT_wxUSE_NO_EXCEPTIONS=no
+ DEFAULT_wxUSE_PERMISSIVE=no
+ DEFAULT_wxUSE_DEBUG_FLAG=no
+ DEFAULT_wxUSE_DEBUG_INFO=no
+ DEFAULT_wxUSE_DEBUG_GDB=no
+ DEFAULT_wxUSE_MEM_TRACING=no
+ DEFAULT_wxUSE_DEBUG_CONTEXT=no
+ DEFAULT_wxUSE_DMALLOC=no
+ DEFAULT_wxUSE_APPLE_IEEE=yes
+
+ DEFAULT_wxUSE_LOG=yes
+
+ DEFAULT_wxUSE_GUI=yes
+
+ DEFAULT_wxUSE_ZLIB=yes
+ DEFAULT_wxUSE_LIBPNG=yes
+ DEFAULT_wxUSE_LIBJPEG=yes
+ DEFAULT_wxUSE_LIBTIFF=yes
+ DEFAULT_wxUSE_ODBC=yes
+
+ DEFAULT_wxUSE_STD_IOSTREAM=no
+ DEFAULT_wxUSE_FILE=yes
+ DEFAULT_wxUSE_TEXTFILE=yes
+ DEFAULT_wxUSE_TIMEDATE=yes
+ DEFAULT_wxUSE_WAVE=no
+ DEFAULT_wxUSE_INTL=yes
+ DEFAULT_wxUSE_CONFIG=yes
+ DEFAULT_wxUSE_STREAMS=yes
+ DEFAULT_wxUSE_SOCKETS=yes
+ DEFAULT_wxUSE_DIALUP_MANAGER=yes
+ DEFAULT_wxUSE_SERIAL=yes
+ DEFAULT_wxUSE_JOYSTICK=yes
+ DEFAULT_wxUSE_DYNLIB_CLASS=yes
+ DEFAULT_wxUSE_LONGLONG=yes
+
+ DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
+ DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
+ DEFAULT_wxUSE_POSTSCRIPT=yes
+
+ DEFAULT_wxUSE_X_RESOURCES=no
+ DEFAULT_wxUSE_CLIPBOARD=yes
+ DEFAULT_wxUSE_TOOLTIPS=yes
+ DEFAULT_wxUSE_DRAG_AND_DROP=yes
+ DEFAULT_wxUSE_SPLINES=yes
+
+ DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
+ DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
+ DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
+
+ DEFAULT_wxUSE_PROLOGIO=yes
+ DEFAULT_wxUSE_RESOURCES=yes
+ DEFAULT_wxUSE_CONSTRAINTS=yes
+ DEFAULT_wxUSE_IPC=yes
+ DEFAULT_wxUSE_HELP=yes
+ DEFAULT_wxUSE_WXTREE=yes
+ DEFAULT_wxUSE_METAFILE=yes
+
+ DEFAULT_wxUSE_COMMONDLGS=yes
+ DEFAULT_wxUSE_DIRDLG=yes
+ DEFAULT_wxUSE_TEXTDLG=yes
+ DEFAULT_wxUSE_STARTUP_TIPS=yes
+ DEFAULT_wxUSE_PROGRESSDLG=yes
+ DEFAULT_wxUSE_MINIFRAME=yes
+ DEFAULT_wxUSE_HTML=yes
+ DEFAULT_wxUSE_FS_INET=yes
+ DEFAULT_wxUSE_FS_ZIP=yes
+ DEFAULT_wxUSE_BUSYINFO=yes
+ DEFAULT_wxUSE_ZIPSTREAM=yes
+ DEFAULT_wxUSE_VALIDATORS=yes
+
+ DEFAULT_wxUSE_ACCEL=yes
+ DEFAULT_wxUSE_CARET=yes
+ DEFAULT_wxUSE_BMPBUTTON=yes
+ DEFAULT_wxUSE_CHECKBOX=yes
+ DEFAULT_wxUSE_CHECKLST=yes
+ DEFAULT_wxUSE_CHOICE=yes
+ DEFAULT_wxUSE_COMBOBOX=yes
+ DEFAULT_wxUSE_GAUGE=yes
+ DEFAULT_wxUSE_GRID=yes
+ DEFAULT_wxUSE_NEW_GRID=no
+ DEFAULT_wxUSE_IMAGLIST=yes
+ DEFAULT_wxUSE_LISTBOX=yes
+ DEFAULT_wxUSE_LISTCTRL=yes
+ DEFAULT_wxUSE_NOTEBOOK=yes
+ DEFAULT_wxUSE_RADIOBOX=yes
+ DEFAULT_wxUSE_RADIOBTN=yes
+ DEFAULT_wxUSE_SASH=yes
+ DEFAULT_wxUSE_SCROLLBAR=yes
+ DEFAULT_wxUSE_SLIDER=yes
+ DEFAULT_wxUSE_SPINBTN=yes
+ DEFAULT_wxUSE_SPINCTRL=yes
+ DEFAULT_wxUSE_SPLITTER=yes
+ DEFAULT_wxUSE_STATBMP=yes
+ DEFAULT_wxUSE_STATBOX=yes
+ DEFAULT_wxUSE_STATLINE=yes
+ DEFAULT_wxUSE_STATUSBAR=yes
+ DEFAULT_wxUSE_TABDIALOG=no
+ DEFAULT_wxUSE_TOOLBAR=yes
+ DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
+ DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
+ DEFAULT_wxUSE_TREECTRL=yes
+
+ DEFAULT_wxUSE_UNICODE=no
+ DEFAULT_wxUSE_WCSRTOMBS=no
+
+ DEFAULT_wxUSE_GIF=yes
+ DEFAULT_wxUSE_PCX=yes
+ DEFAULT_wxUSE_PNM=yes
+fi
+
+
+
+for toolkit in `echo $ALL_TOOLKITS`; do
+ LINE=`grep "wxUSE_$toolkit" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ has_toolkit_in_cache=1
+ eval "DEFAULT_$LINE"
+ eval "CACHE_$toolkit=1"
+ fi
+done
+
+
+
+ echo $ac_n "checking "for --enable-gui"""... $ac_c" 1>&6
+echo "configure:1471: checking "for --enable-gui"" >&5
+ no_cache=0
+ # Check whether --enable-gui or --disable-gui was given.
+if test "${enable_gui+set}" = set; then
+ enableval="$enable_gui"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_gui='wxUSE_GUI=yes'
+ else
+ ac_cv_use_gui='wxUSE_GUI=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_GUI" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_gui='wxUSE_GUI='$DEFAULT_wxUSE_GUI
+
+fi
+
+
+ eval "$ac_cv_use_gui"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_gui >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_GUI" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+if test "$wxUSE_GUI" = "yes"; then
+
+# Check whether --with-gtk or --without-gtk was given.
+if test "${with_gtk+set}" = set; then
+ withval="$with_gtk"
+ wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1
+fi
+
+# Check whether --with-motif or --without-motif was given.
+if test "${with_motif+set}" = set; then
+ withval="$with_motif"
+ wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1
+fi
+
+# Check whether --with-wine or --without-wine was given.
+if test "${with_wine+set}" = set; then
+ withval="$with_wine"
+ wxUSE_WINE="$withval" CACHE_WINE=1 TOOLKIT_GIVEN=1
+fi
+
+# Check whether --with-cygwin or --without-cygwin was given.
+if test "${with_cygwin+set}" = set; then
+ withval="$with_cygwin"
+ wxUSE_CYGWIN="$withval" CACHE_CYGWIN=1 TOOLKIT_GIVEN=1
+fi
+
+# Check whether --with-mingw or --without-mingw was given.
+if test "${with_mingw+set}" = set; then
+ withval="$with_mingw"
+ wxUSE_MINGW="$withval" CACHE_MINGW=1 TOOLKIT_GIVEN=1
+fi
+
+# Check whether --with-pm or --without-pm was given.
+if test "${with_pm+set}" = set; then
+ withval="$with_pm"
+ wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1
+fi
+
+
+# Check whether --with-gtk-prefix or --without-gtk-prefix was given.
+if test "${with_gtk_prefix+set}" = set; then
+ withval="$with_gtk_prefix"
+ gtk_config_prefix="$withval"
+else
+ gtk_config_prefix=""
+fi
+
+# Check whether --with-gtk-exec-prefix or --without-gtk-exec-prefix was given.
+if test "${with_gtk_exec_prefix+set}" = set; then
+ withval="$with_gtk_exec_prefix"
+ gtk_config_exec_prefix="$withval"
+else
+ gtk_config_exec_prefix=""
+fi
+
+
+
+ echo $ac_n "checking "for --with-libpng"""... $ac_c" 1>&6
+echo "configure:1567: checking "for --with-libpng"" >&5
+ no_cache=0
+ # Check whether --with-libpng or --without-libpng was given.
+if test "${with_libpng+set}" = set; then
+ withval="$with_libpng"
+
+ if test "$withval" = yes; then
+ ac_cv_use_libpng='wxUSE_LIBPNG=yes'
+ else
+ ac_cv_use_libpng='wxUSE_LIBPNG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LIBPNG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_libpng='wxUSE_LIBPNG='$DEFAULT_wxUSE_LIBPNG
+
+fi
+
+
+ eval "$ac_cv_use_libpng"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_libpng >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LIBPNG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --with-libjpeg"""... $ac_c" 1>&6
+echo "configure:1606: checking "for --with-libjpeg"" >&5
+ no_cache=0
+ # Check whether --with-libjpeg or --without-libjpeg was given.
+if test "${with_libjpeg+set}" = set; then
+ withval="$with_libjpeg"
+
+ if test "$withval" = yes; then
+ ac_cv_use_libjpeg='wxUSE_LIBJPEG=yes'
+ else
+ ac_cv_use_libjpeg='wxUSE_LIBJPEG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LIBJPEG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_libjpeg='wxUSE_LIBJPEG='$DEFAULT_wxUSE_LIBJPEG
+
+fi
+
+
+ eval "$ac_cv_use_libjpeg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_libjpeg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LIBJPEG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --with-libtiff"""... $ac_c" 1>&6
+echo "configure:1645: checking "for --with-libtiff"" >&5
+ no_cache=0
+ # Check whether --with-libtiff or --without-libtiff was given.
+if test "${with_libtiff+set}" = set; then
+ withval="$with_libtiff"
+
+ if test "$withval" = yes; then
+ ac_cv_use_libtiff='wxUSE_LIBTIFF=yes'
+ else
+ ac_cv_use_libtiff='wxUSE_LIBTIFF=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LIBTIFF" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_libtiff='wxUSE_LIBTIFF='$DEFAULT_wxUSE_LIBTIFF
+
+fi
+
+
+ eval "$ac_cv_use_libtiff"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_libtiff >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LIBTIFF" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --with-opengl"""... $ac_c" 1>&6
+echo "configure:1684: checking "for --with-opengl"" >&5
+ no_cache=0
+ # Check whether --with-opengl or --without-opengl was given.
+if test "${with_opengl+set}" = set; then
+ withval="$with_opengl"
+
+ if test "$withval" = yes; then
+ ac_cv_use_opengl='wxUSE_OPENGL=yes'
+ else
+ ac_cv_use_opengl='wxUSE_OPENGL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_OPENGL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_opengl='wxUSE_OPENGL='$DEFAULT_wxUSE_OPENGL
+
+fi
+
+
+ eval "$ac_cv_use_opengl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_opengl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_OPENGL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+fi
+
+
+ echo $ac_n "checking "for --with-dmalloc"""... $ac_c" 1>&6
+echo "configure:1726: checking "for --with-dmalloc"" >&5
+ no_cache=0
+ # Check whether --with-dmalloc or --without-dmalloc was given.
+if test "${with_dmalloc+set}" = set; then
+ withval="$with_dmalloc"
+
+ if test "$withval" = yes; then
+ ac_cv_use_dmalloc='wxUSE_DMALLOC=yes'
+ else
+ ac_cv_use_dmalloc='wxUSE_DMALLOC=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DMALLOC" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_dmalloc='wxUSE_DMALLOC='$DEFAULT_wxUSE_DMALLOC
+
+fi
+
+
+ eval "$ac_cv_use_dmalloc"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_dmalloc >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DMALLOC" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --with-zlib"""... $ac_c" 1>&6
+echo "configure:1765: checking "for --with-zlib"" >&5
+ no_cache=0
+ # Check whether --with-zlib or --without-zlib was given.
+if test "${with_zlib+set}" = set; then
+ withval="$with_zlib"
+
+ if test "$withval" = yes; then
+ ac_cv_use_zlib='wxUSE_ZLIB=yes'
+ else
+ ac_cv_use_zlib='wxUSE_ZLIB=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_ZLIB" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_zlib='wxUSE_ZLIB='$DEFAULT_wxUSE_ZLIB
+
+fi
+
+
+ eval "$ac_cv_use_zlib"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_zlib >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_ZLIB" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --with-odbc"""... $ac_c" 1>&6
+echo "configure:1804: checking "for --with-odbc"" >&5
+ no_cache=0
+ # Check whether --with-odbc or --without-odbc was given.
+if test "${with_odbc+set}" = set; then
+ withval="$with_odbc"
+
+ if test "$withval" = yes; then
+ ac_cv_use_odbc='wxUSE_ODBC=yes'
+ else
+ ac_cv_use_odbc='wxUSE_ODBC=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_ODBC" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_odbc='wxUSE_ODBC='$DEFAULT_wxUSE_ODBC
+
+fi
+
+
+ eval "$ac_cv_use_odbc"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_odbc >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_ODBC" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+
+ echo $ac_n "checking "for --enable-shared"""... $ac_c" 1>&6
+echo "configure:1846: checking "for --enable-shared"" >&5
+ no_cache=0
+ # Check whether --enable-shared or --disable-shared was given.
+if test "${enable_shared+set}" = set; then
+ enableval="$enable_shared"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_shared='wxUSE_SHARED=yes'
+ else
+ ac_cv_use_shared='wxUSE_SHARED=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SHARED" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_shared='wxUSE_SHARED='$DEFAULT_wxUSE_SHARED
+
+fi
+
+
+ eval "$ac_cv_use_shared"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_shared >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SHARED" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-optimise"""... $ac_c" 1>&6
+echo "configure:1885: checking "for --enable-optimise"" >&5
+ no_cache=0
+ # Check whether --enable-optimise or --disable-optimise was given.
+if test "${enable_optimise+set}" = set; then
+ enableval="$enable_optimise"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_optimise='wxUSE_OPTIMISE=yes'
+ else
+ ac_cv_use_optimise='wxUSE_OPTIMISE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_OPTIMISE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_optimise='wxUSE_OPTIMISE='$DEFAULT_wxUSE_OPTIMISE
+
+fi
+
+
+ eval "$ac_cv_use_optimise"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_optimise >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_OPTIMISE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-debug"""... $ac_c" 1>&6
+echo "configure:1924: checking "for --enable-debug"" >&5
+ no_cache=0
+ # Check whether --enable-debug or --disable-debug was given.
+if test "${enable_debug+set}" = set; then
+ enableval="$enable_debug"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_debug='wxUSE_DEBUG=yes'
+ else
+ ac_cv_use_debug='wxUSE_DEBUG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DEBUG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_debug='wxUSE_DEBUG='$DEFAULT_wxUSE_DEBUG
+
+fi
+
+
+ eval "$ac_cv_use_debug"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_debug >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DEBUG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+if test "$wxUSE_DEBUG" = "yes"; then
+ DEFAULT_wxUSE_DEBUG_FLAG=yes
+ DEFAULT_wxUSE_DEBUG_INFO=yes
+elif test "$wxUSE_DEBUG" = "no"; then
+ DEFAULT_wxUSE_DEBUG_FLAG=no
+ DEFAULT_wxUSE_DEBUG_INFO=no
+fi
+
+
+ echo $ac_n "checking "for --enable-debug_flag"""... $ac_c" 1>&6
+echo "configure:1972: checking "for --enable-debug_flag"" >&5
+ no_cache=0
+ # Check whether --enable-debug_flag or --disable-debug_flag was given.
+if test "${enable_debug_flag+set}" = set; then
+ enableval="$enable_debug_flag"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG=yes'
+ else
+ ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DEBUG_FLAG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG='$DEFAULT_wxUSE_DEBUG_FLAG
+
+fi
+
+
+ eval "$ac_cv_use_debug_flag"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_debug_flag >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DEBUG_FLAG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-debug_info"""... $ac_c" 1>&6
+echo "configure:2011: checking "for --enable-debug_info"" >&5
+ no_cache=0
+ # Check whether --enable-debug_info or --disable-debug_info was given.
+if test "${enable_debug_info+set}" = set; then
+ enableval="$enable_debug_info"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_debug_info='wxUSE_DEBUG_INFO=yes'
+ else
+ ac_cv_use_debug_info='wxUSE_DEBUG_INFO=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DEBUG_INFO" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_debug_info='wxUSE_DEBUG_INFO='$DEFAULT_wxUSE_DEBUG_INFO
+
+fi
+
+
+ eval "$ac_cv_use_debug_info"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_debug_info >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DEBUG_INFO" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-debug_gdb"""... $ac_c" 1>&6
+echo "configure:2050: checking "for --enable-debug_gdb"" >&5
+ no_cache=0
+ # Check whether --enable-debug_gdb or --disable-debug_gdb was given.
+if test "${enable_debug_gdb+set}" = set; then
+ enableval="$enable_debug_gdb"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_debug_gdb='wxUSE_DEBUG_GDB=yes'
+ else
+ ac_cv_use_debug_gdb='wxUSE_DEBUG_GDB=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DEBUG_GDB" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_debug_gdb='wxUSE_DEBUG_GDB='$DEFAULT_wxUSE_DEBUG_GDB
+
+fi
+
+
+ eval "$ac_cv_use_debug_gdb"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_debug_gdb >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DEBUG_GDB" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-debug_cntxt"""... $ac_c" 1>&6
+echo "configure:2089: checking "for --enable-debug_cntxt"" >&5
+ no_cache=0
+ # Check whether --enable-debug_cntxt or --disable-debug_cntxt was given.
+if test "${enable_debug_cntxt+set}" = set; then
+ enableval="$enable_debug_cntxt"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT=yes'
+ else
+ ac_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DEBUG_CONTEXT" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT='$DEFAULT_wxUSE_DEBUG_CONTEXT
+
+fi
+
+
+ eval "$ac_cv_use_debug_cntxt"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_debug_cntxt >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DEBUG_CONTEXT" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-mem_tracing"""... $ac_c" 1>&6
+echo "configure:2128: checking "for --enable-mem_tracing"" >&5
+ no_cache=0
+ # Check whether --enable-mem_tracing or --disable-mem_tracing was given.
+if test "${enable_mem_tracing+set}" = set; then
+ enableval="$enable_mem_tracing"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_mem_tracing='wxUSE_MEM_TRACING=yes'
+ else
+ ac_cv_use_mem_tracing='wxUSE_MEM_TRACING=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_MEM_TRACING" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_mem_tracing='wxUSE_MEM_TRACING='$DEFAULT_wxUSE_MEM_TRACING
+
+fi
+
+
+ eval "$ac_cv_use_mem_tracing"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_mem_tracing >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_MEM_TRACING" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-profile"""... $ac_c" 1>&6
+echo "configure:2167: checking "for --enable-profile"" >&5
+ no_cache=0
+ # Check whether --enable-profile or --disable-profile was given.
+if test "${enable_profile+set}" = set; then
+ enableval="$enable_profile"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_profile='wxUSE_PROFILE=yes'
+ else
+ ac_cv_use_profile='wxUSE_PROFILE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PROFILE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_profile='wxUSE_PROFILE='$DEFAULT_wxUSE_PROFILE
+
+fi
+
+
+ eval "$ac_cv_use_profile"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_profile >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PROFILE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-no_rtti"""... $ac_c" 1>&6
+echo "configure:2206: checking "for --enable-no_rtti"" >&5
+ no_cache=0
+ # Check whether --enable-no_rtti or --disable-no_rtti was given.
+if test "${enable_no_rtti+set}" = set; then
+ enableval="$enable_no_rtti"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_no_rtti='wxUSE_NO_RTTI=yes'
+ else
+ ac_cv_use_no_rtti='wxUSE_NO_RTTI=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_NO_RTTI" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_no_rtti='wxUSE_NO_RTTI='$DEFAULT_wxUSE_NO_RTTI
+
+fi
+
+
+ eval "$ac_cv_use_no_rtti"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_no_rtti >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_NO_RTTI" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-no_exceptions"""... $ac_c" 1>&6
+echo "configure:2245: checking "for --enable-no_exceptions"" >&5
+ no_cache=0
+ # Check whether --enable-no_exceptions or --disable-no_exceptions was given.
+if test "${enable_no_exceptions+set}" = set; then
+ enableval="$enable_no_exceptions"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS=yes'
+ else
+ ac_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_NO_EXCEPTIONS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS='$DEFAULT_wxUSE_NO_EXCEPTIONS
+
+fi
+
+
+ eval "$ac_cv_use_no_exceptions"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_no_exceptions >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_NO_EXCEPTIONS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-permissive"""... $ac_c" 1>&6
+echo "configure:2284: checking "for --enable-permissive"" >&5
+ no_cache=0
+ # Check whether --enable-permissive or --disable-permissive was given.
+if test "${enable_permissive+set}" = set; then
+ enableval="$enable_permissive"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_permissive='wxUSE_PERMISSIVE=yes'
+ else
+ ac_cv_use_permissive='wxUSE_PERMISSIVE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PERMISSIVE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_permissive='wxUSE_PERMISSIVE='$DEFAULT_wxUSE_PERMISSIVE
+
+fi
+
+
+ eval "$ac_cv_use_permissive"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_permissive >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PERMISSIVE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-no_deps"""... $ac_c" 1>&6
+echo "configure:2323: checking "for --enable-no_deps"" >&5
+ no_cache=0
+ # Check whether --enable-no_deps or --disable-no_deps was given.
+if test "${enable_no_deps+set}" = set; then
+ enableval="$enable_no_deps"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_no_deps='wxUSE_NO_DEPS=yes'
+ else
+ ac_cv_use_no_deps='wxUSE_NO_DEPS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_NO_DEPS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_no_deps='wxUSE_NO_DEPS='$DEFAULT_wxUSE_NO_DEPS
+
+fi
+
+
+ eval "$ac_cv_use_no_deps"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_no_deps >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_NO_DEPS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-intl"""... $ac_c" 1>&6
+echo "configure:2364: checking "for --enable-intl"" >&5
+ no_cache=0
+ # Check whether --enable-intl or --disable-intl was given.
+if test "${enable_intl+set}" = set; then
+ enableval="$enable_intl"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_intl='wxUSE_INTL=yes'
+ else
+ ac_cv_use_intl='wxUSE_INTL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_INTL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_intl='wxUSE_INTL='$DEFAULT_wxUSE_INTL
+
+fi
+
+
+ eval "$ac_cv_use_intl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_intl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_INTL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-config"""... $ac_c" 1>&6
+echo "configure:2403: checking "for --enable-config"" >&5
+ no_cache=0
+ # Check whether --enable-config or --disable-config was given.
+if test "${enable_config+set}" = set; then
+ enableval="$enable_config"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_config='wxUSE_CONFIG=yes'
+ else
+ ac_cv_use_config='wxUSE_CONFIG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CONFIG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_config='wxUSE_CONFIG='$DEFAULT_wxUSE_CONFIG
+
+fi
+
+
+ eval "$ac_cv_use_config"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_config >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CONFIG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+if test "$wxUSE_GUI" = "yes"; then
+
+ echo $ac_n "checking "for --enable-sockets"""... $ac_c" 1>&6
+echo "configure:2444: checking "for --enable-sockets"" >&5
+ no_cache=0
+ # Check whether --enable-sockets or --disable-sockets was given.
+if test "${enable_sockets+set}" = set; then
+ enableval="$enable_sockets"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_sockets='wxUSE_SOCKETS=yes'
+ else
+ ac_cv_use_sockets='wxUSE_SOCKETS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SOCKETS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_sockets='wxUSE_SOCKETS='$DEFAULT_wxUSE_SOCKETS
+
+fi
+
+
+ eval "$ac_cv_use_sockets"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_sockets >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SOCKETS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+else
+wxUSE_SOCKETS=no
+fi
+
+
+ echo $ac_n "checking "for --enable-dialupman"""... $ac_c" 1>&6
+echo "configure:2487: checking "for --enable-dialupman"" >&5
+ no_cache=0
+ # Check whether --enable-dialupman or --disable-dialupman was given.
+if test "${enable_dialupman+set}" = set; then
+ enableval="$enable_dialupman"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER=yes'
+ else
+ ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DIALUP_MANAGER" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER='$DEFAULT_wxUSE_DIALUP_MANAGER
+
+fi
+
+
+ eval "$ac_cv_use_dialupman"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_dialupman >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DIALUP_MANAGER" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-ipc"""... $ac_c" 1>&6
+echo "configure:2526: checking "for --enable-ipc"" >&5
+ no_cache=0
+ # Check whether --enable-ipc or --disable-ipc was given.
+if test "${enable_ipc+set}" = set; then
+ enableval="$enable_ipc"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_ipc='wxUSE_IPC=yes'
+ else
+ ac_cv_use_ipc='wxUSE_IPC=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_IPC" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_ipc='wxUSE_IPC='$DEFAULT_wxUSE_IPC
+
+fi
+
+
+ eval "$ac_cv_use_ipc"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_ipc >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_IPC" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-apple_ieee"""... $ac_c" 1>&6
+echo "configure:2565: checking "for --enable-apple_ieee"" >&5
+ no_cache=0
+ # Check whether --enable-apple_ieee or --disable-apple_ieee was given.
+if test "${enable_apple_ieee+set}" = set; then
+ enableval="$enable_apple_ieee"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE=yes'
+ else
+ ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_APPLE_IEEE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE='$DEFAULT_wxUSE_APPLE_IEEE
+
+fi
+
+
+ eval "$ac_cv_use_apple_ieee"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_apple_ieee >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_APPLE_IEEE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-timedate"""... $ac_c" 1>&6
+echo "configure:2604: checking "for --enable-timedate"" >&5
+ no_cache=0
+ # Check whether --enable-timedate or --disable-timedate was given.
+if test "${enable_timedate+set}" = set; then
+ enableval="$enable_timedate"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_timedate='wxUSE_TIMEDATE=yes'
+ else
+ ac_cv_use_timedate='wxUSE_TIMEDATE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TIMEDATE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_timedate='wxUSE_TIMEDATE='$DEFAULT_wxUSE_TIMEDATE
+
+fi
+
+
+ eval "$ac_cv_use_timedate"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_timedate >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TIMEDATE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-wave"""... $ac_c" 1>&6
+echo "configure:2643: checking "for --enable-wave"" >&5
+ no_cache=0
+ # Check whether --enable-wave or --disable-wave was given.
+if test "${enable_wave+set}" = set; then
+ enableval="$enable_wave"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_wave='wxUSE_WAVE=yes'
+ else
+ ac_cv_use_wave='wxUSE_WAVE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_WAVE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_wave='wxUSE_WAVE='$DEFAULT_wxUSE_WAVE
+
+fi
+
+
+ eval "$ac_cv_use_wave"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_wave >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_WAVE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-fraction"""... $ac_c" 1>&6
+echo "configure:2682: checking "for --enable-fraction"" >&5
+ no_cache=0
+ # Check whether --enable-fraction or --disable-fraction was given.
+if test "${enable_fraction+set}" = set; then
+ enableval="$enable_fraction"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_fraction='wxUSE_FRACTION=yes'
+ else
+ ac_cv_use_fraction='wxUSE_FRACTION=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_FRACTION" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_fraction='wxUSE_FRACTION='$DEFAULT_wxUSE_FRACTION
+
+fi
+
+
+ eval "$ac_cv_use_fraction"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_fraction >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_FRACTION" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-dynlib"""... $ac_c" 1>&6
+echo "configure:2721: checking "for --enable-dynlib"" >&5
+ no_cache=0
+ # Check whether --enable-dynlib or --disable-dynlib was given.
+if test "${enable_dynlib+set}" = set; then
+ enableval="$enable_dynlib"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS=yes'
+ else
+ ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DYNLIB_CLASS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS='$DEFAULT_wxUSE_DYNLIB_CLASS
+
+fi
+
+
+ eval "$ac_cv_use_dynlib"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_dynlib >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DYNLIB_CLASS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-longlong"""... $ac_c" 1>&6
+echo "configure:2760: checking "for --enable-longlong"" >&5
+ no_cache=0
+ # Check whether --enable-longlong or --disable-longlong was given.
+if test "${enable_longlong+set}" = set; then
+ enableval="$enable_longlong"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_longlong='wxUSE_LONGLONG=yes'
+ else
+ ac_cv_use_longlong='wxUSE_LONGLONG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LONGLONG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_longlong='wxUSE_LONGLONG='$DEFAULT_wxUSE_LONGLONG
+
+fi
+
+
+ eval "$ac_cv_use_longlong"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_longlong >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LONGLONG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-log"""... $ac_c" 1>&6
+echo "configure:2799: checking "for --enable-log"" >&5
+ no_cache=0
+ # Check whether --enable-log or --disable-log was given.
+if test "${enable_log+set}" = set; then
+ enableval="$enable_log"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_log='wxUSE_LOG=yes'
+ else
+ ac_cv_use_log='wxUSE_LOG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LOG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_log='wxUSE_LOG='$DEFAULT_wxUSE_LOG
+
+fi
+
+
+ eval "$ac_cv_use_log"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_log >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LOG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-streams"""... $ac_c" 1>&6
+echo "configure:2838: checking "for --enable-streams"" >&5
+ no_cache=0
+ # Check whether --enable-streams or --disable-streams was given.
+if test "${enable_streams+set}" = set; then
+ enableval="$enable_streams"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_streams='wxUSE_STREAMS=yes'
+ else
+ ac_cv_use_streams='wxUSE_STREAMS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STREAMS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_streams='wxUSE_STREAMS='$DEFAULT_wxUSE_STREAMS
+
+fi
+
+
+ eval "$ac_cv_use_streams"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_streams >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STREAMS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-file"""... $ac_c" 1>&6
+echo "configure:2877: checking "for --enable-file"" >&5
+ no_cache=0
+ # Check whether --enable-file or --disable-file was given.
+if test "${enable_file+set}" = set; then
+ enableval="$enable_file"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_file='wxUSE_FILE=yes'
+ else
+ ac_cv_use_file='wxUSE_FILE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_FILE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_file='wxUSE_FILE='$DEFAULT_wxUSE_FILE
+
+fi
+
+
+ eval "$ac_cv_use_file"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_file >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_FILE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-textfile"""... $ac_c" 1>&6
+echo "configure:2916: checking "for --enable-textfile"" >&5
+ no_cache=0
+ # Check whether --enable-textfile or --disable-textfile was given.
+if test "${enable_textfile+set}" = set; then
+ enableval="$enable_textfile"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_textfile='wxUSE_TEXTFILE=yes'
+ else
+ ac_cv_use_textfile='wxUSE_TEXTFILE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TEXTFILE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_textfile='wxUSE_TEXTFILE='$DEFAULT_wxUSE_TEXTFILE
+
+fi
+
+
+ eval "$ac_cv_use_textfile"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_textfile >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TEXTFILE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-unicode"""... $ac_c" 1>&6
+echo "configure:2955: checking "for --enable-unicode"" >&5
+ no_cache=0
+ # Check whether --enable-unicode or --disable-unicode was given.
+if test "${enable_unicode+set}" = set; then
+ enableval="$enable_unicode"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_unicode='wxUSE_UNICODE=yes'
+ else
+ ac_cv_use_unicode='wxUSE_UNICODE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_UNICODE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_unicode='wxUSE_UNICODE='$DEFAULT_wxUSE_UNICODE
+
+fi
+
+
+ eval "$ac_cv_use_unicode"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_unicode >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_UNICODE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-wcsrtombs"""... $ac_c" 1>&6
+echo "configure:2994: checking "for --enable-wcsrtombs"" >&5
+ no_cache=0
+ # Check whether --enable-wcsrtombs or --disable-wcsrtombs was given.
+if test "${enable_wcsrtombs+set}" = set; then
+ enableval="$enable_wcsrtombs"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_wcsrtombs='wxUSE_WCSRTOMBS=yes'
+ else
+ ac_cv_use_wcsrtombs='wxUSE_WCSRTOMBS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_WCSRTOMBS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_wcsrtombs='wxUSE_WCSRTOMBS='$DEFAULT_wxUSE_WCSRTOMBS
+
+fi
+
+
+ eval "$ac_cv_use_wcsrtombs"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_wcsrtombs >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_WCSRTOMBS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-wxprintfv"""... $ac_c" 1>&6
+echo "configure:3033: checking "for --enable-wxprintfv"" >&5
+ no_cache=0
+ # Check whether --enable-wxprintfv or --disable-wxprintfv was given.
+if test "${enable_wxprintfv+set}" = set; then
+ enableval="$enable_wxprintfv"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_wxprintfv='wxUSE_EXPERIMENTAL_PRINTF=yes'
+ else
+ ac_cv_use_wxprintfv='wxUSE_EXPERIMENTAL_PRINTF=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_EXPERIMENTAL_PRINTF" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_wxprintfv='wxUSE_EXPERIMENTAL_PRINTF='$DEFAULT_wxUSE_EXPERIMENTAL_PRINTF
+
+fi
+
+
+ eval "$ac_cv_use_wxprintfv"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_wxprintfv >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_EXPERIMENTAL_PRINTF" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-joystick"""... $ac_c" 1>&6
+echo "configure:3072: checking "for --enable-joystick"" >&5
+ no_cache=0
+ # Check whether --enable-joystick or --disable-joystick was given.
+if test "${enable_joystick+set}" = set; then
+ enableval="$enable_joystick"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_joystick='wxUSE_JOYSTICK=yes'
+ else
+ ac_cv_use_joystick='wxUSE_JOYSTICK=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_JOYSTICK" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_joystick='wxUSE_JOYSTICK='$DEFAULT_wxUSE_JOYSTICK
+
+fi
+
+
+ eval "$ac_cv_use_joystick"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_joystick >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_JOYSTICK" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-std_iostreams"""... $ac_c" 1>&6
+echo "configure:3111: checking "for --enable-std_iostreams"" >&5
+ no_cache=0
+ # Check whether --enable-std_iostreams or --disable-std_iostreams was given.
+if test "${enable_std_iostreams+set}" = set; then
+ enableval="$enable_std_iostreams"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_std_iostreams='wxUSE_STD_IOSTREAM=yes'
+ else
+ ac_cv_use_std_iostreams='wxUSE_STD_IOSTREAM=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STD_IOSTREAM" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_std_iostreams='wxUSE_STD_IOSTREAM='$DEFAULT_wxUSE_STD_IOSTREAM
+
+fi
+
+
+ eval "$ac_cv_use_std_iostreams"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_std_iostreams >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STD_IOSTREAM" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-fs_inet"""... $ac_c" 1>&6
+echo "configure:3150: checking "for --enable-fs_inet"" >&5
+ no_cache=0
+ # Check whether --enable-fs_inet or --disable-fs_inet was given.
+if test "${enable_fs_inet+set}" = set; then
+ enableval="$enable_fs_inet"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_fs_inet='wxUSE_FS_INET=yes'
+ else
+ ac_cv_use_fs_inet='wxUSE_FS_INET=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_FS_INET" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_fs_inet='wxUSE_FS_INET='$DEFAULT_wxUSE_FS_INET
+
+fi
+
+
+ eval "$ac_cv_use_fs_inet"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_fs_inet >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_FS_INET" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-fs_zip"""... $ac_c" 1>&6
+echo "configure:3189: checking "for --enable-fs_zip"" >&5
+ no_cache=0
+ # Check whether --enable-fs_zip or --disable-fs_zip was given.
+if test "${enable_fs_zip+set}" = set; then
+ enableval="$enable_fs_zip"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_fs_zip='wxUSE_FS_ZIP=yes'
+ else
+ ac_cv_use_fs_zip='wxUSE_FS_ZIP=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_FS_ZIP" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_fs_zip='wxUSE_FS_ZIP='$DEFAULT_wxUSE_FS_ZIP
+
+fi
+
+
+ eval "$ac_cv_use_fs_zip"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_fs_zip >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_FS_ZIP" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-zipstream"""... $ac_c" 1>&6
+echo "configure:3228: checking "for --enable-zipstream"" >&5
+ no_cache=0
+ # Check whether --enable-zipstream or --disable-zipstream was given.
+if test "${enable_zipstream+set}" = set; then
+ enableval="$enable_zipstream"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_zipstream='wxUSE_ZIPSTREAM=yes'
+ else
+ ac_cv_use_zipstream='wxUSE_ZIPSTREAM=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_ZIPSTREAM" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_zipstream='wxUSE_ZIPSTREAM='$DEFAULT_wxUSE_ZIPSTREAM
+
+fi
+
+
+ eval "$ac_cv_use_zipstream"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_zipstream >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_ZIPSTREAM" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-threads"""... $ac_c" 1>&6
+echo "configure:3269: checking "for --enable-threads"" >&5
+ no_cache=0
+ # Check whether --enable-threads or --disable-threads was given.
+if test "${enable_threads+set}" = set; then
+ enableval="$enable_threads"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_threads='wxUSE_THREADS=yes'
+ else
+ ac_cv_use_threads='wxUSE_THREADS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_THREADS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_threads='wxUSE_THREADS='$DEFAULT_wxUSE_THREADS
+
+fi
+
+
+ eval "$ac_cv_use_threads"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_threads >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_THREADS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-serial"""... $ac_c" 1>&6
+echo "configure:3308: checking "for --enable-serial"" >&5
+ no_cache=0
+ # Check whether --enable-serial or --disable-serial was given.
+if test "${enable_serial+set}" = set; then
+ enableval="$enable_serial"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_serial='wxUSE_SERIAL=yes'
+ else
+ ac_cv_use_serial='wxUSE_SERIAL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SERIAL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_serial='wxUSE_SERIAL='$DEFAULT_wxUSE_SERIAL
+
+fi
+
+
+ eval "$ac_cv_use_serial"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_serial >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SERIAL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+if test "$wxUSE_GUI" = "yes"; then
+
+
+
+ echo $ac_n "checking "for --enable-docview"""... $ac_c" 1>&6
+echo "configure:3351: checking "for --enable-docview"" >&5
+ no_cache=0
+ # Check whether --enable-docview or --disable-docview was given.
+if test "${enable_docview+set}" = set; then
+ enableval="$enable_docview"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=yes'
+ else
+ ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DOC_VIEW_ARCHITECTURE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE='$DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE
+
+fi
+
+
+ eval "$ac_cv_use_docview"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_docview >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-help"""... $ac_c" 1>&6
+echo "configure:3390: checking "for --enable-help"" >&5
+ no_cache=0
+ # Check whether --enable-help or --disable-help was given.
+if test "${enable_help+set}" = set; then
+ enableval="$enable_help"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_help='wxUSE_HELP=yes'
+ else
+ ac_cv_use_help='wxUSE_HELP=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_HELP" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_help='wxUSE_HELP='$DEFAULT_wxUSE_HELP
+
+fi
+
+
+ eval "$ac_cv_use_help"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_help >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_HELP" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-constraints"""... $ac_c" 1>&6
+echo "configure:3429: checking "for --enable-constraints"" >&5
+ no_cache=0
+ # Check whether --enable-constraints or --disable-constraints was given.
+if test "${enable_constraints+set}" = set; then
+ enableval="$enable_constraints"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_constraints='wxUSE_CONSTRAINTS=yes'
+ else
+ ac_cv_use_constraints='wxUSE_CONSTRAINTS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CONSTRAINTS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_constraints='wxUSE_CONSTRAINTS='$DEFAULT_wxUSE_CONSTRAINTS
+
+fi
+
+
+ eval "$ac_cv_use_constraints"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_constraints >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CONSTRAINTS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-printarch"""... $ac_c" 1>&6
+echo "configure:3468: checking "for --enable-printarch"" >&5
+ no_cache=0
+ # Check whether --enable-printarch or --disable-printarch was given.
+if test "${enable_printarch+set}" = set; then
+ enableval="$enable_printarch"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=yes'
+ else
+ ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PRINTING_ARCHITECTURE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE='$DEFAULT_wxUSE_PRINTING_ARCHITECTURE
+
+fi
+
+
+ eval "$ac_cv_use_printarch"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_printarch >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PRINTING_ARCHITECTURE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-mdi"""... $ac_c" 1>&6
+echo "configure:3507: checking "for --enable-mdi"" >&5
+ no_cache=0
+ # Check whether --enable-mdi or --disable-mdi was given.
+if test "${enable_mdi+set}" = set; then
+ enableval="$enable_mdi"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE=yes'
+ else
+ ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_MDI_ARCHITECTURE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE='$DEFAULT_wxUSE_MDI_ARCHITECTURE
+
+fi
+
+
+ eval "$ac_cv_use_mdi"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_mdi >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_MDI_ARCHITECTURE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+ echo $ac_n "checking "for --enable-postscript"""... $ac_c" 1>&6
+echo "configure:3547: checking "for --enable-postscript"" >&5
+ no_cache=0
+ # Check whether --enable-postscript or --disable-postscript was given.
+if test "${enable_postscript+set}" = set; then
+ enableval="$enable_postscript"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_postscript='wxUSE_POSTSCRIPT=yes'
+ else
+ ac_cv_use_postscript='wxUSE_POSTSCRIPT=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_POSTSCRIPT" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_postscript='wxUSE_POSTSCRIPT='$DEFAULT_wxUSE_POSTSCRIPT
+
+fi
+
+
+ eval "$ac_cv_use_postscript"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_postscript >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_POSTSCRIPT" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-prologio"""... $ac_c" 1>&6
+echo "configure:3588: checking "for --enable-prologio"" >&5
+ no_cache=0
+ # Check whether --enable-prologio or --disable-prologio was given.
+if test "${enable_prologio+set}" = set; then
+ enableval="$enable_prologio"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_prologio='wxUSE_PROLOGIO=yes'
+ else
+ ac_cv_use_prologio='wxUSE_PROLOGIO=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PROLOGIO" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_prologio='wxUSE_PROLOGIO='$DEFAULT_wxUSE_PROLOGIO
+
+fi
+
+
+ eval "$ac_cv_use_prologio"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_prologio >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PROLOGIO" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-resources"""... $ac_c" 1>&6
+echo "configure:3627: checking "for --enable-resources"" >&5
+ no_cache=0
+ # Check whether --enable-resources or --disable-resources was given.
+if test "${enable_resources+set}" = set; then
+ enableval="$enable_resources"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_resources='wxUSE_RESOURCES=yes'
+ else
+ ac_cv_use_resources='wxUSE_RESOURCES=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_RESOURCES" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_resources='wxUSE_RESOURCES='$DEFAULT_wxUSE_RESOURCES
+
+fi
+
+
+ eval "$ac_cv_use_resources"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_resources >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_RESOURCES" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+ echo $ac_n "checking "for --enable-xresources"""... $ac_c" 1>&6
+echo "configure:3667: checking "for --enable-xresources"" >&5
+ no_cache=0
+ # Check whether --enable-xresources or --disable-xresources was given.
+if test "${enable_xresources+set}" = set; then
+ enableval="$enable_xresources"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_xresources='wxUSE_X_RESOURCES=yes'
+ else
+ ac_cv_use_xresources='wxUSE_X_RESOURCES=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_X_RESOURCES" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_xresources='wxUSE_X_RESOURCES='$DEFAULT_wxUSE_X_RESOURCES
+
+fi
+
+
+ eval "$ac_cv_use_xresources"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_xresources >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_X_RESOURCES" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-clipboard"""... $ac_c" 1>&6
+echo "configure:3708: checking "for --enable-clipboard"" >&5
+ no_cache=0
+ # Check whether --enable-clipboard or --disable-clipboard was given.
+if test "${enable_clipboard+set}" = set; then
+ enableval="$enable_clipboard"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_clipboard='wxUSE_CLIPBOARD=yes'
+ else
+ ac_cv_use_clipboard='wxUSE_CLIPBOARD=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CLIPBOARD" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_clipboard='wxUSE_CLIPBOARD='$DEFAULT_wxUSE_CLIPBOARD
+
+fi
+
+
+ eval "$ac_cv_use_clipboard"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_clipboard >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CLIPBOARD" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-dnd"""... $ac_c" 1>&6
+echo "configure:3747: checking "for --enable-dnd"" >&5
+ no_cache=0
+ # Check whether --enable-dnd or --disable-dnd was given.
+if test "${enable_dnd+set}" = set; then
+ enableval="$enable_dnd"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_dnd='wxUSE_DRAG_AND_DROP=yes'
+ else
+ ac_cv_use_dnd='wxUSE_DRAG_AND_DROP=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DRAG_AND_DROP" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_dnd='wxUSE_DRAG_AND_DROP='$DEFAULT_wxUSE_DRAG_AND_DROP
+
+fi
+
+
+ eval "$ac_cv_use_dnd"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_dnd >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DRAG_AND_DROP" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+ echo $ac_n "checking "for --enable-wxtree"""... $ac_c" 1>&6
+echo "configure:3787: checking "for --enable-wxtree"" >&5
+ no_cache=0
+ # Check whether --enable-wxtree or --disable-wxtree was given.
+if test "${enable_wxtree+set}" = set; then
+ enableval="$enable_wxtree"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_wxtree='wxUSE_WXTREE=yes'
+ else
+ ac_cv_use_wxtree='wxUSE_WXTREE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_WXTREE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_wxtree='wxUSE_WXTREE='$DEFAULT_wxUSE_WXTREE
+
+fi
+
+
+ eval "$ac_cv_use_wxtree"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_wxtree >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_WXTREE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-controls"""... $ac_c" 1>&6
+echo "configure:3828: checking "for --enable-controls"" >&5
+ no_cache=0
+ # Check whether --enable-controls or --disable-controls was given.
+if test "${enable_controls+set}" = set; then
+ enableval="$enable_controls"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_controls='wxUSE_CONTROLS=yes'
+ else
+ ac_cv_use_controls='wxUSE_CONTROLS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CONTROLS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_controls='wxUSE_CONTROLS='$DEFAULT_wxUSE_CONTROLS
+
+fi
+
+
+ eval "$ac_cv_use_controls"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_controls >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CONTROLS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+if test "$wxUSE_CONTROLS" = "yes"; then
+ DEFAULT_wxUSE_ACCEL=yes
+ DEFAULT_wxUSE_CARET=yes
+ DEFAULT_wxUSE_COMBOBOX=yes
+ DEFAULT_wxUSE_BMPBUTTON=yes
+ DEFAULT_wxUSE_CHECKBOX=yes
+ DEFAULT_wxUSE_CHECKLISTBOX=yes
+ DEFAULT_wxUSE_CHOICE=yes
+ DEFAULT_wxUSE_GAUGE=yes
+ DEFAULT_wxUSE_GRID=yes
+ DEFAULT_wxUSE_NEW_GRID=no
+ DEFAULT_wxUSE_IMAGLIST=yes
+ DEFAULT_wxUSE_LISTBOX=yes
+ DEFAULT_wxUSE_LISTCTRL=yes
+ DEFAULT_wxUSE_NOTEBOOK=yes
+ DEFAULT_wxUSE_RADIOBOX=yes
+ DEFAULT_wxUSE_RADIOBTN=yes
+ DEFAULT_wxUSE_SASH=yes
+ DEFAULT_wxUSE_SCROLLBAR=yes
+ DEFAULT_wxUSE_SLIDER=yes
+ DEFAULT_wxUSE_SPINBTN=yes
+ DEFAULT_wxUSE_SPINCTRL=yes
+ DEFAULT_wxUSE_SPLITTER=yes
+ DEFAULT_wxUSE_STATBMP=yes
+ DEFAULT_wxUSE_STATBOX=yes
+ DEFAULT_wxUSE_STATLINE=yes
+ DEFAULT_wxUSE_STATUSBAR=yes
+ DEFAULT_wxUSE_TAB_DIALOG=yes
+ DEFAULT_wxUSE_TOOLBAR=yes
+ DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
+ DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
+ DEFAULT_wxUSE_TOOLTIPS=yes
+ DEFAULT_wxUSE_TREECTRL=yes
+elif test "$wxUSE_CONTROLS" = "no"; then
+ DEFAULT_wxUSE_ACCEL=no
+ DEFAULT_wxUSE_CARET=no
+ DEFAULT_wxUSE_COMBOBOX=no
+ DEFAULT_wxUSE_BMPBUTTON=no
+ DEFAULT_wxUSE_CHECKBOX=no
+ DEFAULT_wxUSE_CHECKLISTBOX=no
+ DEFAULT_wxUSE_CHOICE=no
+ DEFAULT_wxUSE_GAUGE=no
+ DEFAULT_wxUSE_GRID=no
+ DEFAULT_wxUSE_NEW_GRID=no
+ DEFAULT_wxUSE_IMAGLIST=no
+ DEFAULT_wxUSE_LISTBOX=no
+ DEFAULT_wxUSE_LISTCTRL=no
+ DEFAULT_wxUSE_NOTEBOOK=no
+ DEFAULT_wxUSE_RADIOBOX=no
+ DEFAULT_wxUSE_RADIOBTN=no
+ DEFAULT_wxUSE_SASH=no
+ DEFAULT_wxUSE_SCROLLBAR=no
+ DEFAULT_wxUSE_SLIDER=no
+ DEFAULT_wxUSE_SPINBTN=no
+ DEFAULT_wxUSE_SPINCTRL=no
+ DEFAULT_wxUSE_SPLITTER=no
+ DEFAULT_wxUSE_STATBMP=no
+ DEFAULT_wxUSE_STATBOX=no
+ DEFAULT_wxUSE_STATLINE=no
+ DEFAULT_wxUSE_STATUSBAR=no
+ DEFAULT_wxUSE_TAB_DIALOG=no
+ DEFAULT_wxUSE_TOOLBAR=no
+ DEFAULT_wxUSE_TOOLBAR_NATIVE=no
+ DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
+ DEFAULT_wxUSE_TOOLTIPS=no
+ DEFAULT_wxUSE_TREECTRL=no
+fi
+
+
+ echo $ac_n "checking "for --enable-accel"""... $ac_c" 1>&6
+echo "configure:3936: checking "for --enable-accel"" >&5
+ no_cache=0
+ # Check whether --enable-accel or --disable-accel was given.
+if test "${enable_accel+set}" = set; then
+ enableval="$enable_accel"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_accel='wxUSE_ACCEL=yes'
+ else
+ ac_cv_use_accel='wxUSE_ACCEL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_ACCEL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_accel='wxUSE_ACCEL='$DEFAULT_wxUSE_ACCEL
+
+fi
+
+
+ eval "$ac_cv_use_accel"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_accel >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_ACCEL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-caret"""... $ac_c" 1>&6
+echo "configure:3975: checking "for --enable-caret"" >&5
+ no_cache=0
+ # Check whether --enable-caret or --disable-caret was given.
+if test "${enable_caret+set}" = set; then
+ enableval="$enable_caret"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_caret='wxUSE_CARET=yes'
+ else
+ ac_cv_use_caret='wxUSE_CARET=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CARET" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_caret='wxUSE_CARET='$DEFAULT_wxUSE_CARET
+
+fi
+
+
+ eval "$ac_cv_use_caret"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_caret >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CARET" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-bmpbutton"""... $ac_c" 1>&6
+echo "configure:4014: checking "for --enable-bmpbutton"" >&5
+ no_cache=0
+ # Check whether --enable-bmpbutton or --disable-bmpbutton was given.
+if test "${enable_bmpbutton+set}" = set; then
+ enableval="$enable_bmpbutton"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_bmpbutton='wxUSE_BMPBUTTON=yes'
+ else
+ ac_cv_use_bmpbutton='wxUSE_BMPBUTTON=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_BMPBUTTON" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_bmpbutton='wxUSE_BMPBUTTON='$DEFAULT_wxUSE_BMPBUTTON
+
+fi
+
+
+ eval "$ac_cv_use_bmpbutton"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_bmpbutton >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_BMPBUTTON" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-checkbox"""... $ac_c" 1>&6
+echo "configure:4053: checking "for --enable-checkbox"" >&5
+ no_cache=0
+ # Check whether --enable-checkbox or --disable-checkbox was given.
+if test "${enable_checkbox+set}" = set; then
+ enableval="$enable_checkbox"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_checkbox='wxUSE_CHECKBOX=yes'
+ else
+ ac_cv_use_checkbox='wxUSE_CHECKBOX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CHECKBOX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_checkbox='wxUSE_CHECKBOX='$DEFAULT_wxUSE_CHECKBOX
+
+fi
+
+
+ eval "$ac_cv_use_checkbox"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_checkbox >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CHECKBOX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-checklst"""... $ac_c" 1>&6
+echo "configure:4092: checking "for --enable-checklst"" >&5
+ no_cache=0
+ # Check whether --enable-checklst or --disable-checklst was given.
+if test "${enable_checklst+set}" = set; then
+ enableval="$enable_checklst"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_checklst='wxUSE_CHECKLST=yes'
+ else
+ ac_cv_use_checklst='wxUSE_CHECKLST=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CHECKLST" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_checklst='wxUSE_CHECKLST='$DEFAULT_wxUSE_CHECKLST
+
+fi
+
+
+ eval "$ac_cv_use_checklst"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_checklst >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CHECKLST" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-choice"""... $ac_c" 1>&6
+echo "configure:4131: checking "for --enable-choice"" >&5
+ no_cache=0
+ # Check whether --enable-choice or --disable-choice was given.
+if test "${enable_choice+set}" = set; then
+ enableval="$enable_choice"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_choice='wxUSE_CHOICE=yes'
+ else
+ ac_cv_use_choice='wxUSE_CHOICE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_CHOICE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_choice='wxUSE_CHOICE='$DEFAULT_wxUSE_CHOICE
+
+fi
+
+
+ eval "$ac_cv_use_choice"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_choice >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_CHOICE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-combobox"""... $ac_c" 1>&6
+echo "configure:4170: checking "for --enable-combobox"" >&5
+ no_cache=0
+ # Check whether --enable-combobox or --disable-combobox was given.
+if test "${enable_combobox+set}" = set; then
+ enableval="$enable_combobox"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_combobox='wxUSE_COMBOBOX=yes'
+ else
+ ac_cv_use_combobox='wxUSE_COMBOBOX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_COMBOBOX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_combobox='wxUSE_COMBOBOX='$DEFAULT_wxUSE_COMBOBOX
+
+fi
+
+
+ eval "$ac_cv_use_combobox"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_combobox >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_COMBOBOX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-gauge"""... $ac_c" 1>&6
+echo "configure:4209: checking "for --enable-gauge"" >&5
+ no_cache=0
+ # Check whether --enable-gauge or --disable-gauge was given.
+if test "${enable_gauge+set}" = set; then
+ enableval="$enable_gauge"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_gauge='wxUSE_GAUGE=yes'
+ else
+ ac_cv_use_gauge='wxUSE_GAUGE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_GAUGE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_gauge='wxUSE_GAUGE='$DEFAULT_wxUSE_GAUGE
+
+fi
+
+
+ eval "$ac_cv_use_gauge"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_gauge >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_GAUGE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-grid"""... $ac_c" 1>&6
+echo "configure:4248: checking "for --enable-grid"" >&5
+ no_cache=0
+ # Check whether --enable-grid or --disable-grid was given.
+if test "${enable_grid+set}" = set; then
+ enableval="$enable_grid"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_grid='wxUSE_GRID=yes'
+ else
+ ac_cv_use_grid='wxUSE_GRID=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_GRID" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_grid='wxUSE_GRID='$DEFAULT_wxUSE_GRID
+
+fi
+
+
+ eval "$ac_cv_use_grid"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_grid >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_GRID" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-newgrid"""... $ac_c" 1>&6
+echo "configure:4287: checking "for --enable-newgrid"" >&5
+ no_cache=0
+ # Check whether --enable-newgrid or --disable-newgrid was given.
+if test "${enable_newgrid+set}" = set; then
+ enableval="$enable_newgrid"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_newgrid='wxUSE_NEW_GRID=yes'
+ else
+ ac_cv_use_newgrid='wxUSE_NEW_GRID=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_NEW_GRID" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_newgrid='wxUSE_NEW_GRID='$DEFAULT_wxUSE_NEW_GRID
+
+fi
+
+
+ eval "$ac_cv_use_newgrid"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_newgrid >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_NEW_GRID" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-imaglist"""... $ac_c" 1>&6
+echo "configure:4326: checking "for --enable-imaglist"" >&5
+ no_cache=0
+ # Check whether --enable-imaglist or --disable-imaglist was given.
+if test "${enable_imaglist+set}" = set; then
+ enableval="$enable_imaglist"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_imaglist='wxUSE_IMAGLIST=yes'
+ else
+ ac_cv_use_imaglist='wxUSE_IMAGLIST=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_IMAGLIST" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_imaglist='wxUSE_IMAGLIST='$DEFAULT_wxUSE_IMAGLIST
+
+fi
+
+
+ eval "$ac_cv_use_imaglist"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_imaglist >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_IMAGLIST" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-listbox"""... $ac_c" 1>&6
+echo "configure:4365: checking "for --enable-listbox"" >&5
+ no_cache=0
+ # Check whether --enable-listbox or --disable-listbox was given.
+if test "${enable_listbox+set}" = set; then
+ enableval="$enable_listbox"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_listbox='wxUSE_LISTBOX=yes'
+ else
+ ac_cv_use_listbox='wxUSE_LISTBOX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LISTBOX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_listbox='wxUSE_LISTBOX='$DEFAULT_wxUSE_LISTBOX
+
+fi
+
+
+ eval "$ac_cv_use_listbox"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_listbox >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LISTBOX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-listctrl"""... $ac_c" 1>&6
+echo "configure:4404: checking "for --enable-listctrl"" >&5
+ no_cache=0
+ # Check whether --enable-listctrl or --disable-listctrl was given.
+if test "${enable_listctrl+set}" = set; then
+ enableval="$enable_listctrl"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_listctrl='wxUSE_LISTCTRL=yes'
+ else
+ ac_cv_use_listctrl='wxUSE_LISTCTRL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_LISTCTRL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_listctrl='wxUSE_LISTCTRL='$DEFAULT_wxUSE_LISTCTRL
+
+fi
+
+
+ eval "$ac_cv_use_listctrl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_listctrl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_LISTCTRL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-notebook"""... $ac_c" 1>&6
+echo "configure:4443: checking "for --enable-notebook"" >&5
+ no_cache=0
+ # Check whether --enable-notebook or --disable-notebook was given.
+if test "${enable_notebook+set}" = set; then
+ enableval="$enable_notebook"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_notebook='wxUSE_NOTEBOOK=yes'
+ else
+ ac_cv_use_notebook='wxUSE_NOTEBOOK=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_NOTEBOOK" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_notebook='wxUSE_NOTEBOOK='$DEFAULT_wxUSE_NOTEBOOK
+
+fi
+
+
+ eval "$ac_cv_use_notebook"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_notebook >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_NOTEBOOK" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-radiobox"""... $ac_c" 1>&6
+echo "configure:4482: checking "for --enable-radiobox"" >&5
+ no_cache=0
+ # Check whether --enable-radiobox or --disable-radiobox was given.
+if test "${enable_radiobox+set}" = set; then
+ enableval="$enable_radiobox"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_radiobox='wxUSE_RADIOBOX=yes'
+ else
+ ac_cv_use_radiobox='wxUSE_RADIOBOX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_RADIOBOX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_radiobox='wxUSE_RADIOBOX='$DEFAULT_wxUSE_RADIOBOX
+
+fi
+
+
+ eval "$ac_cv_use_radiobox"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_radiobox >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_RADIOBOX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-radiobtn"""... $ac_c" 1>&6
+echo "configure:4521: checking "for --enable-radiobtn"" >&5
+ no_cache=0
+ # Check whether --enable-radiobtn or --disable-radiobtn was given.
+if test "${enable_radiobtn+set}" = set; then
+ enableval="$enable_radiobtn"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_radiobtn='wxUSE_RADIOBTN=yes'
+ else
+ ac_cv_use_radiobtn='wxUSE_RADIOBTN=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_RADIOBTN" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_radiobtn='wxUSE_RADIOBTN='$DEFAULT_wxUSE_RADIOBTN
+
+fi
+
+
+ eval "$ac_cv_use_radiobtn"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_radiobtn >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_RADIOBTN" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-sash"""... $ac_c" 1>&6
+echo "configure:4560: checking "for --enable-sash"" >&5
+ no_cache=0
+ # Check whether --enable-sash or --disable-sash was given.
+if test "${enable_sash+set}" = set; then
+ enableval="$enable_sash"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_sash='wxUSE_SASH=yes'
+ else
+ ac_cv_use_sash='wxUSE_SASH=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SASH" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_sash='wxUSE_SASH='$DEFAULT_wxUSE_SASH
+
+fi
+
+
+ eval "$ac_cv_use_sash"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_sash >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SASH" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-scrollbar"""... $ac_c" 1>&6
+echo "configure:4599: checking "for --enable-scrollbar"" >&5
+ no_cache=0
+ # Check whether --enable-scrollbar or --disable-scrollbar was given.
+if test "${enable_scrollbar+set}" = set; then
+ enableval="$enable_scrollbar"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_scrollbar='wxUSE_SCROLLBAR=yes'
+ else
+ ac_cv_use_scrollbar='wxUSE_SCROLLBAR=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SCROLLBAR" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_scrollbar='wxUSE_SCROLLBAR='$DEFAULT_wxUSE_SCROLLBAR
+
+fi
+
+
+ eval "$ac_cv_use_scrollbar"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_scrollbar >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SCROLLBAR" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-slider"""... $ac_c" 1>&6
+echo "configure:4638: checking "for --enable-slider"" >&5
+ no_cache=0
+ # Check whether --enable-slider or --disable-slider was given.
+if test "${enable_slider+set}" = set; then
+ enableval="$enable_slider"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_slider='wxUSE_SLIDER=yes'
+ else
+ ac_cv_use_slider='wxUSE_SLIDER=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SLIDER" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_slider='wxUSE_SLIDER='$DEFAULT_wxUSE_SLIDER
+
+fi
+
+
+ eval "$ac_cv_use_slider"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_slider >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SLIDER" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-spinbtn"""... $ac_c" 1>&6
+echo "configure:4677: checking "for --enable-spinbtn"" >&5
+ no_cache=0
+ # Check whether --enable-spinbtn or --disable-spinbtn was given.
+if test "${enable_spinbtn+set}" = set; then
+ enableval="$enable_spinbtn"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_spinbtn='wxUSE_SPINBTN=yes'
+ else
+ ac_cv_use_spinbtn='wxUSE_SPINBTN=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SPINBTN" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_spinbtn='wxUSE_SPINBTN='$DEFAULT_wxUSE_SPINBTN
+
+fi
+
+
+ eval "$ac_cv_use_spinbtn"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_spinbtn >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SPINBTN" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-spinctrl"""... $ac_c" 1>&6
+echo "configure:4716: checking "for --enable-spinctrl"" >&5
+ no_cache=0
+ # Check whether --enable-spinctrl or --disable-spinctrl was given.
+if test "${enable_spinctrl+set}" = set; then
+ enableval="$enable_spinctrl"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_spinctrl='wxUSE_SPINCTRL=yes'
+ else
+ ac_cv_use_spinctrl='wxUSE_SPINCTRL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SPINCTRL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_spinctrl='wxUSE_SPINCTRL='$DEFAULT_wxUSE_SPINCTRL
+
+fi
+
+
+ eval "$ac_cv_use_spinctrl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_spinctrl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SPINCTRL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-splitter"""... $ac_c" 1>&6
+echo "configure:4755: checking "for --enable-splitter"" >&5
+ no_cache=0
+ # Check whether --enable-splitter or --disable-splitter was given.
+if test "${enable_splitter+set}" = set; then
+ enableval="$enable_splitter"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_splitter='wxUSE_SPLITTER=yes'
+ else
+ ac_cv_use_splitter='wxUSE_SPLITTER=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SPLITTER" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_splitter='wxUSE_SPLITTER='$DEFAULT_wxUSE_SPLITTER
+
+fi
+
+
+ eval "$ac_cv_use_splitter"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_splitter >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SPLITTER" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-statbmp"""... $ac_c" 1>&6
+echo "configure:4794: checking "for --enable-statbmp"" >&5
+ no_cache=0
+ # Check whether --enable-statbmp or --disable-statbmp was given.
+if test "${enable_statbmp+set}" = set; then
+ enableval="$enable_statbmp"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_statbmp='wxUSE_STATBMP=yes'
+ else
+ ac_cv_use_statbmp='wxUSE_STATBMP=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STATBMP" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_statbmp='wxUSE_STATBMP='$DEFAULT_wxUSE_STATBMP
+
+fi
+
+
+ eval "$ac_cv_use_statbmp"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_statbmp >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STATBMP" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-statbox"""... $ac_c" 1>&6
+echo "configure:4833: checking "for --enable-statbox"" >&5
+ no_cache=0
+ # Check whether --enable-statbox or --disable-statbox was given.
+if test "${enable_statbox+set}" = set; then
+ enableval="$enable_statbox"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_statbox='wxUSE_STATBOX=yes'
+ else
+ ac_cv_use_statbox='wxUSE_STATBOX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STATBOX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_statbox='wxUSE_STATBOX='$DEFAULT_wxUSE_STATBOX
+
+fi
+
+
+ eval "$ac_cv_use_statbox"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_statbox >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STATBOX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-statline"""... $ac_c" 1>&6
+echo "configure:4872: checking "for --enable-statline"" >&5
+ no_cache=0
+ # Check whether --enable-statline or --disable-statline was given.
+if test "${enable_statline+set}" = set; then
+ enableval="$enable_statline"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_statline='wxUSE_STATLINE=yes'
+ else
+ ac_cv_use_statline='wxUSE_STATLINE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STATLINE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_statline='wxUSE_STATLINE='$DEFAULT_wxUSE_STATLINE
+
+fi
+
+
+ eval "$ac_cv_use_statline"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_statline >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STATLINE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-statusbar"""... $ac_c" 1>&6
+echo "configure:4911: checking "for --enable-statusbar"" >&5
+ no_cache=0
+ # Check whether --enable-statusbar or --disable-statusbar was given.
+if test "${enable_statusbar+set}" = set; then
+ enableval="$enable_statusbar"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_statusbar='wxUSE_STATUSBAR=yes'
+ else
+ ac_cv_use_statusbar='wxUSE_STATUSBAR=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STATUSBAR" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_statusbar='wxUSE_STATUSBAR='$DEFAULT_wxUSE_STATUSBAR
+
+fi
+
+
+ eval "$ac_cv_use_statusbar"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_statusbar >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STATUSBAR" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-tabdialog"""... $ac_c" 1>&6
+echo "configure:4950: checking "for --enable-tabdialog"" >&5
+ no_cache=0
+ # Check whether --enable-tabdialog or --disable-tabdialog was given.
+if test "${enable_tabdialog+set}" = set; then
+ enableval="$enable_tabdialog"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_tabdialog='wxUSE_TABDIALOG=yes'
+ else
+ ac_cv_use_tabdialog='wxUSE_TABDIALOG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TABDIALOG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_tabdialog='wxUSE_TABDIALOG='$DEFAULT_wxUSE_TABDIALOG
+
+fi
+
+
+ eval "$ac_cv_use_tabdialog"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_tabdialog >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TABDIALOG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-toolbar"""... $ac_c" 1>&6
+echo "configure:4989: checking "for --enable-toolbar"" >&5
+ no_cache=0
+ # Check whether --enable-toolbar or --disable-toolbar was given.
+if test "${enable_toolbar+set}" = set; then
+ enableval="$enable_toolbar"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_toolbar='wxUSE_TOOLBAR=yes'
+ else
+ ac_cv_use_toolbar='wxUSE_TOOLBAR=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TOOLBAR" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_toolbar='wxUSE_TOOLBAR='$DEFAULT_wxUSE_TOOLBAR
+
+fi
+
+
+ eval "$ac_cv_use_toolbar"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_toolbar >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TOOLBAR" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-tbarnative"""... $ac_c" 1>&6
+echo "configure:5028: checking "for --enable-tbarnative"" >&5
+ no_cache=0
+ # Check whether --enable-tbarnative or --disable-tbarnative was given.
+if test "${enable_tbarnative+set}" = set; then
+ enableval="$enable_tbarnative"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=yes'
+ else
+ ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TOOLBAR_NATIVE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE='$DEFAULT_wxUSE_TOOLBAR_NATIVE
+
+fi
+
+
+ eval "$ac_cv_use_tbarnative"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_tbarnative >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TOOLBAR_NATIVE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-tbarsmpl"""... $ac_c" 1>&6
+echo "configure:5067: checking "for --enable-tbarsmpl"" >&5
+ no_cache=0
+ # Check whether --enable-tbarsmpl or --disable-tbarsmpl was given.
+if test "${enable_tbarsmpl+set}" = set; then
+ enableval="$enable_tbarsmpl"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_tbarsmpl='wxUSE_TOOLBAR_SIMPLE=yes'
+ else
+ ac_cv_use_tbarsmpl='wxUSE_TOOLBAR_SIMPLE=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TOOLBAR_SIMPLE" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_tbarsmpl='wxUSE_TOOLBAR_SIMPLE='$DEFAULT_wxUSE_TOOLBAR_SIMPLE
+
+fi
+
+
+ eval "$ac_cv_use_tbarsmpl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_tbarsmpl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TOOLBAR_SIMPLE" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-treectrl"""... $ac_c" 1>&6
+echo "configure:5106: checking "for --enable-treectrl"" >&5
+ no_cache=0
+ # Check whether --enable-treectrl or --disable-treectrl was given.
+if test "${enable_treectrl+set}" = set; then
+ enableval="$enable_treectrl"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_treectrl='wxUSE_TREECTRL=yes'
+ else
+ ac_cv_use_treectrl='wxUSE_TREECTRL=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TREECTRL" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_treectrl='wxUSE_TREECTRL='$DEFAULT_wxUSE_TREECTRL
+
+fi
+
+
+ eval "$ac_cv_use_treectrl"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_treectrl >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TREECTRL" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-commondlg"""... $ac_c" 1>&6
+echo "configure:5147: checking "for --enable-commondlg"" >&5
+ no_cache=0
+ # Check whether --enable-commondlg or --disable-commondlg was given.
+if test "${enable_commondlg+set}" = set; then
+ enableval="$enable_commondlg"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_commondlg='wxUSE_COMMONDLGS=yes'
+ else
+ ac_cv_use_commondlg='wxUSE_COMMONDLGS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_COMMONDLGS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_commondlg='wxUSE_COMMONDLGS='$DEFAULT_wxUSE_COMMONDLGS
+
+fi
+
+
+ eval "$ac_cv_use_commondlg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_commondlg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_COMMONDLGS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-dirdlg"""... $ac_c" 1>&6
+echo "configure:5186: checking "for --enable-dirdlg"" >&5
+ no_cache=0
+ # Check whether --enable-dirdlg or --disable-dirdlg was given.
+if test "${enable_dirdlg+set}" = set; then
+ enableval="$enable_dirdlg"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_dirdlg='wxUSE_DIRDLG=yes'
+ else
+ ac_cv_use_dirdlg='wxUSE_DIRDLG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_DIRDLG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_dirdlg='wxUSE_DIRDLG='$DEFAULT_wxUSE_DIRDLG
+
+fi
+
+
+ eval "$ac_cv_use_dirdlg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_dirdlg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_DIRDLG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-textdlg"""... $ac_c" 1>&6
+echo "configure:5225: checking "for --enable-textdlg"" >&5
+ no_cache=0
+ # Check whether --enable-textdlg or --disable-textdlg was given.
+if test "${enable_textdlg+set}" = set; then
+ enableval="$enable_textdlg"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_textdlg='wxUSE_TEXTDLG=yes'
+ else
+ ac_cv_use_textdlg='wxUSE_TEXTDLG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TEXTDLG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_textdlg='wxUSE_TEXTDLG='$DEFAULT_wxUSE_TEXTDLG
+
+fi
+
+
+ eval "$ac_cv_use_textdlg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_textdlg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TEXTDLG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-tipdlg"""... $ac_c" 1>&6
+echo "configure:5264: checking "for --enable-tipdlg"" >&5
+ no_cache=0
+ # Check whether --enable-tipdlg or --disable-tipdlg was given.
+if test "${enable_tipdlg+set}" = set; then
+ enableval="$enable_tipdlg"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS=yes'
+ else
+ ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_STARTUP_TIPS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS='$DEFAULT_wxUSE_STARTUP_TIPS
+
+fi
+
+
+ eval "$ac_cv_use_tipdlg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_tipdlg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_STARTUP_TIPS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-progressdlg"""... $ac_c" 1>&6
+echo "configure:5303: checking "for --enable-progressdlg"" >&5
+ no_cache=0
+ # Check whether --enable-progressdlg or --disable-progressdlg was given.
+if test "${enable_progressdlg+set}" = set; then
+ enableval="$enable_progressdlg"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_progressdlg='wxUSE_PROGRESSDLG=yes'
+ else
+ ac_cv_use_progressdlg='wxUSE_PROGRESSDLG=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PROGRESSDLG" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_progressdlg='wxUSE_PROGRESSDLG='$DEFAULT_wxUSE_PROGRESSDLG
+
+fi
+
+
+ eval "$ac_cv_use_progressdlg"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_progressdlg >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PROGRESSDLG" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-miniframe"""... $ac_c" 1>&6
+echo "configure:5342: checking "for --enable-miniframe"" >&5
+ no_cache=0
+ # Check whether --enable-miniframe or --disable-miniframe was given.
+if test "${enable_miniframe+set}" = set; then
+ enableval="$enable_miniframe"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_miniframe='wxUSE_MINIFRAME=yes'
+ else
+ ac_cv_use_miniframe='wxUSE_MINIFRAME=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_MINIFRAME" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_miniframe='wxUSE_MINIFRAME='$DEFAULT_wxUSE_MINIFRAME
+
+fi
+
+
+ eval "$ac_cv_use_miniframe"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_miniframe >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_MINIFRAME" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-html"""... $ac_c" 1>&6
+echo "configure:5381: checking "for --enable-html"" >&5
+ no_cache=0
+ # Check whether --enable-html or --disable-html was given.
+if test "${enable_html+set}" = set; then
+ enableval="$enable_html"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_html='wxUSE_HTML=yes'
+ else
+ ac_cv_use_html='wxUSE_HTML=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_HTML" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_html='wxUSE_HTML='$DEFAULT_wxUSE_HTML
+
+fi
+
+
+ eval "$ac_cv_use_html"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_html >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_HTML" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-tooltips"""... $ac_c" 1>&6
+echo "configure:5420: checking "for --enable-tooltips"" >&5
+ no_cache=0
+ # Check whether --enable-tooltips or --disable-tooltips was given.
+if test "${enable_tooltips+set}" = set; then
+ enableval="$enable_tooltips"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_tooltips='wxUSE_TOOLTIPS=yes'
+ else
+ ac_cv_use_tooltips='wxUSE_TOOLTIPS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_TOOLTIPS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_tooltips='wxUSE_TOOLTIPS='$DEFAULT_wxUSE_TOOLTIPS
+
+fi
+
+
+ eval "$ac_cv_use_tooltips"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_tooltips >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_TOOLTIPS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-splines"""... $ac_c" 1>&6
+echo "configure:5459: checking "for --enable-splines"" >&5
+ no_cache=0
+ # Check whether --enable-splines or --disable-splines was given.
+if test "${enable_splines+set}" = set; then
+ enableval="$enable_splines"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_splines='wxUSE_SPLINES=yes'
+ else
+ ac_cv_use_splines='wxUSE_SPLINES=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_SPLINES" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_splines='wxUSE_SPLINES='$DEFAULT_wxUSE_SPLINES
+
+fi
+
+
+ eval "$ac_cv_use_splines"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_splines >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_SPLINES" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-validators"""... $ac_c" 1>&6
+echo "configure:5498: checking "for --enable-validators"" >&5
+ no_cache=0
+ # Check whether --enable-validators or --disable-validators was given.
+if test "${enable_validators+set}" = set; then
+ enableval="$enable_validators"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_validators='wxUSE_VALIDATORS=yes'
+ else
+ ac_cv_use_validators='wxUSE_VALIDATORS=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_VALIDATORS" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_validators='wxUSE_VALIDATORS='$DEFAULT_wxUSE_VALIDATORS
+
+fi
+
+
+ eval "$ac_cv_use_validators"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_validators >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_VALIDATORS" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-busyinfo"""... $ac_c" 1>&6
+echo "configure:5537: checking "for --enable-busyinfo"" >&5
+ no_cache=0
+ # Check whether --enable-busyinfo or --disable-busyinfo was given.
+if test "${enable_busyinfo+set}" = set; then
+ enableval="$enable_busyinfo"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_busyinfo='wxUSE_BUSYINFO=yes'
+ else
+ ac_cv_use_busyinfo='wxUSE_BUSYINFO=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_BUSYINFO" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_busyinfo='wxUSE_BUSYINFO='$DEFAULT_wxUSE_BUSYINFO
+
+fi
+
+
+ eval "$ac_cv_use_busyinfo"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_busyinfo >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_BUSYINFO" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+
+
+ echo $ac_n "checking "for --enable-gif"""... $ac_c" 1>&6
+echo "configure:5578: checking "for --enable-gif"" >&5
+ no_cache=0
+ # Check whether --enable-gif or --disable-gif was given.
+if test "${enable_gif+set}" = set; then
+ enableval="$enable_gif"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_gif='wxUSE_GIF=yes'
+ else
+ ac_cv_use_gif='wxUSE_GIF=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_GIF" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_gif='wxUSE_GIF='$DEFAULT_wxUSE_GIF
+
+fi
+
+
+ eval "$ac_cv_use_gif"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_gif >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_GIF" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-pcx"""... $ac_c" 1>&6
+echo "configure:5617: checking "for --enable-pcx"" >&5
+ no_cache=0
+ # Check whether --enable-pcx or --disable-pcx was given.
+if test "${enable_pcx+set}" = set; then
+ enableval="$enable_pcx"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_pcx='wxUSE_PCX=yes'
+ else
+ ac_cv_use_pcx='wxUSE_PCX=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PCX" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_pcx='wxUSE_PCX='$DEFAULT_wxUSE_PCX
+
+fi
+
+
+ eval "$ac_cv_use_pcx"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_pcx >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PCX" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+ echo $ac_n "checking "for --enable-pnm"""... $ac_c" 1>&6
+echo "configure:5656: checking "for --enable-pnm"" >&5
+ no_cache=0
+ # Check whether --enable-pnm or --disable-pnm was given.
+if test "${enable_pnm+set}" = set; then
+ enableval="$enable_pnm"
+
+ if test "$enableval" = yes; then
+ ac_cv_use_pnm='wxUSE_PNM=yes'
+ else
+ ac_cv_use_pnm='wxUSE_PNM=no'
+ fi
+
+else
+
+ LINE=`grep "wxUSE_PNM" ${wx_arg_cache_file}`
+ if test "x$LINE" != x ; then
+ eval "DEFAULT_$LINE"
+ else
+ no_cache=1
+ fi
+
+ ac_cv_use_pnm='wxUSE_PNM='$DEFAULT_wxUSE_PNM
+
+fi
+
+
+ eval "$ac_cv_use_pnm"
+ if test "$no_cache" != 1; then
+ echo $ac_cv_use_pnm >> ${wx_arg_cache_file}.tmp
+ fi
+
+ if test "$wxUSE_PNM" = yes; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+ fi
+
+
+fi
+
+
+ echo "saving argument cache $wx_arg_cache_file"
+ mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
+
+
+
+echo $ac_n "checking for toolkit""... $ac_c" 1>&6
+echo "configure:5703: checking for toolkit" >&5
+
+if test "$wxUSE_GUI" = "yes"; then
+
+if test "$USE_BEOS" = 1; then
+ { echo "configure: error: BeOS GUI is not supported yet, use --disable-gui" 1>&2; exit 1; }
+fi
+
+if test "$TOOLKIT_GIVEN" = 1; then
+ for toolkit in `echo $ALL_TOOLKITS`; do
+ var=wxUSE_$toolkit
+ eval "value=\$${var}"
+ eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`"
+ done
+else
+ for toolkit in `echo $ALL_TOOLKITS`; do
+ if test "$has_toolkit_in_cache" != 1; then
+ var=DEFAULT_DEFAULT_wxUSE_$toolkit
+ else
+ var=DEFAULT_wxUSE_$toolkit
+ fi
+ eval "wxUSE_$toolkit=\$${var}"
+ done
+fi
+
+NUM_TOOLKITS=`expr ${wxUSE_GTK:-0} + ${wxUSE_MOTIF:-0} + ${wxUSE_WINE:-0} + ${wxUSE_MINGW:-0} + ${wxUSE_CYGWIN:-0} + ${wxUSE_PM:-0}`
+
+case "$NUM_TOOLKITS" in
+ 1)
+ ;;
+ 0)
+ { echo "configure: error: Please specify a toolkit - cannot determine the default for ${host}" 1>&2; exit 1; }
+ ;;
+ *)
+ { echo "configure: error: Please specify at most one toolkit (may be some are cached?)" 1>&2; exit 1; }
+esac
+
+for toolkit in `echo $ALL_TOOLKITS`; do
+ var=wxUSE_$toolkit
+ eval "value=\$${var}"
+ if test "x$value" != x; then
+ cache_var=CACHE_$toolkit
+ eval "cache=\$${cache_var}"
+ if test "$cache" = 1; then
+ echo "$var=$value" >> ${wx_arg_cache_file}
+ fi
+ if test "$value" = 1; then
+ echo "$ac_t""`echo $toolkit | tr A-Z a-z`" 1>&6
+ fi
+ fi
+done
+
+else
+ echo "$ac_t""base only" 1>&6
+fi
+
+
+cat > confcache <<\EOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs. It is not useful on other systems.
+# If it contains results you don't want to keep, you may remove or edit it.
+#
+# By default, configure uses ./config.cache as the cache file,
+# creating it if it does not exist already. You can give configure
+# the --cache-file=FILE option to use a different cache file; that is
+# what configure does when it calls configure scripts in
+# subdirectories, so they share the cache.
+# Giving --cache-file=/dev/null disables caching, for debugging configure.
+# config.status only pays attention to the cache file if you give it the
+# --recheck option to rerun configure.
+#
+EOF
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, don't put newlines in cache variables' values.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(set) 2>&1 |
+ case `(ac_space=' '; set | grep ac_space) 2>&1` in
+ *ac_space=\ *)
+ # `set' does not quote correctly, so add quotes (double-quote substitution
+ # turns \\\\ into \\, and sed turns \\ into \).
+ sed -n \
+ -e "s/'/'\\\\''/g" \
+ -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
+ ;;
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
+ ;;
+ esac >> confcache
+if cmp -s $cache_file confcache; then
+ :
+else
+ if test -w $cache_file; then
+ echo "updating cache $cache_file"
+ cat confcache > $cache_file
+ else
+ echo "not updating unwritable cache $cache_file"
+ fi
+fi
+rm -f confcache
+
+
+if eval "test $host != $build"; then
+ if eval "test $host_alias != NONE"; then
+ CC=$host_alias-gcc
+ CXX=$host_alias-c++
+ AR=$host_alias-ar
+ RANLIB=$host_alias-ranlib
+ DLLTOOL=$host_alias-dlltool
+ LD=$host_alias-ld
+ NM=$host_alias-nm
+ STRIP=$host_alias-strip
+ fi
+fi
+
+# Extract the first word of "gcc", so it can be a program name with args.
+set dummy gcc; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:5824: checking for $ac_word" >&5
+if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ ac_cv_prog_CC="gcc"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+fi
+fi
+CC="$ac_cv_prog_CC"
+if test -n "$CC"; then
+ echo "$ac_t""$CC" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+if test -z "$CC"; then
+ # Extract the first word of "cc", so it can be a program name with args.
+set dummy cc; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:5854: checking for $ac_word" >&5
+if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_prog_rejected=no
+ ac_dummy="$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
+ ac_prog_rejected=yes
+ continue
+ fi
+ ac_cv_prog_CC="cc"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+if test $ac_prog_rejected = yes; then
+ # We found a bogon in the path, so make sure we never use it.
+ set dummy $ac_cv_prog_CC
+ shift
+ if test $# -gt 0; then
+ # We chose a different compiler from the bogus one.
+ # However, it has the same basename, so the bogon will be chosen