diff --git a/configure b/configure index f93fcf84eb..184fd458c1 100755 --- a/configure +++ b/configure @@ -4283,69 +4283,69 @@ touch ${OSTYPE}.system.cache.tmp touch ${OSTYPE}.system.cache -DEFAULT_USE_GTK=1 -DEFAULT_USE_QT=0 -DEFAULT_USE_MOTIF=0 +DEFAULT_wxUSE_GTK=1 +DEFAULT_wxUSE_QT=0 +DEFAULT_wxUSE_MOTIF=0 DEFAULT_wxUSE_THREADS=1 -DEFAULT_USE_SHARED=1 -DEFAULT_USE_OPTIMISE=1 -DEFAULT_USE_PROFILE=0 -DEFAULT_USE_DEBUG_FLAG=0 -DEFAULT_USE_DEBUG_INFO=0 -DEFAULT_USE_MEM_TRACING=0 -DEFAULT_USE_DMALLOC=0 -DEFAULT_USE_APPLE_IEEE=1 -DEFAULT_USE_IOSTREAMH=1 +DEFAULT_wxUSE_SHARED=1 +DEFAULT_wxUSE_OPTIMISE=1 +DEFAULT_wxUSE_PROFILE=0 +DEFAULT_wxUSE_DEBUG_FLAG=0 +DEFAULT_wxUSE_DEBUG_INFO=0 +DEFAULT_wxUSE_MEM_TRACING=0 +DEFAULT_wxUSE_DMALLOC=0 +DEFAULT_wxUSE_APPLE_IEEE=1 +DEFAULT_wxUSE_IOSTREAMH=1 -DEFAULT_USE_ZLIB=1 -DEFAULT_USE_GDK_IMLIB=1 -DEFAULT_USE_LIBPNG=1 -DEFAULT_USE_ODBC=1 +DEFAULT_wxUSE_ZLIB=1 +DEFAULT_wxUSE_GDK_IMLIB=1 +DEFAULT_wxUSE_LIBPNG=1 +DEFAULT_wxUSE_ODBC=1 -DEFAULT_USE_COMBOBOX=1 -DEFAULT_USE_GAUGE=1 -DEFAULT_USE_SCROLLBAR=1 -DEFAULT_USE_LISTCTRL=1 -DEFAULT_USE_TREECTRL=1 -DEFAULT_USE_GRID=1 -DEFAULT_USE_TAB_DIALOG=1 -DEFAULT_USE_NOTEBOOK=1 +DEFAULT_wxUSE_COMBOBOX=1 +DEFAULT_wxUSE_GAUGE=1 +DEFAULT_wxUSE_SCROLLBAR=1 +DEFAULT_wxUSE_LISTCTRL=1 +DEFAULT_wxUSE_TREECTRL=1 +DEFAULT_wxUSE_GRID=1 +DEFAULT_wxUSE_TAB_DIALOG=1 +DEFAULT_wxUSE_NOTEBOOK=1 -DEFAULT_USE_TIMEDATE=1 -DEFAULT_USE_FRACTION=1 -DEFAULT_USE_LOG=1 -DEFAULT_USE_INTL=1 -DEFAULT_USE_CONFIG=1 -DEFAULT_USE_STREAMS=1 -DEFAULT_USE_SERIAL=1 -DEFAULT_USE_FILE=1 -DEFAULT_USE_TEXTFILE=1 +DEFAULT_wxUSE_TIMEDATE=1 +DEFAULT_wxUSE_FRACTION=1 +DEFAULT_wxUSE_LOG=1 +DEFAULT_wxUSE_INTL=1 +DEFAULT_wxUSE_CONFIG=1 +DEFAULT_wxUSE_STREAMS=1 +DEFAULT_wxUSE_SERIAL=1 +DEFAULT_wxUSE_FILE=1 +DEFAULT_wxUSE_TEXTFILE=1 -DEFAULT_USE_AFM_FOR_POSTSCRIPT=1 +DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=1 DEFAULT_WX_NORMALIZED_PS_FONTS=1 -DEFAULT_USE_POSTSCRIPT=1 +DEFAULT_wxUSE_POSTSCRIPT=1 -DEFAULT_USE_IPC=1 -DEFAULT_USE_RESOURCES=1 -DEFAULT_USE_CONSTRAINTS=1 -DEFAULT_USE_CLIPBOARD=0 -DEFAULT_USE_DND=1 +DEFAULT_wxUSE_IPC=1 +DEFAULT_wxUSE_RESOURCES=1 +DEFAULT_wxUSE_CONSTRAINTS=1 +DEFAULT_wxUSE_CLIPBOARD=0 +DEFAULT_wxUSE_DND=1 -DEFAULT_USE_MDI_ARCHITECTURE=1 -DEFAULT_USE_DOC_VIEW_ARCHITECTURE=1 -DEFAULT_USE_PRINTING_ARCHITECTURE=1 +DEFAULT_wxUSE_MDI_ARCHITECTURE=1 +DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=1 +DEFAULT_wxUSE_PRINTING_ARCHITECTURE=1 -DEFAULT_USE_PROLOGIO=1 -DEFAULT_USE_WX_RESOURCES=1 -DEFAULT_USE_RPC=0 +DEFAULT_wxUSE_PROLOGIO=1 +DEFAULT_wxUSE_WX_RESOURCES=1 +DEFAULT_wxUSE_RPC=0 -DEFAULT_USE_OPENGL=0 -DEFAULT_USE_METAFILE=0 -DEFAULT_USE_WXGRAPH=0 -DEFAULT_USE_WXTREE=0 -DEFAULT_USE_HELP=0 +DEFAULT_wxUSE_OPENGL=0 +DEFAULT_wxUSE_METAFILE=0 +DEFAULT_wxUSE_WXGRAPH=0 +DEFAULT_wxUSE_WXTREE=0 +DEFAULT_wxUSE_HELP=0 @@ -4355,23 +4355,23 @@ echo "configure:4354: checking "for gtk"" >&5 if test "${with_gtk+set}" = set; then withval="$with_gtk" if test "x$with_gtk" = xyes; then - ac_cv_use_gtk='USE_GTK="1"' + ac_cv_use_gtk='wxUSE_GTK="1"' else - ac_cv_use_gtk='USE_GTK="0"' + ac_cv_use_gtk='wxUSE_GTK="0"' fi else - LINE=`grep "USE_GTK" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_GTK" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_gtk='USE_GTK='$DEFAULT_USE_GTK + ac_cv_use_gtk='wxUSE_GTK='$DEFAULT_wxUSE_GTK fi eval "$ac_cv_use_gtk" echo $ac_cv_use_gtk >> ${OSTYPE}.system.cache.tmp -if test "$USE_GTK" = 1; then +if test "$wxUSE_GTK" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4385,23 +4385,23 @@ echo "configure:4384: checking "for qt"" >&5 if test "${with_qt+set}" = set; then withval="$with_qt" if test "x$with_qt" = xyes; then - ac_cv_use_qt='USE_QT="1"' + ac_cv_use_qt='wxUSE_QT="1"' else - ac_cv_use_qt='USE_QT="0"' + ac_cv_use_qt='wxUSE_QT="0"' fi else - LINE=`grep "USE_QT" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_QT" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_qt='USE_QT='$DEFAULT_USE_QT + ac_cv_use_qt='wxUSE_QT='$DEFAULT_wxUSE_QT fi eval "$ac_cv_use_qt" echo $ac_cv_use_qt >> ${OSTYPE}.system.cache.tmp -if test "$USE_QT" = 1; then +if test "$wxUSE_QT" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4415,23 +4415,23 @@ echo "configure:4414: checking "for motif"" >&5 if test "${with_motif+set}" = set; then withval="$with_motif" if test "x$with_motif" = xyes; then - ac_cv_use_motif='USE_MOTIF="1"' + ac_cv_use_motif='wxUSE_MOTIF="1"' else - ac_cv_use_motif='USE_MOTIF="0"' + ac_cv_use_motif='wxUSE_MOTIF="0"' fi else - LINE=`grep "USE_MOTIF" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_MOTIF" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_motif='USE_MOTIF='$DEFAULT_USE_MOTIF + ac_cv_use_motif='wxUSE_MOTIF='$DEFAULT_wxUSE_MOTIF fi eval "$ac_cv_use_motif" echo $ac_cv_use_motif >> ${OSTYPE}.system.cache.tmp -if test "$USE_MOTIF" = 1; then +if test "$wxUSE_MOTIF" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4446,23 +4446,23 @@ echo "configure:4445: checking "for shared"" >&5 if test "${with_shared+set}" = set; then withval="$with_shared" if test "x$with_shared" = xyes; then - ac_cv_use_shared='USE_SHARED="1"' + ac_cv_use_shared='wxUSE_SHARED="1"' else - ac_cv_use_shared='USE_SHARED="0"' + ac_cv_use_shared='wxUSE_SHARED="0"' fi else - LINE=`grep "USE_SHARED" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_SHARED" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_shared='USE_SHARED='$DEFAULT_USE_SHARED + ac_cv_use_shared='wxUSE_SHARED='$DEFAULT_wxUSE_SHARED fi eval "$ac_cv_use_shared" echo $ac_cv_use_shared >> ${OSTYPE}.system.cache.tmp -if test "$USE_SHARED" = 1; then +if test "$wxUSE_SHARED" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4476,23 +4476,23 @@ echo "configure:4475: checking "for optimise"" >&5 if test "${with_optimise+set}" = set; then withval="$with_optimise" if test "x$with_optimise" = xyes; then - ac_cv_use_optimise='USE_OPTIMISE="1"' + ac_cv_use_optimise='wxUSE_OPTIMISE="1"' else - ac_cv_use_optimise='USE_OPTIMISE="0"' + ac_cv_use_optimise='wxUSE_OPTIMISE="0"' fi else - LINE=`grep "USE_OPTIMISE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_OPTIMISE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_optimise='USE_OPTIMISE='$DEFAULT_USE_OPTIMISE + ac_cv_use_optimise='wxUSE_OPTIMISE='$DEFAULT_wxUSE_OPTIMISE fi eval "$ac_cv_use_optimise" echo $ac_cv_use_optimise >> ${OSTYPE}.system.cache.tmp -if test "$USE_OPTIMISE" = 1; then +if test "$wxUSE_OPTIMISE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4506,23 +4506,23 @@ echo "configure:4505: checking "for debug_flag"" >&5 if test "${with_debug_flag+set}" = set; then withval="$with_debug_flag" if test "x$with_debug_flag" = xyes; then - ac_cv_use_debug_flag='USE_DEBUG_FLAG="1"' + ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG="1"' else - ac_cv_use_debug_flag='USE_DEBUG_FLAG="0"' + ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG="0"' fi else - LINE=`grep "USE_DEBUG_FLAG" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_DEBUG_FLAG" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_debug_flag='USE_DEBUG_FLAG='$DEFAULT_USE_DEBUG_FLAG + ac_cv_use_debug_flag='wxUSE_DEBUG_FLAG='$DEFAULT_wxUSE_DEBUG_FLAG fi eval "$ac_cv_use_debug_flag" echo $ac_cv_use_debug_flag >> ${OSTYPE}.system.cache.tmp -if test "$USE_DEBUG_FLAG" = 1; then +if test "$wxUSE_DEBUG_FLAG" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4536,23 +4536,23 @@ echo "configure:4535: checking "for debug_info"" >&5 if test "${with_debug_info+set}" = set; then withval="$with_debug_info" if test "x$with_debug_info" = xyes; then - ac_cv_use_debug_info='USE_DEBUG_INFO="1"' + ac_cv_use_debug_info='wxUSE_DEBUG_INFO="1"' else - ac_cv_use_debug_info='USE_DEBUG_INFO="0"' + ac_cv_use_debug_info='wxUSE_DEBUG_INFO="0"' fi else - LINE=`grep "USE_DEBUG_INFO" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_DEBUG_INFO" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_debug_info='USE_DEBUG_INFO='$DEFAULT_USE_DEBUG_INFO + ac_cv_use_debug_info='wxUSE_DEBUG_INFO='$DEFAULT_wxUSE_DEBUG_INFO fi eval "$ac_cv_use_debug_info" echo $ac_cv_use_debug_info >> ${OSTYPE}.system.cache.tmp -if test "$USE_DEBUG_INFO" = 1; then +if test "$wxUSE_DEBUG_INFO" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4566,23 +4566,23 @@ echo "configure:4565: checking "for mem_tracing"" >&5 if test "${with_mem_tracing+set}" = set; then withval="$with_mem_tracing" if test "x$with_mem_tracing" = xyes; then - ac_cv_use_mem_tracing='USE_MEM_TRACING="1"' + ac_cv_use_mem_tracing='wxUSE_MEM_TRACING="1"' else - ac_cv_use_mem_tracing='USE_MEM_TRACING="0"' + ac_cv_use_mem_tracing='wxUSE_MEM_TRACING="0"' fi else - LINE=`grep "USE_MEM_TRACING" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_MEM_TRACING" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_mem_tracing='USE_MEM_TRACING='$DEFAULT_USE_MEM_TRACING + ac_cv_use_mem_tracing='wxUSE_MEM_TRACING='$DEFAULT_wxUSE_MEM_TRACING fi eval "$ac_cv_use_mem_tracing" echo $ac_cv_use_mem_tracing >> ${OSTYPE}.system.cache.tmp -if test "$USE_MEM_TRACING" = 1; then +if test "$wxUSE_MEM_TRACING" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4596,23 +4596,23 @@ echo "configure:4595: checking "for dmalloc"" >&5 if test "${with_dmalloc+set}" = set; then withval="$with_dmalloc" if test "x$with_dmalloc" = xyes; then - ac_cv_use_dmalloc='USE_DMALLOC="1"' + ac_cv_use_dmalloc='wxUSE_DMALLOC="1"' else - ac_cv_use_dmalloc='USE_DMALLOC="0"' + ac_cv_use_dmalloc='wxUSE_DMALLOC="0"' fi else - LINE=`grep "USE_DMALLOC" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_DMALLOC" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_dmalloc='USE_DMALLOC='$DEFAULT_USE_DMALLOC + ac_cv_use_dmalloc='wxUSE_DMALLOC='$DEFAULT_wxUSE_DMALLOC fi eval "$ac_cv_use_dmalloc" echo $ac_cv_use_dmalloc >> ${OSTYPE}.system.cache.tmp -if test "$USE_DMALLOC" = 1; then +if test "$wxUSE_DMALLOC" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4626,23 +4626,23 @@ echo "configure:4625: checking "for profile"" >&5 if test "${with_profile+set}" = set; then withval="$with_profile" if test "x$with_profile" = xyes; then - ac_cv_use_profile='USE_PROFILE="1"' + ac_cv_use_profile='wxUSE_PROFILE="1"' else - ac_cv_use_profile='USE_PROFILE="0"' + ac_cv_use_profile='wxUSE_PROFILE="0"' fi else - LINE=`grep "USE_PROFILE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_PROFILE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_profile='USE_PROFILE='$DEFAULT_USE_PROFILE + ac_cv_use_profile='wxUSE_PROFILE='$DEFAULT_wxUSE_PROFILE fi eval "$ac_cv_use_profile" echo $ac_cv_use_profile >> ${OSTYPE}.system.cache.tmp -if test "$USE_PROFILE" = 1; then +if test "$wxUSE_PROFILE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4656,23 +4656,23 @@ echo "configure:4655: checking "for apple_ieee"" >&5 if test "${with_apple_ieee+set}" = set; then withval="$with_apple_ieee" if test "x$with_apple_ieee" = xyes; then - ac_cv_use_apple_ieee='USE_APPLE_IEEE="1"' + ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE="1"' else - ac_cv_use_apple_ieee='USE_APPLE_IEEE="0"' + ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE="0"' fi else - LINE=`grep "USE_APPLE_IEEE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_APPLE_IEEE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_apple_ieee='USE_APPLE_IEEE='$DEFAULT_USE_APPLE_IEEE + ac_cv_use_apple_ieee='wxUSE_APPLE_IEEE='$DEFAULT_wxUSE_APPLE_IEEE fi eval "$ac_cv_use_apple_ieee" echo $ac_cv_use_apple_ieee >> ${OSTYPE}.system.cache.tmp -if test "$USE_APPLE_IEEE" = 1; then +if test "$wxUSE_APPLE_IEEE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4687,23 +4687,23 @@ echo "configure:4686: checking "for zlib"" >&5 if test "${with_zlib+set}" = set; then withval="$with_zlib" if test "x$with_zlib" = xyes; then - ac_cv_use_zlib='USE_ZLIB="1"' + ac_cv_use_zlib='wxUSE_ZLIB="1"' else - ac_cv_use_zlib='USE_ZLIB="0"' + ac_cv_use_zlib='wxUSE_ZLIB="0"' fi else - LINE=`grep "USE_ZLIB" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_ZLIB" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_zlib='USE_ZLIB='$DEFAULT_USE_ZLIB + ac_cv_use_zlib='wxUSE_ZLIB='$DEFAULT_wxUSE_ZLIB fi eval "$ac_cv_use_zlib" echo $ac_cv_use_zlib >> ${OSTYPE}.system.cache.tmp -if test "$USE_ZLIB" = 1; then +if test "$wxUSE_ZLIB" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4717,23 +4717,23 @@ echo "configure:4716: checking "for gdk_imlib"" >&5 if test "${with_gdk_imlib+set}" = set; then withval="$with_gdk_imlib" if test "x$with_gdk_imlib" = xyes; then - ac_cv_use_gdk_imlib='USE_GDK_IMLIB="1"' + ac_cv_use_gdk_imlib='wxUSE_GDK_IMLIB="1"' else - ac_cv_use_gdk_imlib='USE_GDK_IMLIB="0"' + ac_cv_use_gdk_imlib='wxUSE_GDK_IMLIB="0"' fi else - LINE=`grep "USE_GDK_IMLIB" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_GDK_IMLIB" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_gdk_imlib='USE_GDK_IMLIB='$DEFAULT_USE_GDK_IMLIB + ac_cv_use_gdk_imlib='wxUSE_GDK_IMLIB='$DEFAULT_wxUSE_GDK_IMLIB fi eval "$ac_cv_use_gdk_imlib" echo $ac_cv_use_gdk_imlib >> ${OSTYPE}.system.cache.tmp -if test "$USE_GDK_IMLIB" = 1; then +if test "$wxUSE_GDK_IMLIB" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4747,23 +4747,23 @@ echo "configure:4746: checking "for libpng"" >&5 if test "${with_libpng+set}" = set; then withval="$with_libpng" if test "x$with_libpng" = xyes; then - ac_cv_use_libpng='USE_LIBPNG="1"' + ac_cv_use_libpng='wxUSE_LIBPNG="1"' else - ac_cv_use_libpng='USE_LIBPNG="0"' + ac_cv_use_libpng='wxUSE_LIBPNG="0"' fi else - LINE=`grep "USE_LIBPNG" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_LIBPNG" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_libpng='USE_LIBPNG='$DEFAULT_USE_LIBPNG + ac_cv_use_libpng='wxUSE_LIBPNG='$DEFAULT_wxUSE_LIBPNG fi eval "$ac_cv_use_libpng" echo $ac_cv_use_libpng >> ${OSTYPE}.system.cache.tmp -if test "$USE_LIBPNG" = 1; then +if test "$wxUSE_LIBPNG" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4777,23 +4777,23 @@ echo "configure:4776: checking "for odbc"" >&5 if test "${with_odbc+set}" = set; then withval="$with_odbc" if test "x$with_odbc" = xyes; then - ac_cv_use_odbc='USE_ODBC="1"' + ac_cv_use_odbc='wxUSE_ODBC="1"' else - ac_cv_use_odbc='USE_ODBC="0"' + ac_cv_use_odbc='wxUSE_ODBC="0"' fi else - LINE=`grep "USE_ODBC" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_ODBC" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_odbc='USE_ODBC='$DEFAULT_USE_ODBC + ac_cv_use_odbc='wxUSE_ODBC='$DEFAULT_wxUSE_ODBC fi eval "$ac_cv_use_odbc" echo $ac_cv_use_odbc >> ${OSTYPE}.system.cache.tmp -if test "$USE_ODBC" = 1; then +if test "$wxUSE_ODBC" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4807,23 +4807,23 @@ echo "configure:4806: checking "for opengl"" >&5 if test "${with_opengl+set}" = set; then withval="$with_opengl" if test "x$with_opengl" = xyes; then - ac_cv_use_opengl='USE_OPENGL="1"' + ac_cv_use_opengl='wxUSE_OPENGL="1"' else - ac_cv_use_opengl='USE_OPENGL="0"' + ac_cv_use_opengl='wxUSE_OPENGL="0"' fi else - LINE=`grep "USE_OPENGL" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_OPENGL" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_opengl='USE_OPENGL='$DEFAULT_USE_OPENGL + ac_cv_use_opengl='wxUSE_OPENGL='$DEFAULT_wxUSE_OPENGL fi eval "$ac_cv_use_opengl" echo $ac_cv_use_opengl >> ${OSTYPE}.system.cache.tmp -if test "$USE_OPENGL" = 1; then +if test "$wxUSE_OPENGL" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4838,23 +4838,23 @@ echo "configure:4837: checking "for gauge"" >&5 if test "${with_gauge+set}" = set; then withval="$with_gauge" if test "x$with_gauge" = xyes; then - ac_cv_use_gauge='USE_GAUGE="1"' + ac_cv_use_gauge='wxUSE_GAUGE="1"' else - ac_cv_use_gauge='USE_GAUGE="0"' + ac_cv_use_gauge='wxUSE_GAUGE="0"' fi else - LINE=`grep "USE_GAUGE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_GAUGE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_gauge='USE_GAUGE='$DEFAULT_USE_GAUGE + ac_cv_use_gauge='wxUSE_GAUGE='$DEFAULT_wxUSE_GAUGE fi eval "$ac_cv_use_gauge" echo $ac_cv_use_gauge >> ${OSTYPE}.system.cache.tmp -if test "$USE_GAUGE" = 1; then +if test "$wxUSE_GAUGE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4868,23 +4868,23 @@ echo "configure:4867: checking "for combobox"" >&5 if test "${with_combobox+set}" = set; then withval="$with_combobox" if test "x$with_combobox" = xyes; then - ac_cv_use_combobox='USE_COMBOBOX="1"' + ac_cv_use_combobox='wxUSE_COMBOBOX="1"' else - ac_cv_use_combobox='USE_COMBOBOX="0"' + ac_cv_use_combobox='wxUSE_COMBOBOX="0"' fi else - LINE=`grep "USE_COMBOBOX" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_COMBOBOX" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_combobox='USE_COMBOBOX='$DEFAULT_USE_COMBOBOX + ac_cv_use_combobox='wxUSE_COMBOBOX='$DEFAULT_wxUSE_COMBOBOX fi eval "$ac_cv_use_combobox" echo $ac_cv_use_combobox >> ${OSTYPE}.system.cache.tmp -if test "$USE_COMBOBOX" = 1; then +if test "$wxUSE_COMBOBOX" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4898,23 +4898,23 @@ echo "configure:4897: checking "for scrollbar"" >&5 if test "${with_scrollbar+set}" = set; then withval="$with_scrollbar" if test "x$with_scrollbar" = xyes; then - ac_cv_use_scrollbar='USE_SCROLLBAR="1"' + ac_cv_use_scrollbar='wxUSE_SCROLLBAR="1"' else - ac_cv_use_scrollbar='USE_SCROLLBAR="0"' + ac_cv_use_scrollbar='wxUSE_SCROLLBAR="0"' fi else - LINE=`grep "USE_SCROLLBAR" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_SCROLLBAR" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_scrollbar='USE_SCROLLBAR='$DEFAULT_USE_SCROLLBAR + ac_cv_use_scrollbar='wxUSE_SCROLLBAR='$DEFAULT_wxUSE_SCROLLBAR fi eval "$ac_cv_use_scrollbar" echo $ac_cv_use_scrollbar >> ${OSTYPE}.system.cache.tmp -if test "$USE_SCROLLBAR" = 1; then +if test "$wxUSE_SCROLLBAR" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4928,23 +4928,23 @@ echo "configure:4927: checking "for listctrl"" >&5 if test "${with_listctrl+set}" = set; then withval="$with_listctrl" if test "x$with_listctrl" = xyes; then - ac_cv_use_listctrl='USE_LISTCTRL="1"' + ac_cv_use_listctrl='wxUSE_LISTCTRL="1"' else - ac_cv_use_listctrl='USE_LISTCTRL="0"' + ac_cv_use_listctrl='wxUSE_LISTCTRL="0"' fi else - LINE=`grep "USE_LISTCTRL" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_LISTCTRL" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_listctrl='USE_LISTCTRL='$DEFAULT_USE_LISTCTRL + ac_cv_use_listctrl='wxUSE_LISTCTRL='$DEFAULT_wxUSE_LISTCTRL fi eval "$ac_cv_use_listctrl" echo $ac_cv_use_listctrl >> ${OSTYPE}.system.cache.tmp -if test "$USE_LISTCTRL" = 1; then +if test "$wxUSE_LISTCTRL" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4958,23 +4958,23 @@ echo "configure:4957: checking "for treectrl"" >&5 if test "${with_treectrl+set}" = set; then withval="$with_treectrl" if test "x$with_treectrl" = xyes; then - ac_cv_use_treectrl='USE_TREECTRL="1"' + ac_cv_use_treectrl='wxUSE_TREECTRL="1"' else - ac_cv_use_treectrl='USE_TREECTRL="0"' + ac_cv_use_treectrl='wxUSE_TREECTRL="0"' fi else - LINE=`grep "USE_TREECTRL" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_TREECTRL" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_treectrl='USE_TREECTRL='$DEFAULT_USE_TREECTRL + ac_cv_use_treectrl='wxUSE_TREECTRL='$DEFAULT_wxUSE_TREECTRL fi eval "$ac_cv_use_treectrl" echo $ac_cv_use_treectrl >> ${OSTYPE}.system.cache.tmp -if test "$USE_TREECTRL" = 1; then +if test "$wxUSE_TREECTRL" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -4988,23 +4988,23 @@ echo "configure:4987: checking "for grid"" >&5 if test "${with_grid+set}" = set; then withval="$with_grid" if test "x$with_grid" = xyes; then - ac_cv_use_grid='USE_GRID="1"' + ac_cv_use_grid='wxUSE_GRID="1"' else - ac_cv_use_grid='USE_GRID="0"' + ac_cv_use_grid='wxUSE_GRID="0"' fi else - LINE=`grep "USE_GRID" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_GRID" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_grid='USE_GRID='$DEFAULT_USE_GRID + ac_cv_use_grid='wxUSE_GRID='$DEFAULT_wxUSE_GRID fi eval "$ac_cv_use_grid" echo $ac_cv_use_grid >> ${OSTYPE}.system.cache.tmp -if test "$USE_GRID" = 1; then +if test "$wxUSE_GRID" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5018,23 +5018,23 @@ echo "configure:5017: checking "for tab_dialog"" >&5 if test "${with_tab_dialog+set}" = set; then withval="$with_tab_dialog" if test "x$with_tab_dialog" = xyes; then - ac_cv_use_tab_dialog='USE_TAB_DIALOG="1"' + ac_cv_use_tab_dialog='wxUSE_TAB_DIALOG="1"' else - ac_cv_use_tab_dialog='USE_TAB_DIALOG="0"' + ac_cv_use_tab_dialog='wxUSE_TAB_DIALOG="0"' fi else - LINE=`grep "USE_TAB_DIALOG" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_TAB_DIALOG" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_tab_dialog='USE_TAB_DIALOG='$DEFAULT_USE_TAB_DIALOG + ac_cv_use_tab_dialog='wxUSE_TAB_DIALOG='$DEFAULT_wxUSE_TAB_DIALOG fi eval "$ac_cv_use_tab_dialog" echo $ac_cv_use_tab_dialog >> ${OSTYPE}.system.cache.tmp -if test "$USE_TAB_DIALOG" = 1; then +if test "$wxUSE_TAB_DIALOG" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5048,23 +5048,23 @@ echo "configure:5047: checking "for notebook"" >&5 if test "${with_notebook+set}" = set; then withval="$with_notebook" if test "x$with_notebook" = xyes; then - ac_cv_use_notebook='USE_NOTEBOOK="1"' + ac_cv_use_notebook='wxUSE_NOTEBOOK="1"' else - ac_cv_use_notebook='USE_NOTEBOOK="0"' + ac_cv_use_notebook='wxUSE_NOTEBOOK="0"' fi else - LINE=`grep "USE_NOTEBOOK" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_NOTEBOOK" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_notebook='USE_NOTEBOOK='$DEFAULT_USE_NOTEBOOK + ac_cv_use_notebook='wxUSE_NOTEBOOK='$DEFAULT_wxUSE_NOTEBOOK fi eval "$ac_cv_use_notebook" echo $ac_cv_use_notebook >> ${OSTYPE}.system.cache.tmp -if test "$USE_NOTEBOOK" = 1; then +if test "$wxUSE_NOTEBOOK" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5079,23 +5079,23 @@ echo "configure:5078: checking "for timedate"" >&5 if test "${with_timedate+set}" = set; then withval="$with_timedate" if test "x$with_timedate" = xyes; then - ac_cv_use_timedate='USE_TIMEDATE="1"' + ac_cv_use_timedate='wxUSE_TIMEDATE="1"' else - ac_cv_use_timedate='USE_TIMEDATE="0"' + ac_cv_use_timedate='wxUSE_TIMEDATE="0"' fi else - LINE=`grep "USE_TIMEDATE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_TIMEDATE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_timedate='USE_TIMEDATE='$DEFAULT_USE_TIMEDATE + ac_cv_use_timedate='wxUSE_TIMEDATE='$DEFAULT_wxUSE_TIMEDATE fi eval "$ac_cv_use_timedate" echo $ac_cv_use_timedate >> ${OSTYPE}.system.cache.tmp -if test "$USE_TIMEDATE" = 1; then +if test "$wxUSE_TIMEDATE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5109,23 +5109,23 @@ echo "configure:5108: checking "for fraction"" >&5 if test "${with_fraction+set}" = set; then withval="$with_fraction" if test "x$with_fraction" = xyes; then - ac_cv_use_fraction='USE_FRACTION="1"' + ac_cv_use_fraction='wxUSE_FRACTION="1"' else - ac_cv_use_fraction='USE_FRACTION="0"' + ac_cv_use_fraction='wxUSE_FRACTION="0"' fi else - LINE=`grep "USE_FRACTION" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_FRACTION" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_fraction='USE_FRACTION='$DEFAULT_USE_FRACTION + ac_cv_use_fraction='wxUSE_FRACTION='$DEFAULT_wxUSE_FRACTION fi eval "$ac_cv_use_fraction" echo $ac_cv_use_fraction >> ${OSTYPE}.system.cache.tmp -if test "$USE_FRACTION" = 1; then +if test "$wxUSE_FRACTION" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5139,23 +5139,23 @@ echo "configure:5138: checking "for log"" >&5 if test "${with_log+set}" = set; then withval="$with_log" if test "x$with_log" = xyes; then - ac_cv_use_log='USE_LOG="1"' + ac_cv_use_log='wxUSE_LOG="1"' else - ac_cv_use_log='USE_LOG="0"' + ac_cv_use_log='wxUSE_LOG="0"' fi else - LINE=`grep "USE_LOG" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_LOG" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_log='USE_LOG='$DEFAULT_USE_LOG + ac_cv_use_log='wxUSE_LOG='$DEFAULT_wxUSE_LOG fi eval "$ac_cv_use_log" echo $ac_cv_use_log >> ${OSTYPE}.system.cache.tmp -if test "$USE_LOG" = 1; then +if test "$wxUSE_LOG" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5169,23 +5169,23 @@ echo "configure:5168: checking "for intl"" >&5 if test "${with_intl+set}" = set; then withval="$with_intl" if test "x$with_intl" = xyes; then - ac_cv_use_intl='USE_INTL="1"' + ac_cv_use_intl='wxUSE_INTL="1"' else - ac_cv_use_intl='USE_INTL="0"' + ac_cv_use_intl='wxUSE_INTL="0"' fi else - LINE=`grep "USE_INTL" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_INTL" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_intl='USE_INTL='$DEFAULT_USE_INTL + ac_cv_use_intl='wxUSE_INTL='$DEFAULT_wxUSE_INTL fi eval "$ac_cv_use_intl" echo $ac_cv_use_intl >> ${OSTYPE}.system.cache.tmp -if test "$USE_INTL" = 1; then +if test "$wxUSE_INTL" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5199,23 +5199,23 @@ echo "configure:5198: checking "for config"" >&5 if test "${with_config+set}" = set; then withval="$with_config" if test "x$with_config" = xyes; then - ac_cv_use_config='USE_CONFIG="1"' + ac_cv_use_config='wxUSE_CONFIG="1"' else - ac_cv_use_config='USE_CONFIG="0"' + ac_cv_use_config='wxUSE_CONFIG="0"' fi else - LINE=`grep "USE_CONFIG" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_CONFIG" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_config='USE_CONFIG='$DEFAULT_USE_CONFIG + ac_cv_use_config='wxUSE_CONFIG='$DEFAULT_wxUSE_CONFIG fi eval "$ac_cv_use_config" echo $ac_cv_use_config >> ${OSTYPE}.system.cache.tmp -if test "$USE_CONFIG" = 1; then +if test "$wxUSE_CONFIG" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5229,23 +5229,23 @@ echo "configure:5228: checking "for streams"" >&5 if test "${with_streams+set}" = set; then withval="$with_streams" if test "x$with_streams" = xyes; then - ac_cv_use_streams='USE_STREAMS="1"' + ac_cv_use_streams='wxUSE_STREAMS="1"' else - ac_cv_use_streams='USE_STREAMS="0"' + ac_cv_use_streams='wxUSE_STREAMS="0"' fi else - LINE=`grep "USE_STREAMS" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_STREAMS" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_streams='USE_STREAMS='$DEFAULT_USE_STREAMS + ac_cv_use_streams='wxUSE_STREAMS='$DEFAULT_wxUSE_STREAMS fi eval "$ac_cv_use_streams" echo $ac_cv_use_streams >> ${OSTYPE}.system.cache.tmp -if test "$USE_STREAMS" = 1; then +if test "$wxUSE_STREAMS" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5259,23 +5259,23 @@ echo "configure:5258: checking "for serial"" >&5 if test "${with_serial+set}" = set; then withval="$with_serial" if test "x$with_serial" = xyes; then - ac_cv_use_serial='USE_SERIAL="1"' + ac_cv_use_serial='wxUSE_SERIAL="1"' else - ac_cv_use_serial='USE_SERIAL="0"' + ac_cv_use_serial='wxUSE_SERIAL="0"' fi else - LINE=`grep "USE_SERIAL" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_SERIAL" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_serial='USE_SERIAL='$DEFAULT_USE_SERIAL + ac_cv_use_serial='wxUSE_SERIAL='$DEFAULT_wxUSE_SERIAL fi eval "$ac_cv_use_serial" echo $ac_cv_use_serial >> ${OSTYPE}.system.cache.tmp -if test "$USE_SERIAL" = 1; then +if test "$wxUSE_SERIAL" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5289,23 +5289,23 @@ echo "configure:5288: checking "for file"" >&5 if test "${with_file+set}" = set; then withval="$with_file" if test "x$with_file" = xyes; then - ac_cv_use_file='USE_FILE="1"' + ac_cv_use_file='wxUSE_FILE="1"' else - ac_cv_use_file='USE_FILE="0"' + ac_cv_use_file='wxUSE_FILE="0"' fi else - LINE=`grep "USE_FILE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_FILE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_file='USE_FILE='$DEFAULT_USE_FILE + ac_cv_use_file='wxUSE_FILE='$DEFAULT_wxUSE_FILE fi eval "$ac_cv_use_file" echo $ac_cv_use_file >> ${OSTYPE}.system.cache.tmp -if test "$USE_FILE" = 1; then +if test "$wxUSE_FILE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5319,23 +5319,23 @@ echo "configure:5318: checking "for textfile"" >&5 if test "${with_textfile+set}" = set; then withval="$with_textfile" if test "x$with_textfile" = xyes; then - ac_cv_use_textfile='USE_TEXTFILE="1"' + ac_cv_use_textfile='wxUSE_TEXTFILE="1"' else - ac_cv_use_textfile='USE_TEXTFILE="0"' + ac_cv_use_textfile='wxUSE_TEXTFILE="0"' fi else - LINE=`grep "USE_TEXTFILE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_TEXTFILE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_textfile='USE_TEXTFILE='$DEFAULT_USE_TEXTFILE + ac_cv_use_textfile='wxUSE_TEXTFILE='$DEFAULT_wxUSE_TEXTFILE fi eval "$ac_cv_use_textfile" echo $ac_cv_use_textfile >> ${OSTYPE}.system.cache.tmp -if test "$USE_TEXTFILE" = 1; then +if test "$wxUSE_TEXTFILE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5350,23 +5350,23 @@ echo "configure:5349: checking "for afmfonts"" >&5 if test "${with_afmfonts+set}" = set; then withval="$with_afmfonts" if test "x$with_afmfonts" = xyes; then - ac_cv_use_afmfonts='USE_AFM_FOR_POSTSCRIPT="1"' + ac_cv_use_afmfonts='wxUSE_AFM_FOR_POSTSCRIPT="1"' else - ac_cv_use_afmfonts='USE_AFM_FOR_POSTSCRIPT="0"' + ac_cv_use_afmfonts='wxUSE_AFM_FOR_POSTSCRIPT="0"' fi else - LINE=`grep "USE_AFM_FOR_POSTSCRIPT" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_AFM_FOR_POSTSCRIPT" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_afmfonts='USE_AFM_FOR_POSTSCRIPT='$DEFAULT_USE_AFM_FOR_POSTSCRIPT + ac_cv_use_afmfonts='wxUSE_AFM_FOR_POSTSCRIPT='$DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT fi eval "$ac_cv_use_afmfonts" echo $ac_cv_use_afmfonts >> ${OSTYPE}.system.cache.tmp -if test "$USE_AFM_FOR_POSTSCRIPT" = 1; then +if test "$wxUSE_AFM_FOR_POSTSCRIPT" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5410,23 +5410,23 @@ echo "configure:5409: checking "for postscript"" >&5 if test "${with_postscript+set}" = set; then withval="$with_postscript" if test "x$with_postscript" = xyes; then - ac_cv_use_postscript='USE_POSTSCRIPT="1"' + ac_cv_use_postscript='wxUSE_POSTSCRIPT="1"' else - ac_cv_use_postscript='USE_POSTSCRIPT="0"' + ac_cv_use_postscript='wxUSE_POSTSCRIPT="0"' fi else - LINE=`grep "USE_POSTSCRIPT" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_POSTSCRIPT" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_postscript='USE_POSTSCRIPT='$DEFAULT_USE_POSTSCRIPT + ac_cv_use_postscript='wxUSE_POSTSCRIPT='$DEFAULT_wxUSE_POSTSCRIPT fi eval "$ac_cv_use_postscript" echo $ac_cv_use_postscript >> ${OSTYPE}.system.cache.tmp -if test "$USE_POSTSCRIPT" = 1; then +if test "$wxUSE_POSTSCRIPT" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5441,23 +5441,23 @@ echo "configure:5440: checking "for wxresources"" >&5 if test "${with_wxresources+set}" = set; then withval="$with_wxresources" if test "x$with_wxresources" = xyes; then - ac_cv_use_wxresources='USE_WX_RESOURCES="1"' + ac_cv_use_wxresources='wxUSE_WX_RESOURCES="1"' else - ac_cv_use_wxresources='USE_WX_RESOURCES="0"' + ac_cv_use_wxresources='wxUSE_WX_RESOURCES="0"' fi else - LINE=`grep "USE_WX_RESOURCES" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_WX_RESOURCES" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_wxresources='USE_WX_RESOURCES='$DEFAULT_USE_WX_RESOURCES + ac_cv_use_wxresources='wxUSE_WX_RESOURCES='$DEFAULT_wxUSE_WX_RESOURCES fi eval "$ac_cv_use_wxresources" echo $ac_cv_use_wxresources >> ${OSTYPE}.system.cache.tmp -if test "$USE_WX_RESOURCES" = 1; then +if test "$wxUSE_WX_RESOURCES" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5471,23 +5471,23 @@ echo "configure:5470: checking "for prologio"" >&5 if test "${with_prologio+set}" = set; then withval="$with_prologio" if test "x$with_prologio" = xyes; then - ac_cv_use_prologio='USE_PROLOGIO="1"' + ac_cv_use_prologio='wxUSE_PROLOGIO="1"' else - ac_cv_use_prologio='USE_PROLOGIO="0"' + ac_cv_use_prologio='wxUSE_PROLOGIO="0"' fi else - LINE=`grep "USE_PROLOGIO" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_PROLOGIO" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_prologio='USE_PROLOGIO='$DEFAULT_USE_PROLOGIO + ac_cv_use_prologio='wxUSE_PROLOGIO='$DEFAULT_wxUSE_PROLOGIO fi eval "$ac_cv_use_prologio" echo $ac_cv_use_prologio >> ${OSTYPE}.system.cache.tmp -if test "$USE_PROLOGIO" = 1; then +if test "$wxUSE_PROLOGIO" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5501,23 +5501,23 @@ echo "configure:5500: checking "for RPC"" >&5 if test "${with_rpc+set}" = set; then withval="$with_rpc" if test "x$with_rpc" = xyes; then - ac_cv_use_rpc='USE_RPC="1"' + ac_cv_use_rpc='wxUSE_RPC="1"' else - ac_cv_use_rpc='USE_RPC="0"' + ac_cv_use_rpc='wxUSE_RPC="0"' fi else - LINE=`grep "USE_RPC" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_RPC" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_rpc='USE_RPC='$DEFAULT_USE_RPC + ac_cv_use_rpc='wxUSE_RPC='$DEFAULT_wxUSE_RPC fi eval "$ac_cv_use_rpc" echo $ac_cv_use_rpc >> ${OSTYPE}.system.cache.tmp -if test "$USE_RPC" = 1; then +if test "$wxUSE_RPC" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5532,23 +5532,23 @@ echo "configure:5531: checking "for IPC"" >&5 if test "${with_ipc+set}" = set; then withval="$with_ipc" if test "x$with_ipc" = xyes; then - ac_cv_use_ipc='USE_IPC="1"' + ac_cv_use_ipc='wxUSE_IPC="1"' else - ac_cv_use_ipc='USE_IPC="0"' + ac_cv_use_ipc='wxUSE_IPC="0"' fi else - LINE=`grep "USE_IPC" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_IPC" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_ipc='USE_IPC='$DEFAULT_USE_IPC + ac_cv_use_ipc='wxUSE_IPC='$DEFAULT_wxUSE_IPC fi eval "$ac_cv_use_ipc" echo $ac_cv_use_ipc >> ${OSTYPE}.system.cache.tmp -if test "$USE_IPC" = 1; then +if test "$wxUSE_IPC" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5562,23 +5562,23 @@ echo "configure:5561: checking "for resources"" >&5 if test "${with_resources+set}" = set; then withval="$with_resources" if test "x$with_resources" = xyes; then - ac_cv_use_resources='USE_RESOURCES="1"' + ac_cv_use_resources='wxUSE_RESOURCES="1"' else - ac_cv_use_resources='USE_RESOURCES="0"' + ac_cv_use_resources='wxUSE_RESOURCES="0"' fi else - LINE=`grep "USE_RESOURCES" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_RESOURCES" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_resources='USE_RESOURCES='$DEFAULT_USE_RESOURCES + ac_cv_use_resources='wxUSE_RESOURCES='$DEFAULT_wxUSE_RESOURCES fi eval "$ac_cv_use_resources" echo $ac_cv_use_resources >> ${OSTYPE}.system.cache.tmp -if test "$USE_RESOURCES" = 1; then +if test "$wxUSE_RESOURCES" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5592,23 +5592,23 @@ echo "configure:5591: checking "for clipboard"" >&5 if test "${with_clipboard+set}" = set; then withval="$with_clipboard" if test "x$with_clipboard" = xyes; then - ac_cv_use_clipboard='USE_CLIPBOARD="1"' + ac_cv_use_clipboard='wxUSE_CLIPBOARD="1"' else - ac_cv_use_clipboard='USE_CLIPBOARD="0"' + ac_cv_use_clipboard='wxUSE_CLIPBOARD="0"' fi else - LINE=`grep "USE_CLIPBOARD" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_CLIPBOARD" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_clipboard='USE_CLIPBOARD='$DEFAULT_USE_CLIPBOARD + ac_cv_use_clipboard='wxUSE_CLIPBOARD='$DEFAULT_wxUSE_CLIPBOARD fi eval "$ac_cv_use_clipboard" echo $ac_cv_use_clipboard >> ${OSTYPE}.system.cache.tmp -if test "$USE_CLIPBOARD" = 1; then +if test "$wxUSE_CLIPBOARD" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5622,23 +5622,23 @@ echo "configure:5621: checking "for dnd"" >&5 if test "${with_dnd+set}" = set; then withval="$with_dnd" if test "x$with_dnd" = xyes; then - ac_cv_use_dnd='USE_DND="1"' + ac_cv_use_dnd='wxUSE_DND="1"' else - ac_cv_use_dnd='USE_DND="0"' + ac_cv_use_dnd='wxUSE_DND="0"' fi else - LINE=`grep "USE_DND" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_DND" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_dnd='USE_DND='$DEFAULT_USE_DND + ac_cv_use_dnd='wxUSE_DND='$DEFAULT_wxUSE_DND fi eval "$ac_cv_use_dnd" echo $ac_cv_use_dnd >> ${OSTYPE}.system.cache.tmp -if test "$USE_DND" = 1; then +if test "$wxUSE_DND" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5652,23 +5652,23 @@ echo "configure:5651: checking "for constrains"" >&5 if test "${with_constraints+set}" = set; then withval="$with_constraints" if test "x$with_constraints" = xyes; then - ac_cv_use_constraints='USE_CONSTRAINTS="1"' + ac_cv_use_constraints='wxUSE_CONSTRAINTS="1"' else - ac_cv_use_constraints='USE_CONSTRAINTS="0"' + ac_cv_use_constraints='wxUSE_CONSTRAINTS="0"' fi else - LINE=`grep "USE_CONSTRAINTS" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_CONSTRAINTS" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_constraints='USE_CONSTRAINTS='$DEFAULT_USE_CONSTRAINTS + ac_cv_use_constraints='wxUSE_CONSTRAINTS='$DEFAULT_wxUSE_CONSTRAINTS fi eval "$ac_cv_use_constraints" echo $ac_cv_use_constraints >> ${OSTYPE}.system.cache.tmp -if test "$USE_CONSTRAINTS" = 1; then +if test "$wxUSE_CONSTRAINTS" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5683,23 +5683,23 @@ echo "configure:5682: checking "for mdi"" >&5 if test "${with_mdi+set}" = set; then withval="$with_mdi" if test "x$with_mdi" = xyes; then - ac_cv_use_mdi='USE_MDI_ARCHITECTURE="1"' + ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE="1"' else - ac_cv_use_mdi='USE_MDI_ARCHITECTURE="0"' + ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE="0"' fi else - LINE=`grep "USE_MDI_ARCHITECTURE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_MDI_ARCHITECTURE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_mdi='USE_MDI_ARCHITECTURE='$DEFAULT_USE_MDI_ARCHITECTURE + ac_cv_use_mdi='wxUSE_MDI_ARCHITECTURE='$DEFAULT_wxUSE_MDI_ARCHITECTURE fi eval "$ac_cv_use_mdi" echo $ac_cv_use_mdi >> ${OSTYPE}.system.cache.tmp -if test "$USE_MDI_ARCHITECTURE" = 1; then +if test "$wxUSE_MDI_ARCHITECTURE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5713,23 +5713,23 @@ echo "configure:5712: checking "for docview"" >&5 if test "${with_docview+set}" = set; then withval="$with_docview" if test "x$with_docview" = xyes; then - ac_cv_use_docview='USE_DOC_VIEW_ARCHITECTURE="1"' + ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE="1"' else - ac_cv_use_docview='USE_DOC_VIEW_ARCHITECTURE="0"' + ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE="0"' fi else - LINE=`grep "USE_DOC_VIEW_ARCHITECTURE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_DOC_VIEW_ARCHITECTURE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_docview='USE_DOC_VIEW_ARCHITECTURE='$DEFAULT_USE_DOC_VIEW_ARCHITECTURE + ac_cv_use_docview='wxUSE_DOC_VIEW_ARCHITECTURE='$DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE fi eval "$ac_cv_use_docview" echo $ac_cv_use_docview >> ${OSTYPE}.system.cache.tmp -if test "$USE_DOC_VIEW_ARCHITECTURE" = 1; then +if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5743,23 +5743,23 @@ echo "configure:5742: checking "for printarch"" >&5 if test "${with_printarch+set}" = set; then withval="$with_printarch" if test "x$with_printarch" = xyes; then - ac_cv_use_printarch='USE_PRINTING_ARCHITECTURE="1"' + ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE="1"' else - ac_cv_use_printarch='USE_PRINTING_ARCHITECTURE="0"' + ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE="0"' fi else - LINE=`grep "USE_PRINTING_ARCHITECTURE" ${OSTYPE}.system.cache` + LINE=`grep "wxUSE_PRINTING_ARCHITECTURE" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_printarch='USE_PRINTING_ARCHITECTURE='$DEFAULT_USE_PRINTING_ARCHITECTURE + ac_cv_use_printarch='wxUSE_PRINTING_ARCHITECTURE='$DEFAULT_wxUSE_PRINTING_ARCHITECTURE fi eval "$ac_cv_use_printarch" echo $ac_cv_use_printarch >> ${OSTYPE}.system.cache.tmp -if test "$USE_PRINTING_ARCHITECTURE" = 1; then +if test "$wxUSE_PRINTING_ARCHITECTURE" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -5767,7 +5767,7 @@ fi -if test "$USE_UNIX" = 1 ; then +if test "$wxUSE_UNIX" = 1 ; then cat >> confdefs.h <<\EOF #define __UNIX__ 1 EOF @@ -5784,7 +5784,7 @@ GUI_TK_LINK= MAKEINCLUDE= -if test "$USE_GTK" = 1; then +if test "$wxUSE_GTK" = 1; then # Check whether --with-gtk-prefix or --without-gtk-prefix was given. if test "${with_gtk_prefix+set}" = set; then withval="$with_gtk_prefix" @@ -5921,7 +5921,7 @@ fi MAKEINCLUDE=../gtk.inc fi -if test "$USE_QT" = 1; then +if test "$wxUSE_QT" = 1; then echo $ac_n "checking for Qt includes""... $ac_c" 1>&6 echo "configure:5927: checking for Qt includes" >&5 @@ -5985,7 +5985,7 @@ for ac_dir in $SEARCH_LIB; MAKEINCLUDE=../qt.inc fi -if test "$USE_MOTIF" = 1; then +if test "$wxUSE_MOTIF" = 1; then echo $ac_n "checking for Motif/Lesstif includes""... $ac_c" 1>&6 echo "configure:5991: checking for Motif/Lesstif includes" >&5 @@ -6064,46 +6064,46 @@ fi WXDEBUG= -if test "$USE_DEBUG_INFO" = 1 ; then +if test "$wxUSE_DEBUG_INFO" = 1 ; then WXDEBUG="-g -O0" fi -if test "$USE_DEBUG_FLAG" = 1 ; then +if test "$wxUSE_DEBUG_FLAG" = 1 ; then cat >> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <&5 if test "${with_threads+set}" = set; then withval="$with_threads" if test "x$with_threads" = xyes; then - ac_cv_use_threads='wxUSE_THREADS="1"' + ac_cv_use_threads='wxwxUSE_THREADS="1"' else - ac_cv_use_threads='wxUSE_THREADS="0"' + ac_cv_use_threads='wxwxUSE_THREADS="0"' fi else - LINE=`grep "wxUSE_THREADS" ${OSTYPE}.system.cache` + LINE=`grep "wxwxUSE_THREADS" ${OSTYPE}.system.cache` if test "x$LINE" != x ; then eval "DEFAULT_$LINE" fi - ac_cv_use_threads='wxUSE_THREADS='$DEFAULT_wxUSE_THREADS + ac_cv_use_threads='wxwxUSE_THREADS='$DEFAULT_wxwxUSE_THREADS fi eval "$ac_cv_use_threads" echo $ac_cv_use_threads >> ${OSTYPE}.system.cache.tmp -if test "$wxUSE_THREADS" = 1; then +if test "$wxwxUSE_THREADS" = 1; then echo "$ac_t""yes" 1>&6 else echo "$ac_t""no" 1>&6 @@ -6504,7 +6504,7 @@ fi -if test "$wxUSE_THREADS" = "1"; then +if test "$wxwxUSE_THREADS" = "1"; then UNIX_THREAD="gtk/threadno.cpp" @@ -6679,13 +6679,13 @@ fi fi if test -z "$UNIX_THREAD"; then - wxUSE_THREADS=0 + wxwxUSE_THREADS=0 fi cat >> confdefs.h <<\EOF -#define wxUSE_THREADS 1 +#define wxwxUSE_THREADS 1 EOF @@ -6695,7 +6695,7 @@ OPENGL_INCLUDE= OPENGL_LIBRARY= OPENGL_LINK= -if test "$USE_OPENGL" = 1; then +if test "$wxUSE_OPENGL" = 1; then echo $ac_n "checking for OpenGL includes""... $ac_c" 1>&6 echo "configure:6701: checking for OpenGL includes" >&5 @@ -6800,8 +6800,8 @@ for ac_dir in $SEARCH_LIB; fi -USE_GLX=$USE_OPENGL -if test "$USE_OPENGL" != 1; then +wxUSE_GLX=$wxUSE_OPENGL +if test "$wxUSE_OPENGL" != 1; then OPENGL_LIBRARIES= OPENGL_INCLUDE= OPENGL_LINK= @@ -6809,7 +6809,7 @@ if test "$USE_OPENGL" != 1; then fi cat >> confdefs.h <