-
-if test "$wxUSE_CLIPBOARD" = "yes"; then
- if test "$wxUSE_MGL" = 1; then
- { echo "$as_me:$LINENO: WARNING: Clipboard not yet supported under MGL... disabled" >&5
-echo "$as_me: WARNING: Clipboard not yet supported under MGL... disabled" >&2;}
- wxUSE_CLIPBOARD=no
- fi
-
- if test "$wxUSE_CLIPBOARD" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CLIPBOARD 1
-_ACEOF
-
-
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_DATAOBJ 1
-_ACEOF
-
- fi
-fi
-
-if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
- if test "$wxUSE_GTK" = 1; then
- if test "$WXGTK12" != 1; then
- { echo "$as_me:$LINENO: WARNING: Drag and drop is only supported under GTK+ 1.2... disabled" >&5
-echo "$as_me: WARNING: Drag and drop is only supported under GTK+ 1.2... disabled" >&2;}
- wxUSE_DRAG_AND_DROP=no
- fi
- fi
-
- if test "$wxUSE_MOTIF" = 1; then
- { echo "$as_me:$LINENO: WARNING: Drag and drop not yet supported under Motif... disabled" >&5
-echo "$as_me: WARNING: Drag and drop not yet supported under Motif... disabled" >&2;}
- wxUSE_DRAG_AND_DROP=no
- fi
-
- if test "$wxUSE_X11" = 1; then
- { echo "$as_me:$LINENO: WARNING: Drag and drop not yet supported under X11... disabled" >&5
-echo "$as_me: WARNING: Drag and drop not yet supported under X11... disabled" >&2;}
- wxUSE_DRAG_AND_DROP=no
- fi
-
- if test "$wxUSE_MGL" = 1; then
- { echo "$as_me:$LINENO: WARNING: Drag and drop not yet supported under MGL... disabled" >&5
-echo "$as_me: WARNING: Drag and drop not yet supported under MGL... disabled" >&2;}
- wxUSE_DRAG_AND_DROP=no
- fi
-
- if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_DRAG_AND_DROP 1
-_ACEOF
-
- fi
-
-fi
-
-if test "$wxUSE_DRAG_AND_DROP" = "yes" -o "$wxUSE_CLIPBOARD" = "yes"; then
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
-fi
-
-if test "$wxUSE_SPLINES" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SPLINES 1
-_ACEOF
-
-fi
-
-
-USES_CONTROLS=0
-if test "$wxUSE_CONTROLS" = "yes"; then
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_ACCEL" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_ACCEL 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_BUTTON" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_BUTTON 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_BMPBUTTON" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_BMPBUTTON 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_CALCTRL" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CALENDARCTRL 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
-fi
-
-if test "$wxUSE_CARET" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CARET 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
-fi
-
-if test "$wxUSE_COMBOBOX" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_COMBOBOX 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_CHOICE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CHOICE 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_CHECKBOX" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CHECKBOX 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_CHECKLST" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CHECKLISTBOX 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
-fi
-
-if test "$wxUSE_DISPLAY" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_DISPLAY 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display"
-fi
-
-if test "$wxUSE_GAUGE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_GAUGE 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_GRID" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_GRID 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
-fi
-
-if test "$wxUSE_IMAGLIST" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_IMAGLIST 1
-_ACEOF
-
-fi
-
-if test "$wxUSE_LISTBOOK" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_LISTBOOK 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_LISTBOX" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_LISTBOX 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_LISTCTRL" = "yes"; then
- if test "$wxUSE_IMAGLIST" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_LISTCTRL 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
- else
- { echo "$as_me:$LINENO: WARNING: wxListCtrl requires wxImageList and won't be compiled without it" >&5
-echo "$as_me: WARNING: wxListCtrl requires wxImageList and won't be compiled without it" >&2;}
- fi
-fi
-
-if test "$wxUSE_NOTEBOOK" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_NOTEBOOK 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
-fi
-
-
-if test "$wxUSE_RADIOBOX" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_RADIOBOX 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_RADIOBTN" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_RADIOBTN 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_SASH" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SASH 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
-fi
-
-if test "$wxUSE_SCROLLBAR" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SCROLLBAR 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
-fi
-
-if test "$wxUSE_SLIDER" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SLIDER 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_SPINBTN" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SPINBTN 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_SPINCTRL" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SPINCTRL 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_SPLITTER" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SPLITTER 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
-fi
-
-if test "$wxUSE_STATBMP" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_STATBMP 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_STATBOX" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_STATBOX 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_STATTEXT" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_STATTEXT 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_STATLINE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_STATLINE 1
-_ACEOF
-
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_STATUSBAR" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_STATUSBAR 1
-_ACEOF
-
- USES_CONTROLS=1
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
-fi
-
-if test "$wxUSE_TABDIALOG" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TAB_DIALOG 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
-fi
-
-if test "$wxUSE_TEXTCTRL" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TEXTCTRL 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
-fi
-
-if test "$wxUSE_TOGGLEBTN" = "yes"; then
- if test "$wxUSE_COCOA" = 1 ; then
- { echo "$as_me:$LINENO: WARNING: Toggle button not yet supported under Mac OS X... disabled" >&5
-echo "$as_me: WARNING: Toggle button not yet supported under Mac OS X... disabled" >&2;}
- wxUSE_TOGGLEBTN=no
- fi
- if test "$wxUSE_UNIVERSAL" = "yes"; then
- { echo "$as_me:$LINENO: WARNING: Toggle button not yet supported under wxUniversal... disabled" >&5
-echo "$as_me: WARNING: Toggle button not yet supported under wxUniversal... disabled" >&2;}
- wxUSE_TOGGLEBTN=no
- fi
-
- if test "$wxUSE_TOGGLEBTN" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TOGGLEBTN 1
-_ACEOF
-
- USES_CONTROLS=1
- fi
-fi
-
-if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TOOLBAR_SIMPLE 1
-_ACEOF
-
- wxUSE_TOOLBAR="yes"
- USES_CONTROLS=1
-fi
-
-if test "$wxUSE_TOOLBAR" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TOOLBAR 1
-_ACEOF
-
- USES_CONTROLS=1
-
- if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
- wxUSE_TOOLBAR_NATIVE="yes"
- fi
-
- if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TOOLBAR_NATIVE 1
-_ACEOF
-
- USES_CONTROLS=1
- fi
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
-fi
-
-if test "$wxUSE_TOOLTIPS" = "yes"; then
- if test "$wxUSE_MOTIF" = 1; then
- { echo "$as_me:$LINENO: WARNING: wxTooltip not supported yet under Motif... disabled" >&5
-echo "$as_me: WARNING: wxTooltip not supported yet under Motif... disabled" >&2;}
- else
- if test "$wxUSE_UNIVERSAL" = "yes"; then
- { echo "$as_me:$LINENO: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&5
-echo "$as_me: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&2;}
- else
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TOOLTIPS 1
-_ACEOF
-
- fi
- fi
-fi
-
-if test "$wxUSE_TREECTRL" = "yes"; then
- if test "$wxUSE_IMAGLIST" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TREECTRL 1
-_ACEOF
-
- USES_CONTROLS=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
- else
- { echo "$as_me:$LINENO: WARNING: wxTreeCtrl requires wxImageList and won't be compiled without it" >&5
-echo "$as_me: WARNING: wxTreeCtrl requires wxImageList and won't be compiled without it" >&2;}
- fi
-fi
-
-if test "$wxUSE_POPUPWIN" = "yes"; then
- if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
- { echo "$as_me:$LINENO: WARNING: Popup window not yet supported under Mac OS X... disabled" >&5
-echo "$as_me: WARNING: Popup window not yet supported under Mac OS X... disabled" >&2;}
- else
- if test "$wxUSE_PM" = 1; then
- { echo "$as_me:$LINENO: WARNING: wxPopupWindow not yet supported under PM... disabled" >&5
-echo "$as_me: WARNING: wxPopupWindow not yet supported under PM... disabled" >&2;}
- else
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_POPUPWIN 1
-_ACEOF
-
-
- USES_CONTROLS=1
- fi
- fi
-fi
-
-if test "$wxUSE_TIPWINDOW" = "yes"; then
- if test "$wxUSE_PM" = 1; then
- { echo "$as_me:$LINENO: WARNING: wxTipWindow not yet supported under PM... disabled" >&5
-echo "$as_me: WARNING: wxTipWindow not yet supported under PM... disabled" >&2;}
- else
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_TIPWINDOW 1
-_ACEOF
-
- fi
-fi
-
-if test "$USES_CONTROLS" = 1; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_CONTROLS 1
-_ACEOF
-
-fi
-
-
-if test "$wxUSE_ACCESSIBILITY" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_ACCESSIBILITY 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS access"
-fi
-
-if test "$wxUSE_DRAGIMAGE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_DRAGIMAGE 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
-fi
-
-if test "$wxUSE_EXCEPTIONS" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_EXCEPTIONS 1
-_ACEOF
-
-fi
-
-USE_HTML=0
-if test "$wxUSE_HTML" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_HTML 1
-_ACEOF
-
- USE_HTML=1
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html html/about html/help html/helpview html/printing html/test html/virtual html/widget html/zip htlbox"
-fi
-
-if test "$wxUSE_MENUS" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_MENUS 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
-fi
-
-if test "$wxUSE_METAFILE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_METAFILE 1
-_ACEOF
-
-fi
-
-if test "$wxUSE_MIMETYPE" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_MIMETYPE 1
-_ACEOF
-
-fi
-
-if test "$wxUSE_MINIFRAME" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_MINIFRAME 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
-fi
-
-if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_SYSTEM_OPTIONS 1
-_ACEOF
-
- if test "$TOOLKIT" = "MSW" -o "$TOOLKIT" = "GTK" -o "$TOOLKIT" = "X11" -o \
- "$TOOLKIT" = "MOTIF"; then
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar"
- fi
-fi
-
-
-if test "$wxUSE_VALIDATORS" = "yes"; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_VALIDATORS 1
-_ACEOF
-
- SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
-fi
-
-if test "$wxUSE_PALETTE" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_PALETTE 1
-_ACEOF
-
-fi
-
-if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then
- LIBS=" -lunicows $LIBS"
-fi
-
-
-if test "$wxUSE_IMAGE" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_IMAGE 1
-_ACEOF
-
-
- if test "$wxUSE_GIF" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_GIF 1
-_ACEOF
-
- fi
-
- if test "$wxUSE_PCX" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_PCX 1
-_ACEOF
-
- fi
-
- if test "$wxUSE_IFF" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_IFF 1
-_ACEOF
-
- fi
-
- if test "$wxUSE_PNM" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_PNM 1
-_ACEOF
-
- fi
-
- if test "$wxUSE_XPM" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_XPM 1
-_ACEOF
-
- fi
-
- if test "$wxUSE_ICO_CUR" = "yes" ; then
- cat >>confdefs.h <<\_ACEOF
-#define wxUSE_ICO_CUR 1
-_ACEOF
-
- fi