diff --git a/acinclude.m4 b/acinclude.m4 index 180970d1c8..16f726d0bf 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -350,6 +350,10 @@ AC_DEFUN([WX_ARG_CACHE_FLUSH], mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file} ]) +dnl return the name of the variable to store the value of the given +dnl WX_ARG_WITH/ENABLE option +AC_DEFUN([WX_ARG_CACHE_NAME],) + dnl this macro checks for a three-valued command line --with argument: dnl possible arguments are 'yes', 'no', 'sys', or 'builtin' dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name) @@ -360,13 +364,13 @@ AC_DEFUN([WX_ARG_SYS_WITH], AC_ARG_WITH($1, [$2], [ if test "$withval" = yes; then - ac_cv_use_$1='$3=yes' + AS_TR_SH(wx_cv_use_$1)='$3=yes' elif test "$withval" = no; then - ac_cv_use_$1='$3=no' + AS_TR_SH(wx_cv_use_$1)='$3=no' elif test "$withval" = sys; then - ac_cv_use_$1='$3=sys' + AS_TR_SH(wx_cv_use_$1)='$3=sys' elif test "$withval" = builtin; then - ac_cv_use_$1='$3=builtin' + AS_TR_SH(wx_cv_use_$1)='$3=builtin' else AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin]) fi @@ -379,12 +383,12 @@ AC_DEFUN([WX_ARG_SYS_WITH], no_cache=1 fi - ac_cv_use_$1='$3='$DEFAULT_$3 + AS_TR_SH(wx_cv_use_$1)='$3='$DEFAULT_$3 ]) - eval "$ac_cv_use_$1" + eval "$AS_TR_SH(wx_cv_use_$1)" if test "$no_cache" != 1; then - echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp + echo $AS_TR_SH(wx_cv_use_$1) >> ${wx_arg_cache_file}.tmp fi if test "$$3" = yes; then @@ -410,9 +414,9 @@ AC_DEFUN([WX_ARG_WITH], AC_ARG_WITH($1, [$2], [ if test "$withval" = yes; then - ac_cv_use_$1='$3=yes' + AS_TR_SH(wx_cv_use_$1)='$3=yes' else - ac_cv_use_$1='$3=no' + AS_TR_SH(wx_cv_use_$1)='$3=no' fi ], [ @@ -423,12 +427,12 @@ AC_DEFUN([WX_ARG_WITH], no_cache=1 fi - ac_cv_use_$1='$3='$DEFAULT_$3 + AS_TR_SH(wx_cv_use_$1)='$3='$DEFAULT_$3 ]) - eval "$ac_cv_use_$1" + eval "$AS_TR_SH(wx_cv_use_$1)" if test "$no_cache" != 1; then - echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp + echo $AS_TR_SH(wx_cv_use_$1) >> ${wx_arg_cache_file}.tmp fi if test "$$3" = yes; then @@ -452,9 +456,9 @@ AC_DEFUN([WX_ARG_ENABLE], AC_ARG_ENABLE($1, [$2], [ if test "$enableval" = yes; then - ac_cv_use_$1='$3=yes' + AS_TR_SH(wx_cv_use_$1)='$3=yes' else - ac_cv_use_$1='$3=no' + AS_TR_SH(wx_cv_use_$1)='$3=no' fi ], [ @@ -465,12 +469,12 @@ AC_DEFUN([WX_ARG_ENABLE], no_cache=1 fi - ac_cv_use_$1='$3='$DEFAULT_$3 + AS_TR_SH(wx_cv_use_$1)='$3='$DEFAULT_$3 ]) - eval "$ac_cv_use_$1" + eval "$AS_TR_SH(wx_cv_use_$1)" if test "$no_cache" != 1; then - echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp + echo $AS_TR_SH(wx_cv_use_$1) >> ${wx_arg_cache_file}.tmp fi if test "$$3" = yes; then diff --git a/configure b/configure index a2a0b482e2..8b0ecc8421 100755 --- a/configure +++ b/configure @@ -2658,9 +2658,9 @@ if test "${enable_gui+set}" = set; then enableval="$enable_gui" if test "$enableval" = yes; then - ac_cv_use_gui='wxUSE_GUI=yes' + wx_cv_use_gui='wxUSE_GUI=yes' else - ac_cv_use_gui='wxUSE_GUI=no' + wx_cv_use_gui='wxUSE_GUI=no' fi else @@ -2672,13 +2672,13 @@ else no_cache=1 fi - ac_cv_use_gui='wxUSE_GUI='$DEFAULT_wxUSE_GUI + wx_cv_use_gui='wxUSE_GUI='$DEFAULT_wxUSE_GUI fi; - eval "$ac_cv_use_gui" + eval "$wx_cv_use_gui" if test "$no_cache" != 1; then - echo $ac_cv_use_gui >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gui >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GUI" = yes; then @@ -2699,9 +2699,9 @@ if test "${enable_monolithic+set}" = set; then enableval="$enable_monolithic" if test "$enableval" = yes; then - ac_cv_use_monolithic='wxUSE_MONOLITHIC=yes' + wx_cv_use_monolithic='wxUSE_MONOLITHIC=yes' else - ac_cv_use_monolithic='wxUSE_MONOLITHIC=no' + wx_cv_use_monolithic='wxUSE_MONOLITHIC=no' fi else @@ -2713,13 +2713,13 @@ else no_cache=1 fi - ac_cv_use_monolithic='wxUSE_MONOLITHIC='$DEFAULT_wxUSE_MONOLITHIC + wx_cv_use_monolithic='wxUSE_MONOLITHIC='$DEFAULT_wxUSE_MONOLITHIC fi; - eval "$ac_cv_use_monolithic" + eval "$wx_cv_use_monolithic" if test "$no_cache" != 1; then - echo $ac_cv_use_monolithic >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_monolithic >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MONOLITHIC" = yes; then @@ -2740,9 +2740,9 @@ if test "${enable_plugins+set}" = set; then enableval="$enable_plugins" if test "$enableval" = yes; then - ac_cv_use_plugins='wxUSE_PLUGINS=yes' + wx_cv_use_plugins='wxUSE_PLUGINS=yes' else - ac_cv_use_plugins='wxUSE_PLUGINS=no' + wx_cv_use_plugins='wxUSE_PLUGINS=no' fi else @@ -2754,13 +2754,13 @@ else no_cache=1 fi - ac_cv_use_plugins='wxUSE_PLUGINS='$DEFAULT_wxUSE_PLUGINS + wx_cv_use_plugins='wxUSE_PLUGINS='$DEFAULT_wxUSE_PLUGINS fi; - eval "$ac_cv_use_plugins" + eval "$wx_cv_use_plugins" if test "$no_cache" != 1; then - echo $ac_cv_use_plugins >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_plugins >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PLUGINS" = yes; then @@ -2782,9 +2782,9 @@ if test "${with_subdirs+set}" = set; then withval="$with_subdirs" if test "$withval" = yes; then - ac_cv_use_subdirs='wxWITH_SUBDIRS=yes' + wx_cv_use_subdirs='wxWITH_SUBDIRS=yes' else - ac_cv_use_subdirs='wxWITH_SUBDIRS=no' + wx_cv_use_subdirs='wxWITH_SUBDIRS=no' fi else @@ -2796,13 +2796,13 @@ else no_cache=1 fi - ac_cv_use_subdirs='wxWITH_SUBDIRS='$DEFAULT_wxWITH_SUBDIRS + wx_cv_use_subdirs='wxWITH_SUBDIRS='$DEFAULT_wxWITH_SUBDIRS fi; - eval "$ac_cv_use_subdirs" + eval "$wx_cv_use_subdirs" if test "$no_cache" != 1; then - echo $ac_cv_use_subdirs >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_subdirs >> ${wx_arg_cache_file}.tmp fi if test "$wxWITH_SUBDIRS" = yes; then @@ -2826,9 +2826,9 @@ if test "${enable_universal+set}" = set; then enableval="$enable_universal" if test "$enableval" = yes; then - ac_cv_use_universal='wxUSE_UNIVERSAL=yes' + wx_cv_use_universal='wxUSE_UNIVERSAL=yes' else - ac_cv_use_universal='wxUSE_UNIVERSAL=no' + wx_cv_use_universal='wxUSE_UNIVERSAL=no' fi else @@ -2840,13 +2840,13 @@ else no_cache=1 fi - ac_cv_use_universal='wxUSE_UNIVERSAL='$DEFAULT_wxUSE_UNIVERSAL + wx_cv_use_universal='wxUSE_UNIVERSAL='$DEFAULT_wxUSE_UNIVERSAL fi; - eval "$ac_cv_use_universal" + eval "$wx_cv_use_universal" if test "$no_cache" != 1; then - echo $ac_cv_use_universal >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_universal >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_UNIVERSAL" = yes; then @@ -2933,9 +2933,9 @@ if test "${enable_nanox+set}" = set; then enableval="$enable_nanox" if test "$enableval" = yes; then - ac_cv_use_nanox='wxUSE_NANOX=yes' + wx_cv_use_nanox='wxUSE_NANOX=yes' else - ac_cv_use_nanox='wxUSE_NANOX=no' + wx_cv_use_nanox='wxUSE_NANOX=no' fi else @@ -2947,13 +2947,13 @@ else no_cache=1 fi - ac_cv_use_nanox='wxUSE_NANOX='$DEFAULT_wxUSE_NANOX + wx_cv_use_nanox='wxUSE_NANOX='$DEFAULT_wxUSE_NANOX fi; - eval "$ac_cv_use_nanox" + eval "$wx_cv_use_nanox" if test "$no_cache" != 1; then - echo $ac_cv_use_nanox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_nanox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NANOX" = yes; then @@ -2980,9 +2980,9 @@ if test "${enable_gpe+set}" = set; then enableval="$enable_gpe" if test "$enableval" = yes; then - ac_cv_use_gpe='wxUSE_GPE=yes' + wx_cv_use_gpe='wxUSE_GPE=yes' else - ac_cv_use_gpe='wxUSE_GPE=no' + wx_cv_use_gpe='wxUSE_GPE=no' fi else @@ -2994,13 +2994,13 @@ else no_cache=1 fi - ac_cv_use_gpe='wxUSE_GPE='$DEFAULT_wxUSE_GPE + wx_cv_use_gpe='wxUSE_GPE='$DEFAULT_wxUSE_GPE fi; - eval "$ac_cv_use_gpe" + eval "$wx_cv_use_gpe" if test "$no_cache" != 1; then - echo $ac_cv_use_gpe >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gpe >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GPE" = yes; then @@ -3022,13 +3022,13 @@ if test "${with_libpng+set}" = set; then withval="$with_libpng" if test "$withval" = yes; then - ac_cv_use_libpng='wxUSE_LIBPNG=yes' + wx_cv_use_libpng='wxUSE_LIBPNG=yes' elif test "$withval" = no; then - ac_cv_use_libpng='wxUSE_LIBPNG=no' + wx_cv_use_libpng='wxUSE_LIBPNG=no' elif test "$withval" = sys; then - ac_cv_use_libpng='wxUSE_LIBPNG=sys' + wx_cv_use_libpng='wxUSE_LIBPNG=sys' elif test "$withval" = builtin; then - ac_cv_use_libpng='wxUSE_LIBPNG=builtin' + wx_cv_use_libpng='wxUSE_LIBPNG=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-libpng: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-libpng: should be yes, no, sys, or builtin" >&2;} @@ -3044,13 +3044,13 @@ else no_cache=1 fi - ac_cv_use_libpng='wxUSE_LIBPNG='$DEFAULT_wxUSE_LIBPNG + wx_cv_use_libpng='wxUSE_LIBPNG='$DEFAULT_wxUSE_LIBPNG fi; - eval "$ac_cv_use_libpng" + eval "$wx_cv_use_libpng" if test "$no_cache" != 1; then - echo $ac_cv_use_libpng >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_libpng >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBPNG" = yes; then @@ -3081,13 +3081,13 @@ if test "${with_libjpeg+set}" = set; then withval="$with_libjpeg" if test "$withval" = yes; then - ac_cv_use_libjpeg='wxUSE_LIBJPEG=yes' + wx_cv_use_libjpeg='wxUSE_LIBJPEG=yes' elif test "$withval" = no; then - ac_cv_use_libjpeg='wxUSE_LIBJPEG=no' + wx_cv_use_libjpeg='wxUSE_LIBJPEG=no' elif test "$withval" = sys; then - ac_cv_use_libjpeg='wxUSE_LIBJPEG=sys' + wx_cv_use_libjpeg='wxUSE_LIBJPEG=sys' elif test "$withval" = builtin; then - ac_cv_use_libjpeg='wxUSE_LIBJPEG=builtin' + wx_cv_use_libjpeg='wxUSE_LIBJPEG=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-libjpeg: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-libjpeg: should be yes, no, sys, or builtin" >&2;} @@ -3103,13 +3103,13 @@ else no_cache=1 fi - ac_cv_use_libjpeg='wxUSE_LIBJPEG='$DEFAULT_wxUSE_LIBJPEG + wx_cv_use_libjpeg='wxUSE_LIBJPEG='$DEFAULT_wxUSE_LIBJPEG fi; - eval "$ac_cv_use_libjpeg" + eval "$wx_cv_use_libjpeg" if test "$no_cache" != 1; then - echo $ac_cv_use_libjpeg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_libjpeg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBJPEG" = yes; then @@ -3140,13 +3140,13 @@ if test "${with_libtiff+set}" = set; then withval="$with_libtiff" if test "$withval" = yes; then - ac_cv_use_libtiff='wxUSE_LIBTIFF=yes' + wx_cv_use_libtiff='wxUSE_LIBTIFF=yes' elif test "$withval" = no; then - ac_cv_use_libtiff='wxUSE_LIBTIFF=no' + wx_cv_use_libtiff='wxUSE_LIBTIFF=no' elif test "$withval" = sys; then - ac_cv_use_libtiff='wxUSE_LIBTIFF=sys' + wx_cv_use_libtiff='wxUSE_LIBTIFF=sys' elif test "$withval" = builtin; then - ac_cv_use_libtiff='wxUSE_LIBTIFF=builtin' + wx_cv_use_libtiff='wxUSE_LIBTIFF=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-libtiff: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-libtiff: should be yes, no, sys, or builtin" >&2;} @@ -3162,13 +3162,13 @@ else no_cache=1 fi - ac_cv_use_libtiff='wxUSE_LIBTIFF='$DEFAULT_wxUSE_LIBTIFF + wx_cv_use_libtiff='wxUSE_LIBTIFF='$DEFAULT_wxUSE_LIBTIFF fi; - eval "$ac_cv_use_libtiff" + eval "$wx_cv_use_libtiff" if test "$no_cache" != 1; then - echo $ac_cv_use_libtiff >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_libtiff >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBTIFF" = yes; then @@ -3199,13 +3199,13 @@ if test "${with_libxpm+set}" = set; then withval="$with_libxpm" if test "$withval" = yes; then - ac_cv_use_libxpm='wxUSE_LIBXPM=yes' + wx_cv_use_libxpm='wxUSE_LIBXPM=yes' elif test "$withval" = no; then - ac_cv_use_libxpm='wxUSE_LIBXPM=no' + wx_cv_use_libxpm='wxUSE_LIBXPM=no' elif test "$withval" = sys; then - ac_cv_use_libxpm='wxUSE_LIBXPM=sys' + wx_cv_use_libxpm='wxUSE_LIBXPM=sys' elif test "$withval" = builtin; then - ac_cv_use_libxpm='wxUSE_LIBXPM=builtin' + wx_cv_use_libxpm='wxUSE_LIBXPM=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-libxpm: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-libxpm: should be yes, no, sys, or builtin" >&2;} @@ -3221,13 +3221,13 @@ else no_cache=1 fi - ac_cv_use_libxpm='wxUSE_LIBXPM='$DEFAULT_wxUSE_LIBXPM + wx_cv_use_libxpm='wxUSE_LIBXPM='$DEFAULT_wxUSE_LIBXPM fi; - eval "$ac_cv_use_libxpm" + eval "$wx_cv_use_libxpm" if test "$no_cache" != 1; then - echo $ac_cv_use_libxpm >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_libxpm >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBXPM" = yes; then @@ -3259,9 +3259,9 @@ if test "${with_libmspack+set}" = set; then withval="$with_libmspack" if test "$withval" = yes; then - ac_cv_use_libmspack='wxUSE_LIBMSPACK=yes' + wx_cv_use_libmspack='wxUSE_LIBMSPACK=yes' else - ac_cv_use_libmspack='wxUSE_LIBMSPACK=no' + wx_cv_use_libmspack='wxUSE_LIBMSPACK=no' fi else @@ -3273,13 +3273,13 @@ else no_cache=1 fi - ac_cv_use_libmspack='wxUSE_LIBMSPACK='$DEFAULT_wxUSE_LIBMSPACK + wx_cv_use_libmspack='wxUSE_LIBMSPACK='$DEFAULT_wxUSE_LIBMSPACK fi; - eval "$ac_cv_use_libmspack" + eval "$wx_cv_use_libmspack" if test "$no_cache" != 1; then - echo $ac_cv_use_libmspack >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_libmspack >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBMSPACK" = yes; then @@ -3301,9 +3301,9 @@ if test "${with_sdl+set}" = set; then withval="$with_sdl" if test "$withval" = yes; then - ac_cv_use_sdl='wxUSE_LIBSDL=yes' + wx_cv_use_sdl='wxUSE_LIBSDL=yes' else - ac_cv_use_sdl='wxUSE_LIBSDL=no' + wx_cv_use_sdl='wxUSE_LIBSDL=no' fi else @@ -3315,13 +3315,13 @@ else no_cache=1 fi - ac_cv_use_sdl='wxUSE_LIBSDL='$DEFAULT_wxUSE_LIBSDL + wx_cv_use_sdl='wxUSE_LIBSDL='$DEFAULT_wxUSE_LIBSDL fi; - eval "$ac_cv_use_sdl" + eval "$wx_cv_use_sdl" if test "$no_cache" != 1; then - echo $ac_cv_use_sdl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_sdl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBSDL" = yes; then @@ -3343,9 +3343,9 @@ if test "${with_gnomeprint+set}" = set; then withval="$with_gnomeprint" if test "$withval" = yes; then - ac_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT=yes' + wx_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT=yes' else - ac_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT=no' + wx_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT=no' fi else @@ -3357,13 +3357,13 @@ else no_cache=1 fi - ac_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT='$DEFAULT_wxUSE_LIBGNOMEPRINT + wx_cv_use_gnomeprint='wxUSE_LIBGNOMEPRINT='$DEFAULT_wxUSE_LIBGNOMEPRINT fi; - eval "$ac_cv_use_gnomeprint" + eval "$wx_cv_use_gnomeprint" if test "$no_cache" != 1; then - echo $ac_cv_use_gnomeprint >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gnomeprint >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBGNOMEPRINT" = yes; then @@ -3385,9 +3385,9 @@ if test "${with_gnomevfs+set}" = set; then withval="$with_gnomevfs" if test "$withval" = yes; then - ac_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS=yes' + wx_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS=yes' else - ac_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS=no' + wx_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS=no' fi else @@ -3399,13 +3399,13 @@ else no_cache=1 fi - ac_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS='$DEFAULT_wxUSE_LIBGNOMEVFS + wx_cv_use_gnomevfs='wxUSE_LIBGNOMEVFS='$DEFAULT_wxUSE_LIBGNOMEVFS fi; - eval "$ac_cv_use_gnomevfs" + eval "$wx_cv_use_gnomevfs" if test "$no_cache" != 1; then - echo $ac_cv_use_gnomevfs >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gnomevfs >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBGNOMEVFS" = yes; then @@ -3427,9 +3427,9 @@ if test "${with_hildon+set}" = set; then withval="$with_hildon" if test "$withval" = yes; then - ac_cv_use_hildon='wxUSE_LIBHILDON=yes' + wx_cv_use_hildon='wxUSE_LIBHILDON=yes' else - ac_cv_use_hildon='wxUSE_LIBHILDON=no' + wx_cv_use_hildon='wxUSE_LIBHILDON=no' fi else @@ -3441,13 +3441,13 @@ else no_cache=1 fi - ac_cv_use_hildon='wxUSE_LIBHILDON='$DEFAULT_wxUSE_LIBHILDON + wx_cv_use_hildon='wxUSE_LIBHILDON='$DEFAULT_wxUSE_LIBHILDON fi; - eval "$ac_cv_use_hildon" + eval "$wx_cv_use_hildon" if test "$no_cache" != 1; then - echo $ac_cv_use_hildon >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_hildon >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LIBHILDON" = yes; then @@ -3469,9 +3469,9 @@ if test "${with_opengl+set}" = set; then withval="$with_opengl" if test "$withval" = yes; then - ac_cv_use_opengl='wxUSE_OPENGL=yes' + wx_cv_use_opengl='wxUSE_OPENGL=yes' else - ac_cv_use_opengl='wxUSE_OPENGL=no' + wx_cv_use_opengl='wxUSE_OPENGL=no' fi else @@ -3483,13 +3483,13 @@ else no_cache=1 fi - ac_cv_use_opengl='wxUSE_OPENGL='$DEFAULT_wxUSE_OPENGL + wx_cv_use_opengl='wxUSE_OPENGL='$DEFAULT_wxUSE_OPENGL fi; - eval "$ac_cv_use_opengl" + eval "$wx_cv_use_opengl" if test "$no_cache" != 1; then - echo $ac_cv_use_opengl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_opengl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OPENGL" = yes; then @@ -3523,9 +3523,9 @@ if test "${with_dmalloc+set}" = set; then withval="$with_dmalloc" if test "$withval" = yes; then - ac_cv_use_dmalloc='wxUSE_DMALLOC=yes' + wx_cv_use_dmalloc='wxUSE_DMALLOC=yes' else - ac_cv_use_dmalloc='wxUSE_DMALLOC=no' + wx_cv_use_dmalloc='wxUSE_DMALLOC=no' fi else @@ -3537,13 +3537,13 @@ else no_cache=1 fi - ac_cv_use_dmalloc='wxUSE_DMALLOC='$DEFAULT_wxUSE_DMALLOC + wx_cv_use_dmalloc='wxUSE_DMALLOC='$DEFAULT_wxUSE_DMALLOC fi; - eval "$ac_cv_use_dmalloc" + eval "$wx_cv_use_dmalloc" if test "$no_cache" != 1; then - echo $ac_cv_use_dmalloc >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dmalloc >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DMALLOC" = yes; then @@ -3564,13 +3564,13 @@ if test "${with_regex+set}" = set; then withval="$with_regex" if test "$withval" = yes; then - ac_cv_use_regex='wxUSE_REGEX=yes' + wx_cv_use_regex='wxUSE_REGEX=yes' elif test "$withval" = no; then - ac_cv_use_regex='wxUSE_REGEX=no' + wx_cv_use_regex='wxUSE_REGEX=no' elif test "$withval" = sys; then - ac_cv_use_regex='wxUSE_REGEX=sys' + wx_cv_use_regex='wxUSE_REGEX=sys' elif test "$withval" = builtin; then - ac_cv_use_regex='wxUSE_REGEX=builtin' + wx_cv_use_regex='wxUSE_REGEX=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-regex: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-regex: should be yes, no, sys, or builtin" >&2;} @@ -3586,13 +3586,13 @@ else no_cache=1 fi - ac_cv_use_regex='wxUSE_REGEX='$DEFAULT_wxUSE_REGEX + wx_cv_use_regex='wxUSE_REGEX='$DEFAULT_wxUSE_REGEX fi; - eval "$ac_cv_use_regex" + eval "$wx_cv_use_regex" if test "$no_cache" != 1; then - echo $ac_cv_use_regex >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_regex >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_REGEX" = yes; then @@ -3623,13 +3623,13 @@ if test "${with_zlib+set}" = set; then withval="$with_zlib" if test "$withval" = yes; then - ac_cv_use_zlib='wxUSE_ZLIB=yes' + wx_cv_use_zlib='wxUSE_ZLIB=yes' elif test "$withval" = no; then - ac_cv_use_zlib='wxUSE_ZLIB=no' + wx_cv_use_zlib='wxUSE_ZLIB=no' elif test "$withval" = sys; then - ac_cv_use_zlib='wxUSE_ZLIB=sys' + wx_cv_use_zlib='wxUSE_ZLIB=sys' elif test "$withval" = builtin; then - ac_cv_use_zlib='wxUSE_ZLIB=builtin' + wx_cv_use_zlib='wxUSE_ZLIB=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-zlib: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-zlib: should be yes, no, sys, or builtin" >&2;} @@ -3645,13 +3645,13 @@ else no_cache=1 fi - ac_cv_use_zlib='wxUSE_ZLIB='$DEFAULT_wxUSE_ZLIB + wx_cv_use_zlib='wxUSE_ZLIB='$DEFAULT_wxUSE_ZLIB fi; - eval "$ac_cv_use_zlib" + eval "$wx_cv_use_zlib" if test "$no_cache" != 1; then - echo $ac_cv_use_zlib >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_zlib >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ZLIB" = yes; then @@ -3682,13 +3682,13 @@ if test "${with_odbc+set}" = set; then withval="$with_odbc" if test "$withval" = yes; then - ac_cv_use_odbc='wxUSE_ODBC=yes' + wx_cv_use_odbc='wxUSE_ODBC=yes' elif test "$withval" = no; then - ac_cv_use_odbc='wxUSE_ODBC=no' + wx_cv_use_odbc='wxUSE_ODBC=no' elif test "$withval" = sys; then - ac_cv_use_odbc='wxUSE_ODBC=sys' + wx_cv_use_odbc='wxUSE_ODBC=sys' elif test "$withval" = builtin; then - ac_cv_use_odbc='wxUSE_ODBC=builtin' + wx_cv_use_odbc='wxUSE_ODBC=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-odbc: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-odbc: should be yes, no, sys, or builtin" >&2;} @@ -3704,13 +3704,13 @@ else no_cache=1 fi - ac_cv_use_odbc='wxUSE_ODBC='$DEFAULT_wxUSE_ODBC + wx_cv_use_odbc='wxUSE_ODBC='$DEFAULT_wxUSE_ODBC fi; - eval "$ac_cv_use_odbc" + eval "$wx_cv_use_odbc" if test "$no_cache" != 1; then - echo $ac_cv_use_odbc >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_odbc >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ODBC" = yes; then @@ -3741,13 +3741,13 @@ if test "${with_expat+set}" = set; then withval="$with_expat" if test "$withval" = yes; then - ac_cv_use_expat='wxUSE_EXPAT=yes' + wx_cv_use_expat='wxUSE_EXPAT=yes' elif test "$withval" = no; then - ac_cv_use_expat='wxUSE_EXPAT=no' + wx_cv_use_expat='wxUSE_EXPAT=no' elif test "$withval" = sys; then - ac_cv_use_expat='wxUSE_EXPAT=sys' + wx_cv_use_expat='wxUSE_EXPAT=sys' elif test "$withval" = builtin; then - ac_cv_use_expat='wxUSE_EXPAT=builtin' + wx_cv_use_expat='wxUSE_EXPAT=builtin' else { { echo "$as_me:$LINENO: error: Invalid value for --with-expat: should be yes, no, sys, or builtin" >&5 echo "$as_me: error: Invalid value for --with-expat: should be yes, no, sys, or builtin" >&2;} @@ -3763,13 +3763,13 @@ else no_cache=1 fi - ac_cv_use_expat='wxUSE_EXPAT='$DEFAULT_wxUSE_EXPAT + wx_cv_use_expat='wxUSE_EXPAT='$DEFAULT_wxUSE_EXPAT fi; - eval "$ac_cv_use_expat" + eval "$wx_cv_use_expat" if test "$no_cache" != 1; then - echo $ac_cv_use_expat >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_expat >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_EXPAT" = yes; then @@ -3802,9 +3802,9 @@ if test "${enable_shared+set}" = set; then enableval="$enable_shared" if test "$enableval" = yes; then - ac_cv_use_shared='wxUSE_SHARED=yes' + wx_cv_use_shared='wxUSE_SHARED=yes' else - ac_cv_use_shared='wxUSE_SHARED=no' + wx_cv_use_shared='wxUSE_SHARED=no' fi else @@ -3816,13 +3816,13 @@ else no_cache=1 fi - ac_cv_use_shared='wxUSE_SHARED='$DEFAULT_wxUSE_SHARED + wx_cv_use_shared='wxUSE_SHARED='$DEFAULT_wxUSE_SHARED fi; - eval "$ac_cv_use_shared" + eval "$wx_cv_use_shared" if test "$no_cache" != 1; then - echo $ac_cv_use_shared >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_shared >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SHARED" = yes; then @@ -3843,9 +3843,9 @@ if test "${enable_optimise+set}" = set; then enableval="$enable_optimise" if test "$enableval" = yes; then - ac_cv_use_optimise='wxUSE_OPTIMISE=yes' + wx_cv_use_optimise='wxUSE_OPTIMISE=yes' else - ac_cv_use_optimise='wxUSE_OPTIMISE=no' + wx_cv_use_optimise='wxUSE_OPTIMISE=no' fi else @@ -3857,13 +3857,13 @@ else no_cache=1 fi - ac_cv_use_optimise='wxUSE_OPTIMISE='$DEFAULT_wxUSE_OPTIMISE + wx_cv_use_optimise='wxUSE_OPTIMISE='$DEFAULT_wxUSE_OPTIMISE fi; - eval "$ac_cv_use_optimise" + eval "$wx_cv_use_optimise" if test "$no_cache" != 1; then - echo $ac_cv_use_optimise >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_optimise >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OPTIMISE" = yes; then @@ -3884,9 +3884,9 @@ if test "${enable_debug+set}" = set; then enableval="$enable_debug" if test "$enableval" = yes; then - ac_cv_use_debug='wxUSE_DEBUG=yes' + wx_cv_use_debug='wxUSE_DEBUG=yes' else - ac_cv_use_debug='wxUSE_DEBUG=no' + wx_cv_use_debug='wxUSE_DEBUG=no' fi else @@ -3898,13 +3898,13 @@ else no_cache=1 fi - ac_cv_use_debug='wxUSE_DEBUG='$DEFAULT_wxUSE_DEBUG + wx_cv_use_debug='wxUSE_DEBUG='$DEFAULT_wxUSE_DEBUG fi; - eval "$ac_cv_use_debug" + eval "$wx_cv_use_debug" if test "$no_cache" != 1; then - echo $ac_cv_use_debug >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debug >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUG" = yes; then @@ -3925,9 +3925,9 @@ if test "${enable_stl+set}" = set; then enableval="$enable_stl" if test "$enableval" = yes; then - ac_cv_use_stl='wxUSE_STL=yes' + wx_cv_use_stl='wxUSE_STL=yes' else - ac_cv_use_stl='wxUSE_STL=no' + wx_cv_use_stl='wxUSE_STL=no' fi else @@ -3939,13 +3939,13 @@ else no_cache=1 fi - ac_cv_use_stl='wxUSE_STL='$DEFAULT_wxUSE_STL + wx_cv_use_stl='wxUSE_STL='$DEFAULT_wxUSE_STL fi; - eval "$ac_cv_use_stl" + eval "$wx_cv_use_stl" if test "$no_cache" != 1; then - echo $ac_cv_use_stl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_stl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STL" = yes; then @@ -3968,9 +3968,9 @@ if test "${enable_omf+set}" = set; then enableval="$enable_omf" if test "$enableval" = yes; then - ac_cv_use_omf='wxUSE_OMF=yes' + wx_cv_use_omf='wxUSE_OMF=yes' else - ac_cv_use_omf='wxUSE_OMF=no' + wx_cv_use_omf='wxUSE_OMF=no' fi else @@ -3982,13 +3982,13 @@ else no_cache=1 fi - ac_cv_use_omf='wxUSE_OMF='$DEFAULT_wxUSE_OMF + wx_cv_use_omf='wxUSE_OMF='$DEFAULT_wxUSE_OMF fi; - eval "$ac_cv_use_omf" + eval "$wx_cv_use_omf" if test "$no_cache" != 1; then - echo $ac_cv_use_omf >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_omf >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OMF" = yes; then @@ -4021,9 +4021,9 @@ 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' + wx_cv_use_debug_flag='wxUSE_DEBUG_FLAG=yes' else - ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG=no' + wx_cv_use_debug_flag='wxUSE_DEBUG_FLAG=no' fi else @@ -4035,13 +4035,13 @@ else no_cache=1 fi - ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG='$DEFAULT_wxUSE_DEBUG_FLAG + wx_cv_use_debug_flag='wxUSE_DEBUG_FLAG='$DEFAULT_wxUSE_DEBUG_FLAG fi; - eval "$ac_cv_use_debug_flag" + eval "$wx_cv_use_debug_flag" if test "$no_cache" != 1; then - echo $ac_cv_use_debug_flag >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debug_flag >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUG_FLAG" = yes; then @@ -4062,9 +4062,9 @@ 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' + wx_cv_use_debug_info='wxUSE_DEBUG_INFO=yes' else - ac_cv_use_debug_info='wxUSE_DEBUG_INFO=no' + wx_cv_use_debug_info='wxUSE_DEBUG_INFO=no' fi else @@ -4076,13 +4076,13 @@ else no_cache=1 fi - ac_cv_use_debug_info='wxUSE_DEBUG_INFO='$DEFAULT_wxUSE_DEBUG_INFO + wx_cv_use_debug_info='wxUSE_DEBUG_INFO='$DEFAULT_wxUSE_DEBUG_INFO fi; - eval "$ac_cv_use_debug_info" + eval "$wx_cv_use_debug_info" if test "$no_cache" != 1; then - echo $ac_cv_use_debug_info >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debug_info >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUG_INFO" = yes; then @@ -4103,9 +4103,9 @@ 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' + wx_cv_use_debug_gdb='wxUSE_DEBUG_GDB=yes' else - ac_cv_use_debug_gdb='wxUSE_DEBUG_GDB=no' + wx_cv_use_debug_gdb='wxUSE_DEBUG_GDB=no' fi else @@ -4117,13 +4117,13 @@ else no_cache=1 fi - ac_cv_use_debug_gdb='wxUSE_DEBUG_GDB='$DEFAULT_wxUSE_DEBUG_GDB + wx_cv_use_debug_gdb='wxUSE_DEBUG_GDB='$DEFAULT_wxUSE_DEBUG_GDB fi; - eval "$ac_cv_use_debug_gdb" + eval "$wx_cv_use_debug_gdb" if test "$no_cache" != 1; then - echo $ac_cv_use_debug_gdb >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debug_gdb >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUG_GDB" = yes; then @@ -4144,9 +4144,9 @@ 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' + wx_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT=yes' else - ac_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT=no' + wx_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT=no' fi else @@ -4158,13 +4158,13 @@ else no_cache=1 fi - ac_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT='$DEFAULT_wxUSE_DEBUG_CONTEXT + wx_cv_use_debug_cntxt='wxUSE_DEBUG_CONTEXT='$DEFAULT_wxUSE_DEBUG_CONTEXT fi; - eval "$ac_cv_use_debug_cntxt" + eval "$wx_cv_use_debug_cntxt" if test "$no_cache" != 1; then - echo $ac_cv_use_debug_cntxt >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debug_cntxt >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUG_CONTEXT" = yes; then @@ -4185,9 +4185,9 @@ 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' + wx_cv_use_mem_tracing='wxUSE_MEM_TRACING=yes' else - ac_cv_use_mem_tracing='wxUSE_MEM_TRACING=no' + wx_cv_use_mem_tracing='wxUSE_MEM_TRACING=no' fi else @@ -4199,13 +4199,13 @@ else no_cache=1 fi - ac_cv_use_mem_tracing='wxUSE_MEM_TRACING='$DEFAULT_wxUSE_MEM_TRACING + wx_cv_use_mem_tracing='wxUSE_MEM_TRACING='$DEFAULT_wxUSE_MEM_TRACING fi; - eval "$ac_cv_use_mem_tracing" + eval "$wx_cv_use_mem_tracing" if test "$no_cache" != 1; then - echo $ac_cv_use_mem_tracing >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mem_tracing >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MEM_TRACING" = yes; then @@ -4226,9 +4226,9 @@ if test "${enable_profile+set}" = set; then enableval="$enable_profile" if test "$enableval" = yes; then - ac_cv_use_profile='wxUSE_PROFILE=yes' + wx_cv_use_profile='wxUSE_PROFILE=yes' else - ac_cv_use_profile='wxUSE_PROFILE=no' + wx_cv_use_profile='wxUSE_PROFILE=no' fi else @@ -4240,13 +4240,13 @@ else no_cache=1 fi - ac_cv_use_profile='wxUSE_PROFILE='$DEFAULT_wxUSE_PROFILE + wx_cv_use_profile='wxUSE_PROFILE='$DEFAULT_wxUSE_PROFILE fi; - eval "$ac_cv_use_profile" + eval "$wx_cv_use_profile" if test "$no_cache" != 1; then - echo $ac_cv_use_profile >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_profile >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROFILE" = yes; then @@ -4267,9 +4267,9 @@ 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' + wx_cv_use_no_rtti='wxUSE_NO_RTTI=yes' else - ac_cv_use_no_rtti='wxUSE_NO_RTTI=no' + wx_cv_use_no_rtti='wxUSE_NO_RTTI=no' fi else @@ -4281,13 +4281,13 @@ else no_cache=1 fi - ac_cv_use_no_rtti='wxUSE_NO_RTTI='$DEFAULT_wxUSE_NO_RTTI + wx_cv_use_no_rtti='wxUSE_NO_RTTI='$DEFAULT_wxUSE_NO_RTTI fi; - eval "$ac_cv_use_no_rtti" + eval "$wx_cv_use_no_rtti" if test "$no_cache" != 1; then - echo $ac_cv_use_no_rtti >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_no_rtti >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NO_RTTI" = yes; then @@ -4308,9 +4308,9 @@ 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' + wx_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS=yes' else - ac_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS=no' + wx_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS=no' fi else @@ -4322,13 +4322,13 @@ else no_cache=1 fi - ac_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS='$DEFAULT_wxUSE_NO_EXCEPTIONS + wx_cv_use_no_exceptions='wxUSE_NO_EXCEPTIONS='$DEFAULT_wxUSE_NO_EXCEPTIONS fi; - eval "$ac_cv_use_no_exceptions" + eval "$wx_cv_use_no_exceptions" if test "$no_cache" != 1; then - echo $ac_cv_use_no_exceptions >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_no_exceptions >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NO_EXCEPTIONS" = yes; then @@ -4349,9 +4349,9 @@ if test "${enable_permissive+set}" = set; then enableval="$enable_permissive" if test "$enableval" = yes; then - ac_cv_use_permissive='wxUSE_PERMISSIVE=yes' + wx_cv_use_permissive='wxUSE_PERMISSIVE=yes' else - ac_cv_use_permissive='wxUSE_PERMISSIVE=no' + wx_cv_use_permissive='wxUSE_PERMISSIVE=no' fi else @@ -4363,13 +4363,13 @@ else no_cache=1 fi - ac_cv_use_permissive='wxUSE_PERMISSIVE='$DEFAULT_wxUSE_PERMISSIVE + wx_cv_use_permissive='wxUSE_PERMISSIVE='$DEFAULT_wxUSE_PERMISSIVE fi; - eval "$ac_cv_use_permissive" + eval "$wx_cv_use_permissive" if test "$no_cache" != 1; then - echo $ac_cv_use_permissive >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_permissive >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PERMISSIVE" = yes; then @@ -4390,9 +4390,9 @@ 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' + wx_cv_use_no_deps='wxUSE_NO_DEPS=yes' else - ac_cv_use_no_deps='wxUSE_NO_DEPS=no' + wx_cv_use_no_deps='wxUSE_NO_DEPS=no' fi else @@ -4404,13 +4404,13 @@ else no_cache=1 fi - ac_cv_use_no_deps='wxUSE_NO_DEPS='$DEFAULT_wxUSE_NO_DEPS + wx_cv_use_no_deps='wxUSE_NO_DEPS='$DEFAULT_wxUSE_NO_DEPS fi; - eval "$ac_cv_use_no_deps" + eval "$wx_cv_use_no_deps" if test "$no_cache" != 1; then - echo $ac_cv_use_no_deps >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_no_deps >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NO_DEPS" = yes; then @@ -4431,9 +4431,9 @@ if test "${enable_vararg_macros+set}" = set; then enableval="$enable_vararg_macros" if test "$enableval" = yes; then - ac_cv_use_vararg_macros='wxUSE_VARARG_MACROS=yes' + wx_cv_use_vararg_macros='wxUSE_VARARG_MACROS=yes' else - ac_cv_use_vararg_macros='wxUSE_VARARG_MACROS=no' + wx_cv_use_vararg_macros='wxUSE_VARARG_MACROS=no' fi else @@ -4445,13 +4445,13 @@ else no_cache=1 fi - ac_cv_use_vararg_macros='wxUSE_VARARG_MACROS='$DEFAULT_wxUSE_VARARG_MACROS + wx_cv_use_vararg_macros='wxUSE_VARARG_MACROS='$DEFAULT_wxUSE_VARARG_MACROS fi; - eval "$ac_cv_use_vararg_macros" + eval "$wx_cv_use_vararg_macros" if test "$no_cache" != 1; then - echo $ac_cv_use_vararg_macros >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_vararg_macros >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_VARARG_MACROS" = yes; then @@ -4505,9 +4505,9 @@ if test "${enable_compat24+set}" = set; then enableval="$enable_compat24" if test "$enableval" = yes; then - ac_cv_use_compat24='WXWIN_COMPATIBILITY_2_4=yes' + wx_cv_use_compat24='WXWIN_COMPATIBILITY_2_4=yes' else - ac_cv_use_compat24='WXWIN_COMPATIBILITY_2_4=no' + wx_cv_use_compat24='WXWIN_COMPATIBILITY_2_4=no' fi else @@ -4519,13 +4519,13 @@ else no_cache=1 fi - ac_cv_use_compat24='WXWIN_COMPATIBILITY_2_4='$DEFAULT_WXWIN_COMPATIBILITY_2_4 + wx_cv_use_compat24='WXWIN_COMPATIBILITY_2_4='$DEFAULT_WXWIN_COMPATIBILITY_2_4 fi; - eval "$ac_cv_use_compat24" + eval "$wx_cv_use_compat24" if test "$no_cache" != 1; then - echo $ac_cv_use_compat24 >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_compat24 >> ${wx_arg_cache_file}.tmp fi if test "$WXWIN_COMPATIBILITY_2_4" = yes; then @@ -4546,9 +4546,9 @@ if test "${enable_compat26+set}" = set; then enableval="$enable_compat26" if test "$enableval" = yes; then - ac_cv_use_compat26='WXWIN_COMPATIBILITY_2_6=yes' + wx_cv_use_compat26='WXWIN_COMPATIBILITY_2_6=yes' else - ac_cv_use_compat26='WXWIN_COMPATIBILITY_2_6=no' + wx_cv_use_compat26='WXWIN_COMPATIBILITY_2_6=no' fi else @@ -4560,13 +4560,13 @@ else no_cache=1 fi - ac_cv_use_compat26='WXWIN_COMPATIBILITY_2_6='$DEFAULT_WXWIN_COMPATIBILITY_2_6 + wx_cv_use_compat26='WXWIN_COMPATIBILITY_2_6='$DEFAULT_WXWIN_COMPATIBILITY_2_6 fi; - eval "$ac_cv_use_compat26" + eval "$wx_cv_use_compat26" if test "$no_cache" != 1; then - echo $ac_cv_use_compat26 >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_compat26 >> ${wx_arg_cache_file}.tmp fi if test "$WXWIN_COMPATIBILITY_2_6" = yes; then @@ -4588,9 +4588,9 @@ if test "${enable_rpath+set}" = set; then enableval="$enable_rpath" if test "$enableval" = yes; then - ac_cv_use_rpath='wxUSE_RPATH=yes' + wx_cv_use_rpath='wxUSE_RPATH=yes' else - ac_cv_use_rpath='wxUSE_RPATH=no' + wx_cv_use_rpath='wxUSE_RPATH=no' fi else @@ -4602,13 +4602,13 @@ else no_cache=1 fi - ac_cv_use_rpath='wxUSE_RPATH='$DEFAULT_wxUSE_RPATH + wx_cv_use_rpath='wxUSE_RPATH='$DEFAULT_wxUSE_RPATH fi; - eval "$ac_cv_use_rpath" + eval "$wx_cv_use_rpath" if test "$no_cache" != 1; then - echo $ac_cv_use_rpath >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_rpath >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_RPATH" = yes; then @@ -4630,9 +4630,9 @@ if test "${enable_objc_uniquifying+set}" = set; then enableval="$enable_objc_uniquifying" if test "$enableval" = yes; then - ac_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING=yes' + wx_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING=yes' else - ac_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING=no' + wx_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING=no' fi else @@ -4644,13 +4644,13 @@ else no_cache=1 fi - ac_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING='$DEFAULT_wxUSE_OBJC_UNIQUIFYING + wx_cv_use_objc_uniquifying='wxUSE_OBJC_UNIQUIFYING='$DEFAULT_wxUSE_OBJC_UNIQUIFYING fi; - eval "$ac_cv_use_objc_uniquifying" + eval "$wx_cv_use_objc_uniquifying" if test "$no_cache" != 1; then - echo $ac_cv_use_objc_uniquifying >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_objc_uniquifying >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OBJC_UNIQUIFYING" = yes; then @@ -4673,9 +4673,9 @@ if test "${enable_intl+set}" = set; then enableval="$enable_intl" if test "$enableval" = yes; then - ac_cv_use_intl='wxUSE_INTL=yes' + wx_cv_use_intl='wxUSE_INTL=yes' else - ac_cv_use_intl='wxUSE_INTL=no' + wx_cv_use_intl='wxUSE_INTL=no' fi else @@ -4687,13 +4687,13 @@ else no_cache=1 fi - ac_cv_use_intl='wxUSE_INTL='$DEFAULT_wxUSE_INTL + wx_cv_use_intl='wxUSE_INTL='$DEFAULT_wxUSE_INTL fi; - eval "$ac_cv_use_intl" + eval "$wx_cv_use_intl" if test "$no_cache" != 1; then - echo $ac_cv_use_intl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_intl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_INTL" = yes; then @@ -4714,9 +4714,9 @@ if test "${enable_config+set}" = set; then enableval="$enable_config" if test "$enableval" = yes; then - ac_cv_use_config='wxUSE_CONFIG=yes' + wx_cv_use_config='wxUSE_CONFIG=yes' else - ac_cv_use_config='wxUSE_CONFIG=no' + wx_cv_use_config='wxUSE_CONFIG=no' fi else @@ -4728,13 +4728,13 @@ else no_cache=1 fi - ac_cv_use_config='wxUSE_CONFIG='$DEFAULT_wxUSE_CONFIG + wx_cv_use_config='wxUSE_CONFIG='$DEFAULT_wxUSE_CONFIG fi; - eval "$ac_cv_use_config" + eval "$wx_cv_use_config" if test "$no_cache" != 1; then - echo $ac_cv_use_config >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_config >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CONFIG" = yes; then @@ -4756,9 +4756,9 @@ if test "${enable_protocols+set}" = set; then enableval="$enable_protocols" if test "$enableval" = yes; then - ac_cv_use_protocols='wxUSE_PROTOCOL=yes' + wx_cv_use_protocols='wxUSE_PROTOCOL=yes' else - ac_cv_use_protocols='wxUSE_PROTOCOL=no' + wx_cv_use_protocols='wxUSE_PROTOCOL=no' fi else @@ -4770,13 +4770,13 @@ else no_cache=1 fi - ac_cv_use_protocols='wxUSE_PROTOCOL='$DEFAULT_wxUSE_PROTOCOL + wx_cv_use_protocols='wxUSE_PROTOCOL='$DEFAULT_wxUSE_PROTOCOL fi; - eval "$ac_cv_use_protocols" + eval "$wx_cv_use_protocols" if test "$no_cache" != 1; then - echo $ac_cv_use_protocols >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_protocols >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL" = yes; then @@ -4797,9 +4797,9 @@ if test "${enable_ftp+set}" = set; then enableval="$enable_ftp" if test "$enableval" = yes; then - ac_cv_use_ftp='wxUSE_PROTOCOL_FTP=yes' + wx_cv_use_ftp='wxUSE_PROTOCOL_FTP=yes' else - ac_cv_use_ftp='wxUSE_PROTOCOL_FTP=no' + wx_cv_use_ftp='wxUSE_PROTOCOL_FTP=no' fi else @@ -4811,13 +4811,13 @@ else no_cache=1 fi - ac_cv_use_ftp='wxUSE_PROTOCOL_FTP='$DEFAULT_wxUSE_PROTOCOL_FTP + wx_cv_use_ftp='wxUSE_PROTOCOL_FTP='$DEFAULT_wxUSE_PROTOCOL_FTP fi; - eval "$ac_cv_use_ftp" + eval "$wx_cv_use_ftp" if test "$no_cache" != 1; then - echo $ac_cv_use_ftp >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_ftp >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_FTP" = yes; then @@ -4838,9 +4838,9 @@ if test "${enable_http+set}" = set; then enableval="$enable_http" if test "$enableval" = yes; then - ac_cv_use_http='wxUSE_PROTOCOL_HTTP=yes' + wx_cv_use_http='wxUSE_PROTOCOL_HTTP=yes' else - ac_cv_use_http='wxUSE_PROTOCOL_HTTP=no' + wx_cv_use_http='wxUSE_PROTOCOL_HTTP=no' fi else @@ -4852,13 +4852,13 @@ else no_cache=1 fi - ac_cv_use_http='wxUSE_PROTOCOL_HTTP='$DEFAULT_wxUSE_PROTOCOL_HTTP + wx_cv_use_http='wxUSE_PROTOCOL_HTTP='$DEFAULT_wxUSE_PROTOCOL_HTTP fi; - eval "$ac_cv_use_http" + eval "$wx_cv_use_http" if test "$no_cache" != 1; then - echo $ac_cv_use_http >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_http >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_HTTP" = yes; then @@ -4879,9 +4879,9 @@ if test "${enable_fileproto+set}" = set; then enableval="$enable_fileproto" if test "$enableval" = yes; then - ac_cv_use_fileproto='wxUSE_PROTOCOL_FILE=yes' + wx_cv_use_fileproto='wxUSE_PROTOCOL_FILE=yes' else - ac_cv_use_fileproto='wxUSE_PROTOCOL_FILE=no' + wx_cv_use_fileproto='wxUSE_PROTOCOL_FILE=no' fi else @@ -4893,13 +4893,13 @@ else no_cache=1 fi - ac_cv_use_fileproto='wxUSE_PROTOCOL_FILE='$DEFAULT_wxUSE_PROTOCOL_FILE + wx_cv_use_fileproto='wxUSE_PROTOCOL_FILE='$DEFAULT_wxUSE_PROTOCOL_FILE fi; - eval "$ac_cv_use_fileproto" + eval "$wx_cv_use_fileproto" if test "$no_cache" != 1; then - echo $ac_cv_use_fileproto >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fileproto >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_FILE" = yes; then @@ -4920,9 +4920,9 @@ if test "${enable_sockets+set}" = set; then enableval="$enable_sockets" if test "$enableval" = yes; then - ac_cv_use_sockets='wxUSE_SOCKETS=yes' + wx_cv_use_sockets='wxUSE_SOCKETS=yes' else - ac_cv_use_sockets='wxUSE_SOCKETS=no' + wx_cv_use_sockets='wxUSE_SOCKETS=no' fi else @@ -4934,13 +4934,13 @@ else no_cache=1 fi - ac_cv_use_sockets='wxUSE_SOCKETS='$DEFAULT_wxUSE_SOCKETS + wx_cv_use_sockets='wxUSE_SOCKETS='$DEFAULT_wxUSE_SOCKETS fi; - eval "$ac_cv_use_sockets" + eval "$wx_cv_use_sockets" if test "$no_cache" != 1; then - echo $ac_cv_use_sockets >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_sockets >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SOCKETS" = yes; then @@ -4961,9 +4961,9 @@ if test "${enable_ole+set}" = set; then enableval="$enable_ole" if test "$enableval" = yes; then - ac_cv_use_ole='wxUSE_OLE=yes' + wx_cv_use_ole='wxUSE_OLE=yes' else - ac_cv_use_ole='wxUSE_OLE=no' + wx_cv_use_ole='wxUSE_OLE=no' fi else @@ -4975,13 +4975,13 @@ else no_cache=1 fi - ac_cv_use_ole='wxUSE_OLE='$DEFAULT_wxUSE_OLE + wx_cv_use_ole='wxUSE_OLE='$DEFAULT_wxUSE_OLE fi; - eval "$ac_cv_use_ole" + eval "$wx_cv_use_ole" if test "$no_cache" != 1; then - echo $ac_cv_use_ole >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_ole >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OLE" = yes; then @@ -5002,9 +5002,9 @@ if test "${enable_dataobj+set}" = set; then enableval="$enable_dataobj" if test "$enableval" = yes; then - ac_cv_use_dataobj='wxUSE_DATAOBJ=yes' + wx_cv_use_dataobj='wxUSE_DATAOBJ=yes' else - ac_cv_use_dataobj='wxUSE_DATAOBJ=no' + wx_cv_use_dataobj='wxUSE_DATAOBJ=no' fi else @@ -5016,13 +5016,13 @@ else no_cache=1 fi - ac_cv_use_dataobj='wxUSE_DATAOBJ='$DEFAULT_wxUSE_DATAOBJ + wx_cv_use_dataobj='wxUSE_DATAOBJ='$DEFAULT_wxUSE_DATAOBJ fi; - eval "$ac_cv_use_dataobj" + eval "$wx_cv_use_dataobj" if test "$no_cache" != 1; then - echo $ac_cv_use_dataobj >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dataobj >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DATAOBJ" = yes; then @@ -5044,9 +5044,9 @@ if test "${enable_ipc+set}" = set; then enableval="$enable_ipc" if test "$enableval" = yes; then - ac_cv_use_ipc='wxUSE_IPC=yes' + wx_cv_use_ipc='wxUSE_IPC=yes' else - ac_cv_use_ipc='wxUSE_IPC=no' + wx_cv_use_ipc='wxUSE_IPC=no' fi else @@ -5058,13 +5058,13 @@ else no_cache=1 fi - ac_cv_use_ipc='wxUSE_IPC='$DEFAULT_wxUSE_IPC + wx_cv_use_ipc='wxUSE_IPC='$DEFAULT_wxUSE_IPC fi; - eval "$ac_cv_use_ipc" + eval "$wx_cv_use_ipc" if test "$no_cache" != 1; then - echo $ac_cv_use_ipc >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_ipc >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_IPC" = yes; then @@ -5086,9 +5086,9 @@ 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' + wx_cv_use_apple_ieee='wxUSE_APPLE_IEEE=yes' else - ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE=no' + wx_cv_use_apple_ieee='wxUSE_APPLE_IEEE=no' fi else @@ -5100,13 +5100,13 @@ else no_cache=1 fi - ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE='$DEFAULT_wxUSE_APPLE_IEEE + wx_cv_use_apple_ieee='wxUSE_APPLE_IEEE='$DEFAULT_wxUSE_APPLE_IEEE fi; - eval "$ac_cv_use_apple_ieee" + eval "$wx_cv_use_apple_ieee" if test "$no_cache" != 1; then - echo $ac_cv_use_apple_ieee >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_apple_ieee >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_APPLE_IEEE" = yes; then @@ -5127,9 +5127,9 @@ if test "${enable_arcstream+set}" = set; then enableval="$enable_arcstream" if test "$enableval" = yes; then - ac_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS=yes' + wx_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS=yes' else - ac_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS=no' + wx_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS=no' fi else @@ -5141,13 +5141,13 @@ else no_cache=1 fi - ac_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS='$DEFAULT_wxUSE_ARCHIVE_STREAMS + wx_cv_use_arcstream='wxUSE_ARCHIVE_STREAMS='$DEFAULT_wxUSE_ARCHIVE_STREAMS fi; - eval "$ac_cv_use_arcstream" + eval "$wx_cv_use_arcstream" if test "$no_cache" != 1; then - echo $ac_cv_use_arcstream >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_arcstream >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ARCHIVE_STREAMS" = yes; then @@ -5168,9 +5168,9 @@ if test "${enable_backtrace+set}" = set; then enableval="$enable_backtrace" if test "$enableval" = yes; then - ac_cv_use_backtrace='wxUSE_STACKWALKER=yes' + wx_cv_use_backtrace='wxUSE_STACKWALKER=yes' else - ac_cv_use_backtrace='wxUSE_STACKWALKER=no' + wx_cv_use_backtrace='wxUSE_STACKWALKER=no' fi else @@ -5182,13 +5182,13 @@ else no_cache=1 fi - ac_cv_use_backtrace='wxUSE_STACKWALKER='$DEFAULT_wxUSE_STACKWALKER + wx_cv_use_backtrace='wxUSE_STACKWALKER='$DEFAULT_wxUSE_STACKWALKER fi; - eval "$ac_cv_use_backtrace" + eval "$wx_cv_use_backtrace" if test "$no_cache" != 1; then - echo $ac_cv_use_backtrace >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_backtrace >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STACKWALKER" = yes; then @@ -5209,9 +5209,9 @@ if test "${enable_catch_segvs+set}" = set; then enableval="$enable_catch_segvs" if test "$enableval" = yes; then - ac_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION=yes' + wx_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION=yes' else - ac_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION=no' + wx_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION=no' fi else @@ -5223,13 +5223,13 @@ else no_cache=1 fi - ac_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION='$DEFAULT_wxUSE_ON_FATAL_EXCEPTION + wx_cv_use_catch_segvs='wxUSE_ON_FATAL_EXCEPTION='$DEFAULT_wxUSE_ON_FATAL_EXCEPTION fi; - eval "$ac_cv_use_catch_segvs" + eval "$wx_cv_use_catch_segvs" if test "$no_cache" != 1; then - echo $ac_cv_use_catch_segvs >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_catch_segvs >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ON_FATAL_EXCEPTION" = yes; then @@ -5250,9 +5250,9 @@ if test "${enable_cmdline+set}" = set; then enableval="$enable_cmdline" if test "$enableval" = yes; then - ac_cv_use_cmdline='wxUSE_CMDLINE_PARSER=yes' + wx_cv_use_cmdline='wxUSE_CMDLINE_PARSER=yes' else - ac_cv_use_cmdline='wxUSE_CMDLINE_PARSER=no' + wx_cv_use_cmdline='wxUSE_CMDLINE_PARSER=no' fi else @@ -5264,13 +5264,13 @@ else no_cache=1 fi - ac_cv_use_cmdline='wxUSE_CMDLINE_PARSER='$DEFAULT_wxUSE_CMDLINE_PARSER + wx_cv_use_cmdline='wxUSE_CMDLINE_PARSER='$DEFAULT_wxUSE_CMDLINE_PARSER fi; - eval "$ac_cv_use_cmdline" + eval "$wx_cv_use_cmdline" if test "$no_cache" != 1; then - echo $ac_cv_use_cmdline >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_cmdline >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CMDLINE_PARSER" = yes; then @@ -5291,9 +5291,9 @@ if test "${enable_datetime+set}" = set; then enableval="$enable_datetime" if test "$enableval" = yes; then - ac_cv_use_datetime='wxUSE_DATETIME=yes' + wx_cv_use_datetime='wxUSE_DATETIME=yes' else - ac_cv_use_datetime='wxUSE_DATETIME=no' + wx_cv_use_datetime='wxUSE_DATETIME=no' fi else @@ -5305,13 +5305,13 @@ else no_cache=1 fi - ac_cv_use_datetime='wxUSE_DATETIME='$DEFAULT_wxUSE_DATETIME + wx_cv_use_datetime='wxUSE_DATETIME='$DEFAULT_wxUSE_DATETIME fi; - eval "$ac_cv_use_datetime" + eval "$wx_cv_use_datetime" if test "$no_cache" != 1; then - echo $ac_cv_use_datetime >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_datetime >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DATETIME" = yes; then @@ -5332,9 +5332,9 @@ if test "${enable_debugreport+set}" = set; then enableval="$enable_debugreport" if test "$enableval" = yes; then - ac_cv_use_debugreport='wxUSE_DEBUGREPORT=yes' + wx_cv_use_debugreport='wxUSE_DEBUGREPORT=yes' else - ac_cv_use_debugreport='wxUSE_DEBUGREPORT=no' + wx_cv_use_debugreport='wxUSE_DEBUGREPORT=no' fi else @@ -5346,13 +5346,13 @@ else no_cache=1 fi - ac_cv_use_debugreport='wxUSE_DEBUGREPORT='$DEFAULT_wxUSE_DEBUGREPORT + wx_cv_use_debugreport='wxUSE_DEBUGREPORT='$DEFAULT_wxUSE_DEBUGREPORT fi; - eval "$ac_cv_use_debugreport" + eval "$wx_cv_use_debugreport" if test "$no_cache" != 1; then - echo $ac_cv_use_debugreport >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_debugreport >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DEBUGREPORT" = yes; then @@ -5373,9 +5373,9 @@ if test "${enable_dialupman+set}" = set; then enableval="$enable_dialupman" if test "$enableval" = yes; then - ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER=yes' + wx_cv_use_dialupman='wxUSE_DIALUP_MANAGER=yes' else - ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER=no' + wx_cv_use_dialupman='wxUSE_DIALUP_MANAGER=no' fi else @@ -5387,13 +5387,13 @@ else no_cache=1 fi - ac_cv_use_dialupman='wxUSE_DIALUP_MANAGER='$DEFAULT_wxUSE_DIALUP_MANAGER + wx_cv_use_dialupman='wxUSE_DIALUP_MANAGER='$DEFAULT_wxUSE_DIALUP_MANAGER fi; - eval "$ac_cv_use_dialupman" + eval "$wx_cv_use_dialupman" if test "$no_cache" != 1; then - echo $ac_cv_use_dialupman >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dialupman >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DIALUP_MANAGER" = yes; then @@ -5414,9 +5414,9 @@ if test "${enable_dynlib+set}" = set; then enableval="$enable_dynlib" if test "$enableval" = yes; then - ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS=yes' + wx_cv_use_dynlib='wxUSE_DYNLIB_CLASS=yes' else - ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS=no' + wx_cv_use_dynlib='wxUSE_DYNLIB_CLASS=no' fi else @@ -5428,13 +5428,13 @@ else no_cache=1 fi - ac_cv_use_dynlib='wxUSE_DYNLIB_CLASS='$DEFAULT_wxUSE_DYNLIB_CLASS + wx_cv_use_dynlib='wxUSE_DYNLIB_CLASS='$DEFAULT_wxUSE_DYNLIB_CLASS fi; - eval "$ac_cv_use_dynlib" + eval "$wx_cv_use_dynlib" if test "$no_cache" != 1; then - echo $ac_cv_use_dynlib >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dynlib >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DYNLIB_CLASS" = yes; then @@ -5455,9 +5455,9 @@ if test "${enable_dynamicloader+set}" = set; then enableval="$enable_dynamicloader" if test "$enableval" = yes; then - ac_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER=yes' + wx_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER=yes' else - ac_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER=no' + wx_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER=no' fi else @@ -5469,13 +5469,13 @@ else no_cache=1 fi - ac_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER='$DEFAULT_wxUSE_DYNAMIC_LOADER + wx_cv_use_dynamicloader='wxUSE_DYNAMIC_LOADER='$DEFAULT_wxUSE_DYNAMIC_LOADER fi; - eval "$ac_cv_use_dynamicloader" + eval "$wx_cv_use_dynamicloader" if test "$no_cache" != 1; then - echo $ac_cv_use_dynamicloader >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dynamicloader >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DYNAMIC_LOADER" = yes; then @@ -5496,9 +5496,9 @@ if test "${enable_exceptions+set}" = set; then enableval="$enable_exceptions" if test "$enableval" = yes; then - ac_cv_use_exceptions='wxUSE_EXCEPTIONS=yes' + wx_cv_use_exceptions='wxUSE_EXCEPTIONS=yes' else - ac_cv_use_exceptions='wxUSE_EXCEPTIONS=no' + wx_cv_use_exceptions='wxUSE_EXCEPTIONS=no' fi else @@ -5510,13 +5510,13 @@ else no_cache=1 fi - ac_cv_use_exceptions='wxUSE_EXCEPTIONS='$DEFAULT_wxUSE_EXCEPTIONS + wx_cv_use_exceptions='wxUSE_EXCEPTIONS='$DEFAULT_wxUSE_EXCEPTIONS fi; - eval "$ac_cv_use_exceptions" + eval "$wx_cv_use_exceptions" if test "$no_cache" != 1; then - echo $ac_cv_use_exceptions >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_exceptions >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_EXCEPTIONS" = yes; then @@ -5537,9 +5537,9 @@ if test "${enable_ffile+set}" = set; then enableval="$enable_ffile" if test "$enableval" = yes; then - ac_cv_use_ffile='wxUSE_FFILE=yes' + wx_cv_use_ffile='wxUSE_FFILE=yes' else - ac_cv_use_ffile='wxUSE_FFILE=no' + wx_cv_use_ffile='wxUSE_FFILE=no' fi else @@ -5551,13 +5551,13 @@ else no_cache=1 fi - ac_cv_use_ffile='wxUSE_FFILE='$DEFAULT_wxUSE_FFILE + wx_cv_use_ffile='wxUSE_FFILE='$DEFAULT_wxUSE_FFILE fi; - eval "$ac_cv_use_ffile" + eval "$wx_cv_use_ffile" if test "$no_cache" != 1; then - echo $ac_cv_use_ffile >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_ffile >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FFILE" = yes; then @@ -5578,9 +5578,9 @@ if test "${enable_file+set}" = set; then enableval="$enable_file" if test "$enableval" = yes; then - ac_cv_use_file='wxUSE_FILE=yes' + wx_cv_use_file='wxUSE_FILE=yes' else - ac_cv_use_file='wxUSE_FILE=no' + wx_cv_use_file='wxUSE_FILE=no' fi else @@ -5592,13 +5592,13 @@ else no_cache=1 fi - ac_cv_use_file='wxUSE_FILE='$DEFAULT_wxUSE_FILE + wx_cv_use_file='wxUSE_FILE='$DEFAULT_wxUSE_FILE fi; - eval "$ac_cv_use_file" + eval "$wx_cv_use_file" if test "$no_cache" != 1; then - echo $ac_cv_use_file >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_file >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FILE" = yes; then @@ -5619,9 +5619,9 @@ if test "${enable_filesystem+set}" = set; then enableval="$enable_filesystem" if test "$enableval" = yes; then - ac_cv_use_filesystem='wxUSE_FILESYSTEM=yes' + wx_cv_use_filesystem='wxUSE_FILESYSTEM=yes' else - ac_cv_use_filesystem='wxUSE_FILESYSTEM=no' + wx_cv_use_filesystem='wxUSE_FILESYSTEM=no' fi else @@ -5633,13 +5633,13 @@ else no_cache=1 fi - ac_cv_use_filesystem='wxUSE_FILESYSTEM='$DEFAULT_wxUSE_FILESYSTEM + wx_cv_use_filesystem='wxUSE_FILESYSTEM='$DEFAULT_wxUSE_FILESYSTEM fi; - eval "$ac_cv_use_filesystem" + eval "$wx_cv_use_filesystem" if test "$no_cache" != 1; then - echo $ac_cv_use_filesystem >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_filesystem >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FILESYSTEM" = yes; then @@ -5660,9 +5660,9 @@ if test "${enable_fontmap+set}" = set; then enableval="$enable_fontmap" if test "$enableval" = yes; then - ac_cv_use_fontmap='wxUSE_FONTMAP=yes' + wx_cv_use_fontmap='wxUSE_FONTMAP=yes' else - ac_cv_use_fontmap='wxUSE_FONTMAP=no' + wx_cv_use_fontmap='wxUSE_FONTMAP=no' fi else @@ -5674,13 +5674,13 @@ else no_cache=1 fi - ac_cv_use_fontmap='wxUSE_FONTMAP='$DEFAULT_wxUSE_FONTMAP + wx_cv_use_fontmap='wxUSE_FONTMAP='$DEFAULT_wxUSE_FONTMAP fi; - eval "$ac_cv_use_fontmap" + eval "$wx_cv_use_fontmap" if test "$no_cache" != 1; then - echo $ac_cv_use_fontmap >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fontmap >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FONTMAP" = yes; then @@ -5701,9 +5701,9 @@ if test "${enable_fs_archive+set}" = set; then enableval="$enable_fs_archive" if test "$enableval" = yes; then - ac_cv_use_fs_archive='wxUSE_FS_ARCHIVE=yes' + wx_cv_use_fs_archive='wxUSE_FS_ARCHIVE=yes' else - ac_cv_use_fs_archive='wxUSE_FS_ARCHIVE=no' + wx_cv_use_fs_archive='wxUSE_FS_ARCHIVE=no' fi else @@ -5715,13 +5715,13 @@ else no_cache=1 fi - ac_cv_use_fs_archive='wxUSE_FS_ARCHIVE='$DEFAULT_wxUSE_FS_ARCHIVE + wx_cv_use_fs_archive='wxUSE_FS_ARCHIVE='$DEFAULT_wxUSE_FS_ARCHIVE fi; - eval "$ac_cv_use_fs_archive" + eval "$wx_cv_use_fs_archive" if test "$no_cache" != 1; then - echo $ac_cv_use_fs_archive >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fs_archive >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FS_ARCHIVE" = yes; then @@ -5742,9 +5742,9 @@ 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' + wx_cv_use_fs_inet='wxUSE_FS_INET=yes' else - ac_cv_use_fs_inet='wxUSE_FS_INET=no' + wx_cv_use_fs_inet='wxUSE_FS_INET=no' fi else @@ -5756,13 +5756,13 @@ else no_cache=1 fi - ac_cv_use_fs_inet='wxUSE_FS_INET='$DEFAULT_wxUSE_FS_INET + wx_cv_use_fs_inet='wxUSE_FS_INET='$DEFAULT_wxUSE_FS_INET fi; - eval "$ac_cv_use_fs_inet" + eval "$wx_cv_use_fs_inet" if test "$no_cache" != 1; then - echo $ac_cv_use_fs_inet >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fs_inet >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FS_INET" = yes; then @@ -5783,9 +5783,9 @@ 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' + wx_cv_use_fs_zip='wxUSE_FS_ZIP=yes' else - ac_cv_use_fs_zip='wxUSE_FS_ZIP=no' + wx_cv_use_fs_zip='wxUSE_FS_ZIP=no' fi else @@ -5797,13 +5797,13 @@ else no_cache=1 fi - ac_cv_use_fs_zip='wxUSE_FS_ZIP='$DEFAULT_wxUSE_FS_ZIP + wx_cv_use_fs_zip='wxUSE_FS_ZIP='$DEFAULT_wxUSE_FS_ZIP fi; - eval "$ac_cv_use_fs_zip" + eval "$wx_cv_use_fs_zip" if test "$no_cache" != 1; then - echo $ac_cv_use_fs_zip >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fs_zip >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FS_ZIP" = yes; then @@ -5824,9 +5824,9 @@ if test "${enable_geometry+set}" = set; then enableval="$enable_geometry" if test "$enableval" = yes; then - ac_cv_use_geometry='wxUSE_GEOMETRY=yes' + wx_cv_use_geometry='wxUSE_GEOMETRY=yes' else - ac_cv_use_geometry='wxUSE_GEOMETRY=no' + wx_cv_use_geometry='wxUSE_GEOMETRY=no' fi else @@ -5838,13 +5838,13 @@ else no_cache=1 fi - ac_cv_use_geometry='wxUSE_GEOMETRY='$DEFAULT_wxUSE_GEOMETRY + wx_cv_use_geometry='wxUSE_GEOMETRY='$DEFAULT_wxUSE_GEOMETRY fi; - eval "$ac_cv_use_geometry" + eval "$wx_cv_use_geometry" if test "$no_cache" != 1; then - echo $ac_cv_use_geometry >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_geometry >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GEOMETRY" = yes; then @@ -5865,9 +5865,9 @@ if test "${enable_log+set}" = set; then enableval="$enable_log" if test "$enableval" = yes; then - ac_cv_use_log='wxUSE_LOG=yes' + wx_cv_use_log='wxUSE_LOG=yes' else - ac_cv_use_log='wxUSE_LOG=no' + wx_cv_use_log='wxUSE_LOG=no' fi else @@ -5879,13 +5879,13 @@ else no_cache=1 fi - ac_cv_use_log='wxUSE_LOG='$DEFAULT_wxUSE_LOG + wx_cv_use_log='wxUSE_LOG='$DEFAULT_wxUSE_LOG fi; - eval "$ac_cv_use_log" + eval "$wx_cv_use_log" if test "$no_cache" != 1; then - echo $ac_cv_use_log >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_log >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LOG" = yes; then @@ -5906,9 +5906,9 @@ if test "${enable_longlong+set}" = set; then enableval="$enable_longlong" if test "$enableval" = yes; then - ac_cv_use_longlong='wxUSE_LONGLONG=yes' + wx_cv_use_longlong='wxUSE_LONGLONG=yes' else - ac_cv_use_longlong='wxUSE_LONGLONG=no' + wx_cv_use_longlong='wxUSE_LONGLONG=no' fi else @@ -5920,13 +5920,13 @@ else no_cache=1 fi - ac_cv_use_longlong='wxUSE_LONGLONG='$DEFAULT_wxUSE_LONGLONG + wx_cv_use_longlong='wxUSE_LONGLONG='$DEFAULT_wxUSE_LONGLONG fi; - eval "$ac_cv_use_longlong" + eval "$wx_cv_use_longlong" if test "$no_cache" != 1; then - echo $ac_cv_use_longlong >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_longlong >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LONGLONG" = yes; then @@ -5947,9 +5947,9 @@ if test "${enable_mimetype+set}" = set; then enableval="$enable_mimetype" if test "$enableval" = yes; then - ac_cv_use_mimetype='wxUSE_MIMETYPE=yes' + wx_cv_use_mimetype='wxUSE_MIMETYPE=yes' else - ac_cv_use_mimetype='wxUSE_MIMETYPE=no' + wx_cv_use_mimetype='wxUSE_MIMETYPE=no' fi else @@ -5961,13 +5961,13 @@ else no_cache=1 fi - ac_cv_use_mimetype='wxUSE_MIMETYPE='$DEFAULT_wxUSE_MIMETYPE + wx_cv_use_mimetype='wxUSE_MIMETYPE='$DEFAULT_wxUSE_MIMETYPE fi; - eval "$ac_cv_use_mimetype" + eval "$wx_cv_use_mimetype" if test "$no_cache" != 1; then - echo $ac_cv_use_mimetype >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mimetype >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MIMETYPE" = yes; then @@ -5988,9 +5988,9 @@ if test "${enable_mslu+set}" = set; then enableval="$enable_mslu" if test "$enableval" = yes; then - ac_cv_use_mslu='wxUSE_UNICODE_MSLU=yes' + wx_cv_use_mslu='wxUSE_UNICODE_MSLU=yes' else - ac_cv_use_mslu='wxUSE_UNICODE_MSLU=no' + wx_cv_use_mslu='wxUSE_UNICODE_MSLU=no' fi else @@ -6002,13 +6002,13 @@ else no_cache=1 fi - ac_cv_use_mslu='wxUSE_UNICODE_MSLU='$DEFAULT_wxUSE_UNICODE_MSLU + wx_cv_use_mslu='wxUSE_UNICODE_MSLU='$DEFAULT_wxUSE_UNICODE_MSLU fi; - eval "$ac_cv_use_mslu" + eval "$wx_cv_use_mslu" if test "$no_cache" != 1; then - echo $ac_cv_use_mslu >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mslu >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_UNICODE_MSLU" = yes; then @@ -6029,9 +6029,9 @@ if test "${enable_snglinst+set}" = set; then enableval="$enable_snglinst" if test "$enableval" = yes; then - ac_cv_use_snglinst='wxUSE_SNGLINST_CHECKER=yes' + wx_cv_use_snglinst='wxUSE_SNGLINST_CHECKER=yes' else - ac_cv_use_snglinst='wxUSE_SNGLINST_CHECKER=no' + wx_cv_use_snglinst='wxUSE_SNGLINST_CHECKER=no' fi else @@ -6043,13 +6043,13 @@ else no_cache=1 fi - ac_cv_use_snglinst='wxUSE_SNGLINST_CHECKER='$DEFAULT_wxUSE_SNGLINST_CHECKER + wx_cv_use_snglinst='wxUSE_SNGLINST_CHECKER='$DEFAULT_wxUSE_SNGLINST_CHECKER fi; - eval "$ac_cv_use_snglinst" + eval "$wx_cv_use_snglinst" if test "$no_cache" != 1; then - echo $ac_cv_use_snglinst >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_snglinst >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SNGLINST_CHECKER" = yes; then @@ -6070,9 +6070,9 @@ 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' + wx_cv_use_std_iostreams='wxUSE_STD_IOSTREAM=yes' else - ac_cv_use_std_iostreams='wxUSE_STD_IOSTREAM=no' + wx_cv_use_std_iostreams='wxUSE_STD_IOSTREAM=no' fi else @@ -6084,13 +6084,13 @@ else no_cache=1 fi - ac_cv_use_std_iostreams='wxUSE_STD_IOSTREAM='$DEFAULT_wxUSE_STD_IOSTREAM + wx_cv_use_std_iostreams='wxUSE_STD_IOSTREAM='$DEFAULT_wxUSE_STD_IOSTREAM fi; - eval "$ac_cv_use_std_iostreams" + eval "$wx_cv_use_std_iostreams" if test "$no_cache" != 1; then - echo $ac_cv_use_std_iostreams >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_std_iostreams >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STD_IOSTREAM" = yes; then @@ -6111,9 +6111,9 @@ if test "${enable_std_string+set}" = set; then enableval="$enable_std_string" if test "$enableval" = yes; then - ac_cv_use_std_string='wxUSE_STD_STRING=yes' + wx_cv_use_std_string='wxUSE_STD_STRING=yes' else - ac_cv_use_std_string='wxUSE_STD_STRING=no' + wx_cv_use_std_string='wxUSE_STD_STRING=no' fi else @@ -6125,13 +6125,13 @@ else no_cache=1 fi - ac_cv_use_std_string='wxUSE_STD_STRING='$DEFAULT_wxUSE_STD_STRING + wx_cv_use_std_string='wxUSE_STD_STRING='$DEFAULT_wxUSE_STD_STRING fi; - eval "$ac_cv_use_std_string" + eval "$wx_cv_use_std_string" if test "$no_cache" != 1; then - echo $ac_cv_use_std_string >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_std_string >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STD_STRING" = yes; then @@ -6152,9 +6152,9 @@ if test "${enable_stdpaths+set}" = set; then enableval="$enable_stdpaths" if test "$enableval" = yes; then - ac_cv_use_stdpaths='wxUSE_STDPATHS=yes' + wx_cv_use_stdpaths='wxUSE_STDPATHS=yes' else - ac_cv_use_stdpaths='wxUSE_STDPATHS=no' + wx_cv_use_stdpaths='wxUSE_STDPATHS=no' fi else @@ -6166,13 +6166,13 @@ else no_cache=1 fi - ac_cv_use_stdpaths='wxUSE_STDPATHS='$DEFAULT_wxUSE_STDPATHS + wx_cv_use_stdpaths='wxUSE_STDPATHS='$DEFAULT_wxUSE_STDPATHS fi; - eval "$ac_cv_use_stdpaths" + eval "$wx_cv_use_stdpaths" if test "$no_cache" != 1; then - echo $ac_cv_use_stdpaths >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_stdpaths >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STDPATHS" = yes; then @@ -6193,9 +6193,9 @@ if test "${enable_stopwatch+set}" = set; then enableval="$enable_stopwatch" if test "$enableval" = yes; then - ac_cv_use_stopwatch='wxUSE_STOPWATCH=yes' + wx_cv_use_stopwatch='wxUSE_STOPWATCH=yes' else - ac_cv_use_stopwatch='wxUSE_STOPWATCH=no' + wx_cv_use_stopwatch='wxUSE_STOPWATCH=no' fi else @@ -6207,13 +6207,13 @@ else no_cache=1 fi - ac_cv_use_stopwatch='wxUSE_STOPWATCH='$DEFAULT_wxUSE_STOPWATCH + wx_cv_use_stopwatch='wxUSE_STOPWATCH='$DEFAULT_wxUSE_STOPWATCH fi; - eval "$ac_cv_use_stopwatch" + eval "$wx_cv_use_stopwatch" if test "$no_cache" != 1; then - echo $ac_cv_use_stopwatch >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_stopwatch >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STOPWATCH" = yes; then @@ -6234,9 +6234,9 @@ if test "${enable_streams+set}" = set; then enableval="$enable_streams" if test "$enableval" = yes; then - ac_cv_use_streams='wxUSE_STREAMS=yes' + wx_cv_use_streams='wxUSE_STREAMS=yes' else - ac_cv_use_streams='wxUSE_STREAMS=no' + wx_cv_use_streams='wxUSE_STREAMS=no' fi else @@ -6248,13 +6248,13 @@ else no_cache=1 fi - ac_cv_use_streams='wxUSE_STREAMS='$DEFAULT_wxUSE_STREAMS + wx_cv_use_streams='wxUSE_STREAMS='$DEFAULT_wxUSE_STREAMS fi; - eval "$ac_cv_use_streams" + eval "$wx_cv_use_streams" if test "$no_cache" != 1; then - echo $ac_cv_use_streams >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_streams >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STREAMS" = yes; then @@ -6275,9 +6275,9 @@ if test "${enable_system_options+set}" = set; then enableval="$enable_system_options" if test "$enableval" = yes; then - ac_cv_use_system_options='wxUSE_SYSTEM_OPTIONS=yes' + wx_cv_use_system_options='wxUSE_SYSTEM_OPTIONS=yes' else - ac_cv_use_system_options='wxUSE_SYSTEM_OPTIONS=no' + wx_cv_use_system_options='wxUSE_SYSTEM_OPTIONS=no' fi else @@ -6289,13 +6289,13 @@ else no_cache=1 fi - ac_cv_use_system_options='wxUSE_SYSTEM_OPTIONS='$DEFAULT_wxUSE_SYSTEM_OPTIONS + wx_cv_use_system_options='wxUSE_SYSTEM_OPTIONS='$DEFAULT_wxUSE_SYSTEM_OPTIONS fi; - eval "$ac_cv_use_system_options" + eval "$wx_cv_use_system_options" if test "$no_cache" != 1; then - echo $ac_cv_use_system_options >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_system_options >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SYSTEM_OPTIONS" = yes; then @@ -6316,9 +6316,9 @@ if test "${enable_tarstream+set}" = set; then enableval="$enable_tarstream" if test "$enableval" = yes; then - ac_cv_use_tarstream='wxUSE_TARSTREAM=yes' + wx_cv_use_tarstream='wxUSE_TARSTREAM=yes' else - ac_cv_use_tarstream='wxUSE_TARSTREAM=no' + wx_cv_use_tarstream='wxUSE_TARSTREAM=no' fi else @@ -6330,13 +6330,13 @@ else no_cache=1 fi - ac_cv_use_tarstream='wxUSE_TARSTREAM='$DEFAULT_wxUSE_TARSTREAM + wx_cv_use_tarstream='wxUSE_TARSTREAM='$DEFAULT_wxUSE_TARSTREAM fi; - eval "$ac_cv_use_tarstream" + eval "$wx_cv_use_tarstream" if test "$no_cache" != 1; then - echo $ac_cv_use_tarstream >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tarstream >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TARSTREAM" = yes; then @@ -6357,9 +6357,9 @@ if test "${enable_textbuf+set}" = set; then enableval="$enable_textbuf" if test "$enableval" = yes; then - ac_cv_use_textbuf='wxUSE_TEXTBUFFER=yes' + wx_cv_use_textbuf='wxUSE_TEXTBUFFER=yes' else - ac_cv_use_textbuf='wxUSE_TEXTBUFFER=no' + wx_cv_use_textbuf='wxUSE_TEXTBUFFER=no' fi else @@ -6371,13 +6371,13 @@ else no_cache=1 fi - ac_cv_use_textbuf='wxUSE_TEXTBUFFER='$DEFAULT_wxUSE_TEXTBUFFER + wx_cv_use_textbuf='wxUSE_TEXTBUFFER='$DEFAULT_wxUSE_TEXTBUFFER fi; - eval "$ac_cv_use_textbuf" + eval "$wx_cv_use_textbuf" if test "$no_cache" != 1; then - echo $ac_cv_use_textbuf >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_textbuf >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TEXTBUFFER" = yes; then @@ -6398,9 +6398,9 @@ if test "${enable_textfile+set}" = set; then enableval="$enable_textfile" if test "$enableval" = yes; then - ac_cv_use_textfile='wxUSE_TEXTFILE=yes' + wx_cv_use_textfile='wxUSE_TEXTFILE=yes' else - ac_cv_use_textfile='wxUSE_TEXTFILE=no' + wx_cv_use_textfile='wxUSE_TEXTFILE=no' fi else @@ -6412,13 +6412,13 @@ else no_cache=1 fi - ac_cv_use_textfile='wxUSE_TEXTFILE='$DEFAULT_wxUSE_TEXTFILE + wx_cv_use_textfile='wxUSE_TEXTFILE='$DEFAULT_wxUSE_TEXTFILE fi; - eval "$ac_cv_use_textfile" + eval "$wx_cv_use_textfile" if test "$no_cache" != 1; then - echo $ac_cv_use_textfile >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_textfile >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TEXTFILE" = yes; then @@ -6439,9 +6439,9 @@ if test "${enable_timer+set}" = set; then enableval="$enable_timer" if test "$enableval" = yes; then - ac_cv_use_timer='wxUSE_TIMER=yes' + wx_cv_use_timer='wxUSE_TIMER=yes' else - ac_cv_use_timer='wxUSE_TIMER=no' + wx_cv_use_timer='wxUSE_TIMER=no' fi else @@ -6453,13 +6453,13 @@ else no_cache=1 fi - ac_cv_use_timer='wxUSE_TIMER='$DEFAULT_wxUSE_TIMER + wx_cv_use_timer='wxUSE_TIMER='$DEFAULT_wxUSE_TIMER fi; - eval "$ac_cv_use_timer" + eval "$wx_cv_use_timer" if test "$no_cache" != 1; then - echo $ac_cv_use_timer >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_timer >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TIMER" = yes; then @@ -6480,9 +6480,9 @@ if test "${enable_unicode+set}" = set; then enableval="$enable_unicode" if test "$enableval" = yes; then - ac_cv_use_unicode='wxUSE_UNICODE=yes' + wx_cv_use_unicode='wxUSE_UNICODE=yes' else - ac_cv_use_unicode='wxUSE_UNICODE=no' + wx_cv_use_unicode='wxUSE_UNICODE=no' fi else @@ -6494,13 +6494,13 @@ else no_cache=1 fi - ac_cv_use_unicode='wxUSE_UNICODE='$DEFAULT_wxUSE_UNICODE + wx_cv_use_unicode='wxUSE_UNICODE='$DEFAULT_wxUSE_UNICODE fi; - eval "$ac_cv_use_unicode" + eval "$wx_cv_use_unicode" if test "$no_cache" != 1; then - echo $ac_cv_use_unicode >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_unicode >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_UNICODE" = yes; then @@ -6521,9 +6521,9 @@ if test "${enable_sound+set}" = set; then enableval="$enable_sound" if test "$enableval" = yes; then - ac_cv_use_sound='wxUSE_SOUND=yes' + wx_cv_use_sound='wxUSE_SOUND=yes' else - ac_cv_use_sound='wxUSE_SOUND=no' + wx_cv_use_sound='wxUSE_SOUND=no' fi else @@ -6535,13 +6535,13 @@ else no_cache=1 fi - ac_cv_use_sound='wxUSE_SOUND='$DEFAULT_wxUSE_SOUND + wx_cv_use_sound='wxUSE_SOUND='$DEFAULT_wxUSE_SOUND fi; - eval "$ac_cv_use_sound" + eval "$wx_cv_use_sound" if test "$no_cache" != 1; then - echo $ac_cv_use_sound >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_sound >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SOUND" = yes; then @@ -6562,9 +6562,9 @@ if test "${enable_mediactrl+set}" = set; then enableval="$enable_mediactrl" if test "$enableval" = yes; then - ac_cv_use_mediactrl='wxUSE_MEDIACTRL=yes' + wx_cv_use_mediactrl='wxUSE_MEDIACTRL=yes' else - ac_cv_use_mediactrl='wxUSE_MEDIACTRL=no' + wx_cv_use_mediactrl='wxUSE_MEDIACTRL=no' fi else @@ -6576,13 +6576,13 @@ else no_cache=1 fi - ac_cv_use_mediactrl='wxUSE_MEDIACTRL='$DEFAULT_wxUSE_MEDIACTRL + wx_cv_use_mediactrl='wxUSE_MEDIACTRL='$DEFAULT_wxUSE_MEDIACTRL fi; - eval "$ac_cv_use_mediactrl" + eval "$wx_cv_use_mediactrl" if test "$no_cache" != 1; then - echo $ac_cv_use_mediactrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mediactrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MEDIACTRL" = yes; then @@ -6603,9 +6603,9 @@ if test "${enable_gstreamer8+set}" = set; then enableval="$enable_gstreamer8" if test "$enableval" = yes; then - ac_cv_use_gstreamer8='wxUSE_GSTREAMER8=yes' + wx_cv_use_gstreamer8='wxUSE_GSTREAMER8=yes' else - ac_cv_use_gstreamer8='wxUSE_GSTREAMER8=no' + wx_cv_use_gstreamer8='wxUSE_GSTREAMER8=no' fi else @@ -6617,13 +6617,13 @@ else no_cache=1 fi - ac_cv_use_gstreamer8='wxUSE_GSTREAMER8='$DEFAULT_wxUSE_GSTREAMER8 + wx_cv_use_gstreamer8='wxUSE_GSTREAMER8='$DEFAULT_wxUSE_GSTREAMER8 fi; - eval "$ac_cv_use_gstreamer8" + eval "$wx_cv_use_gstreamer8" if test "$no_cache" != 1; then - echo $ac_cv_use_gstreamer8 >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gstreamer8 >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GSTREAMER8" = yes; then @@ -6644,9 +6644,9 @@ if test "${enable_printfposparam+set}" = set; then enableval="$enable_printfposparam" if test "$enableval" = yes; then - ac_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS=yes' + wx_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS=yes' else - ac_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS=no' + wx_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS=no' fi else @@ -6658,13 +6658,13 @@ else no_cache=1 fi - ac_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS='$DEFAULT_wxUSE_PRINTF_POS_PARAMS + wx_cv_use_printfposparam='wxUSE_PRINTF_POS_PARAMS='$DEFAULT_wxUSE_PRINTF_POS_PARAMS fi; - eval "$ac_cv_use_printfposparam" + eval "$wx_cv_use_printfposparam" if test "$no_cache" != 1; then - echo $ac_cv_use_printfposparam >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_printfposparam >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PRINTF_POS_PARAMS" = yes; then @@ -6685,9 +6685,9 @@ if test "${enable_zipstream+set}" = set; then enableval="$enable_zipstream" if test "$enableval" = yes; then - ac_cv_use_zipstream='wxUSE_ZIPSTREAM=yes' + wx_cv_use_zipstream='wxUSE_ZIPSTREAM=yes' else - ac_cv_use_zipstream='wxUSE_ZIPSTREAM=no' + wx_cv_use_zipstream='wxUSE_ZIPSTREAM=no' fi else @@ -6699,13 +6699,13 @@ else no_cache=1 fi - ac_cv_use_zipstream='wxUSE_ZIPSTREAM='$DEFAULT_wxUSE_ZIPSTREAM + wx_cv_use_zipstream='wxUSE_ZIPSTREAM='$DEFAULT_wxUSE_ZIPSTREAM fi; - eval "$ac_cv_use_zipstream" + eval "$wx_cv_use_zipstream" if test "$no_cache" != 1; then - echo $ac_cv_use_zipstream >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_zipstream >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ZIPSTREAM" = yes; then @@ -6727,9 +6727,9 @@ if test "${enable_url+set}" = set; then enableval="$enable_url" if test "$enableval" = yes; then - ac_cv_use_url='wxUSE_URL=yes' + wx_cv_use_url='wxUSE_URL=yes' else - ac_cv_use_url='wxUSE_URL=no' + wx_cv_use_url='wxUSE_URL=no' fi else @@ -6741,13 +6741,13 @@ else no_cache=1 fi - ac_cv_use_url='wxUSE_URL='$DEFAULT_wxUSE_URL + wx_cv_use_url='wxUSE_URL='$DEFAULT_wxUSE_URL fi; - eval "$ac_cv_use_url" + eval "$wx_cv_use_url" if test "$no_cache" != 1; then - echo $ac_cv_use_url >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_url >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_URL" = yes; then @@ -6768,9 +6768,9 @@ if test "${enable_variant+set}" = set; then enableval="$enable_variant" if test "$enableval" = yes; then - ac_cv_use_variant='wxUSE_VARIANT=yes' + wx_cv_use_variant='wxUSE_VARIANT=yes' else - ac_cv_use_variant='wxUSE_VARIANT=no' + wx_cv_use_variant='wxUSE_VARIANT=no' fi else @@ -6782,13 +6782,13 @@ else no_cache=1 fi - ac_cv_use_variant='wxUSE_VARIANT='$DEFAULT_wxUSE_VARIANT + wx_cv_use_variant='wxUSE_VARIANT='$DEFAULT_wxUSE_VARIANT fi; - eval "$ac_cv_use_variant" + eval "$wx_cv_use_variant" if test "$no_cache" != 1; then - echo $ac_cv_use_variant >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_variant >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_VARIANT" = yes; then @@ -6809,9 +6809,9 @@ if test "${enable_protocol+set}" = set; then enableval="$enable_protocol" if test "$enableval" = yes; then - ac_cv_use_protocol='wxUSE_PROTOCOL=yes' + wx_cv_use_protocol='wxUSE_PROTOCOL=yes' else - ac_cv_use_protocol='wxUSE_PROTOCOL=no' + wx_cv_use_protocol='wxUSE_PROTOCOL=no' fi else @@ -6823,13 +6823,13 @@ else no_cache=1 fi - ac_cv_use_protocol='wxUSE_PROTOCOL='$DEFAULT_wxUSE_PROTOCOL + wx_cv_use_protocol='wxUSE_PROTOCOL='$DEFAULT_wxUSE_PROTOCOL fi; - eval "$ac_cv_use_protocol" + eval "$wx_cv_use_protocol" if test "$no_cache" != 1; then - echo $ac_cv_use_protocol >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_protocol >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL" = yes; then @@ -6850,9 +6850,9 @@ if test "${enable_protocol_http+set}" = set; then enableval="$enable_protocol_http" if test "$enableval" = yes; then - ac_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP=yes' + wx_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP=yes' else - ac_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP=no' + wx_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP=no' fi else @@ -6864,13 +6864,13 @@ else no_cache=1 fi - ac_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP='$DEFAULT_wxUSE_PROTOCOL_HTTP + wx_cv_use_protocol_http='wxUSE_PROTOCOL_HTTP='$DEFAULT_wxUSE_PROTOCOL_HTTP fi; - eval "$ac_cv_use_protocol_http" + eval "$wx_cv_use_protocol_http" if test "$no_cache" != 1; then - echo $ac_cv_use_protocol_http >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_protocol_http >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_HTTP" = yes; then @@ -6891,9 +6891,9 @@ if test "${enable_protocol_ftp+set}" = set; then enableval="$enable_protocol_ftp" if test "$enableval" = yes; then - ac_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP=yes' + wx_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP=yes' else - ac_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP=no' + wx_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP=no' fi else @@ -6905,13 +6905,13 @@ else no_cache=1 fi - ac_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP='$DEFAULT_wxUSE_PROTOCOL_FTP + wx_cv_use_protocol_ftp='wxUSE_PROTOCOL_FTP='$DEFAULT_wxUSE_PROTOCOL_FTP fi; - eval "$ac_cv_use_protocol_ftp" + eval "$wx_cv_use_protocol_ftp" if test "$no_cache" != 1; then - echo $ac_cv_use_protocol_ftp >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_protocol_ftp >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_FTP" = yes; then @@ -6932,9 +6932,9 @@ if test "${enable_protocol_file+set}" = set; then enableval="$enable_protocol_file" if test "$enableval" = yes; then - ac_cv_use_protocol_file='wxUSE_PROTOCOL_FILE=yes' + wx_cv_use_protocol_file='wxUSE_PROTOCOL_FILE=yes' else - ac_cv_use_protocol_file='wxUSE_PROTOCOL_FILE=no' + wx_cv_use_protocol_file='wxUSE_PROTOCOL_FILE=no' fi else @@ -6946,13 +6946,13 @@ else no_cache=1 fi - ac_cv_use_protocol_file='wxUSE_PROTOCOL_FILE='$DEFAULT_wxUSE_PROTOCOL_FILE + wx_cv_use_protocol_file='wxUSE_PROTOCOL_FILE='$DEFAULT_wxUSE_PROTOCOL_FILE fi; - eval "$ac_cv_use_protocol_file" + eval "$wx_cv_use_protocol_file" if test "$no_cache" != 1; then - echo $ac_cv_use_protocol_file >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_protocol_file >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROTOCOL_FILE" = yes; then @@ -6976,9 +6976,9 @@ if test "${enable_threads+set}" = set; then enableval="$enable_threads" if test "$enableval" = yes; then - ac_cv_use_threads='wxUSE_THREADS=yes' + wx_cv_use_threads='wxUSE_THREADS=yes' else - ac_cv_use_threads='wxUSE_THREADS=no' + wx_cv_use_threads='wxUSE_THREADS=no' fi else @@ -6990,13 +6990,13 @@ else no_cache=1 fi - ac_cv_use_threads='wxUSE_THREADS='$DEFAULT_wxUSE_THREADS + wx_cv_use_threads='wxUSE_THREADS='$DEFAULT_wxUSE_THREADS fi; - eval "$ac_cv_use_threads" + eval "$wx_cv_use_threads" if test "$no_cache" != 1; then - echo $ac_cv_use_threads >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_threads >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_THREADS" = yes; then @@ -7021,9 +7021,9 @@ if test "${enable_docview+set}" = set; then enableval="$enable_docview" if test "$enableval" = yes; then - ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=yes' + wx_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=yes' else - ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=no' + wx_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE=no' fi else @@ -7035,13 +7035,13 @@ else no_cache=1 fi - ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE='$DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE + wx_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE='$DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE fi; - eval "$ac_cv_use_docview" + eval "$wx_cv_use_docview" if test "$no_cache" != 1; then - echo $ac_cv_use_docview >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_docview >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = yes; then @@ -7062,9 +7062,9 @@ if test "${enable_help+set}" = set; then enableval="$enable_help" if test "$enableval" = yes; then - ac_cv_use_help='wxUSE_HELP=yes' + wx_cv_use_help='wxUSE_HELP=yes' else - ac_cv_use_help='wxUSE_HELP=no' + wx_cv_use_help='wxUSE_HELP=no' fi else @@ -7076,13 +7076,13 @@ else no_cache=1 fi - ac_cv_use_help='wxUSE_HELP='$DEFAULT_wxUSE_HELP + wx_cv_use_help='wxUSE_HELP='$DEFAULT_wxUSE_HELP fi; - eval "$ac_cv_use_help" + eval "$wx_cv_use_help" if test "$no_cache" != 1; then - echo $ac_cv_use_help >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_help >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_HELP" = yes; then @@ -7103,9 +7103,9 @@ if test "${enable_mshtmlhelp+set}" = set; then enableval="$enable_mshtmlhelp" if test "$enableval" = yes; then - ac_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP=yes' + wx_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP=yes' else - ac_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP=no' + wx_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP=no' fi else @@ -7117,13 +7117,13 @@ else no_cache=1 fi - ac_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP='$DEFAULT_wxUSE_MS_HTML_HELP + wx_cv_use_mshtmlhelp='wxUSE_MS_HTML_HELP='$DEFAULT_wxUSE_MS_HTML_HELP fi; - eval "$ac_cv_use_mshtmlhelp" + eval "$wx_cv_use_mshtmlhelp" if test "$no_cache" != 1; then - echo $ac_cv_use_mshtmlhelp >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mshtmlhelp >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MS_HTML_HELP" = yes; then @@ -7144,9 +7144,9 @@ if test "${enable_html+set}" = set; then enableval="$enable_html" if test "$enableval" = yes; then - ac_cv_use_html='wxUSE_HTML=yes' + wx_cv_use_html='wxUSE_HTML=yes' else - ac_cv_use_html='wxUSE_HTML=no' + wx_cv_use_html='wxUSE_HTML=no' fi else @@ -7158,13 +7158,13 @@ else no_cache=1 fi - ac_cv_use_html='wxUSE_HTML='$DEFAULT_wxUSE_HTML + wx_cv_use_html='wxUSE_HTML='$DEFAULT_wxUSE_HTML fi; - eval "$ac_cv_use_html" + eval "$wx_cv_use_html" if test "$no_cache" != 1; then - echo $ac_cv_use_html >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_html >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_HTML" = yes; then @@ -7185,9 +7185,9 @@ if test "${enable_htmlhelp+set}" = set; then enableval="$enable_htmlhelp" if test "$enableval" = yes; then - ac_cv_use_htmlhelp='wxUSE_WXHTML_HELP=yes' + wx_cv_use_htmlhelp='wxUSE_WXHTML_HELP=yes' else - ac_cv_use_htmlhelp='wxUSE_WXHTML_HELP=no' + wx_cv_use_htmlhelp='wxUSE_WXHTML_HELP=no' fi else @@ -7199,13 +7199,13 @@ else no_cache=1 fi - ac_cv_use_htmlhelp='wxUSE_WXHTML_HELP='$DEFAULT_wxUSE_WXHTML_HELP + wx_cv_use_htmlhelp='wxUSE_WXHTML_HELP='$DEFAULT_wxUSE_WXHTML_HELP fi; - eval "$ac_cv_use_htmlhelp" + eval "$wx_cv_use_htmlhelp" if test "$no_cache" != 1; then - echo $ac_cv_use_htmlhelp >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_htmlhelp >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_WXHTML_HELP" = yes; then @@ -7226,9 +7226,9 @@ if test "${enable_xrc+set}" = set; then enableval="$enable_xrc" if test "$enableval" = yes; then - ac_cv_use_xrc='wxUSE_XRC=yes' + wx_cv_use_xrc='wxUSE_XRC=yes' else - ac_cv_use_xrc='wxUSE_XRC=no' + wx_cv_use_xrc='wxUSE_XRC=no' fi else @@ -7240,13 +7240,13 @@ else no_cache=1 fi - ac_cv_use_xrc='wxUSE_XRC='$DEFAULT_wxUSE_XRC + wx_cv_use_xrc='wxUSE_XRC='$DEFAULT_wxUSE_XRC fi; - eval "$ac_cv_use_xrc" + eval "$wx_cv_use_xrc" if test "$no_cache" != 1; then - echo $ac_cv_use_xrc >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_xrc >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_XRC" = yes; then @@ -7267,9 +7267,9 @@ if test "${enable_aui+set}" = set; then enableval="$enable_aui" if test "$enableval" = yes; then - ac_cv_use_aui='wxUSE_AUI=yes' + wx_cv_use_aui='wxUSE_AUI=yes' else - ac_cv_use_aui='wxUSE_AUI=no' + wx_cv_use_aui='wxUSE_AUI=no' fi else @@ -7281,13 +7281,13 @@ else no_cache=1 fi - ac_cv_use_aui='wxUSE_AUI='$DEFAULT_wxUSE_AUI + wx_cv_use_aui='wxUSE_AUI='$DEFAULT_wxUSE_AUI fi; - eval "$ac_cv_use_aui" + eval "$wx_cv_use_aui" if test "$no_cache" != 1; then - echo $ac_cv_use_aui >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_aui >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_AUI" = yes; then @@ -7308,9 +7308,9 @@ if test "${enable_constraints+set}" = set; then enableval="$enable_constraints" if test "$enableval" = yes; then - ac_cv_use_constraints='wxUSE_CONSTRAINTS=yes' + wx_cv_use_constraints='wxUSE_CONSTRAINTS=yes' else - ac_cv_use_constraints='wxUSE_CONSTRAINTS=no' + wx_cv_use_constraints='wxUSE_CONSTRAINTS=no' fi else @@ -7322,13 +7322,13 @@ else no_cache=1 fi - ac_cv_use_constraints='wxUSE_CONSTRAINTS='$DEFAULT_wxUSE_CONSTRAINTS + wx_cv_use_constraints='wxUSE_CONSTRAINTS='$DEFAULT_wxUSE_CONSTRAINTS fi; - eval "$ac_cv_use_constraints" + eval "$wx_cv_use_constraints" if test "$no_cache" != 1; then - echo $ac_cv_use_constraints >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_constraints >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CONSTRAINTS" = yes; then @@ -7349,9 +7349,9 @@ if test "${enable_printarch+set}" = set; then enableval="$enable_printarch" if test "$enableval" = yes; then - ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=yes' + wx_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=yes' else - ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=no' + wx_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE=no' fi else @@ -7363,13 +7363,13 @@ else no_cache=1 fi - ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE='$DEFAULT_wxUSE_PRINTING_ARCHITECTURE + wx_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE='$DEFAULT_wxUSE_PRINTING_ARCHITECTURE fi; - eval "$ac_cv_use_printarch" + eval "$wx_cv_use_printarch" if test "$no_cache" != 1; then - echo $ac_cv_use_printarch >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_printarch >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PRINTING_ARCHITECTURE" = yes; then @@ -7390,9 +7390,9 @@ if test "${enable_mdi+set}" = set; then enableval="$enable_mdi" if test "$enableval" = yes; then - ac_cv_use_mdi='wxUSE_MDI=yes' + wx_cv_use_mdi='wxUSE_MDI=yes' else - ac_cv_use_mdi='wxUSE_MDI=no' + wx_cv_use_mdi='wxUSE_MDI=no' fi else @@ -7404,13 +7404,13 @@ else no_cache=1 fi - ac_cv_use_mdi='wxUSE_MDI='$DEFAULT_wxUSE_MDI + wx_cv_use_mdi='wxUSE_MDI='$DEFAULT_wxUSE_MDI fi; - eval "$ac_cv_use_mdi" + eval "$wx_cv_use_mdi" if test "$no_cache" != 1; then - echo $ac_cv_use_mdi >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mdi >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MDI" = yes; then @@ -7431,9 +7431,9 @@ if test "${enable_mdidoc+set}" = set; then enableval="$enable_mdidoc" if test "$enableval" = yes; then - ac_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE=yes' + wx_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE=yes' else - ac_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE=no' + wx_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE=no' fi else @@ -7445,13 +7445,13 @@ else no_cache=1 fi - ac_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE='$DEFAULT_wxUSE_MDI_ARCHITECTURE + wx_cv_use_mdidoc='wxUSE_MDI_ARCHITECTURE='$DEFAULT_wxUSE_MDI_ARCHITECTURE fi; - eval "$ac_cv_use_mdidoc" + eval "$wx_cv_use_mdidoc" if test "$no_cache" != 1; then - echo $ac_cv_use_mdidoc >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mdidoc >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MDI_ARCHITECTURE" = yes; then @@ -7472,9 +7472,9 @@ if test "${enable_loggui+set}" = set; then enableval="$enable_loggui" if test "$enableval" = yes; then - ac_cv_use_loggui='wxUSE_LOGGUI=yes' + wx_cv_use_loggui='wxUSE_LOGGUI=yes' else - ac_cv_use_loggui='wxUSE_LOGGUI=no' + wx_cv_use_loggui='wxUSE_LOGGUI=no' fi else @@ -7486,13 +7486,13 @@ else no_cache=1 fi - ac_cv_use_loggui='wxUSE_LOGGUI='$DEFAULT_wxUSE_LOGGUI + wx_cv_use_loggui='wxUSE_LOGGUI='$DEFAULT_wxUSE_LOGGUI fi; - eval "$ac_cv_use_loggui" + eval "$wx_cv_use_loggui" if test "$no_cache" != 1; then - echo $ac_cv_use_loggui >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_loggui >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LOGGUI" = yes; then @@ -7513,9 +7513,9 @@ if test "${enable_logwin+set}" = set; then enableval="$enable_logwin" if test "$enableval" = yes; then - ac_cv_use_logwin='wxUSE_LOGWINDOW=yes' + wx_cv_use_logwin='wxUSE_LOGWINDOW=yes' else - ac_cv_use_logwin='wxUSE_LOGWINDOW=no' + wx_cv_use_logwin='wxUSE_LOGWINDOW=no' fi else @@ -7527,13 +7527,13 @@ else no_cache=1 fi - ac_cv_use_logwin='wxUSE_LOGWINDOW='$DEFAULT_wxUSE_LOGWINDOW + wx_cv_use_logwin='wxUSE_LOGWINDOW='$DEFAULT_wxUSE_LOGWINDOW fi; - eval "$ac_cv_use_logwin" + eval "$wx_cv_use_logwin" if test "$no_cache" != 1; then - echo $ac_cv_use_logwin >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_logwin >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LOGWINDOW" = yes; then @@ -7554,9 +7554,9 @@ if test "${enable_logdialog+set}" = set; then enableval="$enable_logdialog" if test "$enableval" = yes; then - ac_cv_use_logdialog='wxUSE_LOGDIALOG=yes' + wx_cv_use_logdialog='wxUSE_LOGDIALOG=yes' else - ac_cv_use_logdialog='wxUSE_LOGDIALOG=no' + wx_cv_use_logdialog='wxUSE_LOGDIALOG=no' fi else @@ -7568,13 +7568,13 @@ else no_cache=1 fi - ac_cv_use_logdialog='wxUSE_LOGDIALOG='$DEFAULT_wxUSE_LOGDIALOG + wx_cv_use_logdialog='wxUSE_LOGDIALOG='$DEFAULT_wxUSE_LOGDIALOG fi; - eval "$ac_cv_use_logdialog" + eval "$wx_cv_use_logdialog" if test "$no_cache" != 1; then - echo $ac_cv_use_logdialog >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_logdialog >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LOGDIALOG" = yes; then @@ -7595,9 +7595,9 @@ if test "${enable_webkit+set}" = set; then enableval="$enable_webkit" if test "$enableval" = yes; then - ac_cv_use_webkit='wxUSE_WEBKIT=yes' + wx_cv_use_webkit='wxUSE_WEBKIT=yes' else - ac_cv_use_webkit='wxUSE_WEBKIT=no' + wx_cv_use_webkit='wxUSE_WEBKIT=no' fi else @@ -7609,13 +7609,13 @@ else no_cache=1 fi - ac_cv_use_webkit='wxUSE_WEBKIT='$DEFAULT_wxUSE_WEBKIT + wx_cv_use_webkit='wxUSE_WEBKIT='$DEFAULT_wxUSE_WEBKIT fi; - eval "$ac_cv_use_webkit" + eval "$wx_cv_use_webkit" if test "$no_cache" != 1; then - echo $ac_cv_use_webkit >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_webkit >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_WEBKIT" = yes; then @@ -7636,9 +7636,9 @@ if test "${enable_richtext+set}" = set; then enableval="$enable_richtext" if test "$enableval" = yes; then - ac_cv_use_richtext='wxUSE_RICHTEXT=yes' + wx_cv_use_richtext='wxUSE_RICHTEXT=yes' else - ac_cv_use_richtext='wxUSE_RICHTEXT=no' + wx_cv_use_richtext='wxUSE_RICHTEXT=no' fi else @@ -7650,13 +7650,13 @@ else no_cache=1 fi - ac_cv_use_richtext='wxUSE_RICHTEXT='$DEFAULT_wxUSE_RICHTEXT + wx_cv_use_richtext='wxUSE_RICHTEXT='$DEFAULT_wxUSE_RICHTEXT fi; - eval "$ac_cv_use_richtext" + eval "$wx_cv_use_richtext" if test "$no_cache" != 1; then - echo $ac_cv_use_richtext >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_richtext >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_RICHTEXT" = yes; then @@ -7677,9 +7677,9 @@ if test "${enable_graphics_ctx+set}" = set; then enableval="$enable_graphics_ctx" if test "$enableval" = yes; then - ac_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT=yes' + wx_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT=yes' else - ac_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT=no' + wx_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT=no' fi else @@ -7691,13 +7691,13 @@ else no_cache=1 fi - ac_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT='$DEFAULT_wxUSE_GRAPHICS_CONTEXT + wx_cv_use_graphics_ctx='wxUSE_GRAPHICS_CONTEXT='$DEFAULT_wxUSE_GRAPHICS_CONTEXT fi; - eval "$ac_cv_use_graphics_ctx" + eval "$wx_cv_use_graphics_ctx" if test "$no_cache" != 1; then - echo $ac_cv_use_graphics_ctx >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_graphics_ctx >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GRAPHICS_CONTEXT" = yes; then @@ -7719,9 +7719,9 @@ if test "${enable_postscript+set}" = set; then enableval="$enable_postscript" if test "$enableval" = yes; then - ac_cv_use_postscript='wxUSE_POSTSCRIPT=yes' + wx_cv_use_postscript='wxUSE_POSTSCRIPT=yes' else - ac_cv_use_postscript='wxUSE_POSTSCRIPT=no' + wx_cv_use_postscript='wxUSE_POSTSCRIPT=no' fi else @@ -7733,13 +7733,13 @@ else no_cache=1 fi - ac_cv_use_postscript='wxUSE_POSTSCRIPT='$DEFAULT_wxUSE_POSTSCRIPT + wx_cv_use_postscript='wxUSE_POSTSCRIPT='$DEFAULT_wxUSE_POSTSCRIPT fi; - eval "$ac_cv_use_postscript" + eval "$wx_cv_use_postscript" if test "$no_cache" != 1; then - echo $ac_cv_use_postscript >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_postscript >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_POSTSCRIPT" = yes; then @@ -7763,9 +7763,9 @@ if test "${enable_prologio+set}" = set; then enableval="$enable_prologio" if test "$enableval" = yes; then - ac_cv_use_prologio='wxUSE_PROLOGIO=yes' + wx_cv_use_prologio='wxUSE_PROLOGIO=yes' else - ac_cv_use_prologio='wxUSE_PROLOGIO=no' + wx_cv_use_prologio='wxUSE_PROLOGIO=no' fi else @@ -7777,13 +7777,13 @@ else no_cache=1 fi - ac_cv_use_prologio='wxUSE_PROLOGIO='$DEFAULT_wxUSE_PROLOGIO + wx_cv_use_prologio='wxUSE_PROLOGIO='$DEFAULT_wxUSE_PROLOGIO fi; - eval "$ac_cv_use_prologio" + eval "$wx_cv_use_prologio" if test "$no_cache" != 1; then - echo $ac_cv_use_prologio >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_prologio >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROLOGIO" = yes; then @@ -7804,9 +7804,9 @@ if test "${enable_resources+set}" = set; then enableval="$enable_resources" if test "$enableval" = yes; then - ac_cv_use_resources='wxUSE_RESOURCES=yes' + wx_cv_use_resources='wxUSE_RESOURCES=yes' else - ac_cv_use_resources='wxUSE_RESOURCES=no' + wx_cv_use_resources='wxUSE_RESOURCES=no' fi else @@ -7818,13 +7818,13 @@ else no_cache=1 fi - ac_cv_use_resources='wxUSE_RESOURCES='$DEFAULT_wxUSE_RESOURCES + wx_cv_use_resources='wxUSE_RESOURCES='$DEFAULT_wxUSE_RESOURCES fi; - eval "$ac_cv_use_resources" + eval "$wx_cv_use_resources" if test "$no_cache" != 1; then - echo $ac_cv_use_resources >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_resources >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_RESOURCES" = yes; then @@ -7847,9 +7847,9 @@ if test "${enable_clipboard+set}" = set; then enableval="$enable_clipboard" if test "$enableval" = yes; then - ac_cv_use_clipboard='wxUSE_CLIPBOARD=yes' + wx_cv_use_clipboard='wxUSE_CLIPBOARD=yes' else - ac_cv_use_clipboard='wxUSE_CLIPBOARD=no' + wx_cv_use_clipboard='wxUSE_CLIPBOARD=no' fi else @@ -7861,13 +7861,13 @@ else no_cache=1 fi - ac_cv_use_clipboard='wxUSE_CLIPBOARD='$DEFAULT_wxUSE_CLIPBOARD + wx_cv_use_clipboard='wxUSE_CLIPBOARD='$DEFAULT_wxUSE_CLIPBOARD fi; - eval "$ac_cv_use_clipboard" + eval "$wx_cv_use_clipboard" if test "$no_cache" != 1; then - echo $ac_cv_use_clipboard >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_clipboard >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CLIPBOARD" = yes; then @@ -7888,9 +7888,9 @@ if test "${enable_dnd+set}" = set; then enableval="$enable_dnd" if test "$enableval" = yes; then - ac_cv_use_dnd='wxUSE_DRAG_AND_DROP=yes' + wx_cv_use_dnd='wxUSE_DRAG_AND_DROP=yes' else - ac_cv_use_dnd='wxUSE_DRAG_AND_DROP=no' + wx_cv_use_dnd='wxUSE_DRAG_AND_DROP=no' fi else @@ -7902,13 +7902,13 @@ else no_cache=1 fi - ac_cv_use_dnd='wxUSE_DRAG_AND_DROP='$DEFAULT_wxUSE_DRAG_AND_DROP + wx_cv_use_dnd='wxUSE_DRAG_AND_DROP='$DEFAULT_wxUSE_DRAG_AND_DROP fi; - eval "$ac_cv_use_dnd" + eval "$wx_cv_use_dnd" if test "$no_cache" != 1; then - echo $ac_cv_use_dnd >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dnd >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DRAG_AND_DROP" = yes; then @@ -7929,9 +7929,9 @@ if test "${enable_metafile+set}" = set; then enableval="$enable_metafile" if test "$enableval" = yes; then - ac_cv_use_metafile='wxUSE_METAFILE=yes' + wx_cv_use_metafile='wxUSE_METAFILE=yes' else - ac_cv_use_metafile='wxUSE_METAFILE=no' + wx_cv_use_metafile='wxUSE_METAFILE=no' fi else @@ -7943,13 +7943,13 @@ else no_cache=1 fi - ac_cv_use_metafile='wxUSE_METAFILE='$DEFAULT_wxUSE_METAFILE + wx_cv_use_metafile='wxUSE_METAFILE='$DEFAULT_wxUSE_METAFILE fi; - eval "$ac_cv_use_metafile" + eval "$wx_cv_use_metafile" if test "$no_cache" != 1; then - echo $ac_cv_use_metafile >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_metafile >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_METAFILE" = yes; then @@ -7973,9 +7973,9 @@ if test "${enable_controls+set}" = set; then enableval="$enable_controls" if test "$enableval" = yes; then - ac_cv_use_controls='wxUSE_CONTROLS=yes' + wx_cv_use_controls='wxUSE_CONTROLS=yes' else - ac_cv_use_controls='wxUSE_CONTROLS=no' + wx_cv_use_controls='wxUSE_CONTROLS=no' fi else @@ -7987,13 +7987,13 @@ else no_cache=1 fi - ac_cv_use_controls='wxUSE_CONTROLS='$DEFAULT_wxUSE_CONTROLS + wx_cv_use_controls='wxUSE_CONTROLS='$DEFAULT_wxUSE_CONTROLS fi; - eval "$ac_cv_use_controls" + eval "$wx_cv_use_controls" if test "$no_cache" != 1; then - echo $ac_cv_use_controls >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_controls >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CONTROLS" = yes; then @@ -8123,9 +8123,9 @@ if test "${enable_accel+set}" = set; then enableval="$enable_accel" if test "$enableval" = yes; then - ac_cv_use_accel='wxUSE_ACCEL=yes' + wx_cv_use_accel='wxUSE_ACCEL=yes' else - ac_cv_use_accel='wxUSE_ACCEL=no' + wx_cv_use_accel='wxUSE_ACCEL=no' fi else @@ -8137,13 +8137,13 @@ else no_cache=1 fi - ac_cv_use_accel='wxUSE_ACCEL='$DEFAULT_wxUSE_ACCEL + wx_cv_use_accel='wxUSE_ACCEL='$DEFAULT_wxUSE_ACCEL fi; - eval "$ac_cv_use_accel" + eval "$wx_cv_use_accel" if test "$no_cache" != 1; then - echo $ac_cv_use_accel >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_accel >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ACCEL" = yes; then @@ -8164,9 +8164,9 @@ if test "${enable_animatectrl+set}" = set; then enableval="$enable_animatectrl" if test "$enableval" = yes; then - ac_cv_use_animatectrl='wxUSE_ANIMATIONCTRL=yes' + wx_cv_use_animatectrl='wxUSE_ANIMATIONCTRL=yes' else - ac_cv_use_animatectrl='wxUSE_ANIMATIONCTRL=no' + wx_cv_use_animatectrl='wxUSE_ANIMATIONCTRL=no' fi else @@ -8178,13 +8178,13 @@ else no_cache=1 fi - ac_cv_use_animatectrl='wxUSE_ANIMATIONCTRL='$DEFAULT_wxUSE_ANIMATIONCTRL + wx_cv_use_animatectrl='wxUSE_ANIMATIONCTRL='$DEFAULT_wxUSE_ANIMATIONCTRL fi; - eval "$ac_cv_use_animatectrl" + eval "$wx_cv_use_animatectrl" if test "$no_cache" != 1; then - echo $ac_cv_use_animatectrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_animatectrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ANIMATIONCTRL" = yes; then @@ -8205,9 +8205,9 @@ if test "${enable_button+set}" = set; then enableval="$enable_button" if test "$enableval" = yes; then - ac_cv_use_button='wxUSE_BUTTON=yes' + wx_cv_use_button='wxUSE_BUTTON=yes' else - ac_cv_use_button='wxUSE_BUTTON=no' + wx_cv_use_button='wxUSE_BUTTON=no' fi else @@ -8219,13 +8219,13 @@ else no_cache=1 fi - ac_cv_use_button='wxUSE_BUTTON='$DEFAULT_wxUSE_BUTTON + wx_cv_use_button='wxUSE_BUTTON='$DEFAULT_wxUSE_BUTTON fi; - eval "$ac_cv_use_button" + eval "$wx_cv_use_button" if test "$no_cache" != 1; then - echo $ac_cv_use_button >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_button >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_BUTTON" = yes; then @@ -8246,9 +8246,9 @@ if test "${enable_bmpbutton+set}" = set; then enableval="$enable_bmpbutton" if test "$enableval" = yes; then - ac_cv_use_bmpbutton='wxUSE_BMPBUTTON=yes' + wx_cv_use_bmpbutton='wxUSE_BMPBUTTON=yes' else - ac_cv_use_bmpbutton='wxUSE_BMPBUTTON=no' + wx_cv_use_bmpbutton='wxUSE_BMPBUTTON=no' fi else @@ -8260,13 +8260,13 @@ else no_cache=1 fi - ac_cv_use_bmpbutton='wxUSE_BMPBUTTON='$DEFAULT_wxUSE_BMPBUTTON + wx_cv_use_bmpbutton='wxUSE_BMPBUTTON='$DEFAULT_wxUSE_BMPBUTTON fi; - eval "$ac_cv_use_bmpbutton" + eval "$wx_cv_use_bmpbutton" if test "$no_cache" != 1; then - echo $ac_cv_use_bmpbutton >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_bmpbutton >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_BMPBUTTON" = yes; then @@ -8287,9 +8287,9 @@ if test "${enable_bmpcombobox+set}" = set; then enableval="$enable_bmpcombobox" if test "$enableval" = yes; then - ac_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX=yes' + wx_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX=yes' else - ac_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX=no' + wx_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX=no' fi else @@ -8301,13 +8301,13 @@ else no_cache=1 fi - ac_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX='$DEFAULT_wxUSE_BITMAPCOMBOBOX + wx_cv_use_bmpcombobox='wxUSE_BITMAPCOMBOBOX='$DEFAULT_wxUSE_BITMAPCOMBOBOX fi; - eval "$ac_cv_use_bmpcombobox" + eval "$wx_cv_use_bmpcombobox" if test "$no_cache" != 1; then - echo $ac_cv_use_bmpcombobox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_bmpcombobox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_BITMAPCOMBOBOX" = yes; then @@ -8328,9 +8328,9 @@ if test "${enable_calendar+set}" = set; then enableval="$enable_calendar" if test "$enableval" = yes; then - ac_cv_use_calendar='wxUSE_CALCTRL=yes' + wx_cv_use_calendar='wxUSE_CALCTRL=yes' else - ac_cv_use_calendar='wxUSE_CALCTRL=no' + wx_cv_use_calendar='wxUSE_CALCTRL=no' fi else @@ -8342,13 +8342,13 @@ else no_cache=1 fi - ac_cv_use_calendar='wxUSE_CALCTRL='$DEFAULT_wxUSE_CALCTRL + wx_cv_use_calendar='wxUSE_CALCTRL='$DEFAULT_wxUSE_CALCTRL fi; - eval "$ac_cv_use_calendar" + eval "$wx_cv_use_calendar" if test "$no_cache" != 1; then - echo $ac_cv_use_calendar >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_calendar >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CALCTRL" = yes; then @@ -8369,9 +8369,9 @@ if test "${enable_caret+set}" = set; then enableval="$enable_caret" if test "$enableval" = yes; then - ac_cv_use_caret='wxUSE_CARET=yes' + wx_cv_use_caret='wxUSE_CARET=yes' else - ac_cv_use_caret='wxUSE_CARET=no' + wx_cv_use_caret='wxUSE_CARET=no' fi else @@ -8383,13 +8383,13 @@ else no_cache=1 fi - ac_cv_use_caret='wxUSE_CARET='$DEFAULT_wxUSE_CARET + wx_cv_use_caret='wxUSE_CARET='$DEFAULT_wxUSE_CARET fi; - eval "$ac_cv_use_caret" + eval "$wx_cv_use_caret" if test "$no_cache" != 1; then - echo $ac_cv_use_caret >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_caret >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CARET" = yes; then @@ -8410,9 +8410,9 @@ if test "${enable_checkbox+set}" = set; then enableval="$enable_checkbox" if test "$enableval" = yes; then - ac_cv_use_checkbox='wxUSE_CHECKBOX=yes' + wx_cv_use_checkbox='wxUSE_CHECKBOX=yes' else - ac_cv_use_checkbox='wxUSE_CHECKBOX=no' + wx_cv_use_checkbox='wxUSE_CHECKBOX=no' fi else @@ -8424,13 +8424,13 @@ else no_cache=1 fi - ac_cv_use_checkbox='wxUSE_CHECKBOX='$DEFAULT_wxUSE_CHECKBOX + wx_cv_use_checkbox='wxUSE_CHECKBOX='$DEFAULT_wxUSE_CHECKBOX fi; - eval "$ac_cv_use_checkbox" + eval "$wx_cv_use_checkbox" if test "$no_cache" != 1; then - echo $ac_cv_use_checkbox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_checkbox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CHECKBOX" = yes; then @@ -8451,9 +8451,9 @@ if test "${enable_checklst+set}" = set; then enableval="$enable_checklst" if test "$enableval" = yes; then - ac_cv_use_checklst='wxUSE_CHECKLST=yes' + wx_cv_use_checklst='wxUSE_CHECKLST=yes' else - ac_cv_use_checklst='wxUSE_CHECKLST=no' + wx_cv_use_checklst='wxUSE_CHECKLST=no' fi else @@ -8465,13 +8465,13 @@ else no_cache=1 fi - ac_cv_use_checklst='wxUSE_CHECKLST='$DEFAULT_wxUSE_CHECKLST + wx_cv_use_checklst='wxUSE_CHECKLST='$DEFAULT_wxUSE_CHECKLST fi; - eval "$ac_cv_use_checklst" + eval "$wx_cv_use_checklst" if test "$no_cache" != 1; then - echo $ac_cv_use_checklst >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_checklst >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CHECKLST" = yes; then @@ -8492,9 +8492,9 @@ if test "${enable_choice+set}" = set; then enableval="$enable_choice" if test "$enableval" = yes; then - ac_cv_use_choice='wxUSE_CHOICE=yes' + wx_cv_use_choice='wxUSE_CHOICE=yes' else - ac_cv_use_choice='wxUSE_CHOICE=no' + wx_cv_use_choice='wxUSE_CHOICE=no' fi else @@ -8506,13 +8506,13 @@ else no_cache=1 fi - ac_cv_use_choice='wxUSE_CHOICE='$DEFAULT_wxUSE_CHOICE + wx_cv_use_choice='wxUSE_CHOICE='$DEFAULT_wxUSE_CHOICE fi; - eval "$ac_cv_use_choice" + eval "$wx_cv_use_choice" if test "$no_cache" != 1; then - echo $ac_cv_use_choice >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_choice >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CHOICE" = yes; then @@ -8533,9 +8533,9 @@ if test "${enable_choicebook+set}" = set; then enableval="$enable_choicebook" if test "$enableval" = yes; then - ac_cv_use_choicebook='wxUSE_CHOICEBOOK=yes' + wx_cv_use_choicebook='wxUSE_CHOICEBOOK=yes' else - ac_cv_use_choicebook='wxUSE_CHOICEBOOK=no' + wx_cv_use_choicebook='wxUSE_CHOICEBOOK=no' fi else @@ -8547,13 +8547,13 @@ else no_cache=1 fi - ac_cv_use_choicebook='wxUSE_CHOICEBOOK='$DEFAULT_wxUSE_CHOICEBOOK + wx_cv_use_choicebook='wxUSE_CHOICEBOOK='$DEFAULT_wxUSE_CHOICEBOOK fi; - eval "$ac_cv_use_choicebook" + eval "$wx_cv_use_choicebook" if test "$no_cache" != 1; then - echo $ac_cv_use_choicebook >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_choicebook >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CHOICEBOOK" = yes; then @@ -8574,9 +8574,9 @@ if test "${enable_collpane+set}" = set; then enableval="$enable_collpane" if test "$enableval" = yes; then - ac_cv_use_collpane='wxUSE_COLLPANE=yes' + wx_cv_use_collpane='wxUSE_COLLPANE=yes' else - ac_cv_use_collpane='wxUSE_COLLPANE=no' + wx_cv_use_collpane='wxUSE_COLLPANE=no' fi else @@ -8588,13 +8588,13 @@ else no_cache=1 fi - ac_cv_use_collpane='wxUSE_COLLPANE='$DEFAULT_wxUSE_COLLPANE + wx_cv_use_collpane='wxUSE_COLLPANE='$DEFAULT_wxUSE_COLLPANE fi; - eval "$ac_cv_use_collpane" + eval "$wx_cv_use_collpane" if test "$no_cache" != 1; then - echo $ac_cv_use_collpane >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_collpane >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COLLPANE" = yes; then @@ -8615,9 +8615,9 @@ if test "${enable_colourpicker+set}" = set; then enableval="$enable_colourpicker" if test "$enableval" = yes; then - ac_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL=yes' + wx_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL=yes' else - ac_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL=no' + wx_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL=no' fi else @@ -8629,13 +8629,13 @@ else no_cache=1 fi - ac_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL='$DEFAULT_wxUSE_COLOURPICKERCTRL + wx_cv_use_colourpicker='wxUSE_COLOURPICKERCTRL='$DEFAULT_wxUSE_COLOURPICKERCTRL fi; - eval "$ac_cv_use_colourpicker" + eval "$wx_cv_use_colourpicker" if test "$no_cache" != 1; then - echo $ac_cv_use_colourpicker >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_colourpicker >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COLOURPICKERCTRL" = yes; then @@ -8656,9 +8656,9 @@ if test "${enable_combobox+set}" = set; then enableval="$enable_combobox" if test "$enableval" = yes; then - ac_cv_use_combobox='wxUSE_COMBOBOX=yes' + wx_cv_use_combobox='wxUSE_COMBOBOX=yes' else - ac_cv_use_combobox='wxUSE_COMBOBOX=no' + wx_cv_use_combobox='wxUSE_COMBOBOX=no' fi else @@ -8670,13 +8670,13 @@ else no_cache=1 fi - ac_cv_use_combobox='wxUSE_COMBOBOX='$DEFAULT_wxUSE_COMBOBOX + wx_cv_use_combobox='wxUSE_COMBOBOX='$DEFAULT_wxUSE_COMBOBOX fi; - eval "$ac_cv_use_combobox" + eval "$wx_cv_use_combobox" if test "$no_cache" != 1; then - echo $ac_cv_use_combobox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_combobox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COMBOBOX" = yes; then @@ -8697,9 +8697,9 @@ if test "${enable_comboctrl+set}" = set; then enableval="$enable_comboctrl" if test "$enableval" = yes; then - ac_cv_use_comboctrl='wxUSE_COMBOCTRL=yes' + wx_cv_use_comboctrl='wxUSE_COMBOCTRL=yes' else - ac_cv_use_comboctrl='wxUSE_COMBOCTRL=no' + wx_cv_use_comboctrl='wxUSE_COMBOCTRL=no' fi else @@ -8711,13 +8711,13 @@ else no_cache=1 fi - ac_cv_use_comboctrl='wxUSE_COMBOCTRL='$DEFAULT_wxUSE_COMBOCTRL + wx_cv_use_comboctrl='wxUSE_COMBOCTRL='$DEFAULT_wxUSE_COMBOCTRL fi; - eval "$ac_cv_use_comboctrl" + eval "$wx_cv_use_comboctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_comboctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_comboctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COMBOCTRL" = yes; then @@ -8738,9 +8738,9 @@ if test "${enable_datepick+set}" = set; then enableval="$enable_datepick" if test "$enableval" = yes; then - ac_cv_use_datepick='wxUSE_DATEPICKCTRL=yes' + wx_cv_use_datepick='wxUSE_DATEPICKCTRL=yes' else - ac_cv_use_datepick='wxUSE_DATEPICKCTRL=no' + wx_cv_use_datepick='wxUSE_DATEPICKCTRL=no' fi else @@ -8752,13 +8752,13 @@ else no_cache=1 fi - ac_cv_use_datepick='wxUSE_DATEPICKCTRL='$DEFAULT_wxUSE_DATEPICKCTRL + wx_cv_use_datepick='wxUSE_DATEPICKCTRL='$DEFAULT_wxUSE_DATEPICKCTRL fi; - eval "$ac_cv_use_datepick" + eval "$wx_cv_use_datepick" if test "$no_cache" != 1; then - echo $ac_cv_use_datepick >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_datepick >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DATEPICKCTRL" = yes; then @@ -8779,9 +8779,9 @@ if test "${enable_dirpicker+set}" = set; then enableval="$enable_dirpicker" if test "$enableval" = yes; then - ac_cv_use_dirpicker='wxUSE_DIRPICKERCTRL=yes' + wx_cv_use_dirpicker='wxUSE_DIRPICKERCTRL=yes' else - ac_cv_use_dirpicker='wxUSE_DIRPICKERCTRL=no' + wx_cv_use_dirpicker='wxUSE_DIRPICKERCTRL=no' fi else @@ -8793,13 +8793,13 @@ else no_cache=1 fi - ac_cv_use_dirpicker='wxUSE_DIRPICKERCTRL='$DEFAULT_wxUSE_DIRPICKERCTRL + wx_cv_use_dirpicker='wxUSE_DIRPICKERCTRL='$DEFAULT_wxUSE_DIRPICKERCTRL fi; - eval "$ac_cv_use_dirpicker" + eval "$wx_cv_use_dirpicker" if test "$no_cache" != 1; then - echo $ac_cv_use_dirpicker >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dirpicker >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DIRPICKERCTRL" = yes; then @@ -8820,9 +8820,9 @@ if test "${enable_display+set}" = set; then enableval="$enable_display" if test "$enableval" = yes; then - ac_cv_use_display='wxUSE_DISPLAY=yes' + wx_cv_use_display='wxUSE_DISPLAY=yes' else - ac_cv_use_display='wxUSE_DISPLAY=no' + wx_cv_use_display='wxUSE_DISPLAY=no' fi else @@ -8834,13 +8834,13 @@ else no_cache=1 fi - ac_cv_use_display='wxUSE_DISPLAY='$DEFAULT_wxUSE_DISPLAY + wx_cv_use_display='wxUSE_DISPLAY='$DEFAULT_wxUSE_DISPLAY fi; - eval "$ac_cv_use_display" + eval "$wx_cv_use_display" if test "$no_cache" != 1; then - echo $ac_cv_use_display >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_display >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DISPLAY" = yes; then @@ -8861,9 +8861,9 @@ if test "${enable_detect_sm+set}" = set; then enableval="$enable_detect_sm" if test "$enableval" = yes; then - ac_cv_use_detect_sm='wxUSE_DETECT_SM=yes' + wx_cv_use_detect_sm='wxUSE_DETECT_SM=yes' else - ac_cv_use_detect_sm='wxUSE_DETECT_SM=no' + wx_cv_use_detect_sm='wxUSE_DETECT_SM=no' fi else @@ -8875,13 +8875,13 @@ else no_cache=1 fi - ac_cv_use_detect_sm='wxUSE_DETECT_SM='$DEFAULT_wxUSE_DETECT_SM + wx_cv_use_detect_sm='wxUSE_DETECT_SM='$DEFAULT_wxUSE_DETECT_SM fi; - eval "$ac_cv_use_detect_sm" + eval "$wx_cv_use_detect_sm" if test "$no_cache" != 1; then - echo $ac_cv_use_detect_sm >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_detect_sm >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DETECT_SM" = yes; then @@ -8902,9 +8902,9 @@ if test "${enable_filepicker+set}" = set; then enableval="$enable_filepicker" if test "$enableval" = yes; then - ac_cv_use_filepicker='wxUSE_FILEPICKERCTRL=yes' + wx_cv_use_filepicker='wxUSE_FILEPICKERCTRL=yes' else - ac_cv_use_filepicker='wxUSE_FILEPICKERCTRL=no' + wx_cv_use_filepicker='wxUSE_FILEPICKERCTRL=no' fi else @@ -8916,13 +8916,13 @@ else no_cache=1 fi - ac_cv_use_filepicker='wxUSE_FILEPICKERCTRL='$DEFAULT_wxUSE_FILEPICKERCTRL + wx_cv_use_filepicker='wxUSE_FILEPICKERCTRL='$DEFAULT_wxUSE_FILEPICKERCTRL fi; - eval "$ac_cv_use_filepicker" + eval "$wx_cv_use_filepicker" if test "$no_cache" != 1; then - echo $ac_cv_use_filepicker >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_filepicker >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FILEPICKERCTRL" = yes; then @@ -8943,9 +8943,9 @@ if test "${enable_fontpicker+set}" = set; then enableval="$enable_fontpicker" if test "$enableval" = yes; then - ac_cv_use_fontpicker='wxUSE_FONTPICKERCTRL=yes' + wx_cv_use_fontpicker='wxUSE_FONTPICKERCTRL=yes' else - ac_cv_use_fontpicker='wxUSE_FONTPICKERCTRL=no' + wx_cv_use_fontpicker='wxUSE_FONTPICKERCTRL=no' fi else @@ -8957,13 +8957,13 @@ else no_cache=1 fi - ac_cv_use_fontpicker='wxUSE_FONTPICKERCTRL='$DEFAULT_wxUSE_FONTPICKERCTRL + wx_cv_use_fontpicker='wxUSE_FONTPICKERCTRL='$DEFAULT_wxUSE_FONTPICKERCTRL fi; - eval "$ac_cv_use_fontpicker" + eval "$wx_cv_use_fontpicker" if test "$no_cache" != 1; then - echo $ac_cv_use_fontpicker >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fontpicker >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FONTPICKERCTRL" = yes; then @@ -8984,9 +8984,9 @@ if test "${enable_gauge+set}" = set; then enableval="$enable_gauge" if test "$enableval" = yes; then - ac_cv_use_gauge='wxUSE_GAUGE=yes' + wx_cv_use_gauge='wxUSE_GAUGE=yes' else - ac_cv_use_gauge='wxUSE_GAUGE=no' + wx_cv_use_gauge='wxUSE_GAUGE=no' fi else @@ -8998,13 +8998,13 @@ else no_cache=1 fi - ac_cv_use_gauge='wxUSE_GAUGE='$DEFAULT_wxUSE_GAUGE + wx_cv_use_gauge='wxUSE_GAUGE='$DEFAULT_wxUSE_GAUGE fi; - eval "$ac_cv_use_gauge" + eval "$wx_cv_use_gauge" if test "$no_cache" != 1; then - echo $ac_cv_use_gauge >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gauge >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GAUGE" = yes; then @@ -9025,9 +9025,9 @@ if test "${enable_grid+set}" = set; then enableval="$enable_grid" if test "$enableval" = yes; then - ac_cv_use_grid='wxUSE_GRID=yes' + wx_cv_use_grid='wxUSE_GRID=yes' else - ac_cv_use_grid='wxUSE_GRID=no' + wx_cv_use_grid='wxUSE_GRID=no' fi else @@ -9039,13 +9039,13 @@ else no_cache=1 fi - ac_cv_use_grid='wxUSE_GRID='$DEFAULT_wxUSE_GRID + wx_cv_use_grid='wxUSE_GRID='$DEFAULT_wxUSE_GRID fi; - eval "$ac_cv_use_grid" + eval "$wx_cv_use_grid" if test "$no_cache" != 1; then - echo $ac_cv_use_grid >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_grid >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GRID" = yes; then @@ -9066,9 +9066,9 @@ if test "${enable_dataviewctrl+set}" = set; then enableval="$enable_dataviewctrl" if test "$enableval" = yes; then - ac_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL=yes' + wx_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL=yes' else - ac_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL=no' + wx_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL=no' fi else @@ -9080,13 +9080,13 @@ else no_cache=1 fi - ac_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL='$DEFAULT_wxUSE_DATAVIEWCTRL + wx_cv_use_dataviewctrl='wxUSE_DATAVIEWCTRL='$DEFAULT_wxUSE_DATAVIEWCTRL fi; - eval "$ac_cv_use_dataviewctrl" + eval "$wx_cv_use_dataviewctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_dataviewctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dataviewctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DATAVIEWCTRL" = yes; then @@ -9107,9 +9107,9 @@ if test "${enable_hyperlink+set}" = set; then enableval="$enable_hyperlink" if test "$enableval" = yes; then - ac_cv_use_hyperlink='wxUSE_HYPERLINKCTRL=yes' + wx_cv_use_hyperlink='wxUSE_HYPERLINKCTRL=yes' else - ac_cv_use_hyperlink='wxUSE_HYPERLINKCTRL=no' + wx_cv_use_hyperlink='wxUSE_HYPERLINKCTRL=no' fi else @@ -9121,13 +9121,13 @@ else no_cache=1 fi - ac_cv_use_hyperlink='wxUSE_HYPERLINKCTRL='$DEFAULT_wxUSE_HYPERLINKCTRL + wx_cv_use_hyperlink='wxUSE_HYPERLINKCTRL='$DEFAULT_wxUSE_HYPERLINKCTRL fi; - eval "$ac_cv_use_hyperlink" + eval "$wx_cv_use_hyperlink" if test "$no_cache" != 1; then - echo $ac_cv_use_hyperlink >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_hyperlink >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_HYPERLINKCTRL" = yes; then @@ -9148,9 +9148,9 @@ if test "${enable_imaglist+set}" = set; then enableval="$enable_imaglist" if test "$enableval" = yes; then - ac_cv_use_imaglist='wxUSE_IMAGLIST=yes' + wx_cv_use_imaglist='wxUSE_IMAGLIST=yes' else - ac_cv_use_imaglist='wxUSE_IMAGLIST=no' + wx_cv_use_imaglist='wxUSE_IMAGLIST=no' fi else @@ -9162,13 +9162,13 @@ else no_cache=1 fi - ac_cv_use_imaglist='wxUSE_IMAGLIST='$DEFAULT_wxUSE_IMAGLIST + wx_cv_use_imaglist='wxUSE_IMAGLIST='$DEFAULT_wxUSE_IMAGLIST fi; - eval "$ac_cv_use_imaglist" + eval "$wx_cv_use_imaglist" if test "$no_cache" != 1; then - echo $ac_cv_use_imaglist >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_imaglist >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_IMAGLIST" = yes; then @@ -9189,9 +9189,9 @@ if test "${enable_listbook+set}" = set; then enableval="$enable_listbook" if test "$enableval" = yes; then - ac_cv_use_listbook='wxUSE_LISTBOOK=yes' + wx_cv_use_listbook='wxUSE_LISTBOOK=yes' else - ac_cv_use_listbook='wxUSE_LISTBOOK=no' + wx_cv_use_listbook='wxUSE_LISTBOOK=no' fi else @@ -9203,13 +9203,13 @@ else no_cache=1 fi - ac_cv_use_listbook='wxUSE_LISTBOOK='$DEFAULT_wxUSE_LISTBOOK + wx_cv_use_listbook='wxUSE_LISTBOOK='$DEFAULT_wxUSE_LISTBOOK fi; - eval "$ac_cv_use_listbook" + eval "$wx_cv_use_listbook" if test "$no_cache" != 1; then - echo $ac_cv_use_listbook >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_listbook >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LISTBOOK" = yes; then @@ -9230,9 +9230,9 @@ if test "${enable_listbox+set}" = set; then enableval="$enable_listbox" if test "$enableval" = yes; then - ac_cv_use_listbox='wxUSE_LISTBOX=yes' + wx_cv_use_listbox='wxUSE_LISTBOX=yes' else - ac_cv_use_listbox='wxUSE_LISTBOX=no' + wx_cv_use_listbox='wxUSE_LISTBOX=no' fi else @@ -9244,13 +9244,13 @@ else no_cache=1 fi - ac_cv_use_listbox='wxUSE_LISTBOX='$DEFAULT_wxUSE_LISTBOX + wx_cv_use_listbox='wxUSE_LISTBOX='$DEFAULT_wxUSE_LISTBOX fi; - eval "$ac_cv_use_listbox" + eval "$wx_cv_use_listbox" if test "$no_cache" != 1; then - echo $ac_cv_use_listbox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_listbox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LISTBOX" = yes; then @@ -9271,9 +9271,9 @@ if test "${enable_listctrl+set}" = set; then enableval="$enable_listctrl" if test "$enableval" = yes; then - ac_cv_use_listctrl='wxUSE_LISTCTRL=yes' + wx_cv_use_listctrl='wxUSE_LISTCTRL=yes' else - ac_cv_use_listctrl='wxUSE_LISTCTRL=no' + wx_cv_use_listctrl='wxUSE_LISTCTRL=no' fi else @@ -9285,13 +9285,13 @@ else no_cache=1 fi - ac_cv_use_listctrl='wxUSE_LISTCTRL='$DEFAULT_wxUSE_LISTCTRL + wx_cv_use_listctrl='wxUSE_LISTCTRL='$DEFAULT_wxUSE_LISTCTRL fi; - eval "$ac_cv_use_listctrl" + eval "$wx_cv_use_listctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_listctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_listctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_LISTCTRL" = yes; then @@ -9312,9 +9312,9 @@ if test "${enable_notebook+set}" = set; then enableval="$enable_notebook" if test "$enableval" = yes; then - ac_cv_use_notebook='wxUSE_NOTEBOOK=yes' + wx_cv_use_notebook='wxUSE_NOTEBOOK=yes' else - ac_cv_use_notebook='wxUSE_NOTEBOOK=no' + wx_cv_use_notebook='wxUSE_NOTEBOOK=no' fi else @@ -9326,13 +9326,13 @@ else no_cache=1 fi - ac_cv_use_notebook='wxUSE_NOTEBOOK='$DEFAULT_wxUSE_NOTEBOOK + wx_cv_use_notebook='wxUSE_NOTEBOOK='$DEFAULT_wxUSE_NOTEBOOK fi; - eval "$ac_cv_use_notebook" + eval "$wx_cv_use_notebook" if test "$no_cache" != 1; then - echo $ac_cv_use_notebook >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_notebook >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NOTEBOOK" = yes; then @@ -9353,9 +9353,9 @@ if test "${enable_odcombobox+set}" = set; then enableval="$enable_odcombobox" if test "$enableval" = yes; then - ac_cv_use_odcombobox='wxUSE_ODCOMBOBOX=yes' + wx_cv_use_odcombobox='wxUSE_ODCOMBOBOX=yes' else - ac_cv_use_odcombobox='wxUSE_ODCOMBOBOX=no' + wx_cv_use_odcombobox='wxUSE_ODCOMBOBOX=no' fi else @@ -9367,13 +9367,13 @@ else no_cache=1 fi - ac_cv_use_odcombobox='wxUSE_ODCOMBOBOX='$DEFAULT_wxUSE_ODCOMBOBOX + wx_cv_use_odcombobox='wxUSE_ODCOMBOBOX='$DEFAULT_wxUSE_ODCOMBOBOX fi; - eval "$ac_cv_use_odcombobox" + eval "$wx_cv_use_odcombobox" if test "$no_cache" != 1; then - echo $ac_cv_use_odcombobox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_odcombobox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ODCOMBOBOX" = yes; then @@ -9394,9 +9394,9 @@ if test "${enable_radiobox+set}" = set; then enableval="$enable_radiobox" if test "$enableval" = yes; then - ac_cv_use_radiobox='wxUSE_RADIOBOX=yes' + wx_cv_use_radiobox='wxUSE_RADIOBOX=yes' else - ac_cv_use_radiobox='wxUSE_RADIOBOX=no' + wx_cv_use_radiobox='wxUSE_RADIOBOX=no' fi else @@ -9408,13 +9408,13 @@ else no_cache=1 fi - ac_cv_use_radiobox='wxUSE_RADIOBOX='$DEFAULT_wxUSE_RADIOBOX + wx_cv_use_radiobox='wxUSE_RADIOBOX='$DEFAULT_wxUSE_RADIOBOX fi; - eval "$ac_cv_use_radiobox" + eval "$wx_cv_use_radiobox" if test "$no_cache" != 1; then - echo $ac_cv_use_radiobox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_radiobox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_RADIOBOX" = yes; then @@ -9435,9 +9435,9 @@ if test "${enable_radiobtn+set}" = set; then enableval="$enable_radiobtn" if test "$enableval" = yes; then - ac_cv_use_radiobtn='wxUSE_RADIOBTN=yes' + wx_cv_use_radiobtn='wxUSE_RADIOBTN=yes' else - ac_cv_use_radiobtn='wxUSE_RADIOBTN=no' + wx_cv_use_radiobtn='wxUSE_RADIOBTN=no' fi else @@ -9449,13 +9449,13 @@ else no_cache=1 fi - ac_cv_use_radiobtn='wxUSE_RADIOBTN='$DEFAULT_wxUSE_RADIOBTN + wx_cv_use_radiobtn='wxUSE_RADIOBTN='$DEFAULT_wxUSE_RADIOBTN fi; - eval "$ac_cv_use_radiobtn" + eval "$wx_cv_use_radiobtn" if test "$no_cache" != 1; then - echo $ac_cv_use_radiobtn >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_radiobtn >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_RADIOBTN" = yes; then @@ -9476,9 +9476,9 @@ if test "${enable_sash+set}" = set; then enableval="$enable_sash" if test "$enableval" = yes; then - ac_cv_use_sash='wxUSE_SASH=yes' + wx_cv_use_sash='wxUSE_SASH=yes' else - ac_cv_use_sash='wxUSE_SASH=no' + wx_cv_use_sash='wxUSE_SASH=no' fi else @@ -9490,13 +9490,13 @@ else no_cache=1 fi - ac_cv_use_sash='wxUSE_SASH='$DEFAULT_wxUSE_SASH + wx_cv_use_sash='wxUSE_SASH='$DEFAULT_wxUSE_SASH fi; - eval "$ac_cv_use_sash" + eval "$wx_cv_use_sash" if test "$no_cache" != 1; then - echo $ac_cv_use_sash >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_sash >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SASH" = yes; then @@ -9517,9 +9517,9 @@ if test "${enable_scrollbar+set}" = set; then enableval="$enable_scrollbar" if test "$enableval" = yes; then - ac_cv_use_scrollbar='wxUSE_SCROLLBAR=yes' + wx_cv_use_scrollbar='wxUSE_SCROLLBAR=yes' else - ac_cv_use_scrollbar='wxUSE_SCROLLBAR=no' + wx_cv_use_scrollbar='wxUSE_SCROLLBAR=no' fi else @@ -9531,13 +9531,13 @@ else no_cache=1 fi - ac_cv_use_scrollbar='wxUSE_SCROLLBAR='$DEFAULT_wxUSE_SCROLLBAR + wx_cv_use_scrollbar='wxUSE_SCROLLBAR='$DEFAULT_wxUSE_SCROLLBAR fi; - eval "$ac_cv_use_scrollbar" + eval "$wx_cv_use_scrollbar" if test "$no_cache" != 1; then - echo $ac_cv_use_scrollbar >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_scrollbar >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SCROLLBAR" = yes; then @@ -9558,9 +9558,9 @@ if test "${enable_searchctrl+set}" = set; then enableval="$enable_searchctrl" if test "$enableval" = yes; then - ac_cv_use_searchctrl='wxUSE_SEARCHCTRL=yes' + wx_cv_use_searchctrl='wxUSE_SEARCHCTRL=yes' else - ac_cv_use_searchctrl='wxUSE_SEARCHCTRL=no' + wx_cv_use_searchctrl='wxUSE_SEARCHCTRL=no' fi else @@ -9572,13 +9572,13 @@ else no_cache=1 fi - ac_cv_use_searchctrl='wxUSE_SEARCHCTRL='$DEFAULT_wxUSE_SEARCHCTRL + wx_cv_use_searchctrl='wxUSE_SEARCHCTRL='$DEFAULT_wxUSE_SEARCHCTRL fi; - eval "$ac_cv_use_searchctrl" + eval "$wx_cv_use_searchctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_searchctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_searchctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SEARCHCTRL" = yes; then @@ -9599,9 +9599,9 @@ if test "${enable_slider+set}" = set; then enableval="$enable_slider" if test "$enableval" = yes; then - ac_cv_use_slider='wxUSE_SLIDER=yes' + wx_cv_use_slider='wxUSE_SLIDER=yes' else - ac_cv_use_slider='wxUSE_SLIDER=no' + wx_cv_use_slider='wxUSE_SLIDER=no' fi else @@ -9613,13 +9613,13 @@ else no_cache=1 fi - ac_cv_use_slider='wxUSE_SLIDER='$DEFAULT_wxUSE_SLIDER + wx_cv_use_slider='wxUSE_SLIDER='$DEFAULT_wxUSE_SLIDER fi; - eval "$ac_cv_use_slider" + eval "$wx_cv_use_slider" if test "$no_cache" != 1; then - echo $ac_cv_use_slider >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_slider >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SLIDER" = yes; then @@ -9640,9 +9640,9 @@ if test "${enable_spinbtn+set}" = set; then enableval="$enable_spinbtn" if test "$enableval" = yes; then - ac_cv_use_spinbtn='wxUSE_SPINBTN=yes' + wx_cv_use_spinbtn='wxUSE_SPINBTN=yes' else - ac_cv_use_spinbtn='wxUSE_SPINBTN=no' + wx_cv_use_spinbtn='wxUSE_SPINBTN=no' fi else @@ -9654,13 +9654,13 @@ else no_cache=1 fi - ac_cv_use_spinbtn='wxUSE_SPINBTN='$DEFAULT_wxUSE_SPINBTN + wx_cv_use_spinbtn='wxUSE_SPINBTN='$DEFAULT_wxUSE_SPINBTN fi; - eval "$ac_cv_use_spinbtn" + eval "$wx_cv_use_spinbtn" if test "$no_cache" != 1; then - echo $ac_cv_use_spinbtn >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_spinbtn >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SPINBTN" = yes; then @@ -9681,9 +9681,9 @@ if test "${enable_spinctrl+set}" = set; then enableval="$enable_spinctrl" if test "$enableval" = yes; then - ac_cv_use_spinctrl='wxUSE_SPINCTRL=yes' + wx_cv_use_spinctrl='wxUSE_SPINCTRL=yes' else - ac_cv_use_spinctrl='wxUSE_SPINCTRL=no' + wx_cv_use_spinctrl='wxUSE_SPINCTRL=no' fi else @@ -9695,13 +9695,13 @@ else no_cache=1 fi - ac_cv_use_spinctrl='wxUSE_SPINCTRL='$DEFAULT_wxUSE_SPINCTRL + wx_cv_use_spinctrl='wxUSE_SPINCTRL='$DEFAULT_wxUSE_SPINCTRL fi; - eval "$ac_cv_use_spinctrl" + eval "$wx_cv_use_spinctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_spinctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_spinctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SPINCTRL" = yes; then @@ -9722,9 +9722,9 @@ if test "${enable_splitter+set}" = set; then enableval="$enable_splitter" if test "$enableval" = yes; then - ac_cv_use_splitter='wxUSE_SPLITTER=yes' + wx_cv_use_splitter='wxUSE_SPLITTER=yes' else - ac_cv_use_splitter='wxUSE_SPLITTER=no' + wx_cv_use_splitter='wxUSE_SPLITTER=no' fi else @@ -9736,13 +9736,13 @@ else no_cache=1 fi - ac_cv_use_splitter='wxUSE_SPLITTER='$DEFAULT_wxUSE_SPLITTER + wx_cv_use_splitter='wxUSE_SPLITTER='$DEFAULT_wxUSE_SPLITTER fi; - eval "$ac_cv_use_splitter" + eval "$wx_cv_use_splitter" if test "$no_cache" != 1; then - echo $ac_cv_use_splitter >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_splitter >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SPLITTER" = yes; then @@ -9763,9 +9763,9 @@ if test "${enable_statbmp+set}" = set; then enableval="$enable_statbmp" if test "$enableval" = yes; then - ac_cv_use_statbmp='wxUSE_STATBMP=yes' + wx_cv_use_statbmp='wxUSE_STATBMP=yes' else - ac_cv_use_statbmp='wxUSE_STATBMP=no' + wx_cv_use_statbmp='wxUSE_STATBMP=no' fi else @@ -9777,13 +9777,13 @@ else no_cache=1 fi - ac_cv_use_statbmp='wxUSE_STATBMP='$DEFAULT_wxUSE_STATBMP + wx_cv_use_statbmp='wxUSE_STATBMP='$DEFAULT_wxUSE_STATBMP fi; - eval "$ac_cv_use_statbmp" + eval "$wx_cv_use_statbmp" if test "$no_cache" != 1; then - echo $ac_cv_use_statbmp >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_statbmp >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STATBMP" = yes; then @@ -9804,9 +9804,9 @@ if test "${enable_statbox+set}" = set; then enableval="$enable_statbox" if test "$enableval" = yes; then - ac_cv_use_statbox='wxUSE_STATBOX=yes' + wx_cv_use_statbox='wxUSE_STATBOX=yes' else - ac_cv_use_statbox='wxUSE_STATBOX=no' + wx_cv_use_statbox='wxUSE_STATBOX=no' fi else @@ -9818,13 +9818,13 @@ else no_cache=1 fi - ac_cv_use_statbox='wxUSE_STATBOX='$DEFAULT_wxUSE_STATBOX + wx_cv_use_statbox='wxUSE_STATBOX='$DEFAULT_wxUSE_STATBOX fi; - eval "$ac_cv_use_statbox" + eval "$wx_cv_use_statbox" if test "$no_cache" != 1; then - echo $ac_cv_use_statbox >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_statbox >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STATBOX" = yes; then @@ -9845,9 +9845,9 @@ if test "${enable_statline+set}" = set; then enableval="$enable_statline" if test "$enableval" = yes; then - ac_cv_use_statline='wxUSE_STATLINE=yes' + wx_cv_use_statline='wxUSE_STATLINE=yes' else - ac_cv_use_statline='wxUSE_STATLINE=no' + wx_cv_use_statline='wxUSE_STATLINE=no' fi else @@ -9859,13 +9859,13 @@ else no_cache=1 fi - ac_cv_use_statline='wxUSE_STATLINE='$DEFAULT_wxUSE_STATLINE + wx_cv_use_statline='wxUSE_STATLINE='$DEFAULT_wxUSE_STATLINE fi; - eval "$ac_cv_use_statline" + eval "$wx_cv_use_statline" if test "$no_cache" != 1; then - echo $ac_cv_use_statline >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_statline >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STATLINE" = yes; then @@ -9886,9 +9886,9 @@ if test "${enable_stattext+set}" = set; then enableval="$enable_stattext" if test "$enableval" = yes; then - ac_cv_use_stattext='wxUSE_STATTEXT=yes' + wx_cv_use_stattext='wxUSE_STATTEXT=yes' else - ac_cv_use_stattext='wxUSE_STATTEXT=no' + wx_cv_use_stattext='wxUSE_STATTEXT=no' fi else @@ -9900,13 +9900,13 @@ else no_cache=1 fi - ac_cv_use_stattext='wxUSE_STATTEXT='$DEFAULT_wxUSE_STATTEXT + wx_cv_use_stattext='wxUSE_STATTEXT='$DEFAULT_wxUSE_STATTEXT fi; - eval "$ac_cv_use_stattext" + eval "$wx_cv_use_stattext" if test "$no_cache" != 1; then - echo $ac_cv_use_stattext >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_stattext >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STATTEXT" = yes; then @@ -9927,9 +9927,9 @@ if test "${enable_statusbar+set}" = set; then enableval="$enable_statusbar" if test "$enableval" = yes; then - ac_cv_use_statusbar='wxUSE_STATUSBAR=yes' + wx_cv_use_statusbar='wxUSE_STATUSBAR=yes' else - ac_cv_use_statusbar='wxUSE_STATUSBAR=no' + wx_cv_use_statusbar='wxUSE_STATUSBAR=no' fi else @@ -9941,13 +9941,13 @@ else no_cache=1 fi - ac_cv_use_statusbar='wxUSE_STATUSBAR='$DEFAULT_wxUSE_STATUSBAR + wx_cv_use_statusbar='wxUSE_STATUSBAR='$DEFAULT_wxUSE_STATUSBAR fi; - eval "$ac_cv_use_statusbar" + eval "$wx_cv_use_statusbar" if test "$no_cache" != 1; then - echo $ac_cv_use_statusbar >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_statusbar >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STATUSBAR" = yes; then @@ -9968,9 +9968,9 @@ if test "${enable_tabdialog+set}" = set; then enableval="$enable_tabdialog" if test "$enableval" = yes; then - ac_cv_use_tabdialog='wxUSE_TAB_DIALOG=yes' + wx_cv_use_tabdialog='wxUSE_TAB_DIALOG=yes' else - ac_cv_use_tabdialog='wxUSE_TAB_DIALOG=no' + wx_cv_use_tabdialog='wxUSE_TAB_DIALOG=no' fi else @@ -9982,13 +9982,13 @@ else no_cache=1 fi - ac_cv_use_tabdialog='wxUSE_TAB_DIALOG='$DEFAULT_wxUSE_TAB_DIALOG + wx_cv_use_tabdialog='wxUSE_TAB_DIALOG='$DEFAULT_wxUSE_TAB_DIALOG fi; - eval "$ac_cv_use_tabdialog" + eval "$wx_cv_use_tabdialog" if test "$no_cache" != 1; then - echo $ac_cv_use_tabdialog >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tabdialog >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TAB_DIALOG" = yes; then @@ -10009,9 +10009,9 @@ if test "${enable_textctrl+set}" = set; then enableval="$enable_textctrl" if test "$enableval" = yes; then - ac_cv_use_textctrl='wxUSE_TEXTCTRL=yes' + wx_cv_use_textctrl='wxUSE_TEXTCTRL=yes' else - ac_cv_use_textctrl='wxUSE_TEXTCTRL=no' + wx_cv_use_textctrl='wxUSE_TEXTCTRL=no' fi else @@ -10023,13 +10023,13 @@ else no_cache=1 fi - ac_cv_use_textctrl='wxUSE_TEXTCTRL='$DEFAULT_wxUSE_TEXTCTRL + wx_cv_use_textctrl='wxUSE_TEXTCTRL='$DEFAULT_wxUSE_TEXTCTRL fi; - eval "$ac_cv_use_textctrl" + eval "$wx_cv_use_textctrl" if test "$no_cache" != 1; then - echo $ac_cv_use_textctrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_textctrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TEXTCTRL" = yes; then @@ -10050,9 +10050,9 @@ if test "${enable_togglebtn+set}" = set; then enableval="$enable_togglebtn" if test "$enableval" = yes; then - ac_cv_use_togglebtn='wxUSE_TOGGLEBTN=yes' + wx_cv_use_togglebtn='wxUSE_TOGGLEBTN=yes' else - ac_cv_use_togglebtn='wxUSE_TOGGLEBTN=no' + wx_cv_use_togglebtn='wxUSE_TOGGLEBTN=no' fi else @@ -10064,13 +10064,13 @@ else no_cache=1 fi - ac_cv_use_togglebtn='wxUSE_TOGGLEBTN='$DEFAULT_wxUSE_TOGGLEBTN + wx_cv_use_togglebtn='wxUSE_TOGGLEBTN='$DEFAULT_wxUSE_TOGGLEBTN fi; - eval "$ac_cv_use_togglebtn" + eval "$wx_cv_use_togglebtn" if test "$no_cache" != 1; then - echo $ac_cv_use_togglebtn >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_togglebtn >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TOGGLEBTN" = yes; then @@ -10091,9 +10091,9 @@ if test "${enable_toolbar+set}" = set; then enableval="$enable_toolbar" if test "$enableval" = yes; then - ac_cv_use_toolbar='wxUSE_TOOLBAR=yes' + wx_cv_use_toolbar='wxUSE_TOOLBAR=yes' else - ac_cv_use_toolbar='wxUSE_TOOLBAR=no' + wx_cv_use_toolbar='wxUSE_TOOLBAR=no' fi else @@ -10105,13 +10105,13 @@ else no_cache=1 fi - ac_cv_use_toolbar='wxUSE_TOOLBAR='$DEFAULT_wxUSE_TOOLBAR + wx_cv_use_toolbar='wxUSE_TOOLBAR='$DEFAULT_wxUSE_TOOLBAR fi; - eval "$ac_cv_use_toolbar" + eval "$wx_cv_use_toolbar" if test "$no_cache" != 1; then - echo $ac_cv_use_toolbar >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_toolbar >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TOOLBAR" = yes; then @@ -10132,9 +10132,9 @@ if test "${enable_tbarnative+set}" = set; then enableval="$enable_tbarnative" if test "$enableval" = yes; then - ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=yes' + wx_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=yes' else - ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=no' + wx_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE=no' fi else @@ -10146,13 +10146,13 @@ else no_cache=1 fi - ac_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE='$DEFAULT_wxUSE_TOOLBAR_NATIVE + wx_cv_use_tbarnative='wxUSE_TOOLBAR_NATIVE='$DEFAULT_wxUSE_TOOLBAR_NATIVE fi; - eval "$ac_cv_use_tbarnative" + eval "$wx_cv_use_tbarnative" if test "$no_cache" != 1; then - echo $ac_cv_use_tbarnative >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tbarnative >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TOOLBAR_NATIVE" = yes; then @@ -10173,9 +10173,9 @@ if test "${enable_treebook+set}" = set; then enableval="$enable_treebook" if test "$enableval" = yes; then - ac_cv_use_treebook='wxUSE_TREEBOOK=yes' + wx_cv_use_treebook='wxUSE_TREEBOOK=yes' else - ac_cv_use_treebook='wxUSE_TREEBOOK=no' + wx_cv_use_treebook='wxUSE_TREEBOOK=no' fi else @@ -10187,13 +10187,13 @@ else no_cache=1 fi - ac_cv_use_treebook='wxUSE_TREEBOOK='$DEFAULT_wxUSE_TREEBOOK + wx_cv_use_treebook='wxUSE_TREEBOOK='$DEFAULT_wxUSE_TREEBOOK fi; - eval "$ac_cv_use_treebook" + eval "$wx_cv_use_treebook" if test "$no_cache" != 1; then - echo $ac_cv_use_treebook >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_treebook >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TREEBOOK" = yes; then @@ -10214,9 +10214,9 @@ if test "${enable_toolbook+set}" = set; then enableval="$enable_toolbook" if test "$enableval" = yes; then - ac_cv_use_toolbook='wxUSE_TOOLBOOK=yes' + wx_cv_use_toolbook='wxUSE_TOOLBOOK=yes' else - ac_cv_use_toolbook='wxUSE_TOOLBOOK=no' + wx_cv_use_toolbook='wxUSE_TOOLBOOK=no' fi else @@ -10228,13 +10228,13 @@ else no_cache=1 fi - ac_cv_use_toolbook='wxUSE_TOOLBOOK='$DEFAULT_wxUSE_TOOLBOOK + wx_cv_use_toolbook='wxUSE_TOOLBOOK='$DEFAULT_wxUSE_TOOLBOOK fi; - eval "$ac_cv_use_toolbook" + eval "$wx_cv_use_toolbook" if test "$no_cache" != 1; then - echo $ac_cv_use_toolbook >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_toolbook >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TOOLBOOK" = yes; then @@ -10255,9 +10255,9 @@ if test "${enable_treectrl+set}" = set; then enableval="$enable_treectrl" if test "$enableval" = yes; then - ac_cv_use_treectrl='wxUSE_TREECTRL=yes' + wx_cv_use_treectrl='wxUSE_TREECTRL=yes' else - ac_cv_use_treectrl='wxUSE_TREECTRL=no' + wx_cv_use_treectrl='wxUSE_TREECTRL=no' fi else @@ -10269,13 +10269,13 @@ else no_cache=1 fi - ac_cv_use_treectrl='wxUSE_TREECTRL='$DEFAULT_wxUSE_TREECTRL + wx_cv_use_treectrl='wxUSE_TREECTRL='$DEFAULT_wxUSE_TREECTRL fi; - eval "$ac_cv_use_treectrl" + eval "$wx_cv_use_treectrl" if test "$no_cache" != 1; then - echo $ac_cv_use_treectrl >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_treectrl >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TREECTRL" = yes; then @@ -10296,9 +10296,9 @@ if test "${enable_tipwindow+set}" = set; then enableval="$enable_tipwindow" if test "$enableval" = yes; then - ac_cv_use_tipwindow='wxUSE_TIPWINDOW=yes' + wx_cv_use_tipwindow='wxUSE_TIPWINDOW=yes' else - ac_cv_use_tipwindow='wxUSE_TIPWINDOW=no' + wx_cv_use_tipwindow='wxUSE_TIPWINDOW=no' fi else @@ -10310,13 +10310,13 @@ else no_cache=1 fi - ac_cv_use_tipwindow='wxUSE_TIPWINDOW='$DEFAULT_wxUSE_TIPWINDOW + wx_cv_use_tipwindow='wxUSE_TIPWINDOW='$DEFAULT_wxUSE_TIPWINDOW fi; - eval "$ac_cv_use_tipwindow" + eval "$wx_cv_use_tipwindow" if test "$no_cache" != 1; then - echo $ac_cv_use_tipwindow >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tipwindow >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TIPWINDOW" = yes; then @@ -10337,9 +10337,9 @@ if test "${enable_popupwin+set}" = set; then enableval="$enable_popupwin" if test "$enableval" = yes; then - ac_cv_use_popupwin='wxUSE_POPUPWIN=yes' + wx_cv_use_popupwin='wxUSE_POPUPWIN=yes' else - ac_cv_use_popupwin='wxUSE_POPUPWIN=no' + wx_cv_use_popupwin='wxUSE_POPUPWIN=no' fi else @@ -10351,13 +10351,13 @@ else no_cache=1 fi - ac_cv_use_popupwin='wxUSE_POPUPWIN='$DEFAULT_wxUSE_POPUPWIN + wx_cv_use_popupwin='wxUSE_POPUPWIN='$DEFAULT_wxUSE_POPUPWIN fi; - eval "$ac_cv_use_popupwin" + eval "$wx_cv_use_popupwin" if test "$no_cache" != 1; then - echo $ac_cv_use_popupwin >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_popupwin >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_POPUPWIN" = yes; then @@ -10380,9 +10380,9 @@ if test "${enable_commondlg+set}" = set; then enableval="$enable_commondlg" if test "$enableval" = yes; then - ac_cv_use_commondlg='wxUSE_COMMONDLGS=yes' + wx_cv_use_commondlg='wxUSE_COMMONDLGS=yes' else - ac_cv_use_commondlg='wxUSE_COMMONDLGS=no' + wx_cv_use_commondlg='wxUSE_COMMONDLGS=no' fi else @@ -10394,13 +10394,13 @@ else no_cache=1 fi - ac_cv_use_commondlg='wxUSE_COMMONDLGS='$DEFAULT_wxUSE_COMMONDLGS + wx_cv_use_commondlg='wxUSE_COMMONDLGS='$DEFAULT_wxUSE_COMMONDLGS fi; - eval "$ac_cv_use_commondlg" + eval "$wx_cv_use_commondlg" if test "$no_cache" != 1; then - echo $ac_cv_use_commondlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_commondlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COMMONDLGS" = yes; then @@ -10421,9 +10421,9 @@ if test "${enable_aboutdlg+set}" = set; then enableval="$enable_aboutdlg" if test "$enableval" = yes; then - ac_cv_use_aboutdlg='wxUSE_ABOUTDLG=yes' + wx_cv_use_aboutdlg='wxUSE_ABOUTDLG=yes' else - ac_cv_use_aboutdlg='wxUSE_ABOUTDLG=no' + wx_cv_use_aboutdlg='wxUSE_ABOUTDLG=no' fi else @@ -10435,13 +10435,13 @@ else no_cache=1 fi - ac_cv_use_aboutdlg='wxUSE_ABOUTDLG='$DEFAULT_wxUSE_ABOUTDLG + wx_cv_use_aboutdlg='wxUSE_ABOUTDLG='$DEFAULT_wxUSE_ABOUTDLG fi; - eval "$ac_cv_use_aboutdlg" + eval "$wx_cv_use_aboutdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_aboutdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_aboutdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ABOUTDLG" = yes; then @@ -10462,9 +10462,9 @@ if test "${enable_choicedlg+set}" = set; then enableval="$enable_choicedlg" if test "$enableval" = yes; then - ac_cv_use_choicedlg='wxUSE_CHOICEDLG=yes' + wx_cv_use_choicedlg='wxUSE_CHOICEDLG=yes' else - ac_cv_use_choicedlg='wxUSE_CHOICEDLG=no' + wx_cv_use_choicedlg='wxUSE_CHOICEDLG=no' fi else @@ -10476,13 +10476,13 @@ else no_cache=1 fi - ac_cv_use_choicedlg='wxUSE_CHOICEDLG='$DEFAULT_wxUSE_CHOICEDLG + wx_cv_use_choicedlg='wxUSE_CHOICEDLG='$DEFAULT_wxUSE_CHOICEDLG fi; - eval "$ac_cv_use_choicedlg" + eval "$wx_cv_use_choicedlg" if test "$no_cache" != 1; then - echo $ac_cv_use_choicedlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_choicedlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_CHOICEDLG" = yes; then @@ -10503,9 +10503,9 @@ if test "${enable_coldlg+set}" = set; then enableval="$enable_coldlg" if test "$enableval" = yes; then - ac_cv_use_coldlg='wxUSE_COLOURDLG=yes' + wx_cv_use_coldlg='wxUSE_COLOURDLG=yes' else - ac_cv_use_coldlg='wxUSE_COLOURDLG=no' + wx_cv_use_coldlg='wxUSE_COLOURDLG=no' fi else @@ -10517,13 +10517,13 @@ else no_cache=1 fi - ac_cv_use_coldlg='wxUSE_COLOURDLG='$DEFAULT_wxUSE_COLOURDLG + wx_cv_use_coldlg='wxUSE_COLOURDLG='$DEFAULT_wxUSE_COLOURDLG fi; - eval "$ac_cv_use_coldlg" + eval "$wx_cv_use_coldlg" if test "$no_cache" != 1; then - echo $ac_cv_use_coldlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_coldlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_COLOURDLG" = yes; then @@ -10544,9 +10544,9 @@ if test "${enable_filedlg+set}" = set; then enableval="$enable_filedlg" if test "$enableval" = yes; then - ac_cv_use_filedlg='wxUSE_FILEDLG=yes' + wx_cv_use_filedlg='wxUSE_FILEDLG=yes' else - ac_cv_use_filedlg='wxUSE_FILEDLG=no' + wx_cv_use_filedlg='wxUSE_FILEDLG=no' fi else @@ -10558,13 +10558,13 @@ else no_cache=1 fi - ac_cv_use_filedlg='wxUSE_FILEDLG='$DEFAULT_wxUSE_FILEDLG + wx_cv_use_filedlg='wxUSE_FILEDLG='$DEFAULT_wxUSE_FILEDLG fi; - eval "$ac_cv_use_filedlg" + eval "$wx_cv_use_filedlg" if test "$no_cache" != 1; then - echo $ac_cv_use_filedlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_filedlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FILEDLG" = yes; then @@ -10585,9 +10585,9 @@ if test "${enable_finddlg+set}" = set; then enableval="$enable_finddlg" if test "$enableval" = yes; then - ac_cv_use_finddlg='wxUSE_FINDREPLDLG=yes' + wx_cv_use_finddlg='wxUSE_FINDREPLDLG=yes' else - ac_cv_use_finddlg='wxUSE_FINDREPLDLG=no' + wx_cv_use_finddlg='wxUSE_FINDREPLDLG=no' fi else @@ -10599,13 +10599,13 @@ else no_cache=1 fi - ac_cv_use_finddlg='wxUSE_FINDREPLDLG='$DEFAULT_wxUSE_FINDREPLDLG + wx_cv_use_finddlg='wxUSE_FINDREPLDLG='$DEFAULT_wxUSE_FINDREPLDLG fi; - eval "$ac_cv_use_finddlg" + eval "$wx_cv_use_finddlg" if test "$no_cache" != 1; then - echo $ac_cv_use_finddlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_finddlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FINDREPLDLG" = yes; then @@ -10626,9 +10626,9 @@ if test "${enable_fontdlg+set}" = set; then enableval="$enable_fontdlg" if test "$enableval" = yes; then - ac_cv_use_fontdlg='wxUSE_FONTDLG=yes' + wx_cv_use_fontdlg='wxUSE_FONTDLG=yes' else - ac_cv_use_fontdlg='wxUSE_FONTDLG=no' + wx_cv_use_fontdlg='wxUSE_FONTDLG=no' fi else @@ -10640,13 +10640,13 @@ else no_cache=1 fi - ac_cv_use_fontdlg='wxUSE_FONTDLG='$DEFAULT_wxUSE_FONTDLG + wx_cv_use_fontdlg='wxUSE_FONTDLG='$DEFAULT_wxUSE_FONTDLG fi; - eval "$ac_cv_use_fontdlg" + eval "$wx_cv_use_fontdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_fontdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_fontdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_FONTDLG" = yes; then @@ -10667,9 +10667,9 @@ if test "${enable_dirdlg+set}" = set; then enableval="$enable_dirdlg" if test "$enableval" = yes; then - ac_cv_use_dirdlg='wxUSE_DIRDLG=yes' + wx_cv_use_dirdlg='wxUSE_DIRDLG=yes' else - ac_cv_use_dirdlg='wxUSE_DIRDLG=no' + wx_cv_use_dirdlg='wxUSE_DIRDLG=no' fi else @@ -10681,13 +10681,13 @@ else no_cache=1 fi - ac_cv_use_dirdlg='wxUSE_DIRDLG='$DEFAULT_wxUSE_DIRDLG + wx_cv_use_dirdlg='wxUSE_DIRDLG='$DEFAULT_wxUSE_DIRDLG fi; - eval "$ac_cv_use_dirdlg" + eval "$wx_cv_use_dirdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_dirdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dirdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DIRDLG" = yes; then @@ -10708,9 +10708,9 @@ if test "${enable_msgdlg+set}" = set; then enableval="$enable_msgdlg" if test "$enableval" = yes; then - ac_cv_use_msgdlg='wxUSE_MSGDLG=yes' + wx_cv_use_msgdlg='wxUSE_MSGDLG=yes' else - ac_cv_use_msgdlg='wxUSE_MSGDLG=no' + wx_cv_use_msgdlg='wxUSE_MSGDLG=no' fi else @@ -10722,13 +10722,13 @@ else no_cache=1 fi - ac_cv_use_msgdlg='wxUSE_MSGDLG='$DEFAULT_wxUSE_MSGDLG + wx_cv_use_msgdlg='wxUSE_MSGDLG='$DEFAULT_wxUSE_MSGDLG fi; - eval "$ac_cv_use_msgdlg" + eval "$wx_cv_use_msgdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_msgdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_msgdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MSGDLG" = yes; then @@ -10749,9 +10749,9 @@ if test "${enable_numberdlg+set}" = set; then enableval="$enable_numberdlg" if test "$enableval" = yes; then - ac_cv_use_numberdlg='wxUSE_NUMBERDLG=yes' + wx_cv_use_numberdlg='wxUSE_NUMBERDLG=yes' else - ac_cv_use_numberdlg='wxUSE_NUMBERDLG=no' + wx_cv_use_numberdlg='wxUSE_NUMBERDLG=no' fi else @@ -10763,13 +10763,13 @@ else no_cache=1 fi - ac_cv_use_numberdlg='wxUSE_NUMBERDLG='$DEFAULT_wxUSE_NUMBERDLG + wx_cv_use_numberdlg='wxUSE_NUMBERDLG='$DEFAULT_wxUSE_NUMBERDLG fi; - eval "$ac_cv_use_numberdlg" + eval "$wx_cv_use_numberdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_numberdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_numberdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_NUMBERDLG" = yes; then @@ -10790,9 +10790,9 @@ if test "${enable_splash+set}" = set; then enableval="$enable_splash" if test "$enableval" = yes; then - ac_cv_use_splash='wxUSE_SPLASH=yes' + wx_cv_use_splash='wxUSE_SPLASH=yes' else - ac_cv_use_splash='wxUSE_SPLASH=no' + wx_cv_use_splash='wxUSE_SPLASH=no' fi else @@ -10804,13 +10804,13 @@ else no_cache=1 fi - ac_cv_use_splash='wxUSE_SPLASH='$DEFAULT_wxUSE_SPLASH + wx_cv_use_splash='wxUSE_SPLASH='$DEFAULT_wxUSE_SPLASH fi; - eval "$ac_cv_use_splash" + eval "$wx_cv_use_splash" if test "$no_cache" != 1; then - echo $ac_cv_use_splash >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_splash >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SPLASH" = yes; then @@ -10831,9 +10831,9 @@ if test "${enable_textdlg+set}" = set; then enableval="$enable_textdlg" if test "$enableval" = yes; then - ac_cv_use_textdlg='wxUSE_TEXTDLG=yes' + wx_cv_use_textdlg='wxUSE_TEXTDLG=yes' else - ac_cv_use_textdlg='wxUSE_TEXTDLG=no' + wx_cv_use_textdlg='wxUSE_TEXTDLG=no' fi else @@ -10845,13 +10845,13 @@ else no_cache=1 fi - ac_cv_use_textdlg='wxUSE_TEXTDLG='$DEFAULT_wxUSE_TEXTDLG + wx_cv_use_textdlg='wxUSE_TEXTDLG='$DEFAULT_wxUSE_TEXTDLG fi; - eval "$ac_cv_use_textdlg" + eval "$wx_cv_use_textdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_textdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_textdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TEXTDLG" = yes; then @@ -10872,9 +10872,9 @@ if test "${enable_tipdlg+set}" = set; then enableval="$enable_tipdlg" if test "$enableval" = yes; then - ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS=yes' + wx_cv_use_tipdlg='wxUSE_STARTUP_TIPS=yes' else - ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS=no' + wx_cv_use_tipdlg='wxUSE_STARTUP_TIPS=no' fi else @@ -10886,13 +10886,13 @@ else no_cache=1 fi - ac_cv_use_tipdlg='wxUSE_STARTUP_TIPS='$DEFAULT_wxUSE_STARTUP_TIPS + wx_cv_use_tipdlg='wxUSE_STARTUP_TIPS='$DEFAULT_wxUSE_STARTUP_TIPS fi; - eval "$ac_cv_use_tipdlg" + eval "$wx_cv_use_tipdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_tipdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tipdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_STARTUP_TIPS" = yes; then @@ -10913,9 +10913,9 @@ if test "${enable_progressdlg+set}" = set; then enableval="$enable_progressdlg" if test "$enableval" = yes; then - ac_cv_use_progressdlg='wxUSE_PROGRESSDLG=yes' + wx_cv_use_progressdlg='wxUSE_PROGRESSDLG=yes' else - ac_cv_use_progressdlg='wxUSE_PROGRESSDLG=no' + wx_cv_use_progressdlg='wxUSE_PROGRESSDLG=no' fi else @@ -10927,13 +10927,13 @@ else no_cache=1 fi - ac_cv_use_progressdlg='wxUSE_PROGRESSDLG='$DEFAULT_wxUSE_PROGRESSDLG + wx_cv_use_progressdlg='wxUSE_PROGRESSDLG='$DEFAULT_wxUSE_PROGRESSDLG fi; - eval "$ac_cv_use_progressdlg" + eval "$wx_cv_use_progressdlg" if test "$no_cache" != 1; then - echo $ac_cv_use_progressdlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_progressdlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PROGRESSDLG" = yes; then @@ -10954,9 +10954,9 @@ if test "${enable_wizarddlg+set}" = set; then enableval="$enable_wizarddlg" if test "$enableval" = yes; then - ac_cv_use_wizarddlg='wxUSE_WIZARDDLG=yes' + wx_cv_use_wizarddlg='wxUSE_WIZARDDLG=yes' else - ac_cv_use_wizarddlg='wxUSE_WIZARDDLG=no' + wx_cv_use_wizarddlg='wxUSE_WIZARDDLG=no' fi else @@ -10968,13 +10968,13 @@ else no_cache=1 fi - ac_cv_use_wizarddlg='wxUSE_WIZARDDLG='$DEFAULT_wxUSE_WIZARDDLG + wx_cv_use_wizarddlg='wxUSE_WIZARDDLG='$DEFAULT_wxUSE_WIZARDDLG fi; - eval "$ac_cv_use_wizarddlg" + eval "$wx_cv_use_wizarddlg" if test "$no_cache" != 1; then - echo $ac_cv_use_wizarddlg >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_wizarddlg >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_WIZARDDLG" = yes; then @@ -10997,9 +10997,9 @@ if test "${enable_menus+set}" = set; then enableval="$enable_menus" if test "$enableval" = yes; then - ac_cv_use_menus='wxUSE_MENUS=yes' + wx_cv_use_menus='wxUSE_MENUS=yes' else - ac_cv_use_menus='wxUSE_MENUS=no' + wx_cv_use_menus='wxUSE_MENUS=no' fi else @@ -11011,13 +11011,13 @@ else no_cache=1 fi - ac_cv_use_menus='wxUSE_MENUS='$DEFAULT_wxUSE_MENUS + wx_cv_use_menus='wxUSE_MENUS='$DEFAULT_wxUSE_MENUS fi; - eval "$ac_cv_use_menus" + eval "$wx_cv_use_menus" if test "$no_cache" != 1; then - echo $ac_cv_use_menus >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_menus >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MENUS" = yes; then @@ -11038,9 +11038,9 @@ if test "${enable_miniframe+set}" = set; then enableval="$enable_miniframe" if test "$enableval" = yes; then - ac_cv_use_miniframe='wxUSE_MINIFRAME=yes' + wx_cv_use_miniframe='wxUSE_MINIFRAME=yes' else - ac_cv_use_miniframe='wxUSE_MINIFRAME=no' + wx_cv_use_miniframe='wxUSE_MINIFRAME=no' fi else @@ -11052,13 +11052,13 @@ else no_cache=1 fi - ac_cv_use_miniframe='wxUSE_MINIFRAME='$DEFAULT_wxUSE_MINIFRAME + wx_cv_use_miniframe='wxUSE_MINIFRAME='$DEFAULT_wxUSE_MINIFRAME fi; - eval "$ac_cv_use_miniframe" + eval "$wx_cv_use_miniframe" if test "$no_cache" != 1; then - echo $ac_cv_use_miniframe >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_miniframe >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MINIFRAME" = yes; then @@ -11079,9 +11079,9 @@ if test "${enable_tooltips+set}" = set; then enableval="$enable_tooltips" if test "$enableval" = yes; then - ac_cv_use_tooltips='wxUSE_TOOLTIPS=yes' + wx_cv_use_tooltips='wxUSE_TOOLTIPS=yes' else - ac_cv_use_tooltips='wxUSE_TOOLTIPS=no' + wx_cv_use_tooltips='wxUSE_TOOLTIPS=no' fi else @@ -11093,13 +11093,13 @@ else no_cache=1 fi - ac_cv_use_tooltips='wxUSE_TOOLTIPS='$DEFAULT_wxUSE_TOOLTIPS + wx_cv_use_tooltips='wxUSE_TOOLTIPS='$DEFAULT_wxUSE_TOOLTIPS fi; - eval "$ac_cv_use_tooltips" + eval "$wx_cv_use_tooltips" if test "$no_cache" != 1; then - echo $ac_cv_use_tooltips >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tooltips >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TOOLTIPS" = yes; then @@ -11120,9 +11120,9 @@ if test "${enable_splines+set}" = set; then enableval="$enable_splines" if test "$enableval" = yes; then - ac_cv_use_splines='wxUSE_SPLINES=yes' + wx_cv_use_splines='wxUSE_SPLINES=yes' else - ac_cv_use_splines='wxUSE_SPLINES=no' + wx_cv_use_splines='wxUSE_SPLINES=no' fi else @@ -11134,13 +11134,13 @@ else no_cache=1 fi - ac_cv_use_splines='wxUSE_SPLINES='$DEFAULT_wxUSE_SPLINES + wx_cv_use_splines='wxUSE_SPLINES='$DEFAULT_wxUSE_SPLINES fi; - eval "$ac_cv_use_splines" + eval "$wx_cv_use_splines" if test "$no_cache" != 1; then - echo $ac_cv_use_splines >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_splines >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_SPLINES" = yes; then @@ -11161,9 +11161,9 @@ if test "${enable_mousewheel+set}" = set; then enableval="$enable_mousewheel" if test "$enableval" = yes; then - ac_cv_use_mousewheel='wxUSE_MOUSEWHEEL=yes' + wx_cv_use_mousewheel='wxUSE_MOUSEWHEEL=yes' else - ac_cv_use_mousewheel='wxUSE_MOUSEWHEEL=no' + wx_cv_use_mousewheel='wxUSE_MOUSEWHEEL=no' fi else @@ -11175,13 +11175,13 @@ else no_cache=1 fi - ac_cv_use_mousewheel='wxUSE_MOUSEWHEEL='$DEFAULT_wxUSE_MOUSEWHEEL + wx_cv_use_mousewheel='wxUSE_MOUSEWHEEL='$DEFAULT_wxUSE_MOUSEWHEEL fi; - eval "$ac_cv_use_mousewheel" + eval "$wx_cv_use_mousewheel" if test "$no_cache" != 1; then - echo $ac_cv_use_mousewheel >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_mousewheel >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_MOUSEWHEEL" = yes; then @@ -11202,9 +11202,9 @@ if test "${enable_validators+set}" = set; then enableval="$enable_validators" if test "$enableval" = yes; then - ac_cv_use_validators='wxUSE_VALIDATORS=yes' + wx_cv_use_validators='wxUSE_VALIDATORS=yes' else - ac_cv_use_validators='wxUSE_VALIDATORS=no' + wx_cv_use_validators='wxUSE_VALIDATORS=no' fi else @@ -11216,13 +11216,13 @@ else no_cache=1 fi - ac_cv_use_validators='wxUSE_VALIDATORS='$DEFAULT_wxUSE_VALIDATORS + wx_cv_use_validators='wxUSE_VALIDATORS='$DEFAULT_wxUSE_VALIDATORS fi; - eval "$ac_cv_use_validators" + eval "$wx_cv_use_validators" if test "$no_cache" != 1; then - echo $ac_cv_use_validators >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_validators >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_VALIDATORS" = yes; then @@ -11243,9 +11243,9 @@ if test "${enable_busyinfo+set}" = set; then enableval="$enable_busyinfo" if test "$enableval" = yes; then - ac_cv_use_busyinfo='wxUSE_BUSYINFO=yes' + wx_cv_use_busyinfo='wxUSE_BUSYINFO=yes' else - ac_cv_use_busyinfo='wxUSE_BUSYINFO=no' + wx_cv_use_busyinfo='wxUSE_BUSYINFO=no' fi else @@ -11257,13 +11257,13 @@ else no_cache=1 fi - ac_cv_use_busyinfo='wxUSE_BUSYINFO='$DEFAULT_wxUSE_BUSYINFO + wx_cv_use_busyinfo='wxUSE_BUSYINFO='$DEFAULT_wxUSE_BUSYINFO fi; - eval "$ac_cv_use_busyinfo" + eval "$wx_cv_use_busyinfo" if test "$no_cache" != 1; then - echo $ac_cv_use_busyinfo >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_busyinfo >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_BUSYINFO" = yes; then @@ -11284,9 +11284,9 @@ if test "${enable_joystick+set}" = set; then enableval="$enable_joystick" if test "$enableval" = yes; then - ac_cv_use_joystick='wxUSE_JOYSTICK=yes' + wx_cv_use_joystick='wxUSE_JOYSTICK=yes' else - ac_cv_use_joystick='wxUSE_JOYSTICK=no' + wx_cv_use_joystick='wxUSE_JOYSTICK=no' fi else @@ -11298,13 +11298,13 @@ else no_cache=1 fi - ac_cv_use_joystick='wxUSE_JOYSTICK='$DEFAULT_wxUSE_JOYSTICK + wx_cv_use_joystick='wxUSE_JOYSTICK='$DEFAULT_wxUSE_JOYSTICK fi; - eval "$ac_cv_use_joystick" + eval "$wx_cv_use_joystick" if test "$no_cache" != 1; then - echo $ac_cv_use_joystick >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_joystick >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_JOYSTICK" = yes; then @@ -11325,9 +11325,9 @@ if test "${enable_metafile+set}" = set; then enableval="$enable_metafile" if test "$enableval" = yes; then - ac_cv_use_metafile='wxUSE_METAFILE=yes' + wx_cv_use_metafile='wxUSE_METAFILE=yes' else - ac_cv_use_metafile='wxUSE_METAFILE=no' + wx_cv_use_metafile='wxUSE_METAFILE=no' fi else @@ -11339,13 +11339,13 @@ else no_cache=1 fi - ac_cv_use_metafile='wxUSE_METAFILE='$DEFAULT_wxUSE_METAFILE + wx_cv_use_metafile='wxUSE_METAFILE='$DEFAULT_wxUSE_METAFILE fi; - eval "$ac_cv_use_metafile" + eval "$wx_cv_use_metafile" if test "$no_cache" != 1; then - echo $ac_cv_use_metafile >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_metafile >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_METAFILE" = yes; then @@ -11366,9 +11366,9 @@ if test "${enable_dragimage+set}" = set; then enableval="$enable_dragimage" if test "$enableval" = yes; then - ac_cv_use_dragimage='wxUSE_DRAGIMAGE=yes' + wx_cv_use_dragimage='wxUSE_DRAGIMAGE=yes' else - ac_cv_use_dragimage='wxUSE_DRAGIMAGE=no' + wx_cv_use_dragimage='wxUSE_DRAGIMAGE=no' fi else @@ -11380,13 +11380,13 @@ else no_cache=1 fi - ac_cv_use_dragimage='wxUSE_DRAGIMAGE='$DEFAULT_wxUSE_DRAGIMAGE + wx_cv_use_dragimage='wxUSE_DRAGIMAGE='$DEFAULT_wxUSE_DRAGIMAGE fi; - eval "$ac_cv_use_dragimage" + eval "$wx_cv_use_dragimage" if test "$no_cache" != 1; then - echo $ac_cv_use_dragimage >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dragimage >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DRAGIMAGE" = yes; then @@ -11407,9 +11407,9 @@ if test "${enable_accessibility+set}" = set; then enableval="$enable_accessibility" if test "$enableval" = yes; then - ac_cv_use_accessibility='wxUSE_ACCESSIBILITY=yes' + wx_cv_use_accessibility='wxUSE_ACCESSIBILITY=yes' else - ac_cv_use_accessibility='wxUSE_ACCESSIBILITY=no' + wx_cv_use_accessibility='wxUSE_ACCESSIBILITY=no' fi else @@ -11421,13 +11421,13 @@ else no_cache=1 fi - ac_cv_use_accessibility='wxUSE_ACCESSIBILITY='$DEFAULT_wxUSE_ACCESSIBILITY + wx_cv_use_accessibility='wxUSE_ACCESSIBILITY='$DEFAULT_wxUSE_ACCESSIBILITY fi; - eval "$ac_cv_use_accessibility" + eval "$wx_cv_use_accessibility" if test "$no_cache" != 1; then - echo $ac_cv_use_accessibility >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_accessibility >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ACCESSIBILITY" = yes; then @@ -11450,9 +11450,9 @@ if test "${enable_dccache+set}" = set; then enableval="$enable_dccache" if test "$enableval" = yes; then - ac_cv_use_dccache='wxUSE_DC_CACHEING=yes' + wx_cv_use_dccache='wxUSE_DC_CACHEING=yes' else - ac_cv_use_dccache='wxUSE_DC_CACHEING=no' + wx_cv_use_dccache='wxUSE_DC_CACHEING=no' fi else @@ -11464,13 +11464,13 @@ else no_cache=1 fi - ac_cv_use_dccache='wxUSE_DC_CACHEING='$DEFAULT_wxUSE_DC_CACHEING + wx_cv_use_dccache='wxUSE_DC_CACHEING='$DEFAULT_wxUSE_DC_CACHEING fi; - eval "$ac_cv_use_dccache" + eval "$wx_cv_use_dccache" if test "$no_cache" != 1; then - echo $ac_cv_use_dccache >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_dccache >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_DC_CACHEING" = yes; then @@ -11494,9 +11494,9 @@ if test "${enable_palette+set}" = set; then enableval="$enable_palette" if test "$enableval" = yes; then - ac_cv_use_palette='wxUSE_PALETTE=yes' + wx_cv_use_palette='wxUSE_PALETTE=yes' else - ac_cv_use_palette='wxUSE_PALETTE=no' + wx_cv_use_palette='wxUSE_PALETTE=no' fi else @@ -11508,13 +11508,13 @@ else no_cache=1 fi - ac_cv_use_palette='wxUSE_PALETTE='$DEFAULT_wxUSE_PALETTE + wx_cv_use_palette='wxUSE_PALETTE='$DEFAULT_wxUSE_PALETTE fi; - eval "$ac_cv_use_palette" + eval "$wx_cv_use_palette" if test "$no_cache" != 1; then - echo $ac_cv_use_palette >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_palette >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PALETTE" = yes; then @@ -11535,9 +11535,9 @@ if test "${enable_image+set}" = set; then enableval="$enable_image" if test "$enableval" = yes; then - ac_cv_use_image='wxUSE_IMAGE=yes' + wx_cv_use_image='wxUSE_IMAGE=yes' else - ac_cv_use_image='wxUSE_IMAGE=no' + wx_cv_use_image='wxUSE_IMAGE=no' fi else @@ -11549,13 +11549,13 @@ else no_cache=1 fi - ac_cv_use_image='wxUSE_IMAGE='$DEFAULT_wxUSE_IMAGE + wx_cv_use_image='wxUSE_IMAGE='$DEFAULT_wxUSE_IMAGE fi; - eval "$ac_cv_use_image" + eval "$wx_cv_use_image" if test "$no_cache" != 1; then - echo $ac_cv_use_image >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_image >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_IMAGE" = yes; then @@ -11576,9 +11576,9 @@ if test "${enable_gif+set}" = set; then enableval="$enable_gif" if test "$enableval" = yes; then - ac_cv_use_gif='wxUSE_GIF=yes' + wx_cv_use_gif='wxUSE_GIF=yes' else - ac_cv_use_gif='wxUSE_GIF=no' + wx_cv_use_gif='wxUSE_GIF=no' fi else @@ -11590,13 +11590,13 @@ else no_cache=1 fi - ac_cv_use_gif='wxUSE_GIF='$DEFAULT_wxUSE_GIF + wx_cv_use_gif='wxUSE_GIF='$DEFAULT_wxUSE_GIF fi; - eval "$ac_cv_use_gif" + eval "$wx_cv_use_gif" if test "$no_cache" != 1; then - echo $ac_cv_use_gif >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_gif >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_GIF" = yes; then @@ -11617,9 +11617,9 @@ if test "${enable_pcx+set}" = set; then enableval="$enable_pcx" if test "$enableval" = yes; then - ac_cv_use_pcx='wxUSE_PCX=yes' + wx_cv_use_pcx='wxUSE_PCX=yes' else - ac_cv_use_pcx='wxUSE_PCX=no' + wx_cv_use_pcx='wxUSE_PCX=no' fi else @@ -11631,13 +11631,13 @@ else no_cache=1 fi - ac_cv_use_pcx='wxUSE_PCX='$DEFAULT_wxUSE_PCX + wx_cv_use_pcx='wxUSE_PCX='$DEFAULT_wxUSE_PCX fi; - eval "$ac_cv_use_pcx" + eval "$wx_cv_use_pcx" if test "$no_cache" != 1; then - echo $ac_cv_use_pcx >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_pcx >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PCX" = yes; then @@ -11658,9 +11658,9 @@ if test "${enable_tga+set}" = set; then enableval="$enable_tga" if test "$enableval" = yes; then - ac_cv_use_tga='wxUSE_TGA=yes' + wx_cv_use_tga='wxUSE_TGA=yes' else - ac_cv_use_tga='wxUSE_TGA=no' + wx_cv_use_tga='wxUSE_TGA=no' fi else @@ -11672,13 +11672,13 @@ else no_cache=1 fi - ac_cv_use_tga='wxUSE_TGA='$DEFAULT_wxUSE_TGA + wx_cv_use_tga='wxUSE_TGA='$DEFAULT_wxUSE_TGA fi; - eval "$ac_cv_use_tga" + eval "$wx_cv_use_tga" if test "$no_cache" != 1; then - echo $ac_cv_use_tga >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_tga >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_TGA" = yes; then @@ -11699,9 +11699,9 @@ if test "${enable_iff+set}" = set; then enableval="$enable_iff" if test "$enableval" = yes; then - ac_cv_use_iff='wxUSE_IFF=yes' + wx_cv_use_iff='wxUSE_IFF=yes' else - ac_cv_use_iff='wxUSE_IFF=no' + wx_cv_use_iff='wxUSE_IFF=no' fi else @@ -11713,13 +11713,13 @@ else no_cache=1 fi - ac_cv_use_iff='wxUSE_IFF='$DEFAULT_wxUSE_IFF + wx_cv_use_iff='wxUSE_IFF='$DEFAULT_wxUSE_IFF fi; - eval "$ac_cv_use_iff" + eval "$wx_cv_use_iff" if test "$no_cache" != 1; then - echo $ac_cv_use_iff >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_iff >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_IFF" = yes; then @@ -11740,9 +11740,9 @@ if test "${enable_pnm+set}" = set; then enableval="$enable_pnm" if test "$enableval" = yes; then - ac_cv_use_pnm='wxUSE_PNM=yes' + wx_cv_use_pnm='wxUSE_PNM=yes' else - ac_cv_use_pnm='wxUSE_PNM=no' + wx_cv_use_pnm='wxUSE_PNM=no' fi else @@ -11754,13 +11754,13 @@ else no_cache=1 fi - ac_cv_use_pnm='wxUSE_PNM='$DEFAULT_wxUSE_PNM + wx_cv_use_pnm='wxUSE_PNM='$DEFAULT_wxUSE_PNM fi; - eval "$ac_cv_use_pnm" + eval "$wx_cv_use_pnm" if test "$no_cache" != 1; then - echo $ac_cv_use_pnm >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_pnm >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_PNM" = yes; then @@ -11781,9 +11781,9 @@ if test "${enable_xpm+set}" = set; then enableval="$enable_xpm" if test "$enableval" = yes; then - ac_cv_use_xpm='wxUSE_XPM=yes' + wx_cv_use_xpm='wxUSE_XPM=yes' else - ac_cv_use_xpm='wxUSE_XPM=no' + wx_cv_use_xpm='wxUSE_XPM=no' fi else @@ -11795,13 +11795,13 @@ else no_cache=1 fi - ac_cv_use_xpm='wxUSE_XPM='$DEFAULT_wxUSE_XPM + wx_cv_use_xpm='wxUSE_XPM='$DEFAULT_wxUSE_XPM fi; - eval "$ac_cv_use_xpm" + eval "$wx_cv_use_xpm" if test "$no_cache" != 1; then - echo $ac_cv_use_xpm >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_xpm >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_XPM" = yes; then @@ -11822,9 +11822,9 @@ if test "${enable_ico_cur+set}" = set; then enableval="$enable_ico_cur" if test "$enableval" = yes; then - ac_cv_use_ico_cur='wxUSE_ICO_CUR=yes' + wx_cv_use_ico_cur='wxUSE_ICO_CUR=yes' else - ac_cv_use_ico_cur='wxUSE_ICO_CUR=no' + wx_cv_use_ico_cur='wxUSE_ICO_CUR=no' fi else @@ -11836,13 +11836,13 @@ else no_cache=1 fi - ac_cv_use_ico_cur='wxUSE_ICO_CUR='$DEFAULT_wxUSE_ICO_CUR + wx_cv_use_ico_cur='wxUSE_ICO_CUR='$DEFAULT_wxUSE_ICO_CUR fi; - eval "$ac_cv_use_ico_cur" + eval "$wx_cv_use_ico_cur" if test "$no_cache" != 1; then - echo $ac_cv_use_ico_cur >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_ico_cur >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_ICO_CUR" = yes; then @@ -11875,9 +11875,9 @@ if test "${enable_official_build+set}" = set; then enableval="$enable_official_build" if test "$enableval" = yes; then - ac_cv_use_official_build='wxUSE_OFFICIAL_BUILD=yes' + wx_cv_use_official_build='wxUSE_OFFICIAL_BUILD=yes' else - ac_cv_use_official_build='wxUSE_OFFICIAL_BUILD=no' + wx_cv_use_official_build='wxUSE_OFFICIAL_BUILD=no' fi else @@ -11889,13 +11889,13 @@ else no_cache=1 fi - ac_cv_use_official_build='wxUSE_OFFICIAL_BUILD='$DEFAULT_wxUSE_OFFICIAL_BUILD + wx_cv_use_official_build='wxUSE_OFFICIAL_BUILD='$DEFAULT_wxUSE_OFFICIAL_BUILD fi; - eval "$ac_cv_use_official_build" + eval "$wx_cv_use_official_build" if test "$no_cache" != 1; then - echo $ac_cv_use_official_build >> ${wx_arg_cache_file}.tmp + echo $wx_cv_use_official_build >> ${wx_arg_cache_file}.tmp fi if test "$wxUSE_OFFICIAL_BUILD" = yes; then