Bump soname in preparation for 2.6.2 release.
[wxWidgets.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Id$)dnl
3
4 AC_PREREQ(2.58)
5
6 dnl ---------------------------------------------------------------------------
7 dnl
8 dnl Top-level configure.in for wxWidgets by Robert Roebling, Phil Blecker,
9 dnl Vadim Zeitlin and Ron Lee
10 dnl
11 dnl This script is under the wxWidgets licence.
12 dnl
13 dnl Version: $Id$
14 dnl ---------------------------------------------------------------------------
15
16 dnl ---------------------------------------------------------------------------
17 dnl initialization
18 dnl ---------------------------------------------------------------------------
19
20 AC_INIT([wxWidgets], [2.6.1], [wx-dev@lists.wxwidgets.org])
21
22 dnl the file passed to AC_CONFIG_SRCDIR should be specific to our package
23 AC_CONFIG_SRCDIR([wx-config.in])
24
25 dnl sets build, host, target variables and the same with _alias
26 AC_CANONICAL_BUILD
27 AC_CANONICAL_HOST
28 AC_CANONICAL_TARGET
29
30
31 dnl When making releases do:
32 dnl
33 dnl wx_release_number += 1
34 dnl
35 dnl ..and update WX_CURRENT, WX_REVISION and WX_AGE according to the
36 dnl following rules:
37 dnl
38 dnl    If any changes have been made to the public interface, that is if any
39 dnl    exported class, method, global or global type has been added, removed
40 dnl    or changed in any way, then do:  WX_CURRENT += 1
41 dnl
42 dnl    If source changes have been made that *do not* alter the public
43 dnl    interface then do:  WX_REVISION += 1
44 dnl    If WX_CURRENT was incremented (as above) instead do:  WX_REVISION = 0
45 dnl
46 dnl    If any public interface was added, do:  WX_AGE += 1
47 dnl    If any public interface was removed (or altered in a way effectively
48 dnl    removing the previous definition), instead do:  WX_AGE = 0
49 dnl
50 dnl When the major or minor version numbers are incremented, all the above
51 dnl variables should be reset to 0. wx_subrelease_number should be set to zero
52 dnl when major, minor or release numbers change.
53 dnl
54 dnl The resulting library name will be of the form:
55 dnl   libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
56
57 wx_major_version_number=2
58 wx_minor_version_number=6
59 wx_release_number=1
60 wx_subrelease_number=1
61
62 WX_RELEASE=$wx_major_version_number.$wx_minor_version_number
63 WX_VERSION=$WX_RELEASE.$wx_release_number
64 WX_SUBVERSION=$WX_VERSION.$wx_subrelease_number
65
66 WX_MSW_VERSION=$wx_major_version_number$wx_minor_version_number$wx_release_number
67
68 WX_CURRENT=1
69 WX_REVISION=0
70 WX_AGE=0
71
72
73 dnl ------------------------------------------------------------------------
74 dnl Check platform (host system)
75 dnl ------------------------------------------------------------------------
76
77 dnl OS (assume Unix)
78 USE_UNIX=1
79 USE_OS2=0
80 USE_WIN32=0
81 USE_DOS=0
82 USE_BEOS=0
83 USE_MAC=0
84
85 dnl Unix kind
86 USE_AIX=
87 USE_BSD=                            dnl any BSD
88 USE_DARWIN=                         dnl a.k.a. Mac OS X
89 USE_FREEBSD=
90 USE_GNU=                            dnl GNU/Hurd
91 USE_HPUX=
92 USE_LINUX=
93 USE_NETBSD=
94 USE_OPENBSD=
95 USE_OSF=                            dnl OSF/1 (obsolete?)
96 USE_SGI=
97 USE_SOLARIS=                        dnl Solaris ("SunOS" >= 5)
98 USE_SUN=                            dnl SunOS or Solaris
99 USE_SUNOS=                          dnl old/real SunOS (obsolete)
100 USE_SVR4=                           dnl SysV R4
101 USE_SYSV=                           dnl any System V
102 USE_VMS=
103 USE_ULTRIX=
104 USE_UNIXWARE=
105
106 dnl hardware platform
107 USE_ALPHA=
108
109 dnl on some platforms xxx_r() functions are declared inside "#ifdef
110 dnl _REENTRANT" and it's easier to just define this symbol for these platforms
111 dnl than checking it during run-time
112 NEEDS_D_REENTRANT_FOR_R_FUNCS=0
113
114 dnl the list of all available toolkits
115 dnl
116 dnl update NUM_TOOLKITS calculation below when adding a new toolkit here!
117 ALL_TOOLKITS="COCOA GTK MAC MGL MICROWIN MOTIF MSW PM X11"
118
119 dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
120 dnl     which are either yes or no
121 DEFAULT_wxUSE_COCOA=0
122 DEFAULT_wxUSE_GTK=0
123 DEFAULT_wxUSE_MAC=0
124 DEFAULT_wxUSE_MGL=0
125 DEFAULT_wxUSE_MICROWIN=0
126 DEFAULT_wxUSE_MOTIF=0
127 DEFAULT_wxUSE_MSW=0
128 DEFAULT_wxUSE_PM=0
129 DEFAULT_wxUSE_X11=0
130
131 dnl these are the values which are really default for the given platform -
132 dnl they're not cached and are only used if no --with-toolkit was given *and*
133 dnl nothing was found in the cache
134 DEFAULT_DEFAULT_wxUSE_COCOA=0
135 DEFAULT_DEFAULT_wxUSE_GTK=0
136 DEFAULT_DEFAULT_wxUSE_MAC=0
137 DEFAULT_DEFAULT_wxUSE_MGL=0
138 DEFAULT_DEFAULT_wxUSE_MICROWIN=0
139 DEFAULT_DEFAULT_wxUSE_MOTIF=0
140 DEFAULT_DEFAULT_wxUSE_MSW=0
141 DEFAULT_DEFAULT_wxUSE_PM=0
142 DEFAULT_DEFAULT_wxUSE_X11=0
143
144 PROGRAM_EXT=
145 SO_SUFFIX=so
146 SAMPLES_RPATH_FLAG=
147 SAMPLES_RPATH_POSTLINK=
148
149 DEFAULT_STD_FLAG=yes
150
151 dnl to support a new system, you need to add its canonical name (as determined
152 dnl by config.sub or specified by the configure command line) to this "case"
153 dnl and also define the shared library flags below - search for
154 dnl SHARED_LIB_SETUP to find the exact place
155 case "${host}" in
156   *-hp-hpux* )
157     USE_HPUX=1
158     DEFAULT_DEFAULT_wxUSE_MOTIF=1
159     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
160     SO_SUFFIX=sl
161     AC_DEFINE(__HPUX__)
162   ;;
163   *-*-linux* )
164     USE_LINUX=1
165     AC_DEFINE(__LINUX__)
166     TMP=`uname -m`
167     if test "x$TMP" = "xalpha"; then
168       USE_ALPHA=1
169       AC_DEFINE(__ALPHA__)
170     fi
171     DEFAULT_DEFAULT_wxUSE_GTK=1
172   ;;
173   *-*-gnu* | *-*-k*bsd*-gnu )
174     USE_GNU=1
175     TMP=`uname -m`
176     if test "x$TMP" = "xalpha"; then
177       USE_ALPHA=1
178       AC_DEFINE(__ALPHA__)
179     fi
180     DEFAULT_DEFAULT_wxUSE_GTK=1
181   ;;
182   *-*-irix5* | *-*-irix6* )
183     USE_SGI=1
184     USE_SVR4=1
185     AC_DEFINE(__SGI__)
186     AC_DEFINE(__SVR4__)
187     DEFAULT_DEFAULT_wxUSE_MOTIF=1
188   ;;
189   *-*-solaris2* )
190     USE_SUN=1
191     USE_SOLARIS=1
192     USE_SVR4=1
193     AC_DEFINE(__SUN__)
194     AC_DEFINE(__SOLARIS__)
195     AC_DEFINE(__SVR4__)
196     DEFAULT_DEFAULT_wxUSE_MOTIF=1
197     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
198   ;;
199   *-*-sunos4* )
200     USE_SUN=1
201     USE_SUNOS=1
202     USE_BSD=1
203     AC_DEFINE(__SUN__)
204     AC_DEFINE(__SUNOS__)
205     AC_DEFINE(__BSD__)
206     DEFAULT_DEFAULT_wxUSE_MOTIF=1
207   ;;
208   *-*-freebsd*)
209     USE_BSD=1
210     USE_FREEBSD=1
211     AC_DEFINE(__FREEBSD__)
212     AC_DEFINE(__BSD__)
213     DEFAULT_DEFAULT_wxUSE_GTK=1
214   ;;
215   *-*-openbsd*)
216     USE_BSD=1
217     USE_OPENBSD=1
218     AC_DEFINE(__OPENBSD__)
219     AC_DEFINE(__BSD__)
220     DEFAULT_DEFAULT_wxUSE_GTK=1
221   ;;
222   *-*-netbsd*)
223     USE_BSD=1
224     USE_NETBSD=1
225     AC_DEFINE(__NETBSD__)
226     AC_DEFINE(__BSD__)
227     DEFAULT_DEFAULT_wxUSE_GTK=1
228   ;;
229   *-*-osf* )
230     USE_ALPHA=1
231     USE_OSF=1
232     AC_DEFINE(__ALPHA__)
233     AC_DEFINE(__OSF__)
234     DEFAULT_DEFAULT_wxUSE_MOTIF=1
235     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
236   ;;
237   *-*-dgux5* )
238     USE_ALPHA=1
239     USE_SVR4=1
240     AC_DEFINE(__ALPHA__)
241     AC_DEFINE(__SVR4__)
242     DEFAULT_DEFAULT_wxUSE_MOTIF=1
243   ;;
244   *-*-sysv5* )
245     USE_SYSV=1
246     USE_SVR4=1
247     AC_DEFINE(__SYSV__)
248     AC_DEFINE(__SVR4__)
249     DEFAULT_DEFAULT_wxUSE_MOTIF=1
250   ;;
251   *-*-aix* )
252     USE_AIX=1
253     USE_SYSV=1
254     USE_SVR4=1
255     dnl quoting from http://www-1.ibm.com/servers/esdd/articles/gnu.html:
256     dnl
257     dnl     Both archive libraries and shared libraries on AIX have an .a
258     dnl     extension. This will explain why you can't link with an .so and
259     dnl     why it works with the name changed to .a.
260     SO_SUFFIX=a
261     AC_DEFINE(__AIX__)
262     AC_DEFINE(__SYSV__)
263     AC_DEFINE(__SVR4__)
264     DEFAULT_DEFAULT_wxUSE_MOTIF=1
265   ;;
266
267   *-*-*UnixWare*)
268     USE_SYSV=1
269     USE_SVR4=1
270     USE_UNIXWARE=1
271     AC_DEFINE(__UNIXWARE__)
272   ;;
273
274   *-*-cygwin* | *-*-mingw32* )
275     dnl MBN: some of the defines have been moved after toolkit detection
276     dnl      because for wxMotif/wxGTK/wxX11 to build on Cygwin
277     dnl      USE_UNIX  must be set and not USE_WIN32
278     SO_SUFFIX=dll
279     PROGRAM_EXT=".exe"
280     RESCOMP=windres
281     DEFAULT_DEFAULT_wxUSE_MSW=1
282     DEFAULT_STD_FLAG=no
283   ;;
284
285   *-pc-msdosdjgpp )
286     USE_UNIX=0
287     USE_DOS=1
288     AC_DEFINE(__DOS__)
289     PROGRAM_EXT=".exe"
290     DEFAULT_DEFAULT_wxUSE_MGL=1
291   ;;
292
293   *-pc-os2_emx | *-pc-os2-emx )
294     AC_DEFINE(__EMX__)
295     USE_OS2=1
296     AC_DEFINE(__OS2__)
297     PROGRAM_EXT=".exe"
298     DEFAULT_DEFAULT_wxUSE_PM=1
299     dnl "c++" wrapper is not always available, so always use plain gcc.
300     CXX=gcc
301     LDFLAGS="$LDFLAGS -Zcrtdll"
302     dnl
303     dnl Some special code that's automatically added by autoconf-2.57 for OS/2
304     dnl and hopefully also by autoconf-2.58 and newer on all other platforms.
305     dnl For now however, we still need it to make sure the configure script
306     dnl works on OS/2 no matter what platform it is generated on.
307     ac_executable_extensions=".exe"
308     export ac_executable_extensions
309     dnl This strange code is necessary to deal with handling of
310     dnl backslashes by ksh and pdksh's sh variant.
311     ac_save_IFS="$IFS"
312     IFS='\\'
313     ac_TEMP_PATH=
314     for ac_dir in $PATH; do
315       IFS=$ac_save_IFS
316       if test -z "$ac_TEMP_PATH"; then
317         ac_TEMP_PATH="$ac_dir"
318       else
319         ac_TEMP_PATH="$ac_TEMP_PATH/$ac_dir"
320       fi
321     done
322     export PATH="$ac_TEMP_PATH"
323     unset ac_TEMP_PATH
324     DEFAULT_STD_FLAG=no
325   ;;
326
327   powerpc-*-darwin* )
328     dnl PowerPC Darwin based distributions (including Mac OS X)
329     USE_BSD=1
330     USE_DARWIN=1
331     SO_SUFFIX=dylib
332     AC_DEFINE(__BSD__)
333     AC_DEFINE(__DARWIN__)
334     AC_DEFINE(TARGET_CARBON)
335     DEFAULT_DEFAULT_wxUSE_MAC=1
336     DEFAULT_STD_FLAG=no
337   ;;
338   powerpc-apple-macos* )
339     dnl Classic Mac OS (< X)
340     USE_UNIX=0
341     dnl For some reason the test that should be cross-compiler capable fails
342     dnl However, there is no doubt that MacOS PowerPC is big endian.
343     ac_cv_c_bigendian=yes
344     SO_SUFFIX=shlib
345     dnl AC_DEFINE(TARGET_CARBON)
346     dnl platform.h needs TARGET_CARBON before setup.h, we'll add it to CPPFLAGS
347     DEFAULT_DEFAULT_wxUSE_MAC=1
348     DEFAULT_STD_FLAG=no
349   ;;
350
351   *-*-beos* )
352     dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this
353     USE_BEOS=1
354     AC_DEFINE(__BEOS__)
355   ;;
356
357   *)
358     AC_MSG_ERROR(unknown system type ${host}.)
359 esac
360
361 dnl ---------------------------------------------------------------------------
362 dnl command line options for configure
363 dnl ---------------------------------------------------------------------------
364
365 dnl the default values for all options - we collect them all here to simplify
366 dnl modification of the default values (for example, if the defaults for some
367 dnl platform should be changed, it can be done here too)
368 dnl
369 dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above
370
371 WX_ARG_CACHE_INIT
372
373 dnl useful to test the compilation with minimum options, define as 0 for normal
374 dnl usage
375 DEBUG_CONFIGURE=0
376 if test $DEBUG_CONFIGURE = 1; then
377   DEFAULT_wxUSE_UNIVERSAL=no
378   DEFAULT_wxUSE_STL=no
379
380   DEFAULT_wxUSE_NANOX=no
381
382   DEFAULT_wxUSE_THREADS=yes
383
384   DEFAULT_wxUSE_SHARED=yes
385   DEFAULT_wxUSE_OPTIMISE=no
386   DEFAULT_wxUSE_PROFILE=no
387   DEFAULT_wxUSE_NO_DEPS=no
388   DEFAULT_wxUSE_NO_RTTI=no
389   DEFAULT_wxUSE_NO_EXCEPTIONS=no
390   DEFAULT_wxUSE_RPATH=yes
391   DEFAULT_wxUSE_PERMISSIVE=no
392   DEFAULT_wxUSE_DEBUG_FLAG=yes
393   DEFAULT_wxUSE_DEBUG_INFO=yes
394   DEFAULT_wxUSE_DEBUG_GDB=yes
395   DEFAULT_wxUSE_MEM_TRACING=no
396   DEFAULT_wxUSE_DEBUG_CONTEXT=no
397   DEFAULT_wxUSE_DMALLOC=no
398   DEFAULT_wxUSE_APPLE_IEEE=no
399
400   DEFAULT_wxUSE_EXCEPTIONS=no
401   DEFAULT_wxUSE_LOG=yes
402   DEFAULT_wxUSE_LOGWINDOW=no
403   DEFAULT_wxUSE_LOGGUI=no
404   DEFAULT_wxUSE_LOGDIALOG=no
405
406   DEFAULT_wxUSE_GUI=yes
407   DEFAULT_wxUSE_CONTROLS=no
408
409   DEFAULT_wxUSE_REGEX=no
410   DEFAULT_wxUSE_XML=no
411   DEFAULT_wxUSE_EXPAT=no
412   DEFAULT_wxUSE_ZLIB=no
413   DEFAULT_wxUSE_LIBPNG=no
414   DEFAULT_wxUSE_LIBJPEG=no
415   DEFAULT_wxUSE_LIBTIFF=no
416   DEFAULT_wxUSE_LIBXPM=no
417   DEFAULT_wxUSE_LIBMSPACK=no
418   DEFAULT_wxUSE_LIBSDL=no
419   DEFAULT_wxUSE_LIBGNOMEPRINT=no
420   DEFAULT_wxUSE_ODBC=no
421   DEFAULT_wxUSE_OPENGL=no
422
423   DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no
424   DEFAULT_wxUSE_STACKWALKER=no
425   DEFAULT_wxUSE_DEBUGREPORT=no
426   DEFAULT_wxUSE_SNGLINST_CHECKER=no
427   DEFAULT_wxUSE_STD_IOSTREAM=no
428   DEFAULT_wxUSE_STD_STRING=no
429   DEFAULT_wxUSE_CMDLINE_PARSER=no
430   DEFAULT_wxUSE_DATETIME=no
431   DEFAULT_wxUSE_TIMER=no
432   DEFAULT_wxUSE_STOPWATCH=no
433   DEFAULT_wxUSE_FILE=no
434   DEFAULT_wxUSE_FFILE=no
435   DEFAULT_wxUSE_STDPATHS=no
436   DEFAULT_wxUSE_TEXTBUFFER=no
437   DEFAULT_wxUSE_TEXTFILE=no
438   DEFAULT_wxUSE_SOUND=no
439   DEFAULT_wxUSE_MEDIACTRL=no  
440   DEFAULT_wxUSE_INTL=no
441   DEFAULT_wxUSE_CONFIG=no
442   DEFAULT_wxUSE_FONTMAP=no
443   DEFAULT_wxUSE_STREAMS=no
444   DEFAULT_wxUSE_SOCKETS=no
445   DEFAULT_wxUSE_OLE=no
446   DEFAULT_wxUSE_DATAOBJ=no
447   DEFAULT_wxUSE_DIALUP_MANAGER=no
448   DEFAULT_wxUSE_JOYSTICK=no
449   DEFAULT_wxUSE_DYNLIB_CLASS=no
450   DEFAULT_wxUSE_DYNAMIC_LOADER=no
451   DEFAULT_wxUSE_LONGLONG=no
452   DEFAULT_wxUSE_GEOMETRY=no
453
454   DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
455   DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
456   DEFAULT_wxUSE_POSTSCRIPT=no
457
458   DEFAULT_wxUSE_CLIPBOARD=no
459   DEFAULT_wxUSE_TOOLTIPS=no
460   DEFAULT_wxUSE_DRAG_AND_DROP=no
461   DEFAULT_wxUSE_DRAGIMAGE=no
462   DEFAULT_wxUSE_SPLINES=no
463   DEFAULT_wxUSE_MOUSEWHEEL=no
464
465   DEFAULT_wxUSE_MDI=no
466   DEFAULT_wxUSE_MDI_ARCHITECTURE=no
467   DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
468   DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
469
470   DEFAULT_wxUSE_RESOURCES=no
471   DEFAULT_wxUSE_CONSTRAINTS=no
472   DEFAULT_wxUSE_IPC=no
473   DEFAULT_wxUSE_HELP=no
474   DEFAULT_wxUSE_MS_HTML_HELP=no
475   DEFAULT_wxUSE_WXHTML_HELP=no
476   DEFAULT_wxUSE_TREELAYOUT=no
477   DEFAULT_wxUSE_METAFILE=no
478   DEFAULT_wxUSE_MIMETYPE=no
479   DEFAULT_wxUSE_SYSTEM_OPTIONS=no
480   DEFAULT_wxUSE_PROTOCOL=no
481   DEFAULT_wxUSE_PROTOCOL_HTTP=no
482   DEFAULT_wxUSE_PROTOCOL_FTP=no
483   DEFAULT_wxUSE_PROTOCOL_FILE=no
484   DEFAULT_wxUSE_URL=no
485
486   DEFAULT_wxUSE_COMMONDLGS=no
487   DEFAULT_wxUSE_CHOICEDLG=no
488   DEFAULT_wxUSE_COLOURDLG=no
489   DEFAULT_wxUSE_DIRDLG=no
490   DEFAULT_wxUSE_FILEDLG=no
491   DEFAULT_wxUSE_FINDREPLDLG=no
492   DEFAULT_wxUSE_FONTDLG=no
493   DEFAULT_wxUSE_MSGDLG=no
494   DEFAULT_wxUSE_NUMBERDLG=no
495   DEFAULT_wxUSE_TEXTDLG=no
496   DEFAULT_wxUSE_SPLASH=no
497   DEFAULT_wxUSE_STARTUP_TIPS=no
498   DEFAULT_wxUSE_PROGRESSDLG=no
499   DEFAULT_wxUSE_WIZARDDLG=no
500
501   DEFAULT_wxUSE_MENUS=no
502   DEFAULT_wxUSE_MINIFRAME=no
503   DEFAULT_wxUSE_HTML=no
504   DEFAULT_wxUSE_XRC=no
505   DEFAULT_wxUSE_WEBKIT=no
506   DEFAULT_wxUSE_FILESYSTEM=no
507   DEFAULT_wxUSE_FS_INET=no
508   DEFAULT_wxUSE_FS_ZIP=no
509   DEFAULT_wxUSE_BUSYINFO=no
510   DEFAULT_wxUSE_ARCHIVE_STREAMS=no
511   DEFAULT_wxUSE_ZIPSTREAM=no
512   DEFAULT_wxUSE_VALIDATORS=no
513
514   DEFAULT_wxUSE_ACCEL=no
515   DEFAULT_wxUSE_BUTTON=no
516   DEFAULT_wxUSE_BMPBUTTON=no
517   DEFAULT_wxUSE_CALCTRL=no
518   DEFAULT_wxUSE_CARET=no
519   DEFAULT_wxUSE_CHECKBOX=no
520   DEFAULT_wxUSE_CHECKLST=no
521   DEFAULT_wxUSE_CHOICE=no
522   DEFAULT_wxUSE_CHOICEBOOK=no
523   DEFAULT_wxUSE_COMBOBOX=no
524   DEFAULT_wxUSE_DATEPICKCTRL=no
525   DEFAULT_wxUSE_DISPLAY=no
526   DEFAULT_wxUSE_GAUGE=no
527   DEFAULT_wxUSE_GRID=no
528   DEFAULT_wxUSE_IMAGLIST=no
529   DEFAULT_wxUSE_LISTBOOK=no
530   DEFAULT_wxUSE_LISTBOX=no
531   DEFAULT_wxUSE_LISTCTRL=no
532   DEFAULT_wxUSE_NOTEBOOK=no
533   DEFAULT_wxUSE_RADIOBOX=no
534   DEFAULT_wxUSE_RADIOBTN=no
535   DEFAULT_wxUSE_SASH=no
536   DEFAULT_wxUSE_SCROLLBAR=no
537   DEFAULT_wxUSE_SLIDER=no
538   DEFAULT_wxUSE_SPINBTN=no
539   DEFAULT_wxUSE_SPINCTRL=no
540   DEFAULT_wxUSE_SPLITTER=no
541   DEFAULT_wxUSE_STATBMP=no
542   DEFAULT_wxUSE_STATBOX=no
543   DEFAULT_wxUSE_STATLINE=no
544   DEFAULT_wxUSE_STATTEXT=no
545   DEFAULT_wxUSE_STATUSBAR=yes
546   DEFAULT_wxUSE_TABDIALOG=no
547   DEFAULT_wxUSE_TEXTCTRL=no
548   DEFAULT_wxUSE_TOGGLEBTN=no
549   DEFAULT_wxUSE_TOOLBAR=no
550   DEFAULT_wxUSE_TOOLBAR_NATIVE=no
551   DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
552   DEFAULT_wxUSE_TREECTRL=no
553   DEFAULT_wxUSE_POPUPWIN=no
554   DEFAULT_wxUSE_TIPWINDOW=no
555
556   DEFAULT_wxUSE_UNICODE=no
557   DEFAULT_wxUSE_UNICODE_MSLU=no
558   DEFAULT_wxUSE_WCSRTOMBS=no
559
560   DEFAULT_wxUSE_PALETTE=no
561   DEFAULT_wxUSE_IMAGE=no
562   DEFAULT_wxUSE_GIF=no
563   DEFAULT_wxUSE_PCX=no
564   DEFAULT_wxUSE_PNM=no
565   DEFAULT_wxUSE_IFF=no
566   DEFAULT_wxUSE_XPM=no
567   DEFAULT_wxUSE_ICO_CUR=no
568   DEFAULT_wxUSE_ACCESSIBILITY=no
569   
570   DEFAULT_wxUSE_MONOLITHIC=no
571   DEFAULT_wxUSE_PLUGINS=no
572   DEFAULT_wxUSE_OFFICIAL_BUILD=no
573 else
574   DEFAULT_wxUSE_UNIVERSAL=no
575   DEFAULT_wxUSE_STL=no
576
577   DEFAULT_wxUSE_NANOX=no
578
579   DEFAULT_wxUSE_THREADS=yes
580
581   DEFAULT_wxUSE_SHARED=yes
582   DEFAULT_wxUSE_OPTIMISE=yes
583   DEFAULT_wxUSE_PROFILE=no
584   DEFAULT_wxUSE_NO_DEPS=no
585   DEFAULT_wxUSE_NO_RTTI=no
586   DEFAULT_wxUSE_NO_EXCEPTIONS=no
587   DEFAULT_wxUSE_RPATH=yes
588   DEFAULT_wxUSE_PERMISSIVE=no
589   DEFAULT_wxUSE_DEBUG_FLAG=no
590   DEFAULT_wxUSE_DEBUG_INFO=no
591   DEFAULT_wxUSE_DEBUG_GDB=no
592   DEFAULT_wxUSE_MEM_TRACING=no
593   DEFAULT_wxUSE_DEBUG_CONTEXT=no
594   DEFAULT_wxUSE_DMALLOC=no
595   DEFAULT_wxUSE_APPLE_IEEE=yes
596
597   DEFAULT_wxUSE_EXCEPTIONS=yes
598   DEFAULT_wxUSE_LOG=yes
599   DEFAULT_wxUSE_LOGWINDOW=yes
600   DEFAULT_wxUSE_LOGGUI=yes
601   DEFAULT_wxUSE_LOGDIALOG=yes
602
603   DEFAULT_wxUSE_GUI=yes
604
605   DEFAULT_wxUSE_REGEX=yes
606   DEFAULT_wxUSE_XML=yes
607   DEFAULT_wxUSE_EXPAT=yes
608   DEFAULT_wxUSE_ZLIB=yes
609   DEFAULT_wxUSE_LIBPNG=yes
610   DEFAULT_wxUSE_LIBJPEG=yes
611   DEFAULT_wxUSE_LIBTIFF=yes
612   DEFAULT_wxUSE_LIBXPM=yes
613   DEFAULT_wxUSE_LIBMSPACK=yes
614   DEFAULT_wxUSE_LIBSDL=no
615   DEFAULT_wxUSE_LIBGNOMEPRINT=no
616   DEFAULT_wxUSE_ODBC=no
617   DEFAULT_wxUSE_OPENGL=no
618
619   DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes
620   DEFAULT_wxUSE_STACKWALKER=yes
621   DEFAULT_wxUSE_DEBUGREPORT=yes
622   DEFAULT_wxUSE_SNGLINST_CHECKER=yes
623   DEFAULT_wxUSE_STD_IOSTREAM=$DEFAULT_STD_FLAG
624   DEFAULT_wxUSE_STD_STRING=$DEFAULT_STD_FLAG
625   DEFAULT_wxUSE_CMDLINE_PARSER=yes
626   DEFAULT_wxUSE_DATETIME=yes
627   DEFAULT_wxUSE_TIMER=yes
628   DEFAULT_wxUSE_STOPWATCH=yes
629   DEFAULT_wxUSE_FILE=yes
630   DEFAULT_wxUSE_FFILE=yes
631   DEFAULT_wxUSE_STDPATHS=yes
632   DEFAULT_wxUSE_TEXTBUFFER=yes
633   DEFAULT_wxUSE_TEXTFILE=yes
634   DEFAULT_wxUSE_SOUND=yes
635   DEFAULT_wxUSE_MEDIACTRL=no
636   DEFAULT_wxUSE_INTL=yes
637   DEFAULT_wxUSE_CONFIG=yes
638   DEFAULT_wxUSE_FONTMAP=yes
639   DEFAULT_wxUSE_STREAMS=yes
640   DEFAULT_wxUSE_SOCKETS=yes
641   DEFAULT_wxUSE_OLE=yes
642   DEFAULT_wxUSE_DATAOBJ=yes
643   DEFAULT_wxUSE_DIALUP_MANAGER=yes
644   DEFAULT_wxUSE_JOYSTICK=yes
645   DEFAULT_wxUSE_DYNLIB_CLASS=yes
646   DEFAULT_wxUSE_DYNAMIC_LOADER=yes
647   DEFAULT_wxUSE_LONGLONG=yes
648   DEFAULT_wxUSE_GEOMETRY=yes
649
650   DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
651   DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
652   DEFAULT_wxUSE_POSTSCRIPT=yes
653
654   DEFAULT_wxUSE_CLIPBOARD=yes
655   DEFAULT_wxUSE_TOOLTIPS=yes
656   DEFAULT_wxUSE_DRAG_AND_DROP=yes
657   DEFAULT_wxUSE_DRAGIMAGE=yes
658   DEFAULT_wxUSE_SPLINES=yes
659   DEFAULT_wxUSE_MOUSEWHEEL=yes
660
661   DEFAULT_wxUSE_MDI=yes
662   DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
663   DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
664   DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
665
666   DEFAULT_wxUSE_RESOURCES=no
667   DEFAULT_wxUSE_CONSTRAINTS=yes
668   DEFAULT_wxUSE_IPC=yes
669   DEFAULT_wxUSE_HELP=yes
670   DEFAULT_wxUSE_MS_HTML_HELP=yes
671   DEFAULT_wxUSE_WXHTML_HELP=yes
672   DEFAULT_wxUSE_TREELAYOUT=yes
673   DEFAULT_wxUSE_METAFILE=yes
674   DEFAULT_wxUSE_MIMETYPE=yes
675   DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
676   DEFAULT_wxUSE_PROTOCOL=yes
677   DEFAULT_wxUSE_PROTOCOL_HTTP=yes
678   DEFAULT_wxUSE_PROTOCOL_FTP=yes
679   DEFAULT_wxUSE_PROTOCOL_FILE=yes
680   DEFAULT_wxUSE_URL=yes
681
682   DEFAULT_wxUSE_COMMONDLGS=yes
683   DEFAULT_wxUSE_CHOICEDLG=yes
684   DEFAULT_wxUSE_COLOURDLG=yes
685   DEFAULT_wxUSE_DIRDLG=yes
686   DEFAULT_wxUSE_FILEDLG=yes
687   DEFAULT_wxUSE_FINDREPLDLG=yes
688   DEFAULT_wxUSE_FONTDLG=yes
689   DEFAULT_wxUSE_MSGDLG=yes
690   DEFAULT_wxUSE_NUMBERDLG=yes
691   DEFAULT_wxUSE_TEXTDLG=yes
692   DEFAULT_wxUSE_SPLASH=yes
693   DEFAULT_wxUSE_STARTUP_TIPS=yes
694   DEFAULT_wxUSE_PROGRESSDLG=yes
695   DEFAULT_wxUSE_WIZARDDLG=yes
696
697   DEFAULT_wxUSE_MENUS=yes
698   DEFAULT_wxUSE_MINIFRAME=yes
699   DEFAULT_wxUSE_HTML=yes
700   DEFAULT_wxUSE_XRC=yes
701   DEFAULT_wxUSE_WEBKIT=yes
702   DEFAULT_wxUSE_FILESYSTEM=yes
703   DEFAULT_wxUSE_FS_INET=yes
704   DEFAULT_wxUSE_FS_ZIP=yes
705   DEFAULT_wxUSE_BUSYINFO=yes
706   DEFAULT_wxUSE_ARCHIVE_STREAMS=yes
707   DEFAULT_wxUSE_ZIPSTREAM=yes
708   DEFAULT_wxUSE_VALIDATORS=yes
709
710   DEFAULT_wxUSE_ACCEL=yes
711   DEFAULT_wxUSE_BUTTON=yes
712   DEFAULT_wxUSE_BMPBUTTON=yes
713   DEFAULT_wxUSE_CALCTRL=yes
714   DEFAULT_wxUSE_CARET=yes
715   DEFAULT_wxUSE_CHECKBOX=yes
716   DEFAULT_wxUSE_CHECKLST=yes
717   DEFAULT_wxUSE_CHOICE=yes
718   DEFAULT_wxUSE_CHOICEBOOK=yes
719   DEFAULT_wxUSE_COMBOBOX=yes
720   DEFAULT_wxUSE_DATEPICKCTRL=yes
721   DEFAULT_wxUSE_DISPLAY=yes
722   DEFAULT_wxUSE_GAUGE=yes
723   DEFAULT_wxUSE_GRID=yes
724   DEFAULT_wxUSE_IMAGLIST=yes
725   DEFAULT_wxUSE_LISTBOOK=yes
726   DEFAULT_wxUSE_LISTBOX=yes
727   DEFAULT_wxUSE_LISTCTRL=yes
728   DEFAULT_wxUSE_NOTEBOOK=yes
729   DEFAULT_wxUSE_RADIOBOX=yes
730   DEFAULT_wxUSE_RADIOBTN=yes
731   DEFAULT_wxUSE_SASH=yes
732   DEFAULT_wxUSE_SCROLLBAR=yes
733   DEFAULT_wxUSE_SLIDER=yes
734   DEFAULT_wxUSE_SPINBTN=yes
735   DEFAULT_wxUSE_SPINCTRL=yes
736   DEFAULT_wxUSE_SPLITTER=yes
737   DEFAULT_wxUSE_STATBMP=yes
738   DEFAULT_wxUSE_STATBOX=yes
739   DEFAULT_wxUSE_STATLINE=yes
740   DEFAULT_wxUSE_STATTEXT=yes
741   DEFAULT_wxUSE_STATUSBAR=yes
742   DEFAULT_wxUSE_TABDIALOG=no
743   DEFAULT_wxUSE_TEXTCTRL=yes
744   DEFAULT_wxUSE_TOGGLEBTN=yes
745   DEFAULT_wxUSE_TOOLBAR=yes
746   DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
747   DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
748   DEFAULT_wxUSE_TREECTRL=yes
749   DEFAULT_wxUSE_POPUPWIN=yes
750   DEFAULT_wxUSE_TIPWINDOW=yes
751
752   DEFAULT_wxUSE_UNICODE=no
753   DEFAULT_wxUSE_UNICODE_MSLU=yes
754   DEFAULT_wxUSE_WCSRTOMBS=no
755
756   DEFAULT_wxUSE_PALETTE=yes
757   DEFAULT_wxUSE_IMAGE=yes
758   DEFAULT_wxUSE_GIF=yes
759   DEFAULT_wxUSE_PCX=yes
760   DEFAULT_wxUSE_IFF=no
761   DEFAULT_wxUSE_PNM=yes
762   DEFAULT_wxUSE_XPM=yes
763   DEFAULT_wxUSE_ICO_CUR=yes
764   DEFAULT_wxUSE_ACCESSIBILITY=no
765   
766   DEFAULT_wxUSE_MONOLITHIC=no
767   DEFAULT_wxUSE_PLUGINS=no
768   DEFAULT_wxUSE_OFFICIAL_BUILD=no
769
770   dnl Appliable only when --with-gtk was used:
771   DEFAULT_wxUSE_GTK2=yes
772 fi
773
774
775 dnl WX_ARG_WITH should be used to select whether an external package will be
776 dnl used or not, to configure compile-time features of this package itself,
777 dnl use WX_ARG_ENABLE instead
778
779 dnl ============================
780 dnl external package dependecies
781 dnl ============================
782
783 dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache
784 dnl these values manually
785 for toolkit in `echo $ALL_TOOLKITS`; do
786   LINE=`grep "wxUSE_$toolkit=" ${wx_arg_cache_file}`
787   if test "x$LINE" != "x" ; then
788     has_toolkit_in_cache=1
789     eval "DEFAULT_$LINE"
790     eval "CACHE_$toolkit=1"
791     
792     LINE=`grep "wx${toolkit}_VERSION=" ${wx_arg_cache_file}`
793     if test "x$LINE" != "x" ; then
794         eval "DEFAULT_$LINE"
795     fi
796   fi
797 done
798
799 dnl ---------------------------------------------------------------------------
800 dnl --disable-gui will build only non-GUI part of wxWidgets: check for this
801 dnl first to disable many other switches if it's given
802 dnl
803 dnl NB: this is still in testing stage, don't use if you don't know what you're
804 dnl     doing
805 dnl ---------------------------------------------------------------------------
806
807 WX_ARG_ENABLE(gui,         [  --enable-gui            use GUI classes], wxUSE_GUI)
808 WX_ARG_ENABLE(monolithic,  [  --enable-monolithic     build wxWidgets as single library], wxUSE_MONOLITHIC)
809 WX_ARG_ENABLE(plugins,     [  --enable-plugins        build parts of wxWidgets as loadable components], wxUSE_PLUGINS)
810
811 if test "$wxUSE_GUI" = "yes"; then
812
813 WX_ARG_ENABLE(universal,   [  --enable-universal      use wxWidgets GUI controls instead of native ones], wxUSE_UNIVERSAL)
814 AC_ARG_WITH(gtk,          [[  --with-gtk[=VERSION]    use GTK+, VERSION can be 2 (default), 1 or "any"]], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1])
815 AC_ARG_WITH(motif,         [  --with-motif            use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1])
816 AC_ARG_WITH(mac,           [  --with-mac              use Mac OS X], [wxUSE_MAC="$withval" CACHE_MAC=1 TOOLKIT_GIVEN=1])
817 AC_ARG_WITH(cocoa,         [  --with-cocoa            use Cocoa], [wxUSE_COCOA="$withval" CACHE_COCOA=1 TOOLKIT_GIVEN=1])
818 AC_ARG_WITH(wine,          [  --with-wine             use Wine], [wxUSE_WINE="$withval" CACHE_WINE=1])
819 AC_ARG_WITH(msw,           [  --with-msw              use MS-Windows], [wxUSE_MSW="$withval" CACHE_MSW=1 TOOLKIT_GIVEN=1])
820 AC_ARG_WITH(pm,            [  --with-pm               use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
821 AC_ARG_WITH(mgl,           [  --with-mgl              use SciTech MGL], [wxUSE_MGL="$withval" wxUSE_UNIVERSAL="yes" CACHE_MGL=1 TOOLKIT_GIVEN=1])
822 AC_ARG_WITH(microwin,      [  --with-microwin         use MicroWindows], [wxUSE_MICROWIN="$withval" CACHE_MICROWIN=1 TOOLKIT_GIVEN=1])
823 AC_ARG_WITH(x11,           [  --with-x11              use X11], [wxUSE_X11="$withval" wxUSE_UNIVERSAL="yes" CACHE_X11=1 TOOLKIT_GIVEN=1])
824 WX_ARG_ENABLE(nanox,       [  --enable-nanox          use NanoX], wxUSE_NANOX)
825
826 AC_ARG_ENABLE(gtk2,        [  --disable-gtk2          use GTK+ 1.2 instead of 2.0], [wxUSE_GTK2="$enableval"])
827 WX_ARG_ENABLE(gpe,         [  --enable-gpe            use GNOME PDA Environment features if possible], wxUSE_GPE)
828
829 WX_ARG_SYS_WITH(libpng,    [  --with-libpng           use libpng (PNG image format)], wxUSE_LIBPNG)
830 WX_ARG_SYS_WITH(libjpeg,   [  --with-libjpeg          use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
831 WX_ARG_SYS_WITH(libtiff,   [  --with-libtiff          use libtiff (TIFF file format)], wxUSE_LIBTIFF)
832 WX_ARG_SYS_WITH(libxpm,    [  --with-libxpm           use libxpm (XPM file format)], wxUSE_LIBXPM)
833 WX_ARG_WITH(libmspack,     [  --with-libmspack        use libmspack (CHM help files loading)], wxUSE_LIBMSPACK)
834 WX_ARG_WITH(sdl,           [  --with-sdl              use SDL for audio on Unix], wxUSE_LIBSDL)
835 WX_ARG_WITH(gnomeprint,    [  --with-gnomeprint       use GNOME print for printing under Unix], wxUSE_LIBGNOMEPRINT)
836 WX_ARG_WITH(opengl,        [  --with-opengl           use OpenGL (or Mesa)], wxUSE_OPENGL)
837
838 fi
839 dnl for GUI only
840
841 WX_ARG_WITH(dmalloc,       [  --with-dmalloc          use dmalloc library (http://dmalloc.com/)], wxUSE_DMALLOC)
842 WX_ARG_SYS_WITH(regex,     [  --with-regex            enable support for wxRegEx class], wxUSE_REGEX)
843 WX_ARG_SYS_WITH(zlib,      [  --with-zlib             use zlib for LZW compression], wxUSE_ZLIB)
844 WX_ARG_SYS_WITH(odbc,      [  --with-odbc             use the IODBC and wxODBC classes], wxUSE_ODBC)
845 WX_ARG_SYS_WITH(expat,     [  --with-expat            enable XML support using expat parser], wxUSE_EXPAT)
846
847 dnl ---------------------------------------------------------------------------
848 dnl compile options
849 dnl ---------------------------------------------------------------------------
850
851 WX_ARG_ENABLE(shared,      [  --enable-shared         create shared library code], wxUSE_SHARED)
852 WX_ARG_ENABLE(optimise,    [  --enable-optimise       create optimised code], wxUSE_OPTIMISE)
853 WX_ARG_ENABLE(debug,       [  --enable-debug          same as debug_flag and debug_info], wxUSE_DEBUG)
854 WX_ARG_ENABLE(stl,         [  --enable-stl            use STL for containers], wxUSE_STL)
855 if test "$USE_OS2" = "1"; then
856     DEFAULT_wxUSE_OMF=no
857     WX_ARG_ENABLE(omf,     [  --enable-omf            use OMF object format], wxUSE_OMF)
858 fi
859
860 if test "$wxUSE_DEBUG" = "yes"; then
861   DEFAULT_wxUSE_DEBUG_FLAG=yes
862   DEFAULT_wxUSE_DEBUG_INFO=yes
863   BUILD=debug
864 elif test "$wxUSE_DEBUG" = "no"; then
865   DEFAULT_wxUSE_DEBUG_FLAG=no
866   DEFAULT_wxUSE_DEBUG_INFO=no
867   BUILD=release
868 fi
869
870 WX_ARG_ENABLE(debug_flag,    [  --enable-debug_flag     set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG)
871 WX_ARG_ENABLE(debug_info,    [  --enable-debug_info     create code with debugging information], wxUSE_DEBUG_INFO)
872 WX_ARG_ENABLE(debug_gdb,     [  --enable-debug_gdb      create code with extra GDB debugging information], wxUSE_DEBUG_GDB)
873 WX_ARG_ENABLE(debug_cntxt,   [  --enable-debug_cntxt    use wxDebugContext], wxUSE_DEBUG_CONTEXT)
874 WX_ARG_ENABLE(mem_tracing,   [  --enable-mem_tracing    create code with memory tracing], wxUSE_MEM_TRACING)
875 WX_ARG_ENABLE(profile,       [  --enable-profile        create code with profiling information], wxUSE_PROFILE)
876 WX_ARG_ENABLE(no_rtti,       [  --enable-no_rtti        create code without RTTI information], wxUSE_NO_RTTI)
877 WX_ARG_ENABLE(no_exceptions, [  --enable-no_exceptions  create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS)
878 WX_ARG_ENABLE(permissive,    [  --enable-permissive     compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
879 WX_ARG_ENABLE(no_deps,       [  --enable-no_deps        create code without dependency information], wxUSE_NO_DEPS)
880
881 WX_ARG_ENABLE(compat22,      [  --enable-compat22       enable wxWidgets 2.2 compatibility], WXWIN_COMPATIBILITY_2_2)
882 WX_ARG_ENABLE(compat24,      [  --disable-compat24      disable wxWidgets 2.4 compatibility], WXWIN_COMPATIBILITY_2_4, disable)
883
884 WX_ARG_ENABLE(rpath,         [  --disable-rpath         disable use of rpath for uninstalled builds], wxUSE_RPATH)
885
886
887 dnl ---------------------------------------------------------------------------
888 dnl (small) optional non GUI classes
889 dnl ---------------------------------------------------------------------------
890
891 WX_ARG_ENABLE(intl,          [  --enable-intl           use internationalization system], wxUSE_INTL)
892 WX_ARG_ENABLE(config,        [  --enable-config         use wxConfig (and derived) classes], wxUSE_CONFIG)
893
894 WX_ARG_ENABLE(protocols,     [  --enable-protocols      use wxProtocol and derived classes], wxUSE_PROTOCOL)
895 WX_ARG_ENABLE(ftp,           [  --enable-ftp            use wxFTP (requires wxProtocol], wxUSE_PROTOCOL_FTP)
896 WX_ARG_ENABLE(http,          [  --enable-http           use wxHTTP (requires wxProtocol], wxUSE_PROTOCOL_HTTP)
897 WX_ARG_ENABLE(fileproto,     [  --enable-fileproto      use wxFileProto class (requires wxProtocol], wxUSE_PROTOCOL_FILE)
898 WX_ARG_ENABLE(sockets,       [  --enable-sockets        use socket/network classes], wxUSE_SOCKETS)
899 WX_ARG_ENABLE(ole,           [  --enable-ole            use OLE classes (Win32 only)], wxUSE_OLE)
900 WX_ARG_ENABLE(dataobj,       [  --enable-dataobj        use data object classes], wxUSE_DATAOBJ)
901
902 WX_ARG_ENABLE(ipc,           [  --enable-ipc            use interprocess communication (wxSocket etc.)], wxUSE_IPC)
903
904 dnl please keep the settings below in alphabetical order
905 WX_ARG_ENABLE(apple_ieee,    [  --enable-apple_ieee     use the Apple IEEE codec], wxUSE_APPLE_IEEE)
906 WX_ARG_ENABLE(arcstream,     [  --enable-arcstream      use wxArchive streams], wxUSE_ARCHIVE_STREAMS)
907 WX_ARG_ENABLE(backtrace,     [  --enable-backtrace      use wxStackWalker class for getting backtraces], wxUSE_STACKWALKER)
908 WX_ARG_ENABLE(catch_segvs,   [  --enable-catch_segvs    catch signals in wxApp::OnFatalException (Unix only)], wxUSE_ON_FATAL_EXCEPTION)
909 WX_ARG_ENABLE(cmdline,       [  --enable-cmdline        use wxCmdLineParser class], wxUSE_CMDLINE_PARSER)
910 WX_ARG_ENABLE(datetime,      [  --enable-datetime       use wxDateTime class], wxUSE_DATETIME)
911 WX_ARG_ENABLE(debugreport,   [  --enable-debugreport    use wxDebugReport class], wxUSE_DEBUGREPORT)
912 WX_ARG_ENABLE(dialupman,     [  --enable-dialupman      use dialup network classes], wxUSE_DIALUP_MANAGER)
913 WX_ARG_ENABLE(dynlib,        [  --enable-dynlib         use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS)
914 WX_ARG_ENABLE(dynamicloader, [  --enable-dynamicloader  use (new) wxDynamicLibrary class], wxUSE_DYNAMIC_LOADER)
915 WX_ARG_ENABLE(exceptions,    [  --enable-exceptions     build exception-safe library], wxUSE_EXCEPTIONS)
916 WX_ARG_ENABLE(ffile,         [  --enable-ffile          use wxFFile class], wxUSE_FFILE)
917 WX_ARG_ENABLE(file,          [  --enable-file           use wxFile class], wxUSE_FILE)
918 WX_ARG_ENABLE(filesystem,    [  --enable-filesystem     use virtual file systems classes], wxUSE_FILESYSTEM)
919 WX_ARG_ENABLE(fontmap,       [  --enable-fontmap        use font encodings conversion classes], wxUSE_FONTMAP)
920 WX_ARG_ENABLE(fs_inet,       [  --enable-fs_inet        use virtual HTTP/FTP filesystems], wxUSE_FS_INET)
921 WX_ARG_ENABLE(fs_zip,        [  --enable-fs_zip         use virtual ZIP filesystems], wxUSE_FS_ZIP)
922 WX_ARG_ENABLE(geometry,      [  --enable-geometry       use geometry class], wxUSE_GEOMETRY)
923 WX_ARG_ENABLE(log,           [  --enable-log            use logging system], wxUSE_LOG)
924 WX_ARG_ENABLE(longlong,      [  --enable-longlong       use wxLongLong class], wxUSE_LONGLONG)
925 WX_ARG_ENABLE(mimetype,      [  --enable-mimetype       use wxMimeTypesManager], wxUSE_MIMETYPE)
926 WX_ARG_ENABLE(mslu,          [  --enable-mslu           use MS Layer for Unicode on Windows 9x (Win32 only)], wxUSE_UNICODE_MSLU)
927 WX_ARG_ENABLE(snglinst,      [  --enable-snglinst       use wxSingleInstanceChecker class], wxUSE_SNGLINST_CHECKER)
928 WX_ARG_ENABLE(std_iostreams, [  --enable-std_iostreams  use standard C++ stream classes], wxUSE_STD_IOSTREAM)
929 WX_ARG_ENABLE(std_string,    [  --enable-std_string     use standard C++ string classes], wxUSE_STD_STRING)
930 WX_ARG_ENABLE(stdpaths,      [  --enable-stdpaths       use wxStandardPaths class], wxUSE_STDPATHS)
931 WX_ARG_ENABLE(stopwatch,     [  --enable-stopwatch      use wxStopWatch class], wxUSE_STOPWATCH)
932 WX_ARG_ENABLE(streams,       [  --enable-streams        use wxStream etc classes], wxUSE_STREAMS)
933 WX_ARG_ENABLE(system_options,[  --enable-sysoptions     use wxSystemOptions], wxUSE_SYSTEM_OPTIONS)
934 WX_ARG_ENABLE(textbuf,       [  --enable-textbuf        use wxTextBuffer class], wxUSE_TEXTBUFFER)
935 WX_ARG_ENABLE(textfile,      [  --enable-textfile       use wxTextFile class], wxUSE_TEXTFILE)
936 WX_ARG_ENABLE(timer,         [  --enable-timer          use wxTimer class], wxUSE_TIMER)
937 WX_ARG_ENABLE(unicode,       [  --enable-unicode        compile wxString with Unicode support], wxUSE_UNICODE)
938 WX_ARG_ENABLE(sound,         [  --enable-sound          use wxSound class], wxUSE_SOUND)
939 WX_ARG_ENABLE(mediactrl,     [  --enable-mediactrl      use wxMediaCtrl class], wxUSE_MEDIACTRL)
940 WX_ARG_ENABLE(wxprintfv,     [  --enable-wxprintfv      use wxWidgets implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF)
941 WX_ARG_ENABLE(zipstream,     [  --enable-zipstream      use wxZip streams], wxUSE_ZIPSTREAM)
942
943 WX_ARG_ENABLE(url,           [  --enable-url            use wxURL class], wxUSE_URL)
944 WX_ARG_ENABLE(protocol,      [  --enable-protocol       use wxProtocol class], wxUSE_PROTOCOL)
945 WX_ARG_ENABLE(protocol_http, [  --enable-protocol-http  HTTP support in wxProtocol], wxUSE_PROTOCOL_HTTP)
946 WX_ARG_ENABLE(protocol_ftp,  [  --enable-protocol-ftp   FTP support in wxProtocol], wxUSE_PROTOCOL_FTP)
947 WX_ARG_ENABLE(protocol_file, [  --enable-protocol-file  FILE support in wxProtocol], wxUSE_PROTOCOL_FILE)
948
949
950 dnl ---------------------------------------------------------------------------
951 dnl "big" options (i.e. those which change a lot of things throughout the library)
952 dnl ---------------------------------------------------------------------------
953
954 WX_ARG_ENABLE(threads,     [  --enable-threads        use threads], wxUSE_THREADS)
955
956 if test "$wxUSE_GUI" = "yes"; then
957
958 dnl ---------------------------------------------------------------------------
959 dnl "big" GUI options
960 dnl ---------------------------------------------------------------------------
961
962 WX_ARG_ENABLE(docview,     [  --enable-docview        use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE)
963 WX_ARG_ENABLE(help,        [  --enable-help           use help subsystem], wxUSE_HELP)
964 WX_ARG_ENABLE(mshtmlhelp,  [  --enable-mshtmlhelp     use MS HTML Help (win32)], wxUSE_MS_HTML_HELP)
965 WX_ARG_ENABLE(html,        [  --enable-html           use wxHTML sub-library], wxUSE_HTML)
966 WX_ARG_ENABLE(htmlhelp,    [  --enable-htmlhelp       use wxHTML-based help], wxUSE_WXHTML_HELP)
967 WX_ARG_ENABLE(xrc,         [  --enable-xrc            use XRC resources sub-library], wxUSE_XRC)
968 WX_ARG_ENABLE(constraints, [  --enable-constraints    use layout-constraints system], wxUSE_CONSTRAINTS)
969 WX_ARG_ENABLE(printarch,   [  --enable-printarch      use printing architecture], wxUSE_PRINTING_ARCHITECTURE)
970 WX_ARG_ENABLE(mdi,         [  --enable-mdi            use multiple document interface architecture], wxUSE_MDI)
971 WX_ARG_ENABLE(mdidoc,      [  --enable-mdidoc         use docview architecture with MDI], wxUSE_MDI_ARCHITECTURE)
972 WX_ARG_ENABLE(loggui,      [  --enable-loggui         use standard GUI logger], wxUSE_LOGGUI)
973 WX_ARG_ENABLE(logwin,      [  --enable-logwin         use wxLogWindow], wxUSE_LOGWINDOW)
974 WX_ARG_ENABLE(logdialog,   [  --enable-logdialog      use wxLogDialog], wxUSE_LOGDIALOG)
975 WX_ARG_ENABLE(webkit,      [  --enable-webkit         use wxWebKitCtrl (Mac)], wxUSE_WEBKIT)
976
977 dnl ---------------------------------------------------------------------------
978 dnl PostScript options
979 dnl ---------------------------------------------------------------------------
980 WX_ARG_ENABLE(postscript,  [  --enable-postscript     use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT)
981
982 dnl VZ: these options seem to be always on, if someone wants to change it please do
983 dnl WX_ARG_ENABLE(PS-normalized,    [  --enable-PS-normalized  use normalized PS fonts], dnl             wxUSE_NORMALIZED_PS_FONTS)
984 dnl WX_ARG_ENABLE(afmfonts,        [  --enable-afmfonts       use Adobe Font Metric Font table], dnl             wxUSE_AFM_FOR_POSTSCRIPT)
985
986 dnl ---------------------------------------------------------------------------
987 dnl resources
988 dnl ---------------------------------------------------------------------------
989
990 WX_ARG_ENABLE(prologio,    [  --enable-prologio       not available; see contrib], wxUSE_PROLOGIO)
991 WX_ARG_ENABLE(resources,   [  --enable-resources      not available; see contrib], wxUSE_RESOURCES)
992
993 dnl ---------------------------------------------------------------------------
994 dnl IPC &c
995 dnl ---------------------------------------------------------------------------
996
997 WX_ARG_ENABLE(clipboard,   [  --enable-clipboard      use wxClipboard class], wxUSE_CLIPBOARD)
998 WX_ARG_ENABLE(dnd,         [  --enable-dnd            use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP)
999 WX_ARG_ENABLE(metafile,    [  --enable-metafile       use win32 metafiles], wxUSE_METAFILE)
1000
1001 dnl WX_ARG_ENABLE(treelayout,  [  --enable-treelayout     use wxTreeLayout class], wxUSE_TREELAYOUT)
1002
1003 dnl ---------------------------------------------------------------------------
1004 dnl optional GUI controls (in alphabetical order except the first one)
1005 dnl ---------------------------------------------------------------------------
1006
1007 WX_ARG_ENABLE(controls,    [  --enable-controls       use all usual controls], wxUSE_CONTROLS)
1008
1009 dnl even with --enable-controls, some may be disabled by giving
1010 dnl --disable-<control> later on the command line - but by default all will be
1011 dnl used (and vice versa)
1012 if test "$wxUSE_CONTROLS" = "yes"; then
1013   DEFAULT_wxUSE_ACCEL=yes
1014   DEFAULT_wxUSE_BMPBUTTON=yes
1015   DEFAULT_wxUSE_BUTTON=yes
1016   DEFAULT_wxUSE_CALCTRL=yes
1017   DEFAULT_wxUSE_CARET=yes
1018   DEFAULT_wxUSE_COMBOBOX=yes
1019   DEFAULT_wxUSE_CHECKBOX=yes
1020   DEFAULT_wxUSE_CHECKLISTBOX=yes
1021   DEFAULT_wxUSE_CHOICE=yes
1022   DEFAULT_wxUSE_CHOICEBOOK=yes
1023   DEFAULT_wxUSE_DATEPICKCTRL=yes
1024   DEFAULT_wxUSE_GAUGE=yes
1025   DEFAULT_wxUSE_GRID=yes
1026   DEFAULT_wxUSE_IMAGLIST=yes
1027   DEFAULT_wxUSE_LISTBOOK=yes
1028   DEFAULT_wxUSE_LISTBOX=yes
1029   DEFAULT_wxUSE_LISTCTRL=yes
1030   DEFAULT_wxUSE_NOTEBOOK=yes
1031   DEFAULT_wxUSE_RADIOBOX=yes
1032   DEFAULT_wxUSE_RADIOBTN=yes
1033   DEFAULT_wxUSE_SASH=yes
1034   DEFAULT_wxUSE_SCROLLBAR=yes
1035   DEFAULT_wxUSE_SLIDER=yes
1036   DEFAULT_wxUSE_SPINBTN=yes
1037   DEFAULT_wxUSE_SPINCTRL=yes
1038   DEFAULT_wxUSE_SPLITTER=yes
1039   DEFAULT_wxUSE_STATBMP=yes
1040   DEFAULT_wxUSE_STATBOX=yes
1041   DEFAULT_wxUSE_STATLINE=yes
1042   DEFAULT_wxUSE_STATUSBAR=yes
1043   DEFAULT_wxUSE_TAB_DIALOG=yes
1044   DEFAULT_wxUSE_TOGGLEBTN=yes
1045   DEFAULT_wxUSE_TOOLBAR=yes
1046   DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
1047   DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
1048   DEFAULT_wxUSE_TOOLTIPS=yes
1049   DEFAULT_wxUSE_TREECTRL=yes
1050   DEFAULT_wxUSE_POPUPWIN=yes
1051   DEFAULT_wxUSE_TIPWINDOW=yes
1052 elif test "$wxUSE_CONTROLS" = "no"; then
1053   DEFAULT_wxUSE_ACCEL=no
1054   DEFAULT_wxUSE_BMPBUTTON=no
1055   DEFAULT_wxUSE_BUTTON=no
1056   DEFAULT_wxUSE_CALCTRL=no
1057   DEFAULT_wxUSE_CARET=no
1058   DEFAULT_wxUSE_COMBOBOX=no
1059   DEFAULT_wxUSE_CHECKBOX=no
1060   DEFAULT_wxUSE_CHECKLISTBOX=no
1061   DEFAULT_wxUSE_CHOICE=no
1062   DEFAULT_wxUSE_CHOICEBOOK=no
1063   DEFAULT_wxUSE_DATEPICKCTRL=no
1064   DEFAULT_wxUSE_GAUGE=no
1065   DEFAULT_wxUSE_GRID=no
1066   DEFAULT_wxUSE_IMAGLIST=no
1067   DEFAULT_wxUSE_LISTBOOK=no
1068   DEFAULT_wxUSE_LISTBOX=no
1069   DEFAULT_wxUSE_LISTCTRL=no
1070   DEFAULT_wxUSE_NOTEBOOK=no
1071   DEFAULT_wxUSE_RADIOBOX=no
1072   DEFAULT_wxUSE_RADIOBTN=no
1073   DEFAULT_wxUSE_SASH=no
1074   DEFAULT_wxUSE_SCROLLBAR=no
1075   DEFAULT_wxUSE_SLIDER=no
1076   DEFAULT_wxUSE_SPINBTN=no
1077   DEFAULT_wxUSE_SPINCTRL=no
1078   DEFAULT_wxUSE_SPLITTER=no
1079   DEFAULT_wxUSE_STATBMP=no
1080   DEFAULT_wxUSE_STATBOX=no
1081   DEFAULT_wxUSE_STATLINE=no
1082   DEFAULT_wxUSE_STATUSBAR=no
1083   DEFAULT_wxUSE_TAB_DIALOG=no
1084   DEFAULT_wxUSE_TOGGLEBTN=no
1085   DEFAULT_wxUSE_TOOLBAR=no
1086   DEFAULT_wxUSE_TOOLBAR_NATIVE=no
1087   DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
1088   DEFAULT_wxUSE_TOOLTIPS=no
1089   DEFAULT_wxUSE_TREECTRL=no
1090   DEFAULT_wxUSE_POPUPWIN=no
1091   DEFAULT_wxUSE_TIPWINDOW=no
1092 fi
1093
1094 WX_ARG_ENABLE(accel,       [  --enable-accel          use accelerators], wxUSE_ACCEL)
1095 WX_ARG_ENABLE(button,      [  --enable-button         use wxButton class], wxUSE_BUTTON)
1096 WX_ARG_ENABLE(bmpbutton,   [  --enable-bmpbutton      use wxBitmapButton class], wxUSE_BMPBUTTON)
1097 WX_ARG_ENABLE(calendar,    [  --enable-calendar       use wxCalendarCtrl class], wxUSE_CALCTRL)
1098 WX_ARG_ENABLE(caret,       [  --enable-caret          use wxCaret class], wxUSE_CARET)
1099 WX_ARG_ENABLE(checkbox,    [  --enable-checkbox       use wxCheckBox class], wxUSE_CHECKBOX)
1100 WX_ARG_ENABLE(checklst,    [  --enable-checklst       use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST)
1101 WX_ARG_ENABLE(choice,      [  --enable-choice         use wxChoice class], wxUSE_CHOICE)
1102 WX_ARG_ENABLE(choicebook,  [  --enable-choicebook     use wxChoicebook class], wxUSE_CHOICEBOOK)
1103 WX_ARG_ENABLE(combobox,    [  --enable-combobox       use wxComboBox class], wxUSE_COMBOBOX)
1104 WX_ARG_ENABLE(datepick,    [  --enable-datepick       use wxDatePickerCtrl class], wxUSE_DATEPICKCTRL)
1105 WX_ARG_ENABLE(display,     [  --enable-display        use wxDisplay class], wxUSE_DISPLAY)
1106 WX_ARG_ENABLE(gauge,       [  --enable-gauge          use wxGauge class], wxUSE_GAUGE)
1107 WX_ARG_ENABLE(grid,        [  --enable-grid           use wxGrid class], wxUSE_GRID)
1108 WX_ARG_ENABLE(imaglist,    [  --enable-imaglist       use wxImageList class], wxUSE_IMAGLIST)
1109 WX_ARG_ENABLE(listbook,    [  --enable-listbook       use wxListbook class], wxUSE_LISTBOOK)
1110 WX_ARG_ENABLE(listbox,     [  --enable-listbox        use wxListBox class], wxUSE_LISTBOX)
1111 WX_ARG_ENABLE(listctrl,    [  --enable-listctrl       use wxListCtrl class], wxUSE_LISTCTRL)
1112 WX_ARG_ENABLE(notebook,    [  --enable-notebook       use wxNotebook class], wxUSE_NOTEBOOK)
1113 WX_ARG_ENABLE(radiobox,    [  --enable-radiobox       use wxRadioBox class], wxUSE_RADIOBOX)
1114 WX_ARG_ENABLE(radiobtn,    [  --enable-radiobtn       use wxRadioButton class], wxUSE_RADIOBTN)
1115 WX_ARG_ENABLE(sash,        [  --enable-sash           use wxSashWindow class], wxUSE_SASH)
1116 WX_ARG_ENABLE(scrollbar,   [  --enable-scrollbar      use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR)
1117 WX_ARG_ENABLE(slider,      [  --enable-slider         use wxSlider class], wxUSE_SLIDER)
1118 WX_ARG_ENABLE(spinbtn,     [  --enable-spinbtn        use wxSpinButton class], wxUSE_SPINBTN)
1119 WX_ARG_ENABLE(spinctrl,    [  --enable-spinctrl       use wxSpinCtrl class], wxUSE_SPINCTRL)
1120 WX_ARG_ENABLE(splitter,    [  --enable-splitter       use wxSplitterWindow class], wxUSE_SPLITTER)
1121 WX_ARG_ENABLE(statbmp,     [  --enable-statbmp        use wxStaticBitmap class], wxUSE_STATBMP)
1122 WX_ARG_ENABLE(statbox,     [  --enable-statbox        use wxStaticBox class], wxUSE_STATBOX)
1123 WX_ARG_ENABLE(statline,    [  --enable-statline       use wxStaticLine class], wxUSE_STATLINE)
1124 WX_ARG_ENABLE(stattext,    [  --enable-stattext       use wxStaticText class], wxUSE_STATTEXT)
1125 WX_ARG_ENABLE(statusbar,   [  --enable-statusbar      use wxStatusBar class], wxUSE_STATUSBAR)
1126 WX_ARG_ENABLE(tabdialog,   [  --enable-tabdialog      use wxTabControl class], wxUSE_TABDIALOG)
1127 WX_ARG_ENABLE(textctrl,    [  --enable-textctrl       use wxTextCtrl class], wxUSE_TEXTCTRL)
1128 WX_ARG_ENABLE(togglebtn,   [  --enable-togglebtn      use wxToggleButton class], wxUSE_TOGGLEBTN)
1129 WX_ARG_ENABLE(toolbar,     [  --enable-toolbar        use wxToolBar class], wxUSE_TOOLBAR)
1130 WX_ARG_ENABLE(tbarnative,  [  --enable-tbarnative     use native wxToolBar class], wxUSE_TOOLBAR_NATIVE)
1131 WX_ARG_ENABLE(tbarsmpl,    [  --enable-tbarsmpl       use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE)
1132 WX_ARG_ENABLE(treectrl,    [  --enable-treectrl       use wxTreeCtrl class], wxUSE_TREECTRL)
1133 WX_ARG_ENABLE(tipwindow,   [  --enable-tipwindow      use wxTipWindow class], wxUSE_TIPWINDOW)
1134 WX_ARG_ENABLE(popupwin,    [  --enable-popupwin       use wxPopUpWindow class], wxUSE_POPUPWIN)
1135
1136 dnl ---------------------------------------------------------------------------
1137 dnl common dialogs
1138 dnl ---------------------------------------------------------------------------
1139
1140 WX_ARG_ENABLE(commondlg,   [  --enable-commondlg      use all common dialogs], wxUSE_COMMONDLGS)
1141 WX_ARG_ENABLE(choicedlg,   [  --enable-choicedlg      use wxChoiceDialog], wxUSE_CHOICEDLG)
1142 WX_ARG_ENABLE(coldlg,      [  --enable-coldlg         use wxColourDialog], wxUSE_COLOURDLG)
1143 WX_ARG_ENABLE(filedlg,     [  --enable-filedlg        use wxFileDialog], wxUSE_FILEDLG)
1144 WX_ARG_ENABLE(finddlg,     [  --enable-finddlg        use wxFindReplaceDialog], wxUSE_FINDREPLDLG)
1145 WX_ARG_ENABLE(fontdlg,     [  --enable-fontdlg        use wxFontDialog], wxUSE_FONTDLG)
1146 WX_ARG_ENABLE(dirdlg,      [  --enable-dirdlg         use wxDirDialog], wxUSE_DIRDLG)
1147 WX_ARG_ENABLE(msgdlg,      [  --enable-msgdlg         use wxMessageDialog], wxUSE_MSGDLG)
1148 WX_ARG_ENABLE(numberdlg,   [  --enable-numberdlg      use wxNumberEntryDialog], wxUSE_NUMBERDLG)
1149 WX_ARG_ENABLE(splash,      [  --enable-splash         use wxSplashScreen], wxUSE_SPLASH)
1150 WX_ARG_ENABLE(textdlg,     [  --enable-textdlg        use wxTextDialog], wxUSE_TEXTDLG)
1151 WX_ARG_ENABLE(tipdlg,      [  --enable-tipdlg         use startup tips], wxUSE_STARTUP_TIPS)
1152 WX_ARG_ENABLE(progressdlg, [  --enable-progressdlg    use wxProgressDialog], wxUSE_PROGRESSDLG)
1153 WX_ARG_ENABLE(wizarddlg,   [  --enable-wizarddlg      use wxWizard], wxUSE_WIZARDDLG)
1154
1155 dnl ---------------------------------------------------------------------------
1156 dnl misc GUI options
1157 dnl ---------------------------------------------------------------------------
1158
1159 WX_ARG_ENABLE(menus,       [  --enable-menus          use wxMenu/wxMenuBar/wxMenuItem classes], wxUSE_MENUS)
1160 WX_ARG_ENABLE(miniframe,   [  --enable-miniframe      use wxMiniFrame class], wxUSE_MINIFRAME)
1161 WX_ARG_ENABLE(tooltips,    [  --enable-tooltips       use wxToolTip class], wxUSE_TOOLTIPS)
1162 WX_ARG_ENABLE(splines,     [  --enable-splines        use spline drawing code], wxUSE_SPLINES)
1163 WX_ARG_ENABLE(mousewheel,  [  --enable-mousewheel     use mousewheel], wxUSE_MOUSEWHEEL)
1164 WX_ARG_ENABLE(validators,  [  --enable-validators     use wxValidator and derived classes], wxUSE_VALIDATORS)
1165 WX_ARG_ENABLE(busyinfo,    [  --enable-busyinfo       use wxBusyInfo], wxUSE_BUSYINFO)
1166 WX_ARG_ENABLE(joystick,    [  --enable-joystick       use wxJoystick], wxUSE_JOYSTICK)
1167 WX_ARG_ENABLE(metafile,    [  --enable-metafiles      use wxMetaFile (Windows only)], wxUSE_METAFILE)
1168 WX_ARG_ENABLE(dragimage,   [  --enable-dragimage      use wxDragImage], wxUSE_DRAGIMAGE)
1169 WX_ARG_ENABLE(accessibility,[  --enable-accessibility  enable accessibility support], wxUSE_ACCESSIBILITY)
1170
1171 dnl ---------------------------------------------------------------------------
1172 dnl support for image formats that do not rely on external library
1173 dnl ---------------------------------------------------------------------------
1174
1175 WX_ARG_ENABLE(palette,     [  --enable-palette        use wxPalette class], wxUSE_PALETTE)
1176 WX_ARG_ENABLE(image,       [  --enable-image          use wxImage class], wxUSE_IMAGE)
1177 WX_ARG_ENABLE(gif,         [  --enable-gif            use gif images (GIF file format)], wxUSE_GIF)
1178 WX_ARG_ENABLE(pcx,         [  --enable-pcx            use pcx images (PCX file format)], wxUSE_PCX)
1179 WX_ARG_ENABLE(iff,         [  --enable-iff            use iff images (IFF file format)], wxUSE_IFF)
1180 WX_ARG_ENABLE(pnm,         [  --enable-pnm            use pnm images (PNM file format)], wxUSE_PNM)
1181 WX_ARG_ENABLE(xpm,         [  --enable-xpm            use xpm images (XPM file format)], wxUSE_XPM)
1182 WX_ARG_ENABLE(ico_cur,     [  --enable-icocur         use Windows ICO and CUR formats], wxUSE_ICO_CUR)
1183
1184 fi
1185
1186 dnl ---------------------------------------------------------------------------
1187 dnl flavour support
1188 dnl ---------------------------------------------------------------------------
1189
1190 dnl Should this be --enable?  I flip-flopped a couple of times and this seems
1191 dnl in the spirit if not the letter, we have gtk-prefix and the like in this group.
1192 dnl It doesn't actually change anything but the output file names.
1193 AC_ARG_WITH(flavour,       [  --with-flavour=NAME     specify a name to identify this build], [WX_FLAVOUR="$withval"])
1194
1195 dnl ---------------------------------------------------------------------------
1196 dnl some win32 settings
1197 dnl ---------------------------------------------------------------------------
1198
1199 WX_ARG_ENABLE(official_build,  [  --enable-official_build official build of wxWidgets (win32 DLL only)], wxUSE_OFFICIAL_BUILD)
1200 AC_ARG_ENABLE(vendor,  [  --enable-vendor=VENDOR  vendor name (win32 DLL only)], [VENDOR="$enableval"])
1201 if test "x$VENDOR" = "x"; then
1202     VENDOR="custom"
1203 fi
1204
1205
1206 dnl for GUI only
1207
1208 dnl cache the options values before (may be) aborting below
1209 WX_ARG_CACHE_FLUSH
1210
1211 dnl check that no more than one toolkit is given and that if none are given that
1212 dnl we have a default one
1213
1214 AC_MSG_CHECKING(for toolkit)
1215
1216 # In Wine, we need to default to MSW, not GTK or MOTIF
1217 if test "$wxUSE_WINE" = "yes"; then
1218     DEFAULT_DEFAULT_wxUSE_GTK=0
1219     DEFAULT_DEFAULT_wxUSE_MOTIF=0
1220     DEFAULT_DEFAULT_wxUSE_MSW=1
1221     wxUSE_SHARED=no
1222 fi
1223
1224
1225 if test "$wxUSE_GUI" = "yes"; then
1226
1227     if test "$USE_BEOS" = 1; then
1228         AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui])
1229     fi
1230
1231     if test "$TOOLKIT_GIVEN" = 1; then
1232       dnl convert "yes", "any" or a number to 1 and "no" to 0
1233       for toolkit in `echo $ALL_TOOLKITS`; do
1234         var=wxUSE_$toolkit
1235         eval "value=\$${var}"
1236         if test "x$value" = "xno"; then
1237           eval "$var=0"
1238         elif test "x$value" != "x"; then
1239           eval "$var=1"
1240         fi
1241
1242         if test "x$value" != "x" -a "x$value" != "xyes" -a "x$value" != "xno"; then
1243           eval "wx${toolkit}_VERSION=$value"
1244         fi
1245       done
1246     else
1247       dnl try to guess the most apropriate toolkit for this platform
1248       for toolkit in `echo $ALL_TOOLKITS`; do
1249         if test "$has_toolkit_in_cache" != 1; then
1250           var=DEFAULT_DEFAULT_wxUSE_$toolkit
1251         else
1252           var=DEFAULT_wxUSE_$toolkit
1253
1254           eval "version=\$DEFAULT_wx${toolkit}_VERSION"
1255           if test "x$version" != "x"; then
1256             eval "wx${toolkit}_VERSION=$version"
1257           fi
1258         fi
1259         eval "wxUSE_$toolkit=\$${var}"
1260       done
1261     fi
1262
1263     dnl we suppose that expr is available (maybe there is a better way to do
1264     dnl this? what about using ALL_TOOLKITS? TODO)
1265     NUM_TOOLKITS=`expr ${wxUSE_COCOA:-0} + ${wxUSE_GTK:-0} + ${wxUSE_MAC:-0} \
1266                   + ${wxUSE_MGL:-0} + ${wxUSE_MICROWIN:-0} \
1267                   + ${wxUSE_MOTIF:-0} + ${wxUSE_MSW:-0} + ${wxUSE_X11:-0}`
1268
1269     dnl Allow wxUSE_PM only for OS/2 with EMX.
1270     case "${host}" in
1271       *-pc-os2_emx | *-pc-os2-emx )
1272         NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}`
1273     esac
1274
1275     case "$NUM_TOOLKITS" in
1276       1)
1277       ;;
1278       0)
1279         AC_MSG_ERROR(Please specify a toolkit -- cannot determine the default for ${host})
1280       ;;
1281       *)
1282         AC_MSG_ERROR(Please specify at most one toolkit (maybe some are cached in configarg.cache?))
1283     esac
1284
1285     # to be removed when --disable-gtk2 isn't needed
1286     if test "x$wxUSE_GTK2" = "xyes"; then
1287         wxGTK_VERSION=2
1288     elif test "x$wxUSE_GTK2" = "xno"; then
1289         wxGTK_VERSION=1
1290     fi
1291
1292     dnl cache the wxUSE_<TOOLKIT> values too
1293     for toolkit in `echo $ALL_TOOLKITS`; do
1294       var=wxUSE_$toolkit
1295       eval "value=\$${var}"
1296       if test "x$value" != x; then
1297         cache_var=CACHE_$toolkit
1298         eval "cache=\$${cache_var}"
1299         if test "$cache" = 1; then
1300           echo "$var=$value" >> ${wx_arg_cache_file}
1301           eval "version=\$wx${toolkit}_VERSION"
1302           if test "x$version" != "x"; then
1303             echo "wx${toolkit}_VERSION=$version" >> ${wx_arg_cache_file}
1304           fi
1305         fi
1306         if test "$value" = 1; then
1307           toolkit_echo=`echo $toolkit | tr "[[A-Z]]" "[[a-z]]"`
1308           AC_MSG_RESULT($toolkit_echo)
1309         fi
1310       fi
1311     done
1312 else
1313     if test "x$host_alias" != "x"; then
1314         AC_MSG_RESULT(base ($host_alias hosted) only)
1315     else
1316         AC_MSG_RESULT(base only)
1317     fi
1318 fi
1319
1320 dnl ---------------------------------------------------------------------------
1321 dnl When we are using Cygwin with Motif/GTK+, we want it to appear like
1322 dnl 'just' a POSIX platform, so the Win32 API must not be available
1323 dnl ---------------------------------------------------------------------------
1324 dnl (Windows-only piece)
1325 wants_win32=0
1326 doesnt_want_win32=0
1327 case "${host}" in
1328   *-*-cygwin*)
1329       if test "$wxUSE_MSW" = 1 ; then
1330         wants_win32=1
1331         BAKEFILE_FORCE_PLATFORM=win32
1332       else
1333         doesnt_want_win32=1
1334       fi
1335   ;;
1336   *-*-mingw*)
1337       wants_win32=1
1338   ;;
1339 esac
1340
1341 dnl ---------------------------------------------------------------------------
1342 dnl Wine is a virtual platform, we need to patch things up a bit
1343 dnl ---------------------------------------------------------------------------
1344 if test "$wxUSE_WINE" = "yes"; then
1345     wants_win32=1
1346     dnl FIXME: we should do a better job of testing for these
1347     CC=winegcc
1348     CXX=wineg++
1349     RESCOMP=wrc
1350     LDFLAGS_GUI="-mwindows"
1351 fi
1352
1353 dnl NB: The two tests bellow are *NOT* mutually exclusive! They should only
1354 dnl     take effect on Cygwin/Mingw and not other platforms.
1355 if test "$wants_win32" = 1 ; then
1356     USE_UNIX=0
1357     USE_WIN32=1
1358     AC_DEFINE(__WIN32__)
1359     AC_DEFINE(__WIN95__)
1360     AC_DEFINE(__WINDOWS__)
1361     AC_DEFINE(__GNUWIN32__)
1362     AC_DEFINE(STRICT)
1363     AC_DEFINE(WINVER, 0x0400)
1364 fi
1365 if test "$doesnt_want_win32" = 1 ; then
1366     USE_UNIX=1
1367     USE_WIN32=0
1368 fi
1369 dnl (end of Windows-only piece)
1370
1371 if test "$USE_UNIX" = 1 ; then
1372     wxUSE_UNIX=yes
1373     AC_DEFINE(__UNIX__)
1374 fi
1375
1376 dnl ---------------------------------------------------------------------------
1377 dnl Checks for programs
1378 dnl ---------------------------------------------------------------------------
1379
1380 dnl flush the cache because checking for programs might abort
1381 AC_CACHE_SAVE
1382
1383 dnl cross-compiling support: we're cross compiling if the build system is
1384 dnl different from the target one (assume host and target be always the same)
1385 if test "$build" != "$host" ; then
1386     if test "$USE_WIN32" = 1 -o "$USE_DOS" = 1 -o "$USE_UNIX" = 1; then
1387         CC=$host_alias-gcc
1388         CXX=$host_alias-c++
1389         AR=$host_alias-ar
1390         RANLIB=$host_alias-ranlib
1391         DLLTOOL=$host_alias-dlltool
1392         RESCOMP=$host_alias-windres
1393         STRIP=$host_alias-strip
1394     elif test "x$CC" '!=' "x"; then
1395         echo "You set CC, I assume you know what you are doing."
1396     else
1397         AC_MSG_ERROR($build_alias -> $host_alias cross compilation not supported yet.)
1398     fi
1399 fi
1400
1401 dnl C-compiler checks
1402 dnl   defines CC with the compiler to use
1403 dnl   defines GCC with yes if using gcc
1404 dnl   defines GCC empty if not using gcc
1405 dnl   defines CFLAGS
1406 dnl
1407 dnl this magic incantation is needed to prevent AC_PROG_CC from setting the
1408 dnl default CFLAGS (something like "-g -O2") -- we don't need this as we add
1409 dnl -g and -O flags ourselves below
1410 CFLAGS=${CFLAGS:=}
1411 AC_BAKEFILE_PROG_CC
1412
1413 dnl is -traditional needed for correct compilations
1414 dnl   adds -traditional for gcc if needed
1415 AC_PROG_GCC_TRADITIONAL
1416
1417 AC_LANG_SAVE
1418 AC_LANG_CPLUSPLUS
1419
1420 dnl C++-compiler checks
1421 dnl   defines CXX with the compiler to use
1422 dnl   defines GXX with yes if using gxx
1423 dnl   defines GXX empty if not using gxx
1424 dnl   defines CXXFLAGS
1425 dnl
1426 dnl see CFLAGS line above
1427 CXXFLAGS=${CXXFLAGS:=}
1428 AC_BAKEFILE_PROG_CXX
1429
1430 AC_LANG_RESTORE
1431
1432 dnl ranlib command
1433 dnl   defines RANLIB with the appropriate command
1434 AC_PROG_RANLIB
1435
1436 dnl ar command
1437 dnl   defines AR with the appropriate command
1438 AC_CHECK_PROG(AR, ar, ar)
1439 if test "x$AR" = "x" ; then
1440     AC_MSG_ERROR([ar is needed to build wxWidgets])
1441 fi
1442
1443 dnl install checks
1444 dnl   defines INSTALL with the appropriate command
1445 AC_PROG_INSTALL
1446
1447 dnl   make install path absolute (if not already);
1448 dnl   will fail with (some) MSDOS paths
1449 case ${INSTALL} in
1450   /* ) # Absolute
1451      ;;
1452   ?:* ) # Drive letter, considered as absolute.
1453      ;;
1454   *)
1455      INSTALL=`pwd`/${INSTALL} ;;
1456 esac
1457
1458
1459 case "${host}" in
1460
1461     dnl The other BSD's should probably go in here too, since this is
1462     dnl to workaround a strange static lib BSDism.
1463     dnl Mac OS X install seems to ignore -p option...
1464     powerpc-*-darwin* )
1465         INSTALL_PROGRAM="cp -fp"
1466         INSTALL_DATA="cp -fp"
1467         ;;
1468     *)
1469         ;;
1470 esac
1471
1472 dnl strip command
1473 dnl   defines STRIP as strip or nothing if not found
1474 AC_CHECK_PROG(STRIP, strip, strip, true)
1475
1476 dnl does make support "-include" (only GNU make does AFAIK)?
1477 AC_CACHE_CHECK([if make is GNU make], wx_cv_prog_makeisgnu,
1478 [
1479     if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
1480             egrep -s GNU > /dev/null); then
1481         wx_cv_prog_makeisgnu="yes"
1482     else
1483         wx_cv_prog_makeisgnu="no"
1484     fi
1485 ])
1486
1487 if test "x$wx_cv_prog_makeisgnu" = "xyes"; then
1488     IF_GNU_MAKE=""
1489 else
1490     IF_GNU_MAKE="#"
1491 fi
1492
1493 AC_SUBST(IF_GNU_MAKE)
1494
1495 dnl we don't need to check for VPATH support in GNU make - it does have it
1496 if test "x$wx_cv_prog_makeisgnu" != "xyes"; then
1497 dnl check if VPATH works
1498 AC_CACHE_CHECK([if make supports VPATH], wx_cv_prog_makevpath, [
1499 dnl create Makefile
1500 cat - << EOF > confMake
1501 check : file
1502         cp \$? \$@
1503         cp \$? final_file
1504 EOF
1505
1506 if test ! -d sub ; then
1507   mkdir sub
1508 fi
1509 echo dummy > sub/file
1510 ${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null
1511 RESULT=$?
1512 rm -f sub/file check final_file confMake
1513 rmdir sub
1514 if test "$RESULT" = 0; then
1515   wx_cv_prog_makevpath="yes"
1516 else
1517   wx_cv_prog_makevpath="no"
1518 fi
1519 ])
1520
1521 if test "x$wx_cv_prog_makevpath" != "xyes"; then
1522 AC_MSG_ERROR([
1523 You need a make-utility that is able to use the variable
1524 VPATH correctly.
1525 If your version of make does not support VPATH correctly,
1526 please install GNU-make (possibly as gmake), and start
1527 configure with the following command:
1528 export MAKE=gmake; ./configure  for sh-type shells
1529 setenv MAKE gmake; ./configure  for csh-type shells
1530 Also please do remember to use gmake in this case every time
1531 you are trying to compile.
1532 ])
1533 fi dnl make without VPATH
1534 fi dnl not GNU make
1535
1536 dnl needed for making link to setup.h
1537 AC_PROG_LN_S
1538
1539 dnl ------------------------------------------------------------------------
1540 dnl Platform specific tests
1541 dnl ------------------------------------------------------------------------
1542
1543 dnl xlC needs -qunique (at least on AIX) so that one source file can be
1544 dnl compiled to multiple object files and safely linked together.
1545 if test "x$XLCXX" = "xyes"; then
1546     CXXFLAGS="$CXXFLAGS -qunique"
1547 fi
1548
1549
1550 dnl This case is for OS X vs. everything else
1551 case "${host}" in
1552   powerpc-*-darwin* )
1553     AC_MSG_CHECKING([if __POWERPC__ is already defined])
1554     AC_TRY_COMPILE([],[#ifndef __POWERPC__
1555         choke me for lack of PowerPC
1556 #endif
1557 ],
1558         [AC_MSG_RESULT([yes])],
1559         [AC_MSG_RESULT([no])
1560         AC_DEFINE(__POWERPC__)
1561     ])
1562     AC_MSG_CHECKING([if CoreFoundation/CFBase.h is usable])
1563     AC_TRY_COMPILE([#include <CoreFoundation/CFBase.h>
1564 ],[],
1565         [AC_MSG_RESULT([yes])],
1566         [AC_MSG_RESULT([no])
1567         AC_MSG_CHECKING([if __CF_USE_FRAMEWORK_INCLUDES__ is required])
1568         AC_TRY_COMPILE([#define __CF_USE_FRAMEWORK_INCLUDES__
1569 #include <CoreFoundation/CFBase.h>
1570         ],[],
1571         [AC_MSG_RESULT([yes])
1572         dnl We must use -D so source files that don't include wx/setup.h
1573         dnl but do include CFBase will work.
1574         CPPFLAGS="$CPPFLAGS -D__CF_USE_FRAMEWORK_INCLUDES__"],
1575         [AC_MSG_FAILURE([no.  CoreFoundation not available.])]
1576         )
1577         ]
1578     )
1579   ;;
1580 esac
1581
1582 dnl This case is for OS/2 vs. everything else
1583 case "${host}" in
1584   *-pc-os2_emx | *-pc-os2-emx )
1585       dnl ---------------------------------------------------------------------
1586       dnl When we are using gcc on OS/2, we want to be either using resources
1587       dnl (PM) or a more complete POSIX emulation for Motif/GTK+/X11.
1588       dnl Moreover we need to link explicitly against either stdcpp.a or
1589       dnl stdcxx.a (depending on compiler version), since we are using "gcc",
1590       dnl not "g++/c++".
1591       dnl ---------------------------------------------------------------------
1592       dnl (OS/2-only piece)
1593       if test "$wxUSE_MOTIF" = 1 -o "$wxUSE_GTK" = 1 -o "$wxUSE_X11" = 1; then
1594           dnl More complete Unix emulation for unix-like ports
1595           dnl by linking in POSIX/2's cExt (if available).
1596           AC_CHECK_LIB(cExt, drand48, LIBS="$LIBS -lcExt")
1597       else
1598           dnl Include resources for the "native" port (wxPM).
1599           RESPROGRAMOBJ="\${top_srcdir}/include/wx/os2/wx.res"
1600       fi
1601       dnl Check for the gcc version (and thereby for the C runtime library).
1602       dnl wx_cv_gccversion = EMX2 -> Standard EMX environment
1603       dnl wx_cv_gccversion = EMX3 -> EMX with gcc-3.0.3 or gcc-3.2.1
1604       dnl wx_cv_gccversion = Innotek5 -> gcc-3.2.2 with Innotek libc5
1605       dnl wx_cv_gccversion = Innotek6 -> gcc-3.3.5 with Innotek libc6.
1606       AC_CACHE_CHECK([for gcc/libc version], wx_cv_gccversion,[
1607           AC_TRY_RUN(
1608               dnl Check the gcc version macro.   
1609               [
1610                   #include <stdio.h>
1611
1612                   int main()
1613                   {
1614                       FILE *f=fopen("conftestval", "w");
1615                       if (!f) exit(1);
1616                       fprintf(f,
1617                   #if (__GNUC__ < 3)
1618                               "EMX2"
1619                   #elif (__GNUC__==3) && ((__GNUC_MINOR__ < 2) || ((__GNUC_MINOR__==2) && (__GNUC_PATCHLEVEL__<2)))
1620                               "EMX3"
1621                   #elif (__GNUC__==3) && (__GNUC_MINOR__==2) && (__GNUC_PATCHLEVEL__==2)
1622                               "Innotek5"
1623                   #else
1624                               "Innotek6"
1625                   #endif
1626                       );
1627                       exit(0);
1628                   }
1629               ],
1630               wx_cv_gccversion=`cat conftestval`,
1631               wx_cv_gccversion="EMX2",
1632               dnl Compilation error: Assuming standard EMX environment
1633               wx_cv_gccversion="EMX2"
1634           )
1635       ])
1636       if test "$wx_cv_gccversion" = "EMX2"; then
1637           LIBS="$LIBS -lstdcpp"
1638           LDFLAGS="$LDFLAGS -Zsysv-signals"
1639       else
1640           if test "$wx_cv_gccversion" = "EMX3"; then
1641               LIBS="$LIBS -lstdcxx"
1642               LDFLAGS="$LDFLAGS -Zsysv-signals"
1643           else
1644               LIBS="$LIBS -lstdc++"
1645           fi
1646       fi
1647       if test "$wxUSE_SHARED" = "yes" -a "$wxUSE_OMF" = "no"; then
1648         AC_MSG_WARN([Building DLLs requires OMF mode, enabled])
1649         wxUSE_OMF=yes
1650         enable_omf=yes
1651       fi
1652       dnl (end of OS/2-only piece)
1653   ;;
1654   *)
1655       dnl ---------------------------------------------------------------------
1656       dnl look for strcasecmp() in string.h and then strings.h if it's not
1657       dnl there. Don't do this on OS/2, where "stricmp" is the function to be
1658       dnl used.
1659       dnl ---------------------------------------------------------------------
1660       dnl (non-OS/2-only piece)
1661
1662       AC_LANG_SAVE
1663       AC_LANG_CPLUSPLUS
1664
1665       AC_CACHE_CHECK([for strcasecmp() in string.h], ac_cv_string_strcasecmp, [
1666           AC_TRY_LINK([
1667               #include <string.h>
1668               ],
1669               [
1670                   strcasecmp("foo", "bar");
1671               ],
1672               ac_cv_string_strcasecmp=yes,
1673               ac_cv_string_strcasecmp=no
1674           )
1675       ])
1676
1677       if test x"$ac_cv_string_strcasecmp" = "xyes"; then
1678           AC_DEFINE(HAVE_STRCASECMP_IN_STRING_H)
1679       else
1680           AC_CACHE_CHECK([for strcasecmp() in strings.h], ac_cv_strings_strcasecmp, [
1681               AC_TRY_LINK([
1682                   #include <strings.h>
1683                   ],
1684                   [
1685                       strcasecmp("foo", "bar");
1686                   ],
1687                   ac_cv_strings_strcasecmp=yes,
1688                   ac_cv_strings_strcasecmp=no
1689               )
1690           ])
1691
1692           if test x"$ac_cv_strings_strcasecmp" = "xyes"; then
1693               AC_DEFINE(HAVE_STRCASECMP_IN_STRINGS_H)
1694           else
1695               AC_MSG_ERROR([No case-insensitive string comparison function found.])
1696           fi
1697       fi
1698
1699       AC_LANG_RESTORE
1700       dnl (end of non-OS/2-only piece)
1701   ;;
1702 esac
1703
1704 dnl ------------------------------------------------------------------------
1705 dnl Check for headers
1706 dnl ------------------------------------------------------------------------
1707
1708 dnl defines HAVE_STDLIB_H
1709 AC_CHECK_HEADERS(stdlib.h)
1710 dnl defines HAVE_MALLOC_H
1711 AC_CHECK_HEADERS(malloc.h)
1712 dnl defines HAVE_UNISTD_H
1713 AC_CHECK_HEADERS(unistd.h)
1714 dnl defines HAVE_WCHAR_H
1715 AC_CHECK_HEADERS(wchar.h)
1716
1717 dnl maybe wchar_t is in wcstr.h if we don't have wchar.h?
1718 if test "$ac_cv_header_wchar_h" != "yes"; then
1719     dnl defines HAVE_WCSTR_H
1720     AC_CHECK_HEADERS(wcstr.h)
1721 fi
1722
1723 dnl defines HAVE_FNMATCH_H
1724 AC_CHECK_HEADERS(fnmatch.h)
1725
1726 if test "x$ac_cv_header_fnmatch_h" = "xyes"; then
1727     AC_CHECK_FUNCS(fnmatch)
1728 fi
1729
1730 dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
1731 AC_CHECK_HEADERS(langinfo.h)
1732
1733 case "${host}" in
1734   *-pc-os2_emx | *-pc-os2-emx )
1735       dnl Explicitly link -lintl if langinfo.h is available
1736       dnl and intl not yet included in libc
1737       if test $ac_cv_header_langinfo_h = "yes" \
1738                 -a \(   "$wx_cv_gccversion" = "EMX2" \
1739                      -o "$wx_cv_gccversion" = "EMX3" \
1740                      -o "$wx_cv_gccversion" = "Innotek5" \); then
1741           LIBS="$LIBS -lintl"
1742       fi
1743   ;;
1744 esac
1745
1746 if test "$wxUSE_GUI" = "yes"; then
1747     if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_PM" != 1; then
1748         dnl defines HAVE_X11_XKBLIB_H
1749         AC_CHECK_HEADERS(X11/Xlib.h)
1750         AC_CHECK_HEADERS([X11/XKBlib.h], [], [], 
1751                          [
1752                           #if HAVE_X11_XLIB_H
1753                             #include <X11/Xlib.h>
1754                           #endif
1755                          ])
1756     fi
1757 fi
1758
1759 dnl ---------------------------------------------------------------------------
1760 dnl Checks for compiler characteristics
1761 dnl ---------------------------------------------------------------------------
1762
1763 dnl defines const to be empty if c-compiler does not support const fully
1764 AC_C_CONST
1765 dnl defines inline to a sensible value for the c-compiler
1766 AC_C_INLINE
1767
1768 dnl check the sizes of integral types (give some reasonable default values for
1769 dnl cross-compiling)
1770 dnl   defines the size of certain types of variables in SIZEOF_<TYPE>
1771 AC_CHECK_SIZEOF(char, 1)
1772 AC_CHECK_SIZEOF(short, 2)
1773 AC_CHECK_SIZEOF(void *, 4)
1774 AC_CHECK_SIZEOF(int, 4)
1775 AC_CHECK_SIZEOF(long, 4)
1776 AC_CHECK_SIZEOF(size_t, 4)
1777
1778 case "${host}" in
1779     arm-*-linux* )
1780         AC_CHECK_SIZEOF(long long, 8)
1781     ;;
1782     *-hp-hpux* )
1783         AC_CHECK_SIZEOF(long long, 0)
1784         if test "$ac_cv_sizeof_long_long" != "0"; then
1785             dnl HPUX 10.20 headers need this define in order to use long long definitions
1786             CPPFLAGS="$CPPFLAGS -D_INCLUDE_LONGLONG"
1787         fi
1788     ;;
1789     * )
1790         AC_CHECK_SIZEOF(long long, 0)
1791 esac
1792
1793 dnl SGI/Irix's stdio.h does not include wchar_t. Mac OS X does not provide
1794 dnl wchar.h and wchar_t is defined by stdlib.h (GD)
1795 AC_CHECK_SIZEOF(wchar_t, 0,
1796     [
1797         /* DJGPP's wchar_t is now a keyword in C++ (still not C though) */
1798         #if defined(__DJGPP__) && !( (__GNUC_MINOR__ >= 8 && __GNUC__ == 2 ) || __GNUC__ >= 3 )
1799         #  error "fake wchar_t"
1800         #endif
1801         #ifdef HAVE_WCHAR_H
1802         #  ifdef __CYGWIN__
1803         #    include <stddef.h>
1804         #  endif
1805         #  include <wchar.h>
1806         #endif
1807         #ifdef HAVE_STDLIB_H
1808         #  include <stdlib.h>
1809         #endif
1810         #include <stdio.h>
1811     ]
1812 )
1813 if test "$ac_cv_sizeof_wchar_t" != "0"; then
1814     wxUSE_WCHAR_T=yes
1815 else
1816     wxUSE_WCHAR_T=no
1817 fi
1818
1819 dnl checks needed to define wxVaCopy
1820 AC_CACHE_CHECK([for va_copy],
1821     wx_cv_func_va_copy,
1822     [
1823         AC_LINK_IFELSE([
1824             #include <stdarg.h>
1825             void foo(char *f, ...)
1826             {
1827                 va_list ap1, ap2;
1828                 va_start(ap1, f);
1829                 va_copy(ap2, ap1);
1830                 va_end(ap2);
1831                 va_end(ap1);
1832             }
1833             int main()
1834             {
1835                 foo("hi", 17);
1836                 return 0;
1837             }],
1838             wx_cv_func_va_copy=yes,
1839             wx_cv_func_va_copy=no
1840         )
1841     ]
1842 )
1843
1844 if test $wx_cv_func_va_copy = "yes"; then
1845     AC_DEFINE(HAVE_VA_COPY)
1846 else
1847     dnl try to understand how can we copy va_lists
1848     AC_CACHE_CHECK([if va_list can be copied by value],
1849         wx_cv_type_va_list_lvalue,
1850         [
1851             AC_RUN_IFELSE([
1852                 #include <stdarg.h>
1853                 int foo(char *f, ...)
1854                 {
1855                     va_list ap1, ap2;
1856                     va_start(ap1, f);
1857                     ap2 = ap1;
1858                     if ( va_arg(ap1, int) != 17 || va_arg(ap2, int) != 17 )
1859                         return 1;
1860                     va_end(ap2);
1861                     va_end(ap1);
1862                     return 0;
1863                 }
1864                 int main()
1865                 {
1866                     return foo("hi", 17);
1867                 }],
1868                 wx_cv_type_va_list_lvalue=yes,
1869                 wx_cv_type_va_list_lvalue=no,
1870                 dnl assume most common case for cross-compiling...
1871                 wx_cv_type_va_list_lvalue=yes
1872             )
1873         ]
1874     )
1875
1876     if test $wx_cv_type_va_list_lvalue != "yes"; then
1877         dnl we suppose that the only thing which can't be copied like this
1878         dnl are arrays... only experience will show whether this is really true
1879         AC_DEFINE(VA_LIST_IS_ARRAY)
1880     fi
1881 fi
1882
1883 dnl check for large file support
1884 AC_SYS_LARGEFILE
1885
1886 dnl we need to define _FILE_OFFSET_BITS or _LARGE_FILES on the compiler command
1887 dnl line because otherwise the system headers risk being included before
1888 dnl wx/defs.h which defines these constants leading to inconsistent
1889 dnl sizeof(off_t) in different source files of the same program and linking
1890 dnl problems
1891 if test "x$wx_largefile" = "xyes"; then
1892     if test "x$ac_cv_sys_file_offset_bits" = "x64"; then
1893         WX_LARGEFILE_FLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES"
1894     else
1895         WX_LARGEFILE_FLAGS="-D_LARGE_FILES"
1896     fi
1897     dnl AC_FUNC_FSEEKO sets HAVE_FSEEKO and $ac_cv_sys_largefile_source
1898     AC_FUNC_FSEEKO
1899     if test "$ac_cv_sys_largefile_source" != no; then
1900         WX_LARGEFILE_FLAGS="$WX_LARGEFILE_FLAGS -D_LARGEFILE_SOURCE=$ac_cv_sys_largefile_source"
1901     fi
1902     CPPFLAGS="$CPPFLAGS $WX_LARGEFILE_FLAGS"
1903 fi
1904
1905 dnl check for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling)
1906 WX_C_BIGENDIAN
1907
1908 dnl check for iostream (as opposed to iostream.h) standard header
1909 WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH))
1910
1911 dnl check whether C++ compiler supports bool built-in type
1912 WX_CPP_BOOL
1913
1914 dnl check whether C++ compiler supports explicit keyword
1915 WX_CPP_EXPLICIT
1916
1917 dnl check whether C++ compiler supports C++ casts
1918 AC_CXX_CONST_CAST
1919 AC_CXX_REINTERPRET_CAST
1920 AC_CXX_STATIC_CAST
1921 dnl we don't use HAVE_DYNAMIC_CAST anywhere right now...
1922 dnl AC_CXX_DYNAMIC_CAST
1923
1924 dnl check for std::string or std::wstring
1925 if test "$wxUSE_STD_STRING" = "yes" -o "$wxUSE_STL" = "yes"; then
1926     AC_LANG_PUSH(C++)
1927
1928     if test "$wxUSE_UNICODE" = "yes"; then
1929         std_string="std::wstring"
1930         char_type="wchar_t"
1931     else
1932         std_string="std::string"
1933         char_type="char"
1934     fi
1935
1936     dnl check if <string> declares std::wstring
1937     AC_MSG_CHECKING([for $std_string in <string>])
1938     AC_TRY_COMPILE([#include <string>],
1939                    [$std_string foo;],
1940                    [AC_MSG_RESULT(yes)
1941                     AC_DEFINE(HAVE_STD_WSTRING)],
1942                    [AC_MSG_RESULT(no)
1943                     AC_MSG_CHECKING([if std::basic_string<$char_type> works])
1944                     AC_TRY_COMPILE([
1945                         #ifdef HAVE_WCHAR_H
1946                         #  ifdef __CYGWIN__
1947                         #    include <stddef.h>
1948                         #  endif
1949                         #  include <wchar.h>
1950                         #endif
1951                         #ifdef HAVE_STDLIB_H
1952                         #  include <stdlib.h>
1953                         #endif
1954                         #include <stdio.h>
1955                         #include <string>
1956                         ],
1957                         [std::basic_string<$char_type> foo;
1958                          const $char_type* dummy = foo.c_str();],
1959                         [AC_MSG_RESULT(yes)],
1960                         [AC_MSG_RESULT([no])
1961                          if test "$wxUSE_STL" = "yes"; then
1962                              AC_MSG_ERROR([Can't use --enable-stl without $std_string or std::basic_string<$char_type>])
1963                          elif grep wxUSE_STD_STRING $wx_arg_cache_file >/dev/null; then
1964                              AC_MSG_ERROR([Can't use --enable-std_string without $std_string or std::basic_string<$char_type>])
1965                          else
1966                              AC_MSG_WARN([No $std_string or std::basic_string<$char_type>, switching to --disable-std_string])
1967                              wxUSE_STD_STRING=no
1968                          fi
1969                         ]
1970                     )
1971                     ])
1972
1973     AC_LANG_POP
1974 fi
1975
1976 if test "$wxUSE_STD_IOSTREAM" = "yes"; then
1977     AC_LANG_PUSH(C++)
1978
1979     AC_CHECK_TYPES([std::istream, std::ostream],,
1980                    [wxUSE_STD_IOSTREAM=no],
1981                    [#include <iostream>])
1982
1983     if test "$wxUSE_STD_IOSTREAM" != "yes"; then
1984         if grep wxUSE_STD_IOSTREAM $wx_arg_cache_file >/dev/null; then
1985             AC_MSG_ERROR([Can't use --enable-std_iostreams without std::istream and std::ostream])
1986         else
1987             AC_MSG_WARN([No std::iostreams, switching to --disable-std_iostreams])
1988         fi
1989     fi
1990     
1991     AC_LANG_POP
1992 fi
1993
1994 if test "$wxUSE_STL" = "yes"; then
1995     AC_LANG_PUSH(C++)
1996
1997     dnl check for basic STL functionality
1998     AC_MSG_CHECKING([for basic STL functionality])
1999     AC_TRY_COMPILE([#include <string>
2000                     #include <functional>
2001                     #include <algorithm>
2002                     #include <vector>
2003                     #include <list>],
2004                     [std::vector<int> moo;
2005                      std::list<int> foo;
2006                      std::vector<int>::iterator it = 
2007                          std::find_if(moo.begin(), moo.end(),
2008                                       std::bind2nd(std::less<int>(), 3));],
2009                     [AC_MSG_RESULT([yes])],
2010                     [AC_MSG_RESULT([no])
2011                      AC_MSG_ERROR([Basic STL functionality missing])])
2012
2013     dnl check for compliant std::string::compare
2014     AC_MSG_CHECKING([for compliant std::string::compare])
2015     AC_TRY_COMPILE([#include <string>],
2016                    [std::string foo, bar;
2017                     foo.compare(bar);
2018                     foo.compare(1, 1, bar);
2019                     foo.compare(1, 1, bar, 1, 1);
2020                     foo.compare("");
2021                     foo.compare(1, 1, "");
2022                     foo.compare(1, 1, "", 2);],
2023                    [AC_MSG_RESULT(yes)
2024                     AC_DEFINE(HAVE_STD_STRING_COMPARE)],
2025                    [AC_MSG_RESULT(no)])
2026
2027     dnl check for hash_map and hash_set headers
2028     AC_CHECK_HEADER([hash_map],
2029                     [AC_MSG_CHECKING([for hash_map and hash_set])
2030                      AC_TRY_COMPILE([#include <hash_map>
2031                                      #include <hash_set>],
2032                                     [std::hash_map<double*, char*, std::hash<double*>, std::equal_to<double*> > test1;
2033                                      std::hash_set<char*, std::hash<char*>, std::equal_to<char*> > test2;],
2034                                     [AC_MSG_RESULT(yes)
2035                                      AC_DEFINE(HAVE_HASH_MAP)
2036                                      AC_DEFINE(HAVE_STD_HASH_MAP)],
2037                                     [AC_MSG_RESULT(no)])
2038                      ])
2039
2040     AC_CHECK_HEADER([ext/hash_map],
2041                     [AC_MSG_CHECKING([for hash_map and hash_set])
2042                      AC_TRY_COMPILE([#include <ext/hash_map>
2043                                      #include <ext/hash_set>],
2044                                     [__gnu_cxx::hash_map<double*, char*, __gnu_cxx::hash<double*>, std::equal_to<double*> > test1;
2045                                      __gnu_cxx::hash_set<char*, __gnu_cxx::hash<char*>, std::equal_to<char*> > test2;],
2046                                     [AC_MSG_RESULT(yes)
2047                                      AC_DEFINE(HAVE_EXT_HASH_MAP)
2048                                      AC_DEFINE(HAVE_GNU_CXX_HASH_MAP)],
2049                                     [AC_MSG_RESULT(no)])
2050                      ])
2051
2052     AC_LANG_POP
2053 fi
2054
2055 dnl ---------------------------------------------------------------------------
2056 dnl Define search path for includes and libraries: all headers and libs will be
2057 dnl looked for in all directories of this path
2058 dnl ---------------------------------------------------------------------------
2059
2060 dnl Notice that /usr/include should *not* be in this list, otherwise it breaks
2061 dnl compilation on Solaris/AIX/... with gcc because standard (non ANSI C)
2062 dnl headers are included instead of the "fixed" (ANSI-fied) gcc ones.
2063 dnl
2064 dnl Also try to put all directories which may contain X11R6 before those which
2065 dnl may contain X11R5/4 - we want to use R6 on machines which have both!
2066 dnl
2067 dnl In the same vein. Motif 2.1 should be tried before Motif 1.2 for the
2068 dnl systems which have both (AIX 4.x does)
2069 SEARCH_INCLUDE="\
2070     /usr/local/include        \
2071                               \
2072     /usr/Motif-2.1/include    \
2073     /usr/Motif-1.2/include    \
2074     /usr/include/Motif1.2     \
2075     /opt/xpm/include/X11      \
2076     /opt/GBxpm/include/       \
2077     /opt/GBxpm/X11/include/   \
2078                               \
2079     /usr/dt/include           \
2080     /usr/openwin/include      \
2081                               \
2082     /usr/include/Xm           \
2083                               \
2084     /usr/X11R6/include        \
2085     /usr/X11R6.4/include      \
2086     /usr/X11R5/include        \
2087     /usr/X11R4/include        \
2088                               \
2089     /usr/include/X11R6        \
2090     /usr/include/X11R5        \
2091     /usr/include/X11R4        \
2092                               \
2093     /usr/local/X11R6/include  \
2094     /usr/local/X11R5/include  \
2095     /usr/local/X11R4/include  \
2096                               \
2097     /usr/local/include/X11R6  \
2098     /usr/local/include/X11R5  \
2099     /usr/local/include/X11R4  \
2100                               \
2101     /usr/X11/include          \
2102     /usr/include/X11          \
2103     /usr/local/X11/include    \
2104     /usr/local/include/X11    \
2105                               \
2106     /usr/X386/include         \
2107     /usr/x386/include         \
2108     /usr/XFree86/include/X11  \
2109                               \
2110     X:/XFree86/include        \
2111     X:/XFree86/include/X11    \
2112                               \
2113     /usr/include/gtk          \
2114     /usr/local/include/gtk    \
2115     /usr/include/glib         \
2116     /usr/local/include/glib   \
2117                               \
2118     /usr/include/qt           \
2119     /usr/local/include/qt     \
2120                               \
2121     /usr/local/arm/3.3.2/include     \
2122                               \
2123     /usr/include/windows      \
2124     /usr/include/wine         \
2125     /usr/local/include/wine   \
2126                               \
2127     /usr/unsupported/include  \
2128     /usr/athena/include       \
2129     /usr/local/x11r5/include  \
2130     /usr/lpp/Xamples/include  \
2131                               \
2132     /usr/openwin/share/include"
2133
2134 dnl prepend lib and lib32 for IRIX where the files in these directories should
2135 dnl be found before the ones in lib64 for 32bit compilation -- of course, this
2136 dnl probably/surely breaks 64bit compilation... IMO the only real solution is to
2137 dnl stop using WX_PATH_FIND_LIBRARIES() at all and use AC_CHECK_LIB() instead
2138 dnl
2139 dnl also put 64 bit versions for Linux on AMD, they must come before the usual
2140 dnl locations or 64 bit compilation failed
2141 SEARCH_LIB="/usr/lib /usr/lib32 /usr/lib64 /usr/X11R6/lib64 `echo "$SEARCH_INCLUDE" | sed s/include/lib/g`"
2142
2143 dnl ------------------------------------------------------------------------
2144 dnl Check for libraries
2145 dnl ------------------------------------------------------------------------
2146
2147 dnl flush the cache because checking for libraries below might abort
2148 AC_CACHE_SAVE
2149
2150 dnl check for glibc version
2151 dnl
2152 dnl VZ: I have no idea why had this check been there originally, but now
2153 dnl     we could probably do without it by just always adding _GNU_SOURCE
2154 if test "$USE_LINUX" = 1 -o "$USE_GNU" = 1; then
2155     AC_CACHE_CHECK([for glibc 2.1 or later], wx_cv_lib_glibc21,[
2156         AC_TRY_COMPILE([#include <features.h>],
2157             [
2158                 #if (__GLIBC__ < 2) || (__GLIBC_MINOR__ < 1)
2159                     #error not glibc2.1
2160                 #endif
2161             ],
2162             [
2163                 wx_cv_lib_glibc21=yes
2164             ],
2165             [
2166                 wx_cv_lib_glibc21=no
2167             ]
2168         )
2169     ])
2170     if test "$wx_cv_lib_glibc21" = "yes"; then
2171         AC_DEFINE(wxHAVE_GLIBC2)
2172     fi
2173 fi
2174
2175 dnl we may need _GNU_SOURCE for 2 things:
2176 dnl
2177 dnl  1. to get PTHREAD_MUTEX_RECURSIVE with glibc 2.1+ (strictly speaking we
2178 dnl  only need _XOPEN_SOURCE=500 but just defining this disables _BSD_SOURCE
2179 dnl  which breaks libtiff compilation, so it is simpler to just define
2180 dnl  _GNU_SOURCE to get everything)
2181 dnl
2182 dnl  2. for Unicode functions
2183 if test "x$wx_cv_lib_glibc21" = "xyes"; then
2184     if test "$wxUSE_UNICODE" = "yes" -o "$wxUSE_THREADS" = "yes"; then
2185         AC_DEFINE(_GNU_SOURCE)
2186     fi
2187 fi
2188
2189 dnl ---------------------------------------------------------------------------
2190 dnl Optional libraries
2191 dnl
2192 dnl   --with-<lib>=sys
2193 dnl       looks for system library and fails if not found
2194 dnl
2195 dnl   --with-<lib>
2196 dnl   --with-<lib>=yes
2197 dnl       looks for system library and, if not found, prints a warning,
2198 dnl       falls back to the builtin wx version, and continues configuration
2199 dnl
2200 dnl   --with-<lib>=builtin
2201 dnl       uses builtin wx version without searching for system library
2202 dnl
2203 dnl   --with-<lib>=no
2204 dnl   --without-<lib>
2205 dnl       do not use library (neither system nor builtin wx version)
2206 dnl
2207 dnl ---------------------------------------------------------------------------
2208
2209 dnl ------------------------------------------------------------------------
2210 dnl Check for regex libraries
2211 dnl ------------------------------------------------------------------------
2212
2213 if test "$wxUSE_REGEX" != "no"; then
2214     AC_DEFINE(wxUSE_REGEX)
2215             
2216     if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_REGEX" = "yes"; then
2217         AC_MSG_WARN([Defaulting to the the builtin regex library for Unicode build.])
2218         wxUSE_REGEX=builtin
2219     fi
2220
2221     if test "$wxUSE_REGEX" = "sys" -o "$wxUSE_REGEX" = "yes" ; then
2222         dnl according to Unix 98 specs, regcomp() is in libc but I believe that
2223         dnl on some old systems it may be in libregex - check for it too?
2224         AC_CHECK_HEADER(regex.h, [AC_CHECK_FUNCS(regcomp)])
2225
2226         if test "x$ac_cv_func_regcomp" != "xyes"; then
2227             if test "$wxUSE_REGEX" = "sys" ; then
2228                 AC_MSG_ERROR([system regex library not found! Use --with-regex to use built-in version])
2229             else
2230                 AC_MSG_WARN([system regex library not found, will use built-in instead])
2231                 wxUSE_REGEX=builtin
2232             fi
2233         else
2234             dnl we are using the system library
2235             wxUSE_REGEX=sys
2236             dnl only the built-in supports advanced REs
2237             AC_DEFINE(WX_NO_REGEX_ADVANCED)
2238         fi
2239     fi
2240 fi
2241
2242 dnl ------------------------------------------------------------------------
2243 dnl Check for zlib compression library
2244 dnl ------------------------------------------------------------------------
2245
2246 ZLIB_LINK=
2247 if test "$wxUSE_ZLIB" != "no" ; then
2248     AC_DEFINE(wxUSE_ZLIB)
2249
2250     if test "$wxUSE_ZLIB" = "sys" -o "$wxUSE_ZLIB" = "yes" ; then
2251         dnl don't test for zlib under Mac -- its verson there is 1.1.3 but we
2252         dnl should still use it because hopefully (can someone confirm this?)
2253         dnl Apple did fix the security problem in it and not using the system
2254         dnl library results in a whole bunch of warnings when linking with
2255         dnl Carbon framework
2256         if test "$USE_DARWIN" = 1; then
2257             system_zlib_h_ok="yes"
2258         else
2259             dnl we have troubles with ancient zlib versions (e.g. 1.0.4 is
2260             dnl known to not work) and although I don't know which is
2261             dnl the minimal required version it's safer to test for 1.1.4 as
2262             dnl it fixes a security problem in 1.1.3 -- and hopefully nobody
2263             dnl has anything more ancient (1.1.3 was released in July 1998)
2264             dnl anyhow
2265             AC_CACHE_CHECK([for zlib.h >= 1.1.4], ac_cv_header_zlib_h,
2266                 [AC_TRY_RUN(
2267                     dnl zlib.h defines ZLIB_VERSION="x.y.z"
2268                     [
2269                         #include <zlib.h>
2270                         #include <stdio.h>
2271
2272                         int main()
2273                         {
2274                             FILE *f=fopen("conftestval", "w");
2275                             if (!f) exit(1);
2276                             fprintf(f, "%s",
2277                                     ZLIB_VERSION[0] == '1' &&
2278                                     (ZLIB_VERSION[2] > '1' ||
2279                                     (ZLIB_VERSION[2] == '1' &&
2280                                      ZLIB_VERSION[4] >= '4')) ? "yes" : "no");
2281                             exit(0);
2282                         }
2283                     ],
2284                     ac_cv_header_zlib_h=`cat conftestval`,
2285                     ac_cv_header_zlib_h=no,
2286                     dnl cross-compiling: don't have an answer, try later
2287                     unset ac_cv_header_zlib_h
2288                 )]
2289             )
2290             dnl If the test above did not come up with a value (e.g. cross
2291             dnl compiling) then this should give a definitive answer
2292             AC_CHECK_HEADER(zlib.h)
2293
2294             system_zlib_h_ok=$ac_cv_header_zlib_h
2295         fi
2296
2297         if test "$system_zlib_h_ok" = "yes"; then
2298             AC_CHECK_LIB(z, deflate, ZLIB_LINK=" -lz")
2299         fi
2300
2301         if test "x$ZLIB_LINK" = "x" ; then
2302             if test "$wxUSE_ZLIB" = "sys" ; then
2303                 AC_MSG_ERROR([zlib library not found or too old! Use --with-zlib=builtin to use built-in version])
2304             else
2305                 AC_MSG_WARN([zlib library not found or too old, will use built-in instead])
2306                 wxUSE_ZLIB=builtin
2307             fi
2308         else
2309             dnl we are using the system library
2310             wxUSE_ZLIB=sys
2311         fi
2312     fi
2313 fi
2314
2315 dnl ------------------------------------------------------------------------
2316 dnl Check for png library
2317 dnl ------------------------------------------------------------------------
2318
2319 PNG_LINK=
2320 if test "$wxUSE_LIBPNG" != "no" ; then
2321     AC_DEFINE(wxUSE_LIBPNG)
2322
2323     if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBPNG" = "builtin" ; then
2324         AC_MSG_WARN([wxMGL doesn't work with builtin png library, will use MGL one instead])
2325         wxUSE_LIBPNG=sys
2326     fi
2327
2328     dnl for the check below to have a chance to succeed, we must already have
2329     dnl libz somewhere (don't do this when bulding wxMGL since its libpng
2330     dnl doesn't depend on zlib)
2331     if test "$wxUSE_MGL" != 1 -a "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then
2332         AC_MSG_WARN([system png library doesn't work without system zlib, will use built-in instead])
2333         wxUSE_LIBPNG=builtin
2334     fi
2335
2336     if test "$wxUSE_MGL" != 1 ; then
2337         dnl Don't check for libpng when building wxMGL, libmgl contains it
2338         if test "$wxUSE_LIBPNG" = "sys" -o "$wxUSE_LIBPNG" = "yes" ; then
2339             dnl libpng version 0.9 is known to not work, if an even newer
2340             dnl version is required, just bump it up in the test below
2341             AC_CACHE_CHECK([for png.h > 0.90], ac_cv_header_png_h,
2342                 [AC_TRY_RUN(
2343                     dnl png.h defines PNG_LIBPNG_VER=number
2344                     [
2345                         #include <png.h>
2346                         #include <stdio.h>
2347
2348                         int main()
2349                         {
2350                             FILE *f=fopen("conftestval", "w");
2351                             if (!f) exit(1);
2352                             fprintf(f, "%s",
2353                                      PNG_LIBPNG_VER > 90 ? "yes" : "no");
2354                             exit(0);
2355                         }
2356                     ],
2357                     ac_cv_header_png_h=`cat conftestval`,
2358                     ac_cv_header_png_h=no,
2359                     dnl cross-compiling: test (later) if we have any png.h
2360                     unset ac_cv_header_png_h
2361                 )]
2362             )
2363             AC_CHECK_HEADER(png.h)
2364
2365             if test "$ac_cv_header_png_h" = "yes"; then
2366                 AC_CHECK_LIB(png, png_check_sig, PNG_LINK=" -lpng -lz", , [-lz -lm])
2367             fi
2368
2369             if test "x$PNG_LINK" = "x" ; then
2370                 if test "$wxUSE_LIBPNG" = "sys" ; then
2371                     AC_MSG_ERROR([system png library not found or too old! Use --with-libpng=builtin to use built-in version])
2372                 else
2373                     AC_MSG_WARN([system png library not found or too old, will use built-in instead])
2374                     wxUSE_LIBPNG=builtin
2375                 fi
2376             else
2377                 dnl we are using the system library
2378                 wxUSE_LIBPNG=sys
2379             fi
2380         fi
2381     fi
2382
2383     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
2384 fi
2385
2386 dnl ------------------------------------------------------------------------
2387 dnl Check for jpeg library
2388 dnl ------------------------------------------------------------------------
2389
2390 JPEG_LINK=
2391 if test "$wxUSE_LIBJPEG" != "no" ; then
2392     AC_DEFINE(wxUSE_LIBJPEG)
2393
2394     if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBJPEG" = "builtin" ; then
2395         AC_MSG_WARN([wxMGL doesn't work with builtin jpeg library, will use MGL one instead])
2396         wxUSE_LIBJPEG=sys
2397     fi
2398
2399     if test "$wxUSE_MGL" != 1 ; then
2400         dnl Don't check for libjpeg when building wxMGL, libmgl contains it
2401         if test "$wxUSE_LIBJPEG" = "sys" -o "$wxUSE_LIBJPEG" = "yes" ; then
2402             dnl can't use AC_CHECK_HEADER as jconfig.h defines things like
2403             dnl HAVE_STDLIB_H which are already defined and this provokes
2404             dnl a compiler warning which configure considers as an error...
2405             AC_MSG_CHECKING(for jpeglib.h)
2406             AC_CACHE_VAL(ac_cv_header_jpeglib_h,
2407                 AC_TRY_COMPILE(
2408                     [
2409                         #undef HAVE_STDLIB_H
2410                         #include <stdio.h>
2411                         #include <jpeglib.h>
2412                     ],
2413                     [
2414                     ],
2415                     ac_cv_header_jpeglib_h=yes,
2416                     ac_cv_header_jpeglib_h=no
2417                 )
2418             )
2419             AC_MSG_RESULT($ac_cv_header_jpeglib_h)
2420
2421             if test "$ac_cv_header_jpeglib_h" = "yes"; then
2422                 AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK=" -ljpeg")
2423             fi
2424
2425             if test "x$JPEG_LINK" = "x" ; then
2426                 if test "$wxUSE_LIBJPEG" = "sys" ; then
2427                     AC_MSG_ERROR([system jpeg library not found! Use --with-libjpeg=builtin to use built-in version])
2428                 else
2429                     AC_MSG_WARN([system jpeg library not found, will use built-in instead])
2430                     wxUSE_LIBJPEG=builtin
2431                 fi
2432             else
2433                 dnl we are using the system library
2434                 wxUSE_LIBJPEG=sys
2435             fi
2436         fi
2437     fi
2438 fi
2439
2440 dnl ------------------------------------------------------------------------
2441 dnl Check for tiff library
2442 dnl ------------------------------------------------------------------------
2443
2444 TIFF_LINK=
2445 TIFF_PREREQ_LINKS=-lm
2446 if test "$wxUSE_LIBTIFF" != "no" ; then
2447     AC_DEFINE(wxUSE_LIBTIFF)
2448
2449     if test "$wxUSE_LIBTIFF" = "sys" -o "$wxUSE_LIBTIFF" = "yes" ; then
2450         dnl libtiff may depend on libjpeg and libz so use them in the test
2451         dnl below or it would fail
2452         if test "$wxUSE_LIBJPEG" = "sys"; then
2453             TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $JPEG_LINK"
2454         fi
2455         if test "$wxUSE_ZLIB" = "sys"; then
2456             TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $ZLIB_LINK"
2457         fi
2458         AC_CHECK_HEADER(tiffio.h,
2459                         [
2460                             AC_CHECK_LIB(tiff, TIFFError,
2461                                          TIFF_LINK=" -ltiff",
2462                                          ,
2463                                          $TIFF_PREREQ_LINKS)
2464                         ]
2465                        )
2466
2467         if test "x$TIFF_LINK" = "x" ; then
2468             if test "$wxUSE_LIBTIFF" = "sys" ; then
2469                 AC_MSG_ERROR([system tiff library not found! Use --with-libtiff=builtin to use built-in version])
2470             else
2471                 AC_MSG_WARN([system tiff library not found, will use built-in instead])
2472                 wxUSE_LIBTIFF=builtin
2473             fi
2474         else
2475             dnl we are using the system library
2476             wxUSE_LIBTIFF=sys
2477         fi
2478     fi
2479 fi
2480
2481 dnl ------------------------------------------------------------------------
2482 dnl Check for expat libraries
2483 dnl ------------------------------------------------------------------------
2484
2485 if test "$wxUSE_WCHAR_T" != "yes"; then
2486     if test "$wxUSE_EXPAT" != "no"; then
2487         AC_MSG_WARN([wxWidgets requires wchar_t to use expat, disabling])
2488         wxUSE_EXPAT=no
2489     fi
2490     if test "$wxUSE_XML" != "no"; then
2491         AC_MSG_WARN([wxWidgets requires wchar_t to use xml, disabling])
2492         wxUSE_XML=no
2493     fi
2494 fi
2495
2496 if test "$wxUSE_EXPAT" != "no"; then
2497     wxUSE_XML=yes
2498     AC_DEFINE(wxUSE_EXPAT)
2499     AC_DEFINE(wxUSE_XML)
2500     
2501     if test "$wxUSE_EXPAT" = "sys" -o "$wxUSE_EXPAT" = "yes" ; then           
2502         AC_CHECK_HEADER([expat.h], [found_expat_h=1])
2503         if test "x$found_expat_h" = "x1"; then
2504             dnl Expat 1.95.6 comes with broken expat.h:
2505             AC_CACHE_CHECK([if expat.h is valid C++ header],
2506                 wx_cv_expat_is_not_broken,
2507                 [
2508                 AC_LANG_SAVE
2509                 AC_LANG_CPLUSPLUS
2510                 AC_TRY_COMPILE([#include <expat.h>],[],
2511                     wx_cv_expat_is_not_broken=yes,
2512                     wx_cv_expat_is_not_broken=no
2513                 )
2514                 AC_LANG_RESTORE
2515                 ]
2516             )
2517             if test "$wx_cv_expat_is_not_broken" = "yes" ; then
2518                 AC_CHECK_LIB(expat, XML_ParserCreate, EXPAT_LINK=" -lexpat")
2519             fi
2520         fi
2521         if test "x$EXPAT_LINK" = "x" ; then
2522             if test "$wxUSE_EXPAT" = "sys" ; then
2523                 AC_MSG_ERROR([system expat library not found! Use --with-expat=builtin to use built-in version])
2524             else
2525                 AC_MSG_WARN([system expat library not found, will use built-in instead])
2526                 wxUSE_EXPAT=builtin
2527             fi
2528         else
2529             dnl we are using the system library
2530             wxUSE_EXPAT=sys
2531         fi
2532     fi
2533     if test "$wxUSE_EXPAT" = "builtin" ; then
2534         dnl Expat needs this:
2535         AC_CONFIG_SUBDIRS([src/expat])
2536     fi
2537 fi
2538
2539
2540 dnl ------------------------------------------------------------------------
2541 dnl Check for libmspack
2542 dnl ------------------------------------------------------------------------
2543
2544 if test "$wxUSE_LIBMSPACK" != "no"; then
2545     AC_CHECK_HEADER([mspack.h], [found_mspack_h=1])
2546     if test "x$found_mspack_h" = "x1"; then
2547         AC_CHECK_LIB(mspack, mspack_create_chm_decompressor,
2548                      MSPACK_LINK=" -lmspack")
2549     fi
2550     if test "x$MSPACK_LINK" = "x" ; then
2551         wxUSE_LIBMSPACK=no
2552     fi
2553 fi
2554
2555 if test "$wxUSE_LIBMSPACK" != "no"; then
2556     AC_DEFINE(wxUSE_LIBMSPACK)
2557 fi
2558
2559
2560 dnl ----------------------------------------------------------------
2561 dnl search for toolkit (widget sets)
2562 dnl ----------------------------------------------------------------
2563
2564 AFMINSTALL=
2565 WIN32INSTALL=
2566
2567 TOOLKIT=
2568 TOOLKIT_INCLUDE=
2569 WIDGET_SET=
2570
2571 dnl are we building for a win32 target environment?
2572 dnl If so, setup common stuff needed for both GUI and Base libs.
2573 if test "$USE_WIN32" = 1 ; then
2574     AC_CHECK_HEADERS(w32api.h)
2575     AC_CHECK_HEADER(windows.h, [],
2576     [
2577         AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
2578     ])
2579
2580     dnl --- FIXME: This is still a somewhat random list of libs,
2581     dnl ---        some of them should probably be included conditionally.
2582     LIBS="$LIBS -lwinspool -lwinmm -lshell32 -lcomctl32 -lcomdlg32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32"
2583
2584     if test "$wxUSE_ACCESSIBILITY" = "yes" ; then
2585         LIBS="$LIBS -loleacc"
2586     fi
2587
2588     case "${host}" in
2589         *-*-cygwin* )
2590             dnl Cygwin doesn't include these by default
2591             LIBS="$LIBS -lkernel32 -luser32"
2592             TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WIN95__"
2593     esac
2594
2595     dnl add extra odbc libs if we have compiled in odbc
2596     if test "$wxUSE_ODBC" = "sys" ; then
2597         wxUSE_ODBC = "yes"
2598     fi
2599     if test "$wxUSE_ODBC" = "yes" ; then
2600         LIBS=" -lodbc32 -lole32 -loleaut32 $LIBS"
2601         AC_DEFINE(wxUSE_ODBC)
2602     fi
2603     dnl We might want to abort here if wxUSE_ODBC="builtin" isn't supported on msw.
2604
2605     RESFLAGS="--include-dir \$(top_srcdir)/include --include-dir \$(top_srcdir)/\$(program_dir) --define __WIN32__ --define __WIN95__ --define __GNUWIN32__"
2606     RESPROGRAMOBJ="\$(PROGRAM)_resources.o"
2607
2608     dnl install Win32-specific files in "make install"
2609     WIN32INSTALL=win32install
2610 fi
2611
2612 if test "$wxUSE_GUI" = "yes"; then
2613     USE_GUI=1
2614
2615     GUI_TK_LIBRARY=
2616
2617     WXGTK12=
2618     WXGTK127=
2619     WXGTK20=
2620     WXGPE=
2621
2622     if test "$wxUSE_COCOA" = 1 ; then
2623         if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes"; then
2624             AC_MSG_WARN([Printing not supported under wxCocoa yet, disabled])
2625             wxUSE_PRINTING_ARCHITECTURE=no
2626         fi
2627         if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
2628             AC_MSG_WARN([Drag and Drop not supported under wxCocoa yet, disabled])
2629             wxUSE_DRAG_AND_DROP=no
2630         fi
2631         if test "$wxUSE_DRAGIMAGE" = "yes"; then
2632             AC_MSG_WARN([Drag Image and DandD not supported under wxCocoa yet, disabled])
2633             wxUSE_DRAGIMAGE=no
2634         fi
2635     fi
2636
2637     if test "$wxUSE_MSW" = 1 ; then
2638         TOOLKIT=MSW
2639         GUIDIST=MSW_DIST
2640
2641         dnl -mwindows causes a heap of other default gui libs to be linked in.
2642         case "${host}" in
2643             *-*-mingw32* )
2644                 WXCONFIG_LDFLAGS_GUI="$LDFLAGS -Wl,--subsystem,windows -mwindows"
2645         esac
2646     fi
2647
2648     if test "$wxUSE_GTK" = 1; then
2649         AC_MSG_CHECKING([for GTK+ version])
2650
2651         gtk_version_cached=1
2652         AC_CACHE_VAL(wx_cv_lib_gtk,
2653             [
2654                 dnl stupid GTK+ AM macros produce their own messages, so we
2655                 dnl have to pass to the next line
2656                 gtk_version_cached=0
2657                 AC_MSG_RESULT()
2658
2659                 dnl we must link against lgthread unless the user
2660                 dnl used --disable-threads
2661                 GTK_MODULES=
2662                 if test "$wxUSE_THREADS" = "yes"; then
2663                     GTK_MODULES=gthread
2664                 fi
2665
2666                 dnl detect GTK2
2667                 wx_cv_lib_gtk=
2668                 if test "x$wxGTK_VERSION" != "x1"; then
2669                     AM_PATH_GTK_2_0(2.0.0, wx_cv_lib_gtk=2.0, , $GTK_MODULES)
2670                 fi
2671
2672                 dnl detect GTK1.x
2673                 if test -z "$wx_cv_lib_gtk"; then
2674                     if test "x$wxGTK_VERSION" = "x1" -o "x$wxGTK_VERSION" = "xany" ; then
2675                         AM_PATH_GTK(1.2.7, wx_cv_lib_gtk=1.2.7, , $GTK_MODULES)
2676
2677                         if test -z "$wx_cv_lib_gtk"; then
2678                             AM_PATH_GTK(1.2.3, wx_cv_lib_gtk=1.2.3, , $GTK_MODULES)
2679                         fi
2680                     fi
2681                 fi
2682
2683                 if test -z "$wx_cv_lib_gtk"; then
2684                     dnl looks better in AC_MSG_RESULT
2685                     wx_cv_lib_gtk=none
2686                 else
2687                     dnl we need to cache GTK_CFLAGS and GTK_LIBS for the
2688                     dnl subsequent runs
2689                     wx_cv_cflags_gtk=$GTK_CFLAGS
2690                     wx_cv_libs_gtk=$GTK_LIBS
2691                 fi
2692             ]
2693         )
2694
2695         dnl if it wasn't cached, the messages from AM_PATH_GTK() above are
2696         dnl enough
2697         if test "$gtk_version_cached" = 1; then
2698             AC_MSG_RESULT($wx_cv_lib_gtk)
2699         fi
2700
2701         case "$wx_cv_lib_gtk" in
2702             2.0)    WXGTK20=1
2703                     TOOLKIT_VERSION=2
2704                     ;;
2705             1.2.7)  WXGTK127=1
2706                     WXGTK12=1
2707                     ;;
2708             1.2.3)  WXGTK12=1
2709                     ;;
2710             *)      AC_MSG_ERROR([
2711 The development files for GTK+ were not found. For GTK+ 2, please
2712 ensure that pkg-config is in the path and that gtk+-2.0.pc is
2713 installed. For GTK+ 1.2 please check that gtk-config is in the path,
2714 and that the version is 1.2.3 or above. Also check that the
2715 libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config
2716 --libs' are in the LD_LIBRARY_PATH or equivalent.
2717                             ])
2718                     ;;
2719         esac
2720
2721         if test "$WXGTK20" = 1; then
2722             save_CFLAGS="$CFLAGS"
2723             save_LIBS="$LIBS"
2724             CFLAGS="$CFLAGS $wx_cv_cflags_gtk"
2725             LIBS="$LIBS $wx_cv_libs_gtk"
2726             
2727             AC_CHECK_FUNCS([pango_font_family_is_monospace])
2728
2729             dnl gtk_icon_size_lookup is not available in the GTK+ headers
2730             dnl that have shipped with some versions of Sun's JDS. Not using
2731             dnl AC_CHECK_FUNCS here since it only checks the function exists
2732             dnl in the lib (not the header).
2733             AC_MSG_CHECKING([if gtk_icon_size_lookup is missing])
2734             AC_TRY_COMPILE([
2735                             #include <gtk/gtk.h>
2736                            ],
2737                            [
2738                             void *f = gtk_icon_size_lookup;
2739                            ],
2740                            [
2741                             AC_MSG_RESULT([no])
2742                            ],
2743                            [
2744                             AC_DEFINE(NEED_GTK_ICON_SIZE_LOOKUP)
2745                             AC_MSG_RESULT([yes])
2746                            ])
2747             
2748             dnl test if we have at least GTK+ 2.4:
2749             AC_MSG_CHECKING([if GTK+ is version >= 2.4])
2750             AC_TRY_COMPILE([
2751                             #include <gtk/gtk.h>
2752                            ],
2753                            [
2754                             #if !GTK_CHECK_VERSION(2,4,0)
2755                             #error "Not GTK+ 2.4"
2756                             #endif
2757                            ],
2758                            [
2759                             AC_DEFINE(__WXGTK24__)
2760                             AC_MSG_RESULT([yes])
2761                            ],
2762                            [
2763                             AC_MSG_RESULT([no])
2764                            ])
2765             
2766             CFLAGS="$save_CFLAGS"
2767             LIBS="$save_LIBS"
2768         else
2769             if test "$wxUSE_UNICODE" = "yes"; then
2770                 AC_MSG_WARN([Unicode configuration not supported with GTK+ 1.x])
2771                 wxUSE_UNICODE=no
2772             fi
2773         fi
2774
2775         dnl we need poll() in src/gtk/app.cpp (we know that Darwin doesn't
2776         dnl have it but we do the check for the others)
2777         if test "$USE_DARWIN" != 1; then
2778             AC_CHECK_FUNCS(poll)
2779         fi
2780
2781         TOOLKIT_INCLUDE="$wx_cv_cflags_gtk"
2782         GUI_TK_LIBRARY="$wx_cv_libs_gtk $GUI_TK_LIBRARY"
2783
2784         AFMINSTALL=afminstall
2785         TOOLKIT=GTK
2786         GUIDIST=GTK_DIST
2787
2788         dnl test for XIM support in libgdk
2789         AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM))
2790         
2791         
2792         dnl test for external libxpm if we're configured to use it
2793         if test "$wxUSE_GPE" = "yes"; then
2794             AC_MSG_CHECKING(for gpewidget library)
2795             WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpewidget)
2796             if test "$ac_find_libraries" != "" ; then
2797                 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
2798                 dnl -lgpewidget must be before all GTK libs and
2799                 dnl we guess its path from the prefix
2800                 GUI_TK_LIBRARY="-L${prefix}/lib -lgpewidget $GUI_TK_LIBRARY"
2801                 WXGPE=1
2802                 AC_MSG_RESULT(found at $ac_find_libraries)
2803             else
2804                 AC_MSG_RESULT(not found)
2805             fi
2806
2807             dnl AC_MSG_CHECKING(for gpe library)
2808             dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpe)
2809             dnl if test "$ac_find_libraries" != "" ; then
2810             dnl     WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
2811             dnl     GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lgpe"
2812             dnl     AC_MSG_RESULT(found at $ac_find_libraries)
2813             dnl else
2814             dnl     AC_MSG_RESULT(not found)
2815             dnl fi
2816         fi
2817     fi
2818
2819     if test "$wxUSE_MGL" = 1; then
2820        AC_MSG_CHECKING(for SciTech MGL library)
2821         if test "x$MGL_ROOT" = x ; then
2822             AC_MSG_RESULT(not found)
2823             AC_MSG_ERROR([Cannot find MGL library. Make sure MGL_ROOT is set.])
2824         else
2825             AC_MSG_RESULT($MGL_ROOT)
2826         fi
2827
2828         AC_MSG_CHECKING(for libmgl location)
2829         dnl Find MGL library that we want
2830         dnl FIXME_MGL - test for MGL variants for freebsd etc.;
2831         dnl             and for non-x86 versions
2832         case "${host}" in
2833             *-*-linux* )
2834               dnl glibc.so, glibc are for older versions of MGL,
2835               dnl x86/a, x86/so are used by >= 5.0 R11
2836               if test "x$wxUSE_SHARED" = xyes ; then
2837                   mgl_os_candidates="linux/gcc/x86/so linux/gcc/x86/a linux/gcc/glibc.so linux/gcc/glibc"
2838               else
2839                   mgl_os_candidates="linux/gcc/x86/a linux/gcc/x86/so linux/gcc/glibc linux/gcc/glibc.so"
2840               fi
2841               ;;
2842             *-pc-msdosdjgpp )
2843               mgl_os_candidates="dos32/dj2"
2844               ;;
2845             *)
2846               AC_MSG_ERROR(This system type ${host} is not yet supported by wxMGL.)
2847         esac
2848
2849         mgl_lib_type=""
2850         mgl_os=""
2851
2852         for mgl_os_i in $mgl_os_candidates ; do
2853             if test "x$mgl_os" = x ; then
2854                 if test "$wxUSE_DEBUG_FLAG" = yes ; then
2855                     if test -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.a -o \
2856                             -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.so; then
2857                         mgl_lib_type=debug
2858                         mgl_os=$mgl_os_i
2859                     fi
2860                 fi
2861                 if test "x$mgl_lib_type" = x ; then
2862                     if test -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.a -o \
2863                             -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.so; then
2864                         mgl_lib_type=release
2865                         mgl_os=$mgl_os_i
2866                     fi
2867                 fi
2868             fi
2869         done
2870
2871         if test "x$mgl_os" = x ; then
2872             AC_MSG_RESULT(not found)
2873             AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.])
2874         fi
2875         AC_MSG_RESULT("$MGL_ROOT/lib/$mgl_lib_type/$mgl_os")
2876
2877         wxUSE_UNIVERSAL="yes"
2878
2879         TOOLKIT_INCLUDE="-I$MGL_ROOT/include"
2880         GUI_TK_LIBRARY="-L$MGL_ROOT/lib/$mgl_lib_type/$mgl_os -lmgl -lmglcpp -lpm"
2881
2882         AFMINSTALL=afminstall
2883         TOOLKIT=MGL
2884         GUIDIST=MGL_DIST
2885     fi
2886
2887     if test "$wxUSE_MICROWIN" = 1; then
2888         AC_MSG_CHECKING(for MicroWindows)
2889         if test "x$MICROWINDOWS" = x ; then
2890             AC_MSG_RESULT(not found)
2891             AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWINDOWS is set.])
2892         else
2893             AC_MSG_RESULT($MICROWINDOWS)
2894         fi
2895
2896         if test -f $MICROWINDOWS/lib/libmwin.a; then
2897             AC_MSG_RESULT(MicroWindows' libraries found.)
2898         else
2899             AC_MSG_ERROR([Cannot find MicroWindows libraries, make sure they are compiled.])
2900         fi
2901
2902         TOOLKIT_INCLUDE="-I$MICROWINDOWS/include"
2903         GUI_TK_LIBRARY="-L$MICROWINDOWS/lib -lmwin -lmwengine -mwfonts -mwdrivers -mwinlib"
2904
2905         wxUSE_UNIVERSAL="yes"
2906
2907         AFMINSTALL=afminstall
2908         TOOLKIT=MICROWIN
2909         GUIDIST=MICROWIN_DIST
2910
2911         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXMSW__ -D__WIN95__ -D__WIN32__ -DMWIN -DMICROWIN_NOCONTROLS -DMICROWIN_TODO=1"
2912     fi
2913
2914     dnl common part of X11 and Motif port checks
2915     if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then
2916         dnl use standard macros to check for X headers/libs, this brings
2917         dnl support for the standard configure options --x-includes,
2918         dnl --x-libraries and --no-x
2919         AC_PATH_XTRA
2920
2921         if test "$no_x" = "yes"; then
2922           AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2923         fi
2924
2925         dnl for some reason AC_PATH_XTRA seems to add -INONE and -LNONE (and
2926         dnl also sometimes -RNONE) to X_CFLAGS and X_LIBS respectively, filter
2927         dnl this junk out
2928         GUI_TK_LIBRARY=`echo $X_LIBS | sed 's/ -LNONE//' | sed 's/ -RNONE//'`
2929         TOOLKIT_INCLUDE=`echo $X_CFLAGS | sed 's/ -INONE//'`
2930         AFMINSTALL=afminstall
2931         COMPILED_X_PROGRAM=0
2932
2933     fi
2934
2935     if test "$wxUSE_X11" = 1; then
2936         if test "$wxUSE_NANOX" = "yes"; then
2937             AC_MSG_CHECKING(for MicroWindows/NanoX distribution)
2938             if test "x$MICROWIN" = x ; then
2939                 AC_MSG_RESULT(not found)
2940                 AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWIN is set.])
2941             else
2942                 AC_MSG_RESULT($MICROWIN)
2943                 AC_DEFINE(wxUSE_NANOX)
2944             fi
2945         fi
2946
2947         if test "$wxUSE_UNICODE" = "yes"; then
2948                 PKG_CHECK_MODULES(PANGOX, pangox,
2949                     [
2950                         CXXFLAGS="$CXXFLAGS $PANGOX_CFLAGS"
2951                         GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOX_LIBS"
2952                     ],
2953                     [
2954                         AC_MSG_ERROR([pangox library not found, library cannot be compiled in Unicode mode])
2955                     ]
2956                 )
2957                 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2958                     [
2959                         CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2960                         GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOFT2_LIBS"
2961                     ],
2962                     [
2963                         AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2964                         wxUSE_PRINTING_ARCHITECTURE="no"
2965                     ]
2966                 )
2967                 PKG_CHECK_MODULES(PANGOXFT, pangoxft,
2968                     [
2969                         AC_DEFINE(HAVE_PANGO_XFT)
2970                         CXXFLAGS="$CXXFLAGS $PANGOXFT_CFLAGS"
2971                         GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOXFT_LIBS"
2972                     ],
2973                     [
2974                         AC_MSG_WARN([pangoxft library not found, library will be compiled without anti-aliasing support])
2975                     ]
2976                 )
2977                 save_CFLAGS="$CFLAGS"
2978                 save_LIBS="$LIBS"
2979                 CFLAGS="$CFLAGS $PANGOX_CFLAGS"
2980                 LIBS="$LIBS $PANGOX_LIBS"
2981                 AC_CHECK_FUNCS([pango_font_family_is_monospace])
2982                 CFLAGS="$save_CFLAGS"
2983                 LIBS="$save_LIBS"
2984         fi
2985
2986         wxUSE_UNIVERSAL="yes"
2987
2988         if test "$wxUSE_NANOX" = "yes"; then
2989             TOOLKIT_INCLUDE="-I\$(top_srcdir)/include/wx/x11/nanox -I\$(MICROWIN)/src/include $TOOLKIT_INCLUDE"
2990             TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__NANOX__ -DMWPIXEL_FORMAT=MWPF_TRUECOLOR0888 -DHAVE_FILEIO -DHAVE_BMP_SUPPORT=1 -DHAVE_GIF_SUPPORT=1 -DHAVE_PNM_SUPPORT=1 -DHAVE_XPM_SUPPORT=1 -DUNIX=1 -DUSE_EXPOSURE -DSCREEN_HEIGHT=480 -DSCREEN_WIDTH=640 -DSCREEN_DEPTH=4 -DX11=1"
2991             GUI_TK_LIBRARY="$GUI_TK_LIBRARY \$(MICROWIN)/src/lib/libnano-X.a"
2992         else
2993             GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lX11"
2994         fi
2995
2996         TOOLKIT=X11
2997         GUIDIST=X11_DIST
2998     fi
2999
3000     if test "$wxUSE_MOTIF" = 1; then
3001         if test "$wxUSE_UNICODE" = "yes"; then
3002             AC_MSG_ERROR([Unicode configuration not supported with Motif])
3003         fi
3004
3005         AC_MSG_CHECKING(for Motif/Lesstif headers)
3006         WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
3007         if test "$ac_find_includes" != "" ; then
3008             AC_MSG_RESULT(found in $ac_find_includes)
3009             WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
3010             TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE$ac_path_to_include"
3011         else
3012             AC_TRY_COMPILE(
3013                 [
3014                     #include <Xm/Xm.h>
3015                 ],
3016                 [
3017                     int version;
3018                     version = xmUseVersion;
3019                 ],
3020                 [
3021                     AC_MSG_RESULT(found in default search path)
3022                     COMPILED_X_PROGRAM=1
3023                 ],
3024                 [
3025                     AC_MSG_RESULT(no)
3026                     AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
3027                 ]
3028             )
3029         fi
3030
3031         if test "$COMPILED_X_PROGRAM" = 0; then
3032             AC_MSG_CHECKING(for Motif/Lesstif library)
3033             WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
3034             if test "$ac_find_libraries" != "" ; then
3035                 AC_MSG_RESULT(found at $ac_find_libraries)
3036
3037                 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
3038                 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
3039             else
3040                 dnl it might happen that we found headers in one of the
3041                 dnl standard paths but the libs are elsewhere - we do need to
3042                 dnl try to compile a sample program then here
3043                 save_CFLAGS=$CFLAGS
3044                 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
3045
3046                 AC_TRY_COMPILE(
3047                     [
3048                         #include <Xm/Xm.h>
3049                     ],
3050                     [
3051                         int version;
3052                         version = xmUseVersion;
3053                     ],
3054                     [
3055                         AC_MSG_RESULT(found in default search path)
3056                         COMPILED_X_PROGRAM=1
3057                     ],
3058                     [
3059                         AC_MSG_RESULT(no)
3060                         AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
3061                     ]
3062                 )
3063
3064                 CFLAGS=$save_CFLAGS
3065             fi
3066         fi
3067
3068         AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])
3069         libp_link=""
3070         libsm_ice_link=""
3071         libs_found=0
3072         for libp in "" " -lXp"; do
3073             if test "$libs_found" = "0"; then
3074                 for libsm_ice in "" " -lSM -lICE"; do
3075                     if test "$libs_found" = "0"; then
3076                         save_LIBS="$LIBS"
3077                         LIBS="$GUI_TK_LIBRARY -lXm ${libp} -lXmu -lXext -lXt${libsm_ice} -lX11"
3078                         save_CFLAGS=$CFLAGS
3079                         CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
3080
3081                         AC_TRY_LINK(
3082                             [
3083                                 #include <Xm/Xm.h>
3084                                 #include <Xm/List.h>
3085                             ],
3086                             [
3087                                 XmString string = NULL;
3088                                 Widget w = NULL;
3089                                 int position = 0;
3090                                 XmListAddItem(w, string, position);
3091                             ],
3092                             [
3093                                 libp_link="$libp"
3094                                 libsm_ice_link="$libsm_ice"
3095                                 AC_MSG_RESULT(
3096                                     [need${libp_link}${libsm_ice_link}])
3097                                 libs_found=1
3098                             ], []
3099                         )
3100
3101                         LIBS="$save_LIBS"
3102                         CFLAGS=$save_CFLAGS
3103                     fi
3104                 done
3105             fi
3106         done
3107
3108         if test "$libs_found" = "0"; then
3109             AC_MSG_RESULT([can't find the right libraries])
3110             AC_MSG_ERROR([can't link a simple motif program])
3111         fi
3112
3113         save_CFLAGS=$CFLAGS
3114         CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
3115         AC_MSG_CHECKING([for Motif 2])
3116         AC_TRY_COMPILE([
3117                         #include <Xm/Xm.h>
3118                        ],
3119                        [
3120                         #if XmVersion < 2000
3121                         #error "Not Motif 2"
3122                         #endif
3123                        ],
3124                        [
3125                         AC_DEFINE(__WXMOTIF20__,1)
3126                         AC_MSG_RESULT([found])
3127                        ],
3128                        [
3129                         AC_DEFINE(__WXMOTIF20__,0)
3130                         AC_MSG_RESULT([not found])
3131                        ])
3132         CFLAGS=$save_CFLAGS
3133
3134         GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXm${libp_link} -lXmu -lXext -lXt${libsm_ice_link} -lX11"
3135         TOOLKIT=MOTIF
3136         GUIDIST=MOTIF_DIST
3137     fi
3138
3139     dnl more tests common to X11 and Motif:
3140     if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then
3141         dnl test for external libxpm if we're configured to use it
3142         if test "$wxUSE_LIBXPM" = "sys"; then
3143             AC_MSG_CHECKING(for Xpm library)
3144             WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
3145             if test "$ac_find_libraries" != "" ; then
3146                 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
3147                 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
3148                 AC_MSG_RESULT(found at $ac_find_libraries)
3149
3150                 AC_CACHE_CHECK([for X11/xpm.h],
3151                     wx_cv_x11_xpm_h,
3152                     [
3153                         save_CFLAGS=$CFLAGS
3154                         CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
3155
3156                         AC_TRY_COMPILE(
3157                             [
3158                                 #include <X11/xpm.h>
3159                             ],
3160                             [
3161                                 int version;
3162                                 version = XpmLibraryVersion();
3163                             ],
3164                             wx_cv_x11_xpm_h=yes,
3165                             wx_cv_x11_xpm_h=no
3166                         )
3167
3168                         CFLAGS=$save_CFLAGS
3169                     ]
3170                 )
3171
3172                 if test $wx_cv_x11_xpm_h = "yes"; then
3173                     GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXpm"
3174                     AC_DEFINE(wxHAVE_LIB_XPM)
3175                 else
3176                     AC_MSG_WARN([built-in less efficient XPM decoder will be used])
3177                 fi
3178             fi
3179
3180         fi
3181
3182         dnl XShapeQueryExtension checks: first the library, then prototype
3183         AC_CHECK_LIB([Xext], [XShapeQueryExtension],
3184                      [
3185                       GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXext"
3186                       wxHAVE_XEXT_LIB=1
3187                      ],
3188                      [], [$GUI_TK_LIBRARY -lX11])
3189
3190         if test "$wxHAVE_XEXT_LIB" = 1; then
3191             save_CFLAGS="$CFLAGS"
3192             CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
3193
3194             AC_MSG_CHECKING([for X11/extensions/shape.h])
3195             AC_TRY_COMPILE([
3196                             #include <X11/Xlib.h> 
3197                             #include <X11/extensions/shape.h>
3198                            ],
3199                            [
3200                             int dummy1, dummy2;
3201                             XShapeQueryExtension((Display*)NULL,
3202                                                  (int*)NULL, (int*)NULL);
3203                            ],
3204                            [
3205                             AC_DEFINE(HAVE_XSHAPE)
3206                             AC_MSG_RESULT([found])
3207                            ],
3208                            [
3209                             AC_MSG_RESULT([not found])
3210                            ])
3211             CFLAGS="$save_CFLAGS"
3212
3213         fi
3214     fi
3215
3216     if test "$wxUSE_MAC" = 1; then
3217         AC_MSG_CHECKING([for compiler syntax to enable Pascal strings])
3218         if test "$GCC" = yes; then
3219             AC_MSG_RESULT([gcc])
3220             CPPFLAGS_PASCAL="-fpascal-strings"
3221         elif test "`echo $CXX | sed -e 's@.*/@@'`" = "xlC"; then
3222             AC_MSG_RESULT([xlc])
3223             CPPFLAGS_PASCAL="-qmacpstr"
3224         else
3225             AC_MSG_RESULT([none])
3226         fi
3227
3228         if test "x$wxUSE_UNIX" = "xyes"; then
3229             CPPFLAGS="$CPPFLAGS $CPPFLAGS_PASCAL -I\${top_srcdir}/src/mac/carbon/morefilex -I/Developer/Headers/FlatCarbon"
3230         else
3231             dnl platform.h needs TARGET_CARBON before setup.h
3232             CPPFLAGS="$CPPFLAGS $CPPFLAGS_PASCAL -I\${top_srcdir}/src/mac/carbon/morefilex -DTARGET_CARBON"
3233         fi
3234
3235         TOOLKIT=MAC
3236         dnl we can't call this MAC_DIST or autoconf thinks its a macro
3237         GUIDIST=MACX_DIST
3238         dnl wxMac version of wxBase and wxCocoa or wxBase-only built on Darwin
3239         dnl are different, so they need different names:
3240         WXBASEPORT="_carbon"
3241     fi
3242
3243     if test "$wxUSE_COCOA" = 1; then
3244         TOOLKIT=COCOA
3245         GUIDIST=COCOA_DIST
3246     fi
3247
3248     if test "$wxUSE_PM" = 1; then
3249         TOOLKIT=PM
3250         GUIDIST=PM_DIST
3251         AC_CACHE_CHECK([for type SPBCDATA],
3252             wx_cv_spbcdata,
3253             [
3254                 AC_TRY_COMPILE(
3255                     [
3256                         #define INCL_PM
3257                         #include <os2.h>
3258                     ],
3259                     [
3260                         SPBCDATA test;
3261                     ],
3262                     wx_cv_spbcdata=yes,
3263                     wx_cv_spbcdata=no
3264                 )
3265             ]
3266         )
3267
3268         if test $wx_cv_spbcdata = "yes"; then
3269             AC_DEFINE(HAVE_SPBCDATA)
3270         fi
3271     fi
3272
3273     dnl the name of the directory where the files for this toolkit live
3274     if test "$TOOLKIT" = "PM" ; then
3275         TOOLKIT_DIR="os2"
3276     else
3277         TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
3278     fi
3279
3280     if test "$wxUSE_UNIVERSAL" = "yes"; then
3281         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__"
3282         WIDGET_SET=univ
3283     fi
3284
3285     dnl distribute samples/demos/utils with GUI versions
3286     GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
3287     DISTDIR="wx\$(TOOLKIT)"
3288 else
3289     USE_GUI=0
3290
3291     dnl this doesn't quite work right for wxBase, but the places
3292     dnl where it is wrong aren't fatal (yet) though.
3293     TOOLKIT_DIR="base"
3294
3295     dnl the sources, their dependenices and the headers
3296     if test "$USE_WIN32" = 1 ; then
3297         dnl yes, the toolkit for wxBase on win32 is actually MSW
3298         dnl wxBase on unix does not need a 'TOOLKIT' defined.
3299         TOOLKIT="MSW"
3300     fi
3301
3302     dnl distribute only wxBase sources/headers
3303     GUIDIST="BASE_DIST"
3304     DISTDIR="wxBase"
3305 fi
3306
3307 dnl ---------------------------------------------------------------------------
3308 dnl Optional libraries included when system library is not used
3309 dnl ---------------------------------------------------------------------------
3310
3311
3312 dnl ----------------------------------------------------------------
3313 dnl iODBC support
3314 dnl ----------------------------------------------------------------
3315
3316 IODBC_C_SRC=""
3317
3318
3319 dnl ODBC is handled separately for MSW 
3320 if test "$TOOLKIT" != "MSW" ; then
3321
3322     if test "$wxUSE_ODBC" = "sys" -o "$wxUSE_ODBC" = "yes" ; then
3323         dnl This is not ideal we really ough to use the unixodbc-config
3324         dnl  or iodbc-config if they exist.
3325
3326         AC_CHECK_HEADER([sql.h], [found_sql_h=1])
3327         if test "x$found_sql_h" = "x1" ; then
3328             AC_CHECK_LIB(iodbc, SQLAllocEnv, ODBC_LINK=" -liodbc",
3329             [
3330                 AC_CHECK_LIB(unixodbc, SQLAllocEnv, ODBC_LINK=" -lunixodbc",
3331                 [
3332                     AC_CHECK_LIB(odbc, SQLAllocEnv, ODBC_LINK=" -lodbc")
3333                 ])
3334             ])
3335         fi 
3336         if test "x$ODBC_LINK" = "x" ; then
3337             if test "$wxUSE_ODBC" = "sys" ; then
3338                 AC_MSG_ERROR([system ODBC library not found! Use --with-odbc=builtin to use built-in version])
3339             else
3340                 AC_MSG_WARN([system ODBC library not found, will use built-in instead])
3341                 wxUSE_ODBC=builtin
3342             fi
3343         else
3344             dnl we are using the system library
3345             wxUSE_ODBC=sys
3346         fi
3347     fi
3348
3349     if test "$wxUSE_ODBC" = "builtin" ; then
3350         AC_DEFINE(wxUSE_BUILTIN_IODBC)
3351     fi
3352 fi
3353
3354 if test "$wxUSE_ODBC" != "no" ; then
3355     AC_DEFINE(wxUSE_ODBC)
3356     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
3357
3358     dnl is this still necessary?
3359     WXODBCFLAG="-D_IODBC_"
3360 fi
3361
3362 dnl ---------------------------------------------------------------------------
3363 dnl wxDisplay Sanity checks
3364 dnl ---------------------------------------------------------------------------
3365
3366 if test "$wxUSE_DISPLAY" = "yes"; then
3367 dnl ---------------------------------------------------------------------------
3368 dnl Xinerama (for unix ) - Brian Victor
3369 dnl ---------------------------------------------------------------------------
3370     if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then
3371         AC_MSG_CHECKING([for Xinerama])
3372         WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xinerama)
3373         if test "$ac_find_libraries" != "" ; then
3374             WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
3375             if test "$ac_path_to_link" != " -L/usr/lib" ; then
3376                 LDFLAGS="$LDFLAGS $ac_path_to_link"
3377             fi
3378             GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXinerama"
3379             AC_MSG_RESULT([yes])
3380
3381             AC_MSG_CHECKING([for Xxf86vm extension])
3382             WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xxf86vm)
3383             if test "$ac_find_libraries" != "" ; then
3384                 AC_MSG_RESULT([yes])
3385                 AC_CHECK_HEADERS([X11/extensions/xf86vmode.h],
3386                                  [
3387                                   GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXxf86vm"
3388                                  ],
3389                                  [], 
3390                                  [
3391                                       #if HAVE_X11_XLIB_H
3392                                         #include <X11/Xlib.h>
3393                                       #endif
3394                                  ])
3395             else
3396                 AC_MSG_RESULT([no])
3397             fi
3398         
3399         else
3400             AC_MSG_RESULT([no])
3401             AC_MSG_WARN([Xinerama not found; disabling wxDisplay])
3402             wxUSE_DISPLAY="no"
3403         fi
3404     elif test "$wxUSE_MSW" = 1; then
3405 dnl ---------------------------------------------------------------------------
3406 dnl DirectDraw  / Multimon for MSW
3407 dnl ---------------------------------------------------------------------------
3408         AC_CHECK_HEADERS([multimon.h ddraw.h], [],
3409             [
3410                 wxUSE_DISPLAY="no"
3411                 AC_MSG_WARN([ddraw.h or multimon.h not found; disabling wxDisplay])
3412             ],
3413             [#include <windows.h>])
3414     fi
3415 fi
3416
3417 dnl ---------------------------------------------------------------------------
3418 dnl OpenGL libraries
3419 dnl ---------------------------------------------------------------------------
3420
3421 USE_OPENGL=0
3422 if test "$wxUSE_OPENGL" = "yes"; then
3423     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = "1"; then
3424         OPENGL_LIBS="-framework OpenGL -framework AGL"
3425     elif test "$wxUSE_MSW" = 1; then
3426         OPENGL_LIBS="-lopengl32 -lglu32"
3427     else
3428         dnl David Elliott: Without this snippet AC_CHECK_HEADER fails to find
3429         dnl GL/gl.h on Mac OS X where it is located in
3430         dnl /usr/X11R6/include/GL/gl.h:
3431
3432         WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, GL/gl.h)
3433         if test "$ac_find_includes" != "" ; then
3434             AC_MSG_RESULT(found in $ac_find_includes)
3435             WX_INCLUDE_PATH_EXIST($ac_find_includes, $CPPFLAGS)
3436             CPPFLAGS="$CPPFLAGS$ac_path_to_include"
3437         fi
3438
3439         AC_CHECK_HEADER(GL/gl.h,
3440             [
3441                 found_gl=0
3442
3443                 AC_MSG_CHECKING([for -lGL])
3444                 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GL)
3445                 if test "$ac_find_libraries" != "" ; then
3446                     AC_MSG_RESULT([yes])
3447
3448                     WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
3449                     if test "$ac_path_to_link" != " -L/usr/lib" ; then
3450                         LDFLAGS_GL="$ac_path_to_link"
3451                     fi
3452
3453                     dnl don't suppose that libGL and libGLU are always in the
3454                     dnl same directory -- this is not true for some common
3455                     dnl distributions
3456                     AC_MSG_CHECKING([for -lGLU])
3457                     WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GLU)
3458                     if test "$ac_find_libraries" != "" ; then
3459                         WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
3460                         if test "$ac_path_to_link" != " -L/usr/lib" -a \
3461                                     "$ac_path_to_link" != "$LDFLAGS_GL"; then
3462                             LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link"
3463                         fi
3464
3465                         found_gl=1
3466                         OPENGL_LIBS="-lGL -lGLU"
3467                         AC_MSG_RESULT([yes])
3468                     else
3469                         AC_MSG_RESULT([no])
3470                     fi
3471                 else
3472                     AC_MSG_RESULT([no])
3473                 fi
3474
3475                 if test "$found_gl" != 1; then
3476                     AC_MSG_CHECKING([for -lMesaGL])
3477                     WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],MesaGL)
3478                     if test "$ac_find_libraries" != "" ; then
3479                         WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
3480                         LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
3481                         OPENGL_LIBS="-lMesaGL -lMesaGLU"
3482                         AC_MSG_RESULT([yes])
3483                     else
3484                         AC_MSG_RESULT([no])
3485                     fi
3486                 fi
3487             ])
3488
3489         if test "x$OPENGL_LIBS" = "x"; then
3490             dnl it should be an error and not a warning because OpenGL is not on
3491             dnl by default and so if it had been explicitly requested, we
3492             dnl shouldn't just fall back to compiling the library without it
3493             AC_MSG_ERROR(OpenGL libraries not available)
3494         fi
3495     fi
3496
3497     if test "$wxUSE_OPENGL" = "yes"; then
3498         USE_OPENGL=1
3499         AC_DEFINE(wxUSE_OPENGL)
3500         AC_DEFINE(wxUSE_GLCANVAS)
3501         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl opengl/cube opengl/penguin opengl/isosurf"
3502     fi
3503 fi
3504
3505
3506 dnl the symbol which allows conditional compilation for the given toolkit
3507 if test -n "$TOOLKIT" ; then
3508     TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WX${TOOLKIT}__"
3509 fi
3510
3511
3512 dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
3513
3514 if test "$wxUSE_SHARED" = "yes"; then
3515     case "${host}" in
3516       *-pc-msdosdjgpp )
3517         dnl only static for now
3518         wxUSE_SHARED=no
3519         AC_MSG_WARN([Host system doesn't support shared libraries, disabling])
3520       ;;
3521     esac
3522 fi
3523
3524 if test "$wxUSE_SHARED" = "yes"; then
3525
3526     dnl use versioned symbols if available on the platform
3527     WX_VERSIONED_SYMBOLS([\$(top_builddir)version-script])
3528
3529     case "${host}" in
3530       *-*-linux* | *-*-gnu* )
3531         SAMPLES_RPATH_FLAG="-Wl,-rpath,\$(top_builddir)lib"
3532         WXCONFIG_RPATH="-Wl,-rpath,\$libdir"
3533         ;;
3534
3535       *-*-solaris2* )
3536         if test "$GCC" = yes ; then
3537             dnl newer versions of gcc need -isystem to compile X headers on
3538             dnl Solaris (which use old style C syntax)
3539             CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
3540
3541             dnl gcc may use Sun's ld, in which case -rpath gives a confusing
3542             dnl error message. We have to try both -Wl,-rpath and -Wl,-R:
3543             saveLdflags="$LDFLAGS"
3544             LDFLAGS="$saveLdflags -Wl,-rpath,/"
3545             AC_MSG_CHECKING([if the linker accepts -rpath])
3546             AC_TRY_LINK(
3547                 [],[],
3548                 [
3549                     AC_MSG_RESULT([yes])
3550                     SAMPLES_RPATH_FLAG="-Wl,-rpath,\$(top_builddir)lib"
3551                     WXCONFIG_RPATH="-Wl,-rpath,\$libdir"
3552                 ],[
3553                     AC_MSG_RESULT([no])
3554                     AC_MSG_CHECKING([if the linker accepts -R])
3555                     LDFLAGS="$saveLdflags -Wl,-R,/"
3556                     AC_TRY_LINK(
3557                         [],[],
3558                         [
3559                             AC_MSG_RESULT([yes])
3560                             SAMPLES_RPATH_FLAG="-Wl,-R,\$(top_builddir)lib"
3561                             WXCONFIG_RPATH="-Wl,-R,\$libdir"
3562                         ],[
3563                             AC_MSG_RESULT([no])
3564                         ])                    
3565                 ])
3566             LDFLAGS="$saveLdflags"
3567         else
3568             SAMPLES_RPATH_FLAG="-R\$(top_builddir)lib"
3569             WXCONFIG_RPATH="-R\$libdir"
3570         fi
3571       ;;
3572       
3573       powerpc-*-darwin* )
3574         install_name_tool=`which install_name_tool`
3575         if test "$install_name_tool" -a -x "$install_name_tool"; then
3576             SAMPLES_RPATH_POSTLINK="\$(top_builddir)change-install-names \$(LIBDIRNAME) \$(prefix) \$@"
3577             cat <<EOF >change-install-names
3578 #!/bin/sh
3579 libnames=\`cd \${1} ; ls -1 | grep '\.[[0-9]][[0-9]]*\.dylib\$'\`
3580 inst_cmd="install_name_tool "
3581 for i in \${libnames} ; do
3582     inst_cmd="\${inst_cmd} -change \${2}/lib/\${i} \${1}/\${i}"
3583 done
3584 \${inst_cmd} \${3}
3585 EOF
3586             chmod +x change-install-names
3587         fi
3588       ;;
3589       
3590       *-*-cygwin* | *-*-mingw32* )
3591         TOOLCHAIN_DLL_DEFS="${TOOLCHAIN_DLL_DEFS} -DWXUSINGDLL=1"
3592         ;;
3593       
3594       *-*-hpux* )
3595         SAMPLES_RPATH_FLAG="-Wl,+b,\$(top_builddir)lib"
3596         WXCONFIG_RPATH="-Wl,+b,\$libdir"
3597         ;;
3598         
3599     esac
3600
3601     if test $wxUSE_RPATH = "no"; then
3602         SAMPLES_RPATH_FLAG=''
3603         SAMPLES_RPATH_POSTLINK=''
3604         WXCONFIG_RPATH=''
3605     fi
3606
3607     SHARED=1
3608
3609 else
3610
3611     config_linkage_component="-static"
3612     SHARED=0
3613
3614 fi
3615
3616
3617 UNICODE=0
3618 lib_unicode_suffix=
3619 WX_CHARTYPE="ansi"
3620 if test "$wxUSE_UNICODE" = "yes"; then
3621     lib_unicode_suffix=u
3622     WX_CHARTYPE="unicode"
3623     UNICODE=1
3624 fi
3625
3626 lib_debug_suffix=
3627 WX_DEBUGTYPE="release"
3628 DEBUG_FLAG=0
3629 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
3630     lib_debug_suffix=d
3631     WX_DEBUGTYPE="debug"
3632     DEBUG_FLAG=1
3633 fi
3634
3635 WX_FLAVOUR=${WX_FLAVOUR:+-$WX_FLAVOUR}
3636 WX_LIB_FLAVOUR=`echo $WX_FLAVOUR | tr '-' '_'`
3637
3638 DEBUG_INFO=0
3639 if test "$wxUSE_DEBUG_INFO" = "yes"; then
3640     DEBUG_INFO=1
3641 fi
3642
3643 WX_VERSION_TAG=`echo WX${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}_${WX_RELEASE} | tr "[[a-z]]" "[[A-Z]]"`
3644
3645 TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}-${WX_RELEASE}"
3646
3647 TOOLCHAIN_FULLNAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}-${WX_CHARTYPE}-${WX_DEBUGTYPE}${config_linkage_component}-${WX_RELEASE}${WX_FLAVOUR}"
3648
3649 if test "$cross_compiling" = "yes"; then
3650     HOST_SUFFIX="-$host_alias"
3651     TOOLCHAIN_NAME="$TOOLCHAIN_NAME$HOST_SUFFIX"
3652     TOOLCHAIN_FULLNAME="${host_alias}-$TOOLCHAIN_FULLNAME"
3653 fi
3654
3655 dnl library link name
3656 dnl These just save us from exporting lib_{unicode,debug,flavour}_suffix.
3657 dnl If we ever need to do that, we won't need to keep these.
3658 WX_LIBRARY_BASENAME_NOGUI="wx_base${WXBASEPORT}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
3659 if test "${TOOLKIT_DIR}" = "os2"; then
3660     WX_LIBRARY_BASENAME_GUI="wx_pm${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
3661 else
3662     WX_LIBRARY_BASENAME_GUI="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
3663 fi
3664
3665
3666
3667 if test "$wxUSE_COCOA" = 1; then
3668     AC_LANG_SAVE
3669     AC_WX_LANG_OBJECTIVEC
3670 dnl Recent AppKit/NSEvent.h include parts of IOKit which eventually
3671 dnl gets IOKit/graphics/IOGraphicsTypes.h included which typedefs
3672 dnl Point but only if MacTypes.h was not included first.  Of course,
3673 dnl if MacTypes.h is included later then you're screwed when it
3674 dnl tries to typedef Point.  Defining __Point__ will cause IOGraphicsTypes.h
3675 dnl to not typedef Point and thus fix the problem.
3676     AC_MSG_CHECKING([if AppKit/NSEvent.h conflicts with CoreFoundation])
3677     AC_TRY_COMPILE([#include <AppKit/NSEvent.h>
3678 #include <CoreFoundation/CoreFoundation.h>
3679         ],[],
3680         [AC_MSG_RESULT([no])],
3681         [AC_MSG_RESULT([yes])
3682         AC_MSG_CHECKING([if defining __Point__ will fix it])
3683         AC_TRY_COMPILE([#define __Point__ 1
3684 #include <AppKit/NSEvent.h>
3685 #include <CoreFoundation/CoreFoundation.h>
3686             ],[],
3687             [AC_MSG_RESULT([yes])
3688             AC_DEFINE(__Point__)
3689             ],
3690             [AC_MSG_FAILURE([no])]
3691         )]
3692     )
3693     AC_LANG_RESTORE
3694 fi
3695
3696 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1; then
3697     dnl base name of the resource file for wxMac must be the same
3698     dnl as library installation base name (-install_name)
3699     WX_RESOURCES_MACOSX_ASCII="libwx_${TOOLCHAIN_NAME}.${wx_release_number}.r"
3700     WX_RESOURCES_MACOSX_DATA="libwx_${TOOLCHAIN_NAME}.${wx_release_number}.rsrc"
3701
3702     dnl add the resources target for wxMac
3703     LIBWXMACRES="\$(top_builddir)lib/${WX_RESOURCES_MACOSX_ASCII}"
3704
3705     AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
3706     AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
3707     AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
3708
3709     MACSETFILE="\$(SETFILE)"
3710
3711     dnl resources are bundled both with shared library and applications
3712     dnl since the carb resource *must* be included in the application
3713     if test "$wxUSE_MAC" = 1; then
3714         MACRESCOMP="\$(RESCOMP) -d __DARWIN__ -t APPL Carbon.r -o"
3715
3716         dnl this command is used to implement `wx-config --rezflags` and it is
3717         dnl eval'd there so escape any metacharacters inside
3718         MACRESWXCONFIG="${RESCOMP} -d __DARWIN__ -t APPL Carbon.r -o"
3719     else
3720         MACRESCOMP="echo -n | \$(RESCOMP) -d __DARWIN__ -t APPL ${LIBWXMACRES} -o"
3721         MACRESWXCONFIG="echo -n \\\| ${RESCOMP} -d __DARWIN__ -t APPL \\\${exec_prefix}/lib/${WX_RESOURCES_MACOSX_ASCII} -o"
3722     fi
3723 else
3724     dnl default value is to (silently) do nothing in the makefile
3725     MACSETFILE="@true"
3726     MACRESWXCONFIG="@true"
3727
3728     dnl confusingly, wxOS2 also uses MACRESCOMP in its post-link step
3729     if test "$wxUSE_PM" = 1; then
3730         MACRESCOMP="emxbind -ep"
3731     else
3732         MACRESCOMP="@true"
3733     fi
3734 fi
3735
3736
3737 dnl ---------------------------------------------------------------------------
3738 dnl Checks for typedefs
3739 dnl ---------------------------------------------------------------------------
3740
3741 dnl   defines mode_t if not already defined
3742 AC_TYPE_MODE_T
3743 dnl   defines off_t if not already defined
3744 AC_TYPE_OFF_T
3745 dnl   defines pid_t if not already defined
3746 AC_TYPE_PID_T
3747 dnl   defines size_t if not already defined
3748 AC_TYPE_SIZE_T
3749 dnl   defines uid_t and gid_t if not already defined
3750 AC_TYPE_UID_T
3751
3752 dnl sets HAVE_SSIZE_T if ssize_t is defined
3753 AC_CHECK_TYPES(ssize_t)
3754
3755 dnl check what exactly size_t is on this machine - this is necessary to avoid
3756 dnl ambiguous overloads in several places, notably wx/string.h and wx/array.h
3757 AC_LANG_SAVE
3758 AC_LANG_CPLUSPLUS
3759 AC_CACHE_CHECK([if size_t is unsigned int],
3760     wx_cv_size_t_is_uint,
3761     [
3762     dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work
3763     dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate
3764     dnl methods in a local class (i.e. class inside a function) declaration
3765     dnl without any objections!!
3766     dnl
3767     dnl hence the hack below: we must have Foo at global scope!
3768     AC_TRY_COMPILE([#include <stddef.h>],
3769         [
3770             return 0; }
3771
3772             struct Foo { void foo(size_t); void foo(unsigned int); };
3773
3774             int bar() {
3775         ],
3776         wx_cv_size_t_is_uint=no,
3777         wx_cv_size_t_is_uint=yes
3778     )
3779     ]
3780 )
3781
3782 if test "$wx_cv_size_t_is_uint" = "yes"; then
3783     AC_DEFINE(wxSIZE_T_IS_UINT)
3784 else
3785     AC_CACHE_CHECK([if size_t is unsigned long],
3786         wx_cv_size_t_is_ulong,
3787         AC_TRY_COMPILE([#include <stddef.h>],
3788             [
3789                 return 0; }
3790
3791                 struct Foo { void foo(size_t); void foo(unsigned long); };
3792
3793                 int bar() {
3794             ],
3795             wx_cv_size_t_is_ulong=no,
3796             wx_cv_size_t_is_ulong=yes
3797         )
3798     )
3799
3800     if test "$wx_cv_size_t_is_ulong" = "yes"; then
3801         AC_DEFINE(wxSIZE_T_IS_ULONG)
3802     fi
3803 fi
3804
3805 AC_LANG_RESTORE
3806
3807 dnl ---------------------------------------------------------------------------
3808 dnl Checks for structures
3809 dnl ---------------------------------------------------------------------------
3810
3811 dnl does passwd struct has the pw_gecos field?
3812 AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
3813     [
3814         AC_TRY_COMPILE([#include <pwd.h>],
3815              [
3816                 char *p;
3817                 struct passwd *pw;
3818                 p = pw->pw_gecos;
3819              ],
3820              [
3821                 wx_cv_struct_pw_gecos=yes
3822              ],
3823              [
3824                 wx_cv_struct_pw_gecos=no
3825              ]
3826         )
3827     ]
3828 )
3829
3830 if test "$wx_cv_struct_pw_gecos" = "yes"; then
3831     AC_DEFINE(HAVE_PW_GECOS)
3832 fi
3833
3834 dnl ---------------------------------------------------------------------------
3835 dnl Check for functions
3836 dnl ---------------------------------------------------------------------------
3837
3838 dnl don't check for wchar_t functions if we haven't got wchar_t itself
3839 if test "$wxUSE_WCHAR_T" = "yes"; then
3840     AC_DEFINE(wxUSE_WCHAR_T)
3841
3842     dnl check for wcslen in all possible places
3843     WCSLEN_FOUND=0
3844     WCHAR_LINK=
3845     AC_CHECK_FUNCS(wcslen, WCSLEN_FOUND=1)
3846
3847     if test "$WCSLEN_FOUND" = 0; then
3848         if test "$TOOLKIT" = "MSW"; then
3849             AC_CHECK_LIB(msvcrt, wcslen, WCHAR_OK=1)
3850         else
3851             AC_CHECK_LIB(w, wcslen, [
3852                             WCHAR_LINK=" -lw"
3853                             WCSLEN_FOUND=1
3854                         ])
3855         fi
3856     fi
3857
3858     if test "$WCSLEN_FOUND" = 1; then
3859         AC_DEFINE(HAVE_WCSLEN)
3860     fi
3861
3862     dnl on HP-UX aCC and g++ need this define to find mbstrtowcs() &c
3863     if test "$USE_HPUX" = 1; then
3864         CPPFLAGS="$CPPFLAGS -D_INCLUDE__STDC_A1_SOURCE "
3865     fi
3866
3867     dnl try to use wcsrtombs instead of wcstombs which is buggy in old GNU
3868     dnl libc versions if possible
3869     AC_CHECK_FUNCS(wcsrtombs)
3870 else
3871     AC_MSG_WARN([Wide character support is unavailable])
3872 fi
3873
3874 dnl *printf() functions sometimes are available in the library but not
3875 dnl prototyped -- if this is the case, we can't use them from C++ code, but to
3876 dnl detect this we have to use C++ compiler for testing
3877 AC_LANG_SAVE
3878 AC_LANG_CPLUSPLUS
3879
3880 dnl check for vsnprintf() -- a safe version of vsprintf())
3881 dnl
3882 dnl the trouble here is that on some systems (notable HP-UX) this function is
3883 dnl present in libc but not in the system headers and so AC_CHECK_FUNCS (which,
3884 dnl stupidly, provides a dummy function declaration inside its extension)
3885 dnl succeeds, even with C++ compiler, but the compilation of wxWidgets fails
3886 dnl
3887 dnl so we first check if the function is in the library
3888 AC_CHECK_FUNCS(vsnprintf)
3889
3890 if test "$ac_cv_func_vsnprintf" = "yes"; then
3891     dnl yes it is -- now check if it is in the headers
3892     AC_CACHE_CHECK([for vsnprintf declaration], wx_cv_func_vsnprintf_decl,
3893         [
3894             AC_TRY_COMPILE(
3895                 [
3896                     #include <stdio.h>
3897                     #include <stdarg.h>
3898                 ],
3899                 [
3900                     char *buf;
3901                     va_list ap;
3902                     vsnprintf(buf, 10u, "%s", ap);
3903                 ],
3904                 wx_cv_func_vsnprintf_decl=yes,
3905                 [
3906                     dnl Metrowerks does provide a vsnprintf declaration
3907                     dnl but in C++ mode it's always in std namespace.
3908                     dnl FIXME: Do we have any UNIX C++ compilers that would
3909                     dnl fail this test if using namespace std; was
3910                     dnl simply always included?
3911                     AC_TRY_COMPILE(
3912                         [
3913                             #include <stdio.h>
3914                             #include <stdarg.h>
3915                             using namespace std;
3916                         ],
3917                         [
3918                             char *buf;
3919                             va_list ap;
3920                             vsnprintf(buf, 10u, "%s", ap);
3921                         ],
3922                         wx_cv_func_vsnprintf_decl=yes,
3923                         wx_cv_func_vsnprintf_decl=no
3924                     )
3925                 ]
3926             )
3927         ]
3928     )
3929
3930     if test "$wx_cv_func_vsnprintf_decl" = "yes"; then
3931         AC_DEFINE(HAVE_VSNPRINTF_DECL)
3932     fi
3933 fi
3934
3935 if test "$wxUSE_UNICODE" = yes; then
3936     dnl also look if we have wide char IO functions
3937     AC_CHECK_FUNCS(wputc wputchar putws fputws wprintf vswprintf)
3938
3939     dnl MinGW has a vswprintf with a different prototype, and
3940     dnl a _vsnwprintf with the correct prototype, but AC_CHECK_FUNCS
3941     dnl finds it even if it is not declared in some versions...
3942     AC_MSG_CHECKING([for _vsnwprintf])
3943     AC_TRY_COMPILE([#include <wchar.h>],
3944                    [&_vsnwprintf;],
3945                    [AC_MSG_RESULT([yes])
3946                     AC_DEFINE(HAVE__VSNWPRINTF)],
3947                    [AC_MSG_RESULT([no])]);
3948 fi
3949
3950 AC_LANG_RESTORE
3951
3952
3953
3954 dnl the following tests are for Unix(like) systems only
3955 if test "$TOOLKIT" != "MSW"; then
3956
3957 dnl check for available version of iconv()
3958
3959 AC_LANG_SAVE
3960 AC_LANG_CPLUSPLUS
3961 AM_ICONV
3962 LIBS="$LIBICONV $LIBS"
3963 AC_LANG_RESTORE
3964
3965 dnl check for POSIX signals if we need them
3966 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
3967     AC_CHECK_FUNCS(sigaction)
3968
3969     if test "$ac_cv_func_sigaction" = "no"; then
3970         AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
3971         wxUSE_ON_FATAL_EXCEPTION=no
3972     fi
3973
3974     if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3975       AC_LANG_SAVE
3976       AC_LANG_CPLUSPLUS
3977
3978       AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
3979       [
3980         AC_TRY_COMPILE([#include <signal.h>],
3981                      [
3982                         extern void testSigHandler(int);
3983
3984                         struct sigaction sa;
3985                         sa.sa_handler = testSigHandler;
3986                      ], [
3987                         wx_cv_type_sa_handler=int
3988                      ], [
3989                         wx_cv_type_sa_handler=void
3990                      ])
3991       ])
3992
3993       AC_LANG_RESTORE
3994
3995       AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
3996     fi
3997 fi
3998
3999 dnl backtrace() and backtrace_symbols() for wxStackWalker
4000 if test "$wxUSE_STACKWALKER" = "yes" -a "$wxUSE_UNIX" = "yes"; then
4001     AC_LANG_SAVE
4002     AC_LANG_CPLUSPLUS
4003
4004     AC_CACHE_CHECK([for backtrace() in <execinfo.h>], wx_cv_func_backtrace,
4005         [
4006             AC_TRY_COMPILE([#include <execinfo.h>],
4007                 [
4008                     void *trace[1];
4009                     char **messages;
4010
4011                     backtrace(trace, 1);
4012                     messages = backtrace_symbols(trace, 1);
4013                 ],
4014                 wx_cv_func_backtrace=yes,
4015                 wx_cv_func_backtrace=no
4016             )
4017         ]
4018     )
4019
4020
4021     if test "$wx_cv_func_backtrace" = "no"; then
4022         AC_MSG_WARN([backtrace() is not available, wxStackWalker will not be available])
4023         wxUSE_STACKWALKER=no
4024     else
4025         AC_CACHE_CHECK([for __cxa_demangle() in <cxxabi.h>], wx_cv_func_cxa_demangle,
4026             [
4027                 AC_TRY_LINK([#include <cxxabi.h>],
4028                     [
4029                         int rc;
4030                         __cxxabiv1::__cxa_demangle("foo", 0, 0, &rc);
4031                     ],
4032                     wx_cv_func_cxa_demangle=yes,
4033                     wx_cv_func_cxa_demangle=no
4034                 )
4035             ]
4036         )
4037
4038         if test "$wx_cv_func_cxa_demangle" = "yes"; then
4039             AC_DEFINE(HAVE_CXA_DEMANGLE)
4040         fi
4041     fi
4042
4043     AC_LANG_RESTORE
4044 fi
4045
4046 if test "$wxUSE_STACKWALKER" = "yes" -a "$USE_WIN32" != "1" -a "$USE_UNIX" != "1"; then 
4047     AC_MSG_WARN([wxStackWalker is only available on Win32 and UNIX... disabled])
4048     wxUSE_STACKWALKER=no
4049 fi
4050
4051
4052 dnl check for the function for temp files creation
4053 AC_CHECK_FUNCS(mkstemp mktemp, break)
4054
4055 dnl get the library function to use for wxGetDiskSpace(): it is statfs() under
4056 dnl Linux and *BSD and statvfs() under Solaris
4057 AC_CACHE_CHECK(for statfs, wx_cv_func_statfs,
4058     AC_TRY_COMPILE(
4059         [
4060              #if defined(__BSD__)
4061                #include <sys/param.h>
4062                #include <sys/mount.h>
4063              #else
4064                #include <sys/vfs.h>
4065              #endif
4066         ],
4067         [
4068              long l;
4069              struct statfs fs;
4070              statfs("/", &fs);
4071              l = fs.f_bsize;
4072              l += fs.f_blocks;
4073              l += fs.f_bavail;
4074         ],
4075         [
4076              wx_cv_func_statfs=yes
4077         ],
4078         [
4079              wx_cv_func_statfs=no
4080         ]
4081     )
4082 )
4083
4084 if test "$wx_cv_func_statfs" = "yes"; then
4085     wx_cv_type_statvfs_t="struct statfs"
4086     AC_DEFINE(HAVE_STATFS)
4087 else
4088     AC_CACHE_CHECK(for statvfs, wx_cv_func_statvfs,
4089         AC_TRY_COMPILE(
4090             [
4091                 #include <stddef.h>
4092                 #include <sys/statvfs.h>
4093             ],
4094             [
4095                 statvfs("/", NULL);
4096             ],
4097             wx_cv_func_statvfs=yes,
4098             wx_cv_func_statvfs=no
4099         )
4100     )
4101
4102     if test "$wx_cv_func_statvfs" = "yes"; then
4103         dnl we also have to check whether we should use statvfs_t (works under
4104         dnl Solaris 8, doesn't work under Solaris 7) or "struct statvfs" (vice
4105         dnl versa) as the argument for statvfs in 64 bit off_t mode (in 32 bit
4106         dnl mode both work fine)
4107         dnl
4108         dnl for this check C++ compiler has to be used as passing incompatible
4109         dnl pointers is just a warning and not an error in C
4110         AC_LANG_SAVE
4111         AC_LANG_CPLUSPLUS
4112
4113         AC_CACHE_CHECK(for statvfs argument type, wx_cv_type_statvfs_t,
4114             AC_TRY_COMPILE(
4115                 [
4116                     #include <sys/statvfs.h>
4117                 ],
4118                 [
4119                     long l;
4120                     statvfs_t fs;
4121                     statvfs("/", &fs);
4122                     l = fs.f_bsize;
4123                     l += fs.f_blocks;
4124                     l += fs.f_bavail;
4125                 ],
4126                 wx_cv_type_statvfs_t=statvfs_t,
4127                 [
4128                     AC_TRY_COMPILE(
4129                         [
4130                             #include <sys/statvfs.h>
4131                         ],
4132                         [
4133                             long l;
4134                             struct statvfs fs;
4135                             statvfs("/", &fs);
4136                             l = fs.f_bsize;
4137                             l += fs.f_blocks;
4138                             l += fs.f_bavail;
4139                         ],
4140                         wx_cv_type_statvfs_t="struct statvfs",
4141                         wx_cv_type_statvfs_t="unknown"
4142                     )
4143                 ]
4144             )
4145         )
4146
4147         AC_LANG_RESTORE
4148
4149         if test "$wx_cv_type_statvfs_t" != "unknown"; then
4150             AC_DEFINE(HAVE_STATVFS)
4151         fi
4152     else
4153         dnl set it for the test below
4154         wx_cv_type_statvfs_t="unknown"
4155     fi
4156 fi
4157
4158 if test "$wx_cv_type_statvfs_t" != "unknown"; then
4159     AC_DEFINE_UNQUOTED(WX_STATFS_T, $wx_cv_type_statvfs_t)
4160 else
4161     AC_MSG_WARN([wxGetDiskSpace() function won't work without statfs()])
4162 fi
4163
4164 dnl check for fcntl() or at least flock() needed by Unix implementation of
4165 dnl wxSingleInstanceChecker
4166 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
4167     AC_CHECK_FUNCS(fcntl flock, break)
4168
4169     if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then
4170         AC_MSG_WARN(wxSingleInstanceChecker not available)
4171         wxUSE_SNGLINST_CHECKER=no
4172     fi
4173 fi
4174
4175 dnl check for timegm() used by datetime.cpp
4176 AC_CHECK_FUNCS(timegm)
4177
4178 dnl look for a function to modify the environment
4179 AC_CHECK_FUNCS(putenv setenv, break)
4180
4181 HAVE_SOME_SLEEP_FUNC=0
4182 if test "$USE_BEOS" = 1; then
4183     dnl BeOS has its own (wonder where did they get it from) sleep() function
4184     dnl in unistd.h
4185     AC_DEFINE(HAVE_SLEEP)
4186     HAVE_SOME_SLEEP_FUNC=1
4187 fi
4188
4189 if test "$USE_DARWIN" = 1; then
4190     dnl Mac OS X/Darwin has both nanosleep and usleep
4191     dnl but only usleep is defined in unistd.h
4192     AC_DEFINE(HAVE_USLEEP)
4193     HAVE_SOME_SLEEP_FUNC=1
4194 fi
4195
4196 if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
4197     dnl try nanosleep() in libc and libposix4, if this fails - usleep()
4198     POSIX4_LINK=
4199     AC_CHECK_FUNCS(nanosleep,
4200         AC_DEFINE(HAVE_NANOSLEEP),
4201         [
4202             AC_CHECK_LIB(posix4, nanosleep,
4203                 [
4204                     AC_DEFINE(HAVE_NANOSLEEP)
4205                     POSIX4_LINK=" -lposix4"
4206                 ],
4207                 [
4208                     AC_CHECK_FUNCS(usleep,
4209                         AC_DEFINE(HAVE_USLEEP),
4210                         AC_MSG_WARN([wxSleep() function will not work])
4211                     )
4212                 ]
4213             )
4214         ]
4215     )
4216 fi
4217
4218 dnl check for uname (POSIX) and gethostname (BSD)
4219 AC_CHECK_FUNCS(uname gethostname, break)
4220
4221 dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
4222 dnl but not for C++ one - hence change language)
4223 AC_LANG_SAVE
4224 AC_LANG_CPLUSPLUS
4225
4226 AC_CHECK_FUNCS(strtok_r)
4227
4228 AC_LANG_RESTORE
4229
4230 dnl check for inet_addr and inet_aton (these may live either in libc, or in
4231 dnl libnsl or libresolv or libsocket)
4232 INET_LINK=
4233 AC_CHECK_FUNCS(inet_addr,
4234     AC_DEFINE(HAVE_INET_ADDR),
4235     [
4236         AC_CHECK_LIB(nsl, inet_addr,
4237             INET_LINK="nsl",
4238             [
4239                 AC_CHECK_LIB(resolv, inet_addr,
4240                     INET_LINK="resolv",
4241                     [
4242                         AC_CHECK_LIB(socket, inet_addr,
4243                             INET_LINK="socket"
4244                         )
4245                     ]
4246                 )
4247             ]
4248         )
4249     ]
4250 )
4251
4252 AC_CHECK_FUNCS(inet_aton,
4253         AC_DEFINE(HAVE_INET_ATON),
4254         [
4255             dnl only check it in the same lib
4256             AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
4257         ])
4258
4259 if test "x$INET_LINK" != "x"; then
4260     AC_DEFINE(HAVE_INET_ADDR)
4261     INET_LINK=" -l$INET_LINK"
4262 fi
4263
4264 fi
4265 dnl if !MSW
4266
4267
4268 dnl ------------------------------------------
4269 dnl Checks specific to contrib libs (MMedia)
4270 dnl ------------------------------------------
4271
4272 dnl Check for ESD:
4273 EXTRALIBS_ESD=
4274 AC_CHECK_LIB(esd, esd_close, [
4275     AC_CHECK_HEADERS([esd.h], [
4276     EXTRALIBS_ESD="-lesd"
4277   ])
4278 ])
4279 AC_SUBST(EXTRALIBS_ESD)
4280
4281 dnl check for known CD-ROM interface
4282 AC_MSG_CHECKING([for known CD-ROM interface])
4283 AC_TRY_COMPILE([#ifdef __linux__
4284                 #include <linux/cdrom.h>
4285                 #else
4286                 /* For Solaris */
4287                 #include <sys/cdio.h>
4288                 #endif
4289                 ],
4290                [struct cdrom_tocentry entry, old_entry;],
4291                [AC_MSG_RESULT([yes])
4292                 AC_DEFINE(HAVE_KNOWN_CDROM_INTERFACE)],
4293                [AC_MSG_RESULT([no])])
4294
4295 dnl ===========================================================================
4296 dnl Now we have all the info we need - use it!
4297 dnl ===========================================================================
4298
4299 dnl flush the cache
4300 AC_CACHE_SAVE
4301
4302 dnl ---------------------------------------------------------------------------
4303 dnl thread support for Unix (for Win32 and OS/2 see past
4304 dnl                          the next matching "else")
4305 dnl ---------------------------------------------------------------------------
4306
4307 dnl under MSW (except mingw32) we always have thread support
4308 CPP_MT_FLAG=
4309 if test "$TOOLKIT" != "MSW" -a "$USE_OS2" != 1; then
4310
4311     dnl the code below:
4312     dnl
4313     dnl   defines THREADS_LINK and THREADS_CFLAGS which are the options
4314     dnl   necessary to build the MT programs for the linker and compiler
4315     dnl   respectively
4316     dnl
4317     dnl   sets wxUSE_THREADS=1 if thread support is activated
4318
4319     THREADS_LINK=
4320     THREADS_CFLAGS=
4321
4322     if test "$wxUSE_THREADS" = "yes" ; then
4323         if test "$USE_BEOS" = 1; then
4324             AC_MSG_WARN([BeOS threads are not yet supported... disabled])
4325             wxUSE_THREADS="no"
4326         fi
4327     fi
4328
4329     if test "$wxUSE_THREADS" = "yes" ; then
4330         dnl find if POSIX threads are available
4331         dnl
4332         dnl the tests here are based on ACX_PTHREAD macro from autoconf macro
4333         dnl archive from http://ac-archive.sourceforge.net/
4334         dnl
4335         dnl thanks to Steven G. Johnson <stevenj@alum.mit.edu> and Alejandro
4336         dnl Forero Cuervo <bachue@bachue.com> for the original code
4337
4338         dnl TODO: cache the result
4339
4340         dnl define the list of the thread options to try in the loop below
4341         dnl with the convention that anything starting with '-' is a cpp flag
4342         dnl while anything else is a library (i.e. there is an implicit "-l")
4343         THREAD_OPTS="-pthread"
4344         case "${host}" in
4345           *-*-solaris2* | *-*-sunos4* )
4346                 if test "x$GCC" = "xyes"; then
4347                     dnl Solaris/gcc combination use this one for some reason
4348                     THREAD_OPTS="-pthreads $THREAD_OPTS"
4349                 else
4350                     THREAD_OPTS="-mt $THREAD_OPTS"
4351                 fi
4352                 ;;
4353           *-*-freebsd*)
4354                 dnl look, in order, for the kernel threads, then Linux threads
4355                 dnl and finally the userland threads
4356                 THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r"
4357                 ;;
4358           *-*-darwin* | *-*-cygwin* )
4359                 dnl Darwin / Mac OS X just uses -lpthread tested below
4360                 dnl and so does Cygwin
4361                 THREAD_OPTS=""
4362                 ;;
4363           *-*-aix*)
4364                 dnl AIX calls the library libpthreads - thanks IBM!
4365                 THREAD_OPTS="pthreads"
4366                 ;;
4367           *-hp-hpux* )
4368                 dnl HP-UX aCC only gives a warning, not an error about
4369                 dnl -pthread but it doesn't work and we have to use -lpthread
4370                 dnl there
4371                 if test "x$GCC" != "xyes"; then
4372                     THREAD_OPTS=""
4373                 fi
4374                 ;;
4375
4376           *-*-irix* )
4377                 dnl gcc under IRIX doesn't seem to like -pthread, but it
4378                 dnl doesn't give an error for it neither, just a warning
4379                 dnl message -- but this is still very annoying
4380                 if test "x$GCC" = "xyes"; then
4381                     THREAD_OPTS=""
4382                 fi
4383                 ;;
4384
4385           *-*-*UnixWare*)
4386                 dnl flying by man pages here: Caldera online docs use this
4387                 if test "x$GCC" != "xyes"; then
4388                     THREAD_OPTS="-Ethread"
4389                 fi
4390                 ;;
4391         esac
4392
4393         dnl simply linking with libpthread should make the test below work but
4394         dnl it's far from certain that the threaded programs compiled without
4395         dnl any special switches actually work, so try it after all the others
4396         THREAD_OPTS="$THREAD_OPTS pthread none"
4397
4398         dnl now test for all possibilities
4399         THREADS_OK=no
4400         for flag in $THREAD_OPTS; do
4401             case $flag in
4402                 none)
4403                     AC_MSG_CHECKING([whether pthreads work without any flags])
4404                     ;;
4405
4406                 -*)
4407                     AC_MSG_CHECKING([whether pthreads work with $flag])
4408                     THREADS_CFLAGS="$flag"
4409                     ;;
4410
4411                 *)
4412                     AC_MSG_CHECKING([for the pthreads library -l$flag])
4413                     THREADS_LINK="-l$flag"
4414                     ;;
4415               esac
4416
4417               save_LIBS="$LIBS"
4418               save_CFLAGS="$CFLAGS"
4419               LIBS="$THREADS_LINK $LIBS"
4420               CFLAGS="$THREADS_CFLAGS $CFLAGS"
4421
4422               AC_TRY_LINK([#include <pthread.h>],
4423                           [pthread_create(0,0,0,0);],
4424                           THREADS_OK=yes)
4425
4426               LIBS="$save_LIBS"
4427               CFLAGS="$save_CFLAGS"
4428
4429               AC_MSG_RESULT($THREADS_OK)
4430               if test "x$THREADS_OK" = "xyes"; then
4431                       break;
4432               fi
4433
4434               THREADS_LINK=""
4435               THREADS_CFLAGS=""
4436       done
4437
4438       if test "x$THREADS_OK" != "xyes"; then
4439           wxUSE_THREADS=no
4440           AC_MSG_WARN([No thread support on this system... disabled])
4441       else
4442           dnl yes, these special compiler flags should be used with the
4443           dnl linker as well
4444           LDFLAGS="$THREADS_CFLAGS $LDFLAGS"
4445           LIBS="$THREADS_LINK $LIBS"
4446
4447           AC_MSG_CHECKING([if more special flags are required for pthreads])
4448           flag=no
4449           case "${host}" in
4450             *-aix*)
4451                 dnl again quoting from
4452                 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
4453                 dnl
4454                 dnl     When compiling and linking with -pthread, the library
4455                 dnl     search path should include -L/usr/lib/threads at the
4456                 dnl     beginning of the path.
4457                 LDFLAGS="-L/usr/lib/threads $LDFLAGS"
4458                 flag="-D_THREAD_SAFE"
4459                 ;;
4460             *-freebsd*)
4461                 flag="-D_THREAD_SAFE"
4462                 ;;
4463             *-hp-hpux* )
4464                 flag="-D_REENTRANT"
4465                 if test "x$GCC" != "xyes"; then
4466                     dnl see http://docs.hp.com/hpux/onlinedocs/2213/threads.htm
4467                     flag="$flag -D_RWSTD_MULTI_THREAD"
4468                 fi
4469                 ;;
4470             *solaris* | alpha*-osf*)
4471                 flag="-D_REENTRANT"
4472                 ;;
4473           esac
4474           AC_MSG_RESULT(${flag})
4475           if test "x$flag" != xno; then
4476               THREADS_CFLAGS="$THREADS_CFLAGS $flag"
4477           fi
4478
4479           if test "x$THREADS_CFLAGS" != "x"; then
4480             dnl don't add these options to CPPFLAGS as cpp might not know them
4481             CFLAGS="$CFLAGS $THREADS_CFLAGS"
4482             CXXFLAGS="$CXXFLAGS $THREADS_CFLAGS"
4483           fi
4484       fi
4485     fi
4486
4487     dnl do other tests only if we are using threads
4488     if test "$wxUSE_THREADS" = "yes" ; then
4489       AC_CHECK_FUNCS(thr_setconcurrency)
4490
4491       AC_CHECK_HEADERS(sched.h)
4492       if test "$ac_cv_header_sched_h" = "yes"; then
4493           AC_CHECK_FUNC(sched_yield,
4494             AC_DEFINE(HAVE_SCHED_YIELD),
4495             [
4496                 AC_CHECK_LIB(posix4,
4497                     sched_yield,
4498                     [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK=" -lposix4"],
4499                     AC_MSG_WARN(wxThread::Yield will not work properly)
4500                 )
4501             ]
4502           )
4503       fi
4504
4505       dnl to be able to set the thread priority, we need to have all of the
4506       dnl following functions:
4507       dnl   1. pthread_attr_getschedpolicy
4508       dnl   2. sched_get_priority_min and sched_get_priority_max
4509       dnl      (this one can be in either libpthread or libposix4 (under Solaris))
4510       dnl   3. pthread_attr_getschedparam and pthread_attr_setschedparam
4511       HAVE_PRIOR_FUNCS=0
4512       AC_CHECK_FUNC(pthread_attr_getschedpolicy,
4513                      [AC_CHECK_FUNC(pthread_attr_setschedparam,
4514                        [AC_CHECK_FUNC(sched_get_priority_max,
4515                            HAVE_PRIOR_FUNCS=1,
4516                            [AC_CHECK_LIB([posix4], sched_get_priority_max,
4517                              [
4518                                 HAVE_PRIOR_FUNCS=1
4519                                 POSIX4_LINK=" -lposix4"
4520                              ],
4521                            )]
4522                        )]
4523                      )]
4524                    )
4525
4526       if test "$HAVE_PRIOR_FUNCS" = 1; then
4527         AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
4528       else
4529         AC_MSG_WARN(Setting thread priority will not work)
4530       fi
4531
4532       AC_CHECK_FUNC(pthread_cancel,
4533                     AC_DEFINE(HAVE_PTHREAD_CANCEL),
4534                     AC_MSG_WARN([wxThread::Kill() will not work properly]))
4535
4536       AC_CHECK_FUNC(pthread_attr_setstacksize,
4537                     AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE))
4538
4539       dnl mutexattr_t initialization is done in quite different ways on different
4540       dnl platforms, so check for a few things:
4541       dnl
4542       dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
4543       dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
4544       dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
4545       dnl defined, we do it by directly assigned
4546       dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
4547
4548       AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
4549       [
4550         AC_TRY_COMPILE([#include <pthread.h>],
4551             [
4552                pthread_mutexattr_t attr;
4553                pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
4554             ], [
4555                wx_cv_type_pthread_mutexattr_t=yes
4556             ], [
4557                wx_cv_type_pthread_mutexattr_t=no
4558             ]
4559         )
4560       ])
4561
4562       if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
4563         AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
4564       else
4565         dnl don't despair, there may be another way to do it
4566         AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
4567                        wx_cv_type_pthread_rec_mutex_init,
4568         [
4569             AC_TRY_COMPILE([#include <pthread.h>],
4570                 [
4571                     pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
4572                 ], [
4573                     wx_cv_type_pthread_rec_mutex_init=yes
4574                 ], [
4575                     wx_cv_type_pthread_rec_mutex_init=no
4576                 ]
4577             )
4578         ])
4579         if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then
4580           AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
4581         else
4582           dnl this may break code working elsewhere, so at least warn about it
4583           AC_MSG_WARN([wxMutex won't be recursive on this platform])
4584         fi
4585       fi
4586     fi
4587
4588 dnl from if !MSW
4589 else
4590     if test "$wxUSE_THREADS" = "yes" ; then
4591       case "${host}" in
4592         *-*-mingw32* )
4593             dnl check if the compiler accepts -mthreads
4594             AC_CACHE_CHECK([if compiler supports -mthreads],
4595                 wx_cv_cflags_mthread,
4596                 [
4597                     CFLAGS_OLD="$CFLAGS"
4598                     CFLAGS="$CFLAGS -mthreads"
4599                     AC_TRY_COMPILE([], [],
4600                         wx_cv_cflags_mthread=yes,
4601                         wx_cv_cflags_mthread=no
4602                     )
4603                 ]
4604             )
4605
4606             if test "$wx_cv_cflags_mthread" = "yes"; then
4607                 dnl it does, use it
4608                 CXXFLAGS="$CXXFLAGS -mthreads"
4609                 TOOLCHAIN_DEFS="$TOOLCHAIN_DEFS -mthreads"
4610                 LDFLAGS="$LDFLAGS -mthreads"
4611             else
4612                 dnl it doesn't
4613                 CFLAGS="$CFLAGS_OLD"
4614             fi
4615         ;;
4616         *-pc-os2*emx )
4617             CFLAGS="$CFLAGS -Zmt -D__ST_MT_ERRNO__"
4618             CXXFLAGS="$CXXFLAGS -Zmt -D__ST_MT_ERRNO__"
4619             LDFLAGS="$LDFLAGS -Zmt"
4620         ;;
4621       esac
4622     fi
4623 fi
4624
4625 if test "$wxUSE_THREADS" = "yes"; then
4626   AC_DEFINE(wxUSE_THREADS)
4627
4628   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
4629 else
4630   dnl on some systems, _REENTRANT should be defined if we want to use any _r()
4631   dnl functions - add tests for other functions here as well
4632   if test "$ac_cv_func_strtok_r" = "yes"; then
4633     AC_MSG_CHECKING(if -D_REENTRANT is needed)
4634     if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
4635         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D_REENTRANT"
4636         AC_MSG_RESULT(yes)
4637     else
4638         AC_MSG_RESULT(no)
4639     fi
4640   fi
4641 fi
4642
4643 if test "$WXGTK20" = 1 ; then
4644   AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
4645   WXGTK12=1
4646 fi
4647
4648 if test "$WXGTK12" = 1 ; then
4649   AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
4650 fi
4651
4652 if test "$WXGTK127" = 1 ; then
4653   AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
4654 fi
4655
4656 if test "$WXGPE" = 1 ; then
4657   AC_DEFINE_UNQUOTED(__WXGPE__,$WXGPE)
4658 fi
4659
4660 WXDEBUG=
4661
4662 if test "$wxUSE_DEBUG_INFO" = "yes" ; then
4663     WXDEBUG="-g"
4664     wxUSE_OPTIMISE=no
4665 fi
4666
4667 if test "$wxUSE_DEBUG_GDB" = "yes" ; then
4668     wxUSE_DEBUG_INFO=yes
4669     if test "$GCC" = yes; then
4670         WXDEBUG="-ggdb"
4671     fi
4672 fi
4673
4674 if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
4675     AC_DEFINE(WXDEBUG)
4676     WXDEBUG_DEFINE="-D__WXDEBUG__"
4677 else
4678     if test "$wxUSE_GTK" = 1 ; then
4679         WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
4680     fi
4681 fi
4682
4683 if test "$wxUSE_MEM_TRACING" = "yes" ; then
4684     AC_DEFINE(wxUSE_MEMORY_TRACING)
4685     AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
4686     AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
4687     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
4688 fi
4689
4690 if test "$wxUSE_DMALLOC" = "yes" ; then
4691     DMALLOC_LIBS="-ldmallocthcxx"
4692 fi
4693
4694 PROFILE=
4695 if test "$wxUSE_PROFILE" = "yes" ; then
4696     PROFILE=" -pg"
4697 fi
4698
4699 CODE_GEN_FLAGS=
4700 CODE_GEN_FLAGS_CXX=
4701 if test "$GCC" = "yes" ; then
4702     if test "$wxUSE_NO_RTTI" = "yes" ; then
4703         CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-rtti"
4704     fi
4705     if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
4706         CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-exceptions"
4707     fi
4708     if test "$wxUSE_PERMISSIVE" = "yes" ; then
4709         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
4710     fi
4711
4712     dnl Ian Brown <ian.brown@printsoft.de> reports that versions of gcc before
4713     dnl 3.0 overflow the table of contents on rs6000 as they create an entry
4714     dnl for each subroutine by default -- using the switch below only creates
4715     dnl one entry per file instead at the price of minor performance penalty
4716     dnl
4717     dnl As of wx2.4 a bug in the hppa gcc compiler causes a similar problem
4718     dnl without -ffunction-sections.  No idea how long we'll need to maintain
4719     dnl this, or even the extent of gcc/wx version combinations affected, but
4720     dnl also as above, this 'fix' does not come without side effects.
4721     dnl
4722     dnl TODO: test for the gcc version here (how?)
4723     case "${host}" in
4724       powerpc*-*-aix* )
4725         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -mminimal-toc"
4726         ;;
4727       *-hppa* )
4728         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -ffunction-sections"
4729         ;;
4730     esac
4731 fi
4732
4733 OPTIMISE=
4734 if test "$wxUSE_OPTIMISE" = "no" ; then
4735     if test "$GCC" = yes ; then
4736         dnl use -O0 because compiling with it is faster than compiling with no
4737         dnl optimization options at all (at least with g++ 3.2)
4738         OPTIMISE="-O0"
4739     fi
4740 else
4741     if test "$GCC" = yes ; then
4742         OPTIMISE="-O2"
4743
4744         dnl VZ: does anybody know what does this do??
4745         case "${host}" in
4746             i586-*-*|i686-*-* )
4747             OPTIMISE="${OPTIMISE} "
4748         ;;
4749         esac
4750     else
4751         OPTIMISE="-O"
4752     fi
4753 fi
4754
4755 dnl ---------------------------------------------------------------------------
4756 dnl compatibility level
4757 dnl ---------------------------------------------------------------------------
4758
4759 if test "x$WXWIN_COMPATIBILITY_2_2" = "xyes"; then
4760     AC_DEFINE(WXWIN_COMPATIBILITY_2_2)
4761
4762     WXWIN_COMPATIBILITY_2_4="yes"
4763 fi
4764
4765 if test "x$WXWIN_COMPATIBILITY_2_4" != "xno"; then
4766     AC_DEFINE(WXWIN_COMPATIBILITY_2_4)
4767 fi
4768
4769 dnl ---------------------------------------------------------------------------
4770 dnl the library may be built without GUI classes at all
4771 dnl ---------------------------------------------------------------------------
4772
4773 if test "$wxUSE_GUI" = "yes"; then
4774     AC_DEFINE(wxUSE_GUI)
4775
4776     dnl the things we always pull in the GUI version of the library:
4777     dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
4778     dnl    library really can't be built without those)
4779     dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
4780     dnl    almost any program and the first 2 are needed to show a message box
4781     dnl    which want to be always able to do)
4782     dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
4783     dnl    to compile without them (if the app doesn't do any drawing, it doesn't
4784     dnl    need the dcs, pens, brushes, ...), this just can't be done now
4785     dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
4786     dnl 5. misc stuff: timers, settings, message box
4787 fi
4788
4789 dnl ---------------------------------------------------------------------------
4790 dnl Unix/Windows
4791 dnl ---------------------------------------------------------------------------
4792
4793 if test "$wxUSE_UNIX" = "yes"; then
4794   AC_DEFINE(wxUSE_UNIX)
4795 fi
4796
4797 dnl ------------------------------------------------------------------------
4798 dnl DLL support
4799 dnl ------------------------------------------------------------------------
4800
4801 dnl under MSW we always have LoadLibrary/GetProcAddress
4802 if test "$TOOLKIT" != "MSW" -a "$USE_OS2" != 1; then
4803
4804     HAVE_DL_FUNCS=0
4805     HAVE_SHL_FUNCS=0
4806     if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then
4807         if test "$USE_DARWIN" = 1; then
4808             dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X
4809             HAVE_DL_FUNCS=1
4810         elif test "$USE_DOS" = 1; then
4811             HAVE_DL_FUNCS=0
4812         else
4813             dnl the test is a bit complicated because we check for dlopen() both with
4814             dnl and without -ldl and we also try to find shl_load() if there is no
4815             dnl dlopen() on this system
4816             AC_CHECK_FUNCS(dlopen,
4817             [
4818                 AC_DEFINE(HAVE_DLOPEN)
4819                 HAVE_DL_FUNCS=1
4820             ],
4821             [
4822                 AC_CHECK_LIB(dl, dlopen,
4823                             [
4824                                 AC_DEFINE(HAVE_DLOPEN)
4825                                 HAVE_DL_FUNCS=1
4826                                 DL_LINK=" -ldl$DL_LINK"
4827                             ],
4828                             [
4829                                 AC_CHECK_FUNCS(shl_load,
4830                                               [
4831                                                 AC_DEFINE(HAVE_SHL_LOAD)
4832                                                 HAVE_SHL_FUNCS=1
4833                                               ],
4834                                               [
4835                                                 AC_CHECK_LIB(shl_load, dld,
4836                                                              [
4837                                                                 HAVE_SHL_FUNCS=1
4838                                                                 DL_LINK=" -ldld$DL_LINK"
4839                                                              ])
4840                                               ])
4841                             ])
4842             ])
4843
4844         dnl check also for dlerror()
4845         if test "$HAVE_DL_FUNCS" = 1; then
4846             AC_CHECK_FUNCS(dlerror,
4847                 AC_DEFINE(HAVE_DLERROR),
4848                 [
4849                     AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR))
4850                 ]
4851             )
4852         fi
4853         fi
4854
4855         if test "$HAVE_DL_FUNCS" = 0; then
4856             if test "$HAVE_SHL_FUNCS" = 0; then
4857               if test "$USE_UNIX" = 1 -o "$USE_DOS" = 1; then
4858                   AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
4859                   wxUSE_DYNAMIC_LOADER=no
4860                   wxUSE_DYNLIB_CLASS=no
4861               else
4862                   AC_MSG_WARN([Assuming wxLibrary class works on this platform])
4863               fi
4864             fi
4865         fi
4866     fi
4867 fi
4868
4869 if test "$wxUSE_DYNAMIC_LOADER" = "yes" ; then
4870     AC_DEFINE(wxUSE_DYNAMIC_LOADER)
4871 fi
4872 if test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
4873     AC_DEFINE(wxUSE_DYNLIB_CLASS)
4874 fi
4875
4876
4877 dnl ---------------------------------------------------------------------------
4878 dnl Verify consistency of plugins/monolithic/shared settings:
4879 dnl ---------------------------------------------------------------------------
4880
4881 if test "$wxUSE_PLUGINS" = "yes" ; then
4882     if test "$wxUSE_SHARED" = "no" ; then
4883         AC_MSG_WARN([plugins supported only in shared build, disabling])
4884         wxUSE_PLUGINS=no
4885     fi
4886     if test "$wxUSE_MONOLITHIC" = "yes" ; then
4887         AC_MSG_WARN([plugins not supported monolithic build, disabling])
4888         wxUSE_PLUGINS=no
4889     fi
4890     if test "$wxUSE_DYNLIB_CLASS" = "no" ; then
4891         AC_MSG_WARN([plugins require wxDynamicLibrary, disabling])
4892         wxUSE_PLUGINS=no
4893     fi
4894     if test "$wxUSE_PLUGINS" = "yes" ; then
4895         AC_DEFINE(wxUSE_PLUGINS)
4896     fi
4897 fi
4898
4899 dnl ---------------------------------------------------------------------------
4900 dnl Register non-GUI class options for makefiles and setup.h
4901 dnl ---------------------------------------------------------------------------
4902
4903 if test "$wxUSE_STL" = "yes"; then
4904   AC_DEFINE(wxUSE_STL)
4905 fi
4906
4907 if test "$wxUSE_APPLE_IEEE" = "yes"; then
4908   AC_DEFINE(wxUSE_APPLE_IEEE)
4909 fi
4910
4911 if test "$wxUSE_TIMER" = "yes"; then
4912   AC_DEFINE(wxUSE_TIMER)
4913 fi
4914
4915 dnl Unix implementation needs additional checks because audio support
4916 dnl comes in many favours:
4917 if test "$USE_UNIX" = "1" ; then
4918     AC_CHECK_HEADERS([sys/soundcard.h],,
4919                      [DISABLED_CONTRIB="$DISABLED_CONTRIB mmedia"])
4920 fi
4921 WITH_PLUGIN_SDL=0
4922 if test "$wxUSE_SOUND" = "yes"; then
4923   if test "$USE_UNIX" = "1" ; then
4924     if test "$wxUSE_LIBSDL" != "no"; then
4925       AM_PATH_SDL([1.2.0],
4926                   [
4927                     EXTRALIBS_SDL="$SDL_LIBS"
4928                     CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
4929                     AC_DEFINE(wxUSE_LIBSDL)
4930                   ],
4931                   [wxUSE_LIBSDL="no"])
4932       if test "$wxUSE_LIBSDL" = "yes" -a "$wxUSE_PLUGINS" = "yes" ; then
4933         WITH_PLUGIN_SDL=1
4934       fi
4935     fi
4936   fi
4937  
4938   AC_DEFINE(wxUSE_SOUND)
4939   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sound"
4940 fi
4941
4942 if test "$WXGTK20" = 1; then
4943     if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
4944         if test "$wxUSE_LIBGNOMEPRINT" = "yes" ; then
4945         
4946                 PKG_CHECK_MODULES(LIBGNOMEPRINTUI, 
4947                                   [libgnomeprintui-2.2 >= 2.8],
4948                     [
4949 dnl                     EXTRALIBS_GNOMEPRINT="$LIBGNOMEPRINTUI_LIBS"
4950                         CXXFLAGS="$CXXFLAGS $LIBGNOMEPRINTUI_CFLAGS"
4951                         AC_DEFINE(wxUSE_LIBGNOMEPRINT)
4952                     ],
4953                     [
4954                         AC_MSG_WARN([libgnomeprintui not found, library will use standard PostScript printing])
4955                         wxUSE_LIBGNOMEPRINT="no"
4956                     ]
4957                 )
4958         fi
4959     fi
4960 fi
4961
4962
4963 if test "$wxUSE_CMDLINE_PARSER" = "yes"; then
4964   AC_DEFINE(wxUSE_CMDLINE_PARSER)
4965 fi
4966
4967 if test "$wxUSE_STOPWATCH" = "yes"; then
4968   AC_DEFINE(wxUSE_STOPWATCH)
4969 fi
4970
4971 if test "$wxUSE_DATETIME" = "yes"; then
4972   AC_DEFINE(wxUSE_DATETIME)
4973 fi
4974
4975 if test "$wxUSE_FILE" = "yes"; then
4976   AC_DEFINE(wxUSE_FILE)
4977 fi
4978
4979 if test "$wxUSE_FFILE" = "yes"; then
4980   AC_DEFINE(wxUSE_FFILE)
4981 fi
4982
4983 if test "$wxUSE_FILESYSTEM" = "yes"; then
4984   AC_DEFINE(wxUSE_FILESYSTEM)
4985 fi
4986
4987 if test "$wxUSE_FS_ZIP" = "yes"; then
4988   AC_DEFINE(wxUSE_FS_ZIP)
4989 fi
4990
4991 if test "$wxUSE_ARCHIVE_STREAMS" = "yes"; then
4992   AC_DEFINE(wxUSE_ARCHIVE_STREAMS)
4993 fi
4994
4995 if test "$wxUSE_ZIPSTREAM" = "yes"; then
4996   if test "$wxUSE_ARCHIVE_STREAMS" != "yes"; then
4997     AC_MSG_WARN(wxZip requires wxArchive... disabled)
4998   elif test "$wxUSE_ZLIB" = "no"; then
4999     AC_MSG_WARN(wxZip requires wxZlib... disabled)
5000   else
5001     AC_DEFINE(wxUSE_ZIPSTREAM)
5002   fi
5003 fi
5004
5005 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
5006   if test "$USE_UNIX" != 1; then
5007     AC_MSG_WARN([Catching fatal exceptions not currently supported on this system, wxApp::OnFatalException will not be called])
5008     wxUSE_ON_FATAL_EXCEPTION=no
5009   else
5010     AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
5011   fi
5012 fi
5013
5014 if test "$wxUSE_STACKWALKER" = "yes"; then
5015     AC_DEFINE(wxUSE_STACKWALKER)
5016 fi
5017
5018 if test "$wxUSE_DEBUGREPORT" = "yes"; then
5019     if test "$USE_UNIX" != "1" -a "$USE_WIN32" != "1"; then
5020         AC_MSG_WARN([Creating debug reports not currently supported on this system, disabled])
5021         wxUSE_DEBUGREPORT=no
5022     else
5023         AC_DEFINE(wxUSE_DEBUGREPORT)
5024         if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
5025             SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS debugrpt"
5026         fi
5027     fi
5028 fi
5029
5030 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
5031   AC_DEFINE(wxUSE_SNGLINST_CHECKER)
5032 fi
5033
5034 if test "$wxUSE_BUSYINFO" = "yes"; then
5035   AC_DEFINE(wxUSE_BUSYINFO)
5036 fi
5037
5038 if test "$wxUSE_STD_IOSTREAM" = "yes"; then
5039   AC_DEFINE(wxUSE_STD_IOSTREAM)
5040 fi
5041
5042 if test "$wxUSE_STD_STRING" = "yes"; then
5043   AC_DEFINE(wxUSE_STD_STRING)
5044 fi
5045
5046 if test "$wxUSE_STDPATHS" = "yes"; then
5047   AC_DEFINE(wxUSE_STDPATHS)
5048 fi
5049
5050 if test "$wxUSE_TEXTBUFFER" = "yes"; then
5051     AC_DEFINE(wxUSE_TEXTBUFFER)
5052 fi
5053
5054 if test "$wxUSE_TEXTFILE" = "yes"; then
5055   if test "$wxUSE_FILE" != "yes" -o "$wxUSE_TEXTBUFFER" != "yes" ; then
5056     AC_MSG_WARN(wxTextFile requires wxFile and wxTextBuffer... disabled)
5057   else
5058     AC_DEFINE(wxUSE_TEXTFILE)
5059   fi
5060 fi
5061
5062 if test "$wxUSE_CONFIG" = "yes" ; then
5063   if test "$wxUSE_TEXTFILE" != "yes"; then
5064     AC_MSG_WARN(wxConfig requires wxTextFile... disabled)
5065   else
5066     AC_DEFINE(wxUSE_CONFIG)
5067     AC_DEFINE(wxUSE_CONFIG_NATIVE)
5068     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
5069   fi
5070 fi
5071
5072 if test "$wxUSE_INTL" = "yes" ; then
5073   if test "$wxUSE_FILE" != "yes"; then
5074     AC_MSG_WARN(I18n code requires wxFile... disabled)
5075   else
5076     AC_DEFINE(wxUSE_INTL)
5077     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
5078     GUIDIST="$GUIDIST INTL_DIST"
5079   fi
5080 fi
5081
5082 if test "$wxUSE_LOG" = "yes"; then
5083   AC_DEFINE(wxUSE_LOG)
5084
5085     if test "$wxUSE_LOGGUI" = "yes"; then
5086       AC_DEFINE(wxUSE_LOGGUI)
5087     fi
5088
5089     if test "$wxUSE_LOGWINDOW" = "yes"; then
5090       AC_DEFINE(wxUSE_LOGWINDOW)
5091     fi
5092
5093     if test "$wxUSE_LOGDIALOG" = "yes"; then
5094       AC_DEFINE(wxUSE_LOG_DIALOG)
5095     fi
5096
5097     dnl the keyboard sample requires wxUSE_LOG
5098     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS keyboard"
5099 fi
5100
5101 if test "$wxUSE_LONGLONG" = "yes"; then
5102   AC_DEFINE(wxUSE_LONGLONG)
5103 fi
5104
5105 if test "$wxUSE_GEOMETRY" = "yes"; then
5106   AC_DEFINE(wxUSE_GEOMETRY)
5107 fi
5108
5109 if test "$wxUSE_STREAMS" = "yes" ; then
5110   AC_DEFINE(wxUSE_STREAMS)
5111 fi
5112
5113 dnl ---------------------------------------------------------------------------
5114 dnl time/date functions
5115 dnl ------------------------------------------------------------------------
5116
5117 if test "$wxUSE_DATETIME" = "yes"; then
5118     dnl check for strptime
5119     AC_CHECK_FUNCS(strptime)
5120
5121     dnl check for timezone variable
5122     dnl   doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead
5123     AC_CACHE_CHECK(for timezone variable in <time.h>,
5124                    wx_cv_var_timezone,
5125                    [
5126                         AC_TRY_COMPILE(
5127                             [
5128                                 #include <time.h>
5129                             ],
5130                             [
5131                                 int tz;
5132                                 tz = timezone;
5133                             ],
5134                             [
5135                                 wx_cv_var_timezone=timezone
5136                             ],
5137                             [
5138                                 AC_TRY_COMPILE(
5139                                     [
5140                                         #include <time.h>
5141                                     ],
5142                                     [
5143                                         int tz;
5144                                         tz = _timezone;
5145                                     ],
5146                                     [
5147                                         wx_cv_var_timezone=_timezone
5148                                     ],
5149                                     [
5150                                         AC_TRY_COMPILE(
5151                                             [
5152                                                 #include <time.h>
5153                                             ],
5154                                             [
5155                                                 int tz;
5156                                                 tz = __timezone;
5157                                             ],
5158                                             [
5159                                                 wx_cv_var_timezone=__timezone
5160                                             ],
5161                                             [
5162                                                 if test "$USE_DOS" = 0 ; then
5163                                                     AC_MSG_WARN(no timezone variable, will use tm_gmtoff instead)
5164                                                 fi
5165                                             ]
5166                                         )
5167                                     ]
5168                                 )
5169                             ]
5170                         )
5171                    ]
5172     )
5173
5174     dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
5175     if test "x$wx_cv_var_timezone" != x ; then
5176         AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
5177     fi
5178
5179     dnl check for localtime (it's POSIX, but the check can do no harm...)
5180     AC_CHECK_FUNCS(localtime)
5181
5182     if test "$ac_cv_func_localtime" = "yes"; then
5183         AC_CACHE_CHECK(for tm_gmtoff in struct tm,
5184                        wx_cv_struct_tm_has_gmtoff,
5185         [
5186             AC_TRY_COMPILE(
5187                 [
5188                     #include <time.h>
5189                 ],
5190                 [
5191                     struct tm tm;
5192                     tm.tm_gmtoff++;
5193                 ],
5194                 [
5195                     wx_cv_struct_tm_has_gmtoff=yes
5196                 ],
5197                 wx_cv_struct_tm_has_gmtoff=no
5198             )
5199         ])
5200     fi
5201
5202     if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then
5203         AC_DEFINE(WX_GMTOFF_IN_TM)
5204     fi
5205
5206     dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
5207     dnl function to be used for high resolution timers
5208     AC_CHECK_FUNCS(gettimeofday ftime, break)
5209
5210     if test "$ac_cv_func_gettimeofday" = "yes"; then
5211         AC_CACHE_CHECK([whether gettimeofday takes two arguments],
5212                        wx_cv_func_gettimeofday_has_2_args,
5213         [
5214             dnl on some _really_ old systems it takes only 1 argument
5215             AC_LANG_SAVE
5216             AC_LANG_CPLUSPLUS
5217
5218             AC_TRY_COMPILE(
5219                 [
5220                     #include <sys/time.h>
5221                     #include <unistd.h>
5222                 ],
5223                 [
5224                     struct timeval tv;
5225                     gettimeofday(&tv, NULL);
5226                 ],
5227                 wx_cv_func_gettimeofday_has_2_args=yes,
5228                 AC_TRY_COMPILE(
5229                     [
5230                         #include <sys/time.h>
5231                         #include <unistd.h>
5232                     ],
5233                     [
5234                         struct timeval tv;
5235                         gettimeofday(&tv);
5236                     ],
5237                     wx_cv_func_gettimeofday_has_2_args=no,
5238                     [
5239                         AC_MSG_WARN([failed to determine number of gettimeofday() arguments])
5240                         wx_cv_func_gettimeofday_has_2_args=unknown
5241                     ]
5242                 )
5243             )
5244             AC_LANG_RESTORE
5245         ])
5246
5247         if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
5248             AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
5249         fi
5250     fi
5251
5252     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
5253 fi
5254
5255 dnl ------------------------------------------------------------------------
5256 dnl wxSocket
5257 dnl ------------------------------------------------------------------------
5258
5259 dnl VZ: the GUI hooks wxSocket needs are not implemented yet in some toolkits
5260 if test "$wxUSE_SOCKETS" = "yes"; then
5261     if test "$wxUSE_MGL" = "1"; then
5262         AC_MSG_WARN([wxSocket not yet supported under MGL... disabled])
5263         wxUSE_SOCKETS="no"
5264     fi
5265 fi
5266
5267 if test "$wxUSE_SOCKETS" = "yes"; then
5268     dnl under MSW we always have sockets
5269     if test "$TOOLKIT" != "MSW"; then
5270         dnl under Solaris and OS/2, socket functions live in -lsocket
5271         AC_CHECK_FUNC(socket,,
5272             [
5273                 AC_CHECK_LIB(socket, socket,
5274                     if test "$INET_LINK" != " -lsocket"; then
5275                         INET_LINK="$INET_LINK -lsocket"
5276                     fi,
5277                     [
5278                         AC_MSG_WARN([socket library not found - sockets will be disabled])
5279                         wxUSE_SOCKETS=no
5280                     ]
5281                 )
5282             ]
5283         )
5284     fi
5285 fi
5286
5287 if test "$wxUSE_SOCKETS" = "yes" ; then
5288     dnl this test may be appropriate if building under cygwin
5289     dnl right now I'm assuming it also uses the winsock stuff
5290     dnl like mingw does..  -- RL
5291     if test "$TOOLKIT" != "MSW"; then
5292         dnl determine the type of third argument for getsockname
5293         dnl This test needs to be done in C++ mode since gsocket.cpp now
5294         dnl is C++ code and pointer cast that are possible even without
5295         dnl warning in C still fail in C++.
5296         AC_LANG_PUSH(C++)
5297         AC_CACHE_CHECK([what is the type of the third argument of getsockname],
5298                        wx_cv_type_getsockname3,
5299             [
5300                 AC_TRY_COMPILE(
5301                     [
5302                         #include <sys/types.h>
5303                         #include <sys/socket.h>
5304                     ],
5305                     [
5306                         socklen_t len;
5307                         getsockname(0, 0, &len);
5308                     ],
5309                     wx_cv_type_getsockname3=socklen_t,
5310                     [
5311                         dnl the compiler will compile the version with size_t
5312                         dnl even if the real type of the last parameter is int
5313                         dnl but it should give at least a warning about
5314                         dnl converting between incompatible pointer types, so
5315                         dnl try to use it to get the correct behaviour at
5316                         dnl least with gcc (otherwise we'd always use size_t)
5317                         CFLAGS_OLD="$CFLAGS"
5318                         if test "$GCC" = yes ; then
5319                             CFLAGS="$CFLAGS -Werror"
5320                         fi
5321
5322                         AC_TRY_COMPILE(
5323                             [
5324                                 #include <sys/types.h>
5325                                 #include <sys/socket.h>
5326                             ],
5327                             [
5328                                 size_t len;
5329                                 getsockname(0, 0, &len);
5330                             ],
5331                             wx_cv_type_getsockname3=size_t,
5332                             AC_TRY_COMPILE(
5333                                 [
5334                                     #include <sys/types.h>
5335                                     #include <sys/socket.h>
5336                                 ],
5337                                 [
5338                                     int len;
5339                                     getsockname(0, 0, &len);
5340                                 ],
5341                                 wx_cv_type_getsockname3=int,
5342                                 wx_cv_type_getsockname3=unknown
5343                             )
5344                         )
5345
5346                         CFLAGS="$CFLAGS_OLD"
5347                     ]
5348                 )
5349             ])
5350
5351         if test "$wx_cv_type_getsockname3" = "unknown"; then
5352             wxUSE_SOCKETS=no
5353             AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
5354         else
5355             AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
5356         fi
5357         dnl Do this again for getsockopt as it may be different
5358         AC_CACHE_CHECK([what is the type of the fifth argument of getsockopt],
5359                        wx_cv_type_getsockopt5,
5360             [
5361                 AC_TRY_COMPILE(
5362                     [
5363                         #include <sys/types.h>
5364                         #include <sys/socket.h>
5365                     ],
5366                     [
5367                         socklen_t len;
5368                         getsockopt(0, 0, 0, 0, &len);
5369                     ],
5370                     wx_cv_type_getsockopt5=socklen_t,
5371                     [
5372                         dnl the compiler will compile the version with size_t
5373                         dnl even if the real type of the last parameter is int
5374                         dnl but it should give at least a warning about
5375                         dnl converting between incompatible pointer types, so
5376                         dnl try to use it to get the correct behaviour at
5377                         dnl least with gcc (otherwise we'd always use size_t)
5378                         CFLAGS_OLD="$CFLAGS"
5379                         if test "$GCC" = yes ; then
5380                             CFLAGS="$CFLAGS -Werror"
5381                         fi
5382
5383                         AC_TRY_COMPILE(
5384                             [
5385                                 #include <sys/types.h>
5386                                 #include <sys/socket.h>
5387                             ],
5388                             [
5389                                 size_t len;
5390                                 getsockopt(0, 0, 0, 0, &len);
5391                             ],
5392                             wx_cv_type_getsockopt5=size_t,
5393                             AC_TRY_COMPILE(
5394                                 [
5395                                     #include <sys/types.h>
5396                                     #include <sys/socket.h>
5397                                 ],
5398                                 [
5399                                     int len;
5400                                     getsockopt(0, 0, 0, 0, &len);
5401                                 ],
5402                                 wx_cv_type_getsockopt5=int,
5403                                 wx_cv_type_getsockopt5=unknown
5404                             )
5405                         )
5406
5407                         CFLAGS="$CFLAGS_OLD"
5408                     ]
5409                 )
5410             ])
5411
5412         if test "$wx_cv_type_getsockopt5" = "unknown"; then
5413             wxUSE_SOCKETS=no
5414             AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
5415         else
5416             AC_DEFINE_UNQUOTED(SOCKOPTLEN_T, $wx_cv_type_getsockopt5)
5417         fi
5418         AC_LANG_POP
5419     fi
5420 fi
5421
5422 if test "$wxUSE_SOCKETS" = "yes" ; then
5423     AC_DEFINE(wxUSE_SOCKETS)
5424     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
5425 fi
5426
5427 if test "$wxUSE_PROTOCOL" = "yes"; then
5428     if test "$wxUSE_SOCKETS" != "yes"; then
5429         AC_MSG_WARN(Protocol classes require sockets... disabled)
5430         wxUSE_PROTOCOL=no
5431     fi
5432 fi
5433
5434 if test "$wxUSE_PROTOCOL" = "yes"; then
5435     AC_DEFINE(wxUSE_PROTOCOL)
5436
5437     if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then
5438         AC_DEFINE(wxUSE_PROTOCOL_HTTP)
5439     fi
5440     if test "$wxUSE_PROTOCOL_FTP" = "yes"; then
5441         AC_DEFINE(wxUSE_PROTOCOL_FTP)
5442     fi
5443     if test "$wxUSE_PROTOCOL_FILE" = "yes"; then
5444         AC_DEFINE(wxUSE_PROTOCOL_FILE)
5445     fi
5446 else
5447     if test "$wxUSE_FS_INET" = "yes"; then
5448         AC_MSG_WARN([HTTP filesystem require protocol classes... disabled])   
5449         wxUSE_FS_INET="no"
5450     fi
5451 fi
5452
5453 if test "$wxUSE_URL" = "yes"; then
5454     if test "$wxUSE_PROTOCOL" != "yes"; then
5455         AC_MSG_WARN(wxURL class requires wxProtocol... disabled)
5456         wxUSE_URL=no
5457     fi
5458     if test "$wxUSE_URL" = "yes"; then
5459         AC_DEFINE(wxUSE_URL)
5460     fi
5461 fi
5462
5463 if test "$wxUSE_FS_INET" = "yes"; then
5464   AC_DEFINE(wxUSE_FS_INET)
5465 fi
5466
5467 dnl ---------------------------------------------------------------------------
5468 dnl Joystick support
5469 dnl ---------------------------------------------------------------------------
5470
5471 if test "$wxUSE_GUI" = "yes" -a "$wxUSE_JOYSTICK" = "yes"; then
5472     wxUSE_JOYSTICK=no
5473
5474     dnl under MSW we always have joystick support
5475     if test "$TOOLKIT" = "MSW"; then
5476         wxUSE_JOYSTICK=yes
5477
5478     dnl mac only available on darwin
5479     elif test "$TOOLKIT" = "MAC" -o "$TOOLKIT" = "COCOA"; then
5480         if test "$USE_DARWIN" = 1; then
5481             dnl check for a bug in the headers, some have bad setEventCallout
5482             AC_MSG_CHECKING([headers have declarations needed for joystick support])
5483             AC_LANG_PUSH(C++)
5484             AC_TRY_COMPILE( [ #include <IOKit/hid/IOHIDLib.h> ],
5485                             [ IOHIDQueueInterface *qi = NULL;
5486                               IOHIDCallbackFunction cb = NULL;
5487                               qi->setEventCallout(NULL, cb, NULL, NULL); ],
5488                             [ wxUSE_JOYSTICK=yes ]
5489                           )
5490             AC_LANG_POP
5491             AC_MSG_RESULT($wxUSE_JOYSTICK)
5492         fi
5493
5494     dnl joystick support is only for Linux 2.1.x or greater
5495     else
5496         AC_CHECK_HEADERS(linux/joystick.h, wxUSE_JOYSTICK=yes)
5497     fi
5498
5499     if test "$wxUSE_JOYSTICK" = "yes"; then
5500         AC_DEFINE(wxUSE_JOYSTICK)
5501         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
5502     else
5503         AC_MSG_WARN(Joystick not supported by this system... disabled)           
5504     fi
5505 fi
5506
5507
5508 dnl ---------------------------------------------------------------------------
5509 dnl String stuff
5510 dnl ---------------------------------------------------------------------------
5511
5512 if test "$wxUSE_FONTMAP" = "yes" ; then
5513   AC_DEFINE(wxUSE_FONTMAP)
5514 fi
5515
5516 if test "$wxUSE_UNICODE" = "yes" ; then
5517   AC_DEFINE(wxUSE_UNICODE)
5518
5519   if test "$USE_WIN32" != 1; then
5520       wxUSE_UNICODE_MSLU=no
5521   fi
5522
5523   if test "$USE_WIN32" = 1 -a "$wxUSE_UNICODE_MSLU" = "yes"; then
5524         AC_CHECK_LIB(unicows,main,
5525             [
5526                 AC_DEFINE(wxUSE_UNICODE_MSLU)
5527             ],
5528             [
5529                 AC_MSG_WARN([Compiler doesn't support MSLU (libunicows.a), disabled.
5530                              Applications will only run on Windows NT/2000/XP!])
5531                 wxUSE_UNICODE_MSLU=no
5532             ])
5533     fi
5534 fi
5535
5536 if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
5537   AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
5538 fi
5539
5540 dnl ----------------------------------------------------------------
5541 dnl Register PostScript options for makefiles and setup.h
5542 dnl ----------------------------------------------------------------
5543
5544 if test "$wxUSE_POSTSCRIPT" = "yes" ; then
5545   AC_DEFINE(wxUSE_POSTSCRIPT)
5546 fi
5547
5548 AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
5549
5550 AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
5551
5552 dnl ---------------------------------------------------------------------------
5553 dnl big GUI components: MDI, doc/view, printing, help, ...
5554 dnl ---------------------------------------------------------------------------
5555
5556 if test "$wxUSE_CONSTRAINTS" = "yes"; then
5557     AC_DEFINE(wxUSE_CONSTRAINTS)
5558     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
5559 fi
5560
5561 if test "$wxUSE_MDI" = "yes"; then
5562     AC_DEFINE(wxUSE_MDI)
5563
5564     if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
5565         AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
5566         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
5567     fi
5568 fi
5569
5570 if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
5571     AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
5572     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
5573     if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
5574         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
5575     fi
5576 fi
5577
5578 if test "$wxUSE_HELP" = "yes"; then
5579     AC_DEFINE(wxUSE_HELP)
5580     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
5581
5582     if test "$wxUSE_MSW" = 1; then
5583       if test "$wxUSE_MS_HTML_HELP" = "yes"; then
5584         AC_DEFINE(wxUSE_MS_HTML_HELP)
5585       fi
5586     fi
5587
5588     if test "$wxUSE_WXHTML_HELP" = "yes"; then
5589       if test "$wxUSE_HTML" = "yes"; then
5590         AC_DEFINE(wxUSE_WXHTML_HELP)
5591       else
5592         AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled)
5593         wxUSE_WXHTML_HELP=no
5594       fi
5595     fi
5596 fi
5597
5598 if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
5599     if test "$wxUSE_CONSTRAINTS" != "yes"; then
5600         AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
5601     else
5602         AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
5603     fi
5604     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
5605 fi
5606
5607 if test "$wxUSE_PROLOGIO" = "yes" -o  "$wxUSE_RESOURCES" = "yes"; then
5608     AC_MSG_ERROR([wxExpr and old-style resources are now available in contrib only])
5609 fi
5610
5611 dnl ---------------------------------------------------------------------------
5612 dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
5613 dnl ---------------------------------------------------------------------------
5614
5615 dnl check for ole headers and disable a few features requiring it if not
5616 dnl present (earlier versions of mingw32 don't have ole2.h)
5617 if test "$USE_WIN32" = 1 -a \( "$wxUSE_DATAOBJ"       = "yes" \
5618                           -o "$wxUSE_CLIPBOARD"     = "yes" \
5619                           -o "$wxUSE_OLE"     = "yes" \
5620                           -o "$wxUSE_DRAG_AND_DROP" = "yes" \) ; then
5621     AC_CHECK_HEADERS(ole2.h)
5622
5623     if test "$ac_cv_header_ole2_h" = "yes" ; then
5624         if test "$GCC" = yes ; then
5625             AC_LANG_SAVE
5626             AC_LANG_CPLUSPLUS
5627
5628             AC_MSG_CHECKING([if g++ requires -fvtable-thunks])
5629             AC_TRY_COMPILE([#include <windows.h>
5630                             #include <ole2.h>],
5631                            [],
5632                            [AC_MSG_RESULT(no)],
5633                            [AC_MSG_RESULT(yes)
5634                             CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"])
5635             AC_LANG_RESTORE
5636             LIBS=" -lrpcrt4 -loleaut32 -lole32 -luuid$LIBS"
5637             if test "$wxUSE_OLE" = "yes" ; then
5638                 AC_DEFINE(wxUSE_OLE)
5639                 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS oleauto"
5640             fi
5641         fi
5642
5643         dnl for OLE clipboard and dnd
5644         if test "$wxUSE_DATAOBJ" = "yes" ; then
5645             AC_DEFINE(wxUSE_DATAOBJ)
5646         fi
5647     else
5648         AC_MSG_WARN([Some features disabled because OLE headers not found])
5649
5650         wxUSE_CLIPBOARD=no
5651         wxUSE_DRAG_AND_DROP=no
5652         wxUSE_DATAOBJ=no
5653         wxUSE_OLE=no
5654     fi
5655
5656     if test "$wxUSE_METAFILE" = "yes"; then
5657         AC_DEFINE(wxUSE_METAFILE)
5658
5659         dnl this one should probably be made separately configurable
5660         AC_DEFINE(wxUSE_ENH_METAFILE)
5661     fi
5662 fi
5663
5664 if test "$wxUSE_IPC" = "yes"; then
5665     if test "$wxUSE_SOCKETS" != "yes" -a "$USE_WIN32" != 1; then
5666         AC_MSG_WARN(wxWidgets IPC classes require sockets... disabled)
5667         wxUSE_IPC=no
5668     fi
5669
5670     if test "$wxUSE_IPC" = "yes"; then
5671         AC_DEFINE(wxUSE_IPC)
5672         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ipc"
5673     fi
5674 fi
5675
5676 if test "$wxUSE_CLIPBOARD" = "yes"; then
5677     if test "$wxUSE_MGL" = 1; then
5678         AC_MSG_WARN([Clipboard not yet supported under MGL... disabled])
5679         wxUSE_CLIPBOARD=no
5680     fi
5681
5682     if test "$wxUSE_CLIPBOARD" = "yes"; then
5683         AC_DEFINE(wxUSE_CLIPBOARD)
5684
5685         dnl required by clipboard code in configuration check
5686         AC_DEFINE(wxUSE_DATAOBJ)
5687     fi
5688 fi
5689
5690 if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
5691     if test "$wxUSE_GTK" = 1; then
5692         if test "$WXGTK12" != 1; then
5693             AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2... disabled])
5694             wxUSE_DRAG_AND_DROP=no
5695         fi
5696     fi
5697
5698     if test "$wxUSE_MOTIF" = 1; then
5699         AC_MSG_WARN([Drag and drop not yet supported under Motif... disabled])
5700         wxUSE_DRAG_AND_DROP=no
5701     fi
5702
5703     if test "$wxUSE_X11" = 1; then
5704         AC_MSG_WARN([Drag and drop not yet supported under X11... disabled])
5705         wxUSE_DRAG_AND_DROP=no
5706     fi
5707
5708     if test "$wxUSE_MGL" = 1; then
5709         AC_MSG_WARN([Drag and drop not yet supported under MGL... disabled])
5710         wxUSE_DRAG_AND_DROP=no
5711     fi
5712
5713     if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
5714         AC_DEFINE(wxUSE_DRAG_AND_DROP)
5715     fi
5716
5717 fi
5718
5719 if test "$wxUSE_DRAG_AND_DROP" = "yes" -o "$wxUSE_CLIPBOARD" = "yes"; then
5720     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
5721 fi
5722
5723 if test "$wxUSE_SPLINES" = "yes" ; then
5724   AC_DEFINE(wxUSE_SPLINES)
5725 fi
5726
5727 if test "$wxUSE_MOUSEWHEEL" = "yes" ; then
5728   AC_DEFINE(wxUSE_MOUSEWHEEL)
5729 fi
5730
5731 dnl ---------------------------------------------------------------------------
5732 dnl GUI controls
5733 dnl ---------------------------------------------------------------------------
5734
5735 USES_CONTROLS=0
5736 if test "$wxUSE_CONTROLS" = "yes"; then
5737   USES_CONTROLS=1
5738 fi
5739
5740 if test "$wxUSE_ACCEL" = "yes"; then
5741   AC_DEFINE(wxUSE_ACCEL)
5742   USES_CONTROLS=1
5743 fi
5744
5745 if test "$wxUSE_BUTTON" = "yes"; then
5746   AC_DEFINE(wxUSE_BUTTON)
5747   USES_CONTROLS=1
5748 fi
5749
5750 if test "$wxUSE_BMPBUTTON" = "yes"; then
5751   AC_DEFINE(wxUSE_BMPBUTTON)
5752   USES_CONTROLS=1
5753 fi
5754
5755 if test "$wxUSE_CALCTRL" = "yes"; then
5756   AC_DEFINE(wxUSE_CALENDARCTRL)
5757   USES_CONTROLS=1
5758   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
5759 fi
5760
5761 if test "$wxUSE_CARET" = "yes"; then
5762   AC_DEFINE(wxUSE_CARET)
5763   USES_CONTROLS=1
5764   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
5765 fi
5766
5767 if test "$wxUSE_COMBOBOX" = "yes"; then
5768   AC_DEFINE(wxUSE_COMBOBOX)
5769   USES_CONTROLS=1
5770 fi
5771
5772 if test "$wxUSE_CHOICE" = "yes"; then
5773   AC_DEFINE(wxUSE_CHOICE)
5774   USES_CONTROLS=1
5775 fi
5776
5777 if test "$wxUSE_CHOICEBOOK" = "yes"; then
5778     AC_DEFINE(wxUSE_CHOICEBOOK)
5779     USES_CONTROLS=1
5780 fi
5781
5782 if test "$wxUSE_CHECKBOX" = "yes"; then
5783   AC_DEFINE(wxUSE_CHECKBOX)
5784   USES_CONTROLS=1
5785 fi
5786
5787 if test "$wxUSE_CHECKLST" = "yes"; then
5788   AC_DEFINE(wxUSE_CHECKLISTBOX)
5789   USES_CONTROLS=1
5790   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
5791 fi
5792
5793 if test "$wxUSE_DATEPICKCTRL" = "yes"; then
5794   AC_DEFINE(wxUSE_DATEPICKCTRL)
5795   USES_CONTROLS=1
5796 fi
5797
5798 if test "$wxUSE_DISPLAY" = "yes"; then
5799     AC_DEFINE(wxUSE_DISPLAY)
5800     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display multimon"
5801 fi
5802
5803 if test "$wxUSE_GAUGE" = "yes"; then
5804   AC_DEFINE(wxUSE_GAUGE)
5805   USES_CONTROLS=1
5806 fi
5807
5808 if test "$wxUSE_GRID" = "yes"; then
5809   AC_DEFINE(wxUSE_GRID)
5810   USES_CONTROLS=1
5811   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
5812 fi
5813
5814 if test "$wxUSE_IMAGLIST" = "yes"; then
5815     AC_DEFINE(wxUSE_IMAGLIST)
5816 fi
5817
5818 if test "$wxUSE_LISTBOOK" = "yes"; then
5819     AC_DEFINE(wxUSE_LISTBOOK)
5820     USES_CONTROLS=1
5821 fi
5822
5823 if test "$wxUSE_LISTBOX" = "yes"; then
5824     AC_DEFINE(wxUSE_LISTBOX)
5825     USES_CONTROLS=1
5826     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listbox"
5827 fi
5828
5829 if test "$wxUSE_LISTCTRL" = "yes"; then
5830     if test "$wxUSE_IMAGLIST" = "yes"; then
5831         AC_DEFINE(wxUSE_LISTCTRL)
5832         USES_CONTROLS=1
5833         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
5834     else
5835         AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
5836     fi
5837 fi
5838
5839 if test "$wxUSE_NOTEBOOK" = "yes"; then
5840     AC_DEFINE(wxUSE_NOTEBOOK)
5841     USES_CONTROLS=1
5842     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
5843 fi
5844
5845 dnl if test "$wxUSE_PROPSHEET" = "yes"; then
5846 dnl     AC_DEFINE(wxUSE_PROPSHEET)
5847 dnl     USES_CONTROLS=1
5848 dnl     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist"
5849 dnl fi
5850
5851 if test "$wxUSE_RADIOBOX" = "yes"; then
5852     AC_DEFINE(wxUSE_RADIOBOX)
5853     USES_CONTROLS=1
5854 fi
5855
5856 if test "$wxUSE_RADIOBTN" = "yes"; then
5857     AC_DEFINE(wxUSE_RADIOBTN)
5858     USES_CONTROLS=1
5859 fi
5860
5861 if test "$wxUSE_SASH" = "yes"; then
5862     AC_DEFINE(wxUSE_SASH)
5863     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
5864 fi
5865
5866 if test "$wxUSE_SCROLLBAR" = "yes"; then
5867     AC_DEFINE(wxUSE_SCROLLBAR)
5868     USES_CONTROLS=1
5869     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
5870 fi
5871
5872 if test "$wxUSE_SLIDER" = "yes"; then
5873     AC_DEFINE(wxUSE_SLIDER)
5874     USES_CONTROLS=1
5875 fi
5876
5877 if test "$wxUSE_SPINBTN" = "yes"; then
5878     AC_DEFINE(wxUSE_SPINBTN)
5879     USES_CONTROLS=1
5880 fi
5881
5882 if test "$wxUSE_SPINCTRL" = "yes"; then
5883     AC_DEFINE(wxUSE_SPINCTRL)
5884     USES_CONTROLS=1
5885 fi
5886
5887 if test "$wxUSE_SPLITTER" = "yes"; then
5888     AC_DEFINE(wxUSE_SPLITTER)
5889     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
5890 fi
5891
5892 if test "$wxUSE_STATBMP" = "yes"; then
5893     AC_DEFINE(wxUSE_STATBMP)
5894     USES_CONTROLS=1
5895 fi
5896
5897 if test "$wxUSE_STATBOX" = "yes"; then
5898     AC_DEFINE(wxUSE_STATBOX)
5899     USES_CONTROLS=1
5900 fi
5901
5902 if test "$wxUSE_STATTEXT" = "yes"; then
5903     AC_DEFINE(wxUSE_STATTEXT)
5904     USES_CONTROLS=1
5905 fi
5906
5907 if test "$wxUSE_STATLINE" = "yes"; then
5908     AC_DEFINE(wxUSE_STATLINE)
5909     USES_CONTROLS=1
5910 fi
5911
5912 if test "$wxUSE_STATUSBAR" = "yes"; then
5913     dnl this will get undefined in wx/chkconf.h if it's not supported
5914     AC_DEFINE(wxUSE_NATIVE_STATUSBAR)
5915     AC_DEFINE(wxUSE_STATUSBAR)
5916     USES_CONTROLS=1
5917
5918     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
5919 fi
5920
5921 if test "$wxUSE_TABDIALOG" = "yes"; then
5922     AC_DEFINE(wxUSE_TAB_DIALOG)
5923 fi
5924
5925 if test "$wxUSE_TEXTCTRL" = "yes"; then
5926     AC_DEFINE(wxUSE_TEXTCTRL)
5927     USES_CONTROLS=1
5928     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
5929 fi
5930
5931 if test "$wxUSE_TOGGLEBTN" = "yes"; then
5932     if test "$wxUSE_COCOA" = 1 ; then
5933         AC_MSG_WARN([Toggle button not yet supported under Mac OS X... disabled])
5934         wxUSE_TOGGLEBTN=no
5935     fi
5936     if test "$wxUSE_UNIVERSAL" = "yes"; then
5937         AC_MSG_WARN([Toggle button not yet supported under wxUniversal... disabled])
5938         wxUSE_TOGGLEBTN=no
5939     fi
5940
5941     if test "$wxUSE_TOGGLEBTN" = "yes"; then
5942         AC_DEFINE(wxUSE_TOGGLEBTN)
5943         USES_CONTROLS=1
5944     fi
5945 fi
5946
5947 if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
5948     AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
5949     wxUSE_TOOLBAR="yes"
5950     USES_CONTROLS=1
5951 fi
5952
5953 if test "$wxUSE_TOOLBAR" = "yes"; then
5954     AC_DEFINE(wxUSE_TOOLBAR)
5955     USES_CONTROLS=1
5956
5957     dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
5958     if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
5959         wxUSE_TOOLBAR_NATIVE="yes"
5960     fi
5961
5962     if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
5963         AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
5964         USES_CONTROLS=1
5965     fi
5966
5967     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
5968 fi
5969
5970 if test "$wxUSE_TOOLTIPS" = "yes"; then
5971     if test "$wxUSE_MOTIF" = 1; then
5972         AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled])
5973     else
5974         if test "$wxUSE_UNIVERSAL" = "yes"; then
5975             AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled])
5976         else
5977             AC_DEFINE(wxUSE_TOOLTIPS)
5978         fi
5979     fi
5980 fi
5981
5982 if test "$wxUSE_TREECTRL" = "yes"; then
5983     if test "$wxUSE_IMAGLIST" = "yes"; then
5984         AC_DEFINE(wxUSE_TREECTRL)
5985         USES_CONTROLS=1
5986         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
5987     else
5988         AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
5989     fi
5990 fi
5991
5992 if test "$wxUSE_POPUPWIN" = "yes"; then
5993     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
5994         AC_MSG_WARN([Popup window not yet supported under Mac OS X... disabled])
5995     else
5996         if test "$wxUSE_PM" = 1; then
5997             AC_MSG_WARN([wxPopupWindow not yet supported under PM... disabled])
5998         else
5999             AC_DEFINE(wxUSE_POPUPWIN)
6000             SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS popup"
6001
6002             USES_CONTROLS=1
6003         fi
6004     fi
6005 fi
6006
6007 if test "$wxUSE_DIALUP_MANAGER" = "yes"; then
6008     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
6009         AC_MSG_WARN([Dialup manager not yet supported under Mac OS X... disabled])
6010     else
6011         AC_DEFINE(wxUSE_DIALUP_MANAGER)
6012         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
6013     fi
6014 fi
6015
6016 if test "$wxUSE_TIPWINDOW" = "yes"; then
6017     if test "$wxUSE_PM" = 1; then
6018         AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled])
6019     else
6020         AC_DEFINE(wxUSE_TIPWINDOW)
6021     fi
6022 fi
6023
6024 if test "$USES_CONTROLS" = 1; then
6025     AC_DEFINE(wxUSE_CONTROLS)
6026 fi
6027
6028 dnl ---------------------------------------------------------------------------
6029 dnl misc options
6030 dnl ---------------------------------------------------------------------------
6031
6032 dnl please keep the settings below in alphabetical order
6033 if test "$wxUSE_ACCESSIBILITY" = "yes"; then
6034     AC_DEFINE(wxUSE_ACCESSIBILITY)
6035     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS access"
6036 fi
6037
6038 if test "$wxUSE_DRAGIMAGE" = "yes"; then
6039     AC_DEFINE(wxUSE_DRAGIMAGE)
6040     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
6041 fi
6042
6043 if test "$wxUSE_EXCEPTIONS" = "yes"; then
6044     if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
6045         AC_MSG_WARN([--enable-exceptions can't be used with --enable-no_exceptions])
6046     else
6047         AC_DEFINE(wxUSE_EXCEPTIONS)
6048         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS except"
6049     fi
6050 fi
6051
6052 USE_HTML=0
6053 if test "$wxUSE_HTML" = "yes"; then
6054     AC_DEFINE(wxUSE_HTML)
6055     USE_HTML=1
6056     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html html/about html/help html/helpview html/printing html/test html/virtual html/widget html/zip htlbox"
6057     if test "$wxUSE_MAC" = 1; then
6058         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html/htmlctrl"
6059     fi
6060 fi
6061 if test "$wxUSE_WEBKIT" = "yes"; then
6062     if test "$wxUSE_MAC" = 1 -a "$USE_DARWIN" = 1; then
6063         old_CPPFLAGS="$CPPFLAGS"
6064         CPPFLAGS="$CPPFLAGS -x objective-c++"
6065         AC_CHECK_HEADER([WebKit/HIWebView.h],
6066                         [
6067                            AC_DEFINE(wxUSE_WEBKIT)
6068                            WEBKIT_LINK="-framework WebKit"
6069                         ],
6070                         [
6071                            AC_MSG_WARN([WebKit headers not found; disabling wxWebKit])
6072                            wxUSE_WEBKIT=no
6073                         ],
6074                         [#include <Carbon/Carbon.h>])
6075         CPPFLAGS="$old_CPPFLAGS"
6076     elif test "$wxUSE_COCOA" = 1; then
6077         AC_DEFINE(wxUSE_WEBKIT)
6078     else
6079         wxUSE_WEBKIT=no
6080     fi
6081 fi
6082
6083 USE_XRC=0
6084 if test "$wxUSE_XRC" = "yes"; then
6085     if test "$wxUSE_XML" != "yes"; then
6086         AC_MSG_WARN([XML library not built, XRC resources disabled])
6087         wxUSE_XRC=no
6088     else
6089         AC_DEFINE(wxUSE_XRC)
6090         USE_XRC=1
6091         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS xrc"
6092     fi
6093 fi
6094
6095 if test "$wxUSE_MENUS" = "yes"; then
6096     AC_DEFINE(wxUSE_MENUS)
6097     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
6098 fi
6099
6100 if test "$wxUSE_METAFILE" = "yes"; then
6101     AC_DEFINE(wxUSE_METAFILE)
6102 fi
6103
6104 if test "$wxUSE_MIMETYPE" = "yes"; then
6105     AC_DEFINE(wxUSE_MIMETYPE)
6106 fi
6107
6108 if test "$wxUSE_MINIFRAME" = "yes"; then
6109     AC_DEFINE(wxUSE_MINIFRAME)
6110     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
6111 fi
6112
6113 if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
6114     AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
6115     if test "$TOOLKIT" = "MSW" -o "$TOOLKIT" = "GTK" -o "$TOOLKIT" = "X11" -o \
6116         "$TOOLKIT" = "MOTIF" -o "$TOOLKIT" = "COCOA"; then
6117         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar"
6118     fi
6119 fi
6120
6121
6122 if test "$wxUSE_VALIDATORS" = "yes"; then
6123     AC_DEFINE(wxUSE_VALIDATORS)
6124     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
6125 fi
6126
6127 if test "$wxUSE_PALETTE" = "yes" ; then
6128   AC_DEFINE(wxUSE_PALETTE)
6129 fi
6130
6131 if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then
6132   dnl Must be done this late because -lunicows must be before all the other libs
6133   LIBS=" -lunicows $LIBS"
6134 fi
6135
6136 dnl ---------------------------------------------------------------------------
6137 dnl wxImage options
6138 dnl ---------------------------------------------------------------------------
6139
6140 if test "$wxUSE_IMAGE" = "yes" ; then
6141     AC_DEFINE(wxUSE_IMAGE)
6142
6143     if test "$wxUSE_GIF" = "yes" ; then
6144       AC_DEFINE(wxUSE_GIF)
6145     fi
6146
6147     if test "$wxUSE_PCX" = "yes" ; then
6148       AC_DEFINE(wxUSE_PCX)
6149     fi
6150
6151     if test "$wxUSE_IFF" = "yes" ; then
6152       AC_DEFINE(wxUSE_IFF)
6153     fi
6154
6155     if test "$wxUSE_PNM" = "yes" ; then
6156       AC_DEFINE(wxUSE_PNM)
6157     fi
6158
6159     if test "$wxUSE_XPM" = "yes" ; then
6160       AC_DEFINE(wxUSE_XPM)
6161     fi
6162
6163     if test "$wxUSE_ICO_CUR" = "yes" ; then
6164       AC_DEFINE(wxUSE_ICO_CUR)
6165     fi
6166 fi
6167
6168 dnl ---------------------------------------------------------------------------
6169 dnl common dialogs
6170 dnl ---------------------------------------------------------------------------
6171
6172 if test "$wxUSE_CHOICEDLG" = "yes"; then
6173     AC_DEFINE(wxUSE_CHOICEDLG)
6174 fi
6175
6176 if test "$wxUSE_COLOURDLG" = "yes"; then
6177     AC_DEFINE(wxUSE_COLOURDLG)
6178 fi
6179
6180 if test "$wxUSE_FILEDLG" = "yes"; then
6181     AC_DEFINE(wxUSE_FILEDLG)
6182 fi
6183
6184 if test "$wxUSE_FINDREPLDLG" = "yes"; then
6185     AC_DEFINE(wxUSE_FINDREPLDLG)
6186 fi
6187
6188 if test "$wxUSE_FONTDLG" = "yes"; then
6189     AC_DEFINE(wxUSE_FONTDLG)
6190 fi
6191
6192 if test "$wxUSE_DIRDLG" = "yes"; then
6193     if test "$wxUSE_TREECTRL" != "yes"; then
6194         AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
6195     else
6196         AC_DEFINE(wxUSE_DIRDLG)
6197     fi
6198 fi
6199
6200 if test "$wxUSE_MSGDLG" = "yes"; then
6201     AC_DEFINE(wxUSE_MSGDLG)
6202 fi
6203
6204 if test "$wxUSE_NUMBERDLG" = "yes"; then
6205     AC_DEFINE(wxUSE_NUMBERDLG)
6206 fi
6207
6208 if test "$wxUSE_PROGRESSDLG" = "yes"; then
6209     if test "$wxUSE_CONSTRAINTS" != "yes"; then
6210        AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
6211     else
6212         AC_DEFINE(wxUSE_PROGRESSDLG)
6213     fi
6214 fi
6215
6216 if test "$wxUSE_SPLASH" = "yes"; then
6217     AC_DEFINE(wxUSE_SPLASH)
6218     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splash"
6219 fi
6220
6221 if test "$wxUSE_STARTUP_TIPS" = "yes"; then
6222     if test "$wxUSE_CONSTRAINTS" != "yes"; then
6223        AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
6224     else
6225         AC_DEFINE(wxUSE_STARTUP_TIPS)
6226     fi
6227 fi
6228
6229 if test "$wxUSE_TEXTDLG" = "yes"; then
6230     AC_DEFINE(wxUSE_TEXTDLG)
6231 fi
6232
6233 if test "$wxUSE_WIZARDDLG" = "yes"; then
6234     AC_DEFINE(wxUSE_WIZARDDLG)
6235     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard"
6236 fi
6237
6238 dnl ---------------------------------------------------------------------------
6239 dnl wxMediaCtrl 
6240 dnl ---------------------------------------------------------------------------
6241
6242 if test "$wxUSE_MEDIACTRL" = "yes"; then
6243     dnl -----------------------------------------------------------------------
6244     dnl GStreamer 
6245     dnl -----------------------------------------------------------------------
6246     if test "$wxUSE_GTK" = 1; then
6247         wxUSE_GSTREAMER="yes"
6248         
6249         dnl -------------------------------------------------------------------
6250         dnl Test for gstreamer module from pkg-config
6251         dnl -------------------------------------------------------------------
6252         PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.8,
6253         [
6254             CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS"
6255             LIBS="$LIBS $GSTREAMER_LIBS -lgstplay-0.8"
6256         ],
6257         [
6258             AC_MSG_WARN([GStreamer installation not found])
6259             wxUSE_GSTREAMER="no"
6260         ])
6261         
6262         dnl -------------------------------------------------------------------
6263         dnl Perform a check for a GStreamer element using gst-inspect
6264         dnl Thomas Vander Stichele <thomas at apestaart dot org>
6265         dnl Last modification: 25/01/2005
6266         dnl
6267         dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
6268         dnl -------------------------------------------------------------------
6269         AC_DEFUN([AM_GST_ELEMENT_CHECK],
6270         [
6271         if test "x$GST_INSPECT" == "x"; then
6272             AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
6273         fi
6274         
6275         if test "x$GST_INSPECT" != "x"; then
6276             AC_MSG_CHECKING(GStreamer element $1)
6277             if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
6278             AC_MSG_RESULT(found.)
6279             $2
6280             else
6281             AC_MSG_RESULT(not found.)
6282             $3
6283             fi
6284         fi
6285         ])
6286         
6287         dnl -------------------------------------------------------------------
6288         dnl Test for x video sink (video useless without)
6289         dnl -------------------------------------------------------------------
6290         AM_GST_ELEMENT_CHECK(xvimagesink,[], 
6291                         [
6292                             wxUSE_GSTREAMER="no"
6293                             AC_MSG_WARN([x video sink not found - cannot use GStreamer])
6294                         ])
6295                             
6296         dnl -------------------------------------------------------------------
6297         dnl Check for gstplay-0.8 lib and corresponding x overlay header
6298         dnl -------------------------------------------------------------------        
6299         AC_CHECK_HEADER(gst/xoverlay/xoverlay.h, [], 
6300                         [
6301                             wxUSE_GSTREAMER="no"
6302                             AC_MSG_WARN([xoverlay header not found, cannot use GStreamer])
6303                         ],
6304                         [#include <gst/gst.h>])
6305         
6306         AC_MSG_CHECKING([for gstplay 0.8])
6307         WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],gstplay-0.8)           
6308         
6309         if test "$ac_find_libraries" = "" ; then
6310             AC_MSG_RESULT([no])
6311             wxUSE_GSTREAMER="no"
6312         else
6313             AC_MSG_RESULT([yes])        
6314         fi
6315         
6316         if test "$wxUSE_GSTREAMER" = "yes"; then
6317             AC_DEFINE(wxUSE_GSTREAMER)
6318             AC_MSG_RESULT([GStreamer detection successful])
6319         fi
6320     fi
6321     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mediaplayer"
6322     AC_DEFINE(wxUSE_MEDIACTRL)
6323 fi
6324
6325 dnl ---------------------------------------------------------------------------
6326 dnl get the string with OS info - used by wxGetOsDescription() on MacOS X
6327 dnl ---------------------------------------------------------------------------
6328
6329 if test "$cross_compiling" = "yes"; then
6330     dnl Use best guess from host as we can't use uname when cross compiling
6331     OSINFO="\"$host\""
6332 else
6333     dnl attualy work out OS version
6334     OSINFO=`uname -s -r -m`
6335     OSINFO="\"$OSINFO\""
6336 fi
6337
6338 AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
6339
6340 dnl ---------------------------------------------------------------------------
6341 dnl define the variable containing the installation prefix (used in dcpsg.cpp)
6342 dnl ---------------------------------------------------------------------------
6343
6344 if test "x$prefix" != "xNONE"; then
6345     wxPREFIX=$prefix
6346 else
6347     wxPREFIX=$ac_default_prefix
6348 fi
6349
6350 AC_DEFINE_UNQUOTED(wxINSTALL_PREFIX, "$wxPREFIX")
6351
6352
6353 dnl ---------------------------------------------------------------------------
6354 dnl define variables with all built libraries for wx-config
6355 dnl ---------------------------------------------------------------------------
6356
6357 CORE_BASE_LIBS="net base"
6358 CORE_GUI_LIBS="adv core"
6359
6360 if test "$wxUSE_XML" = "yes" ; then
6361     CORE_BASE_LIBS="xml $CORE_BASE_LIBS"
6362 fi
6363 if test "$wxUSE_ODBC" != "no" ; then
6364     CORE_BASE_LIBS="odbc $CORE_BASE_LIBS"
6365     CORE_GUI_LIBS="dbgrid $CORE_GUI_LIBS"
6366 fi
6367 if test "$wxUSE_HTML" = "yes" ; then
6368     CORE_GUI_LIBS="html $CORE_GUI_LIBS"
6369 fi
6370 if test "$wxUSE_DEBUGREPORT" = "yes" ; then
6371     CORE_GUI_LIBS="qa $CORE_GUI_LIBS"
6372 fi
6373 if test "$wxUSE_XRC" = "yes" ; then
6374     CORE_GUI_LIBS="xrc $CORE_GUI_LIBS"
6375 fi
6376
6377 if test "$wxUSE_GUI" != "yes"; then
6378     CORE_GUI_LIBS=""
6379 fi
6380
6381 AC_SUBST(CORE_BASE_LIBS)
6382 AC_SUBST(CORE_GUI_LIBS)
6383
6384
6385 dnl ---------------------------------------------------------------------------
6386 dnl Output the makefiles and such from the results found above
6387 dnl ---------------------------------------------------------------------------
6388
6389 dnl all additional libraries (except wxWidgets itself) we link with
6390
6391 dnl note that we always link with -lm except for Mac OS X
6392 dnl extended.c uses floor() and is always linked in
6393
6394 if test "$wxUSE_MAC" = 1 ; then
6395     if test "$wxUSE_SOUND" = "yes" || test "$wxUSE_MEDIACTRL" = "yes"; then
6396         if test "$USE_DARWIN" = 1; then
6397             LDFLAGS="$LDFLAGS -framework QuickTime"
6398         else
6399             LDFLAGS="$LDFLAGS -lQuickTimeLib"
6400         fi
6401     fi
6402     if test "$USE_DARWIN" = 1; then
6403         LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System"
6404     else
6405         LDFLAGS="$LDFLAGS -lCarbonLib"
6406     fi
6407 fi
6408 if test "$wxUSE_COCOA" = 1 ; then
6409     LDFLAGS="$LDFLAGS -framework IOKit -framework Cocoa"
6410     if test "$wxUSE_MEDIACTRL" = "yes"; then
6411         LDFLAGS="$LDFLAGS -framework QuickTime"
6412     fi
6413 fi
6414 if test "$USE_DARWIN" = 1 -a "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1 ; then
6415     LDFLAGS="$LDFLAGS -framework IOKit -framework CoreServices -framework System -framework ApplicationServices"
6416 fi
6417
6418 dnl FIXME: should this be covered by the conditional above
6419 dnl given the -lm comment there?  Or should that comment (and
6420 dnl this one) be removed..   [ 7 Nov 2001 ]
6421
6422 LIBS="$ZLIB_LINK $POSIX4_LINK $INET_LINK $WCHAR_LINK $DL_LINK $LIBS"
6423
6424 dnl Only add the -lm library if floating point functions cannot be used
6425 dnl without it.  This check is important on cygwin because of the bizarre
6426 dnl way that they have organized functions into libraries.  On cygwin, both
6427 dnl libc.a and libm.a are symbolic links to a single lib libcygwin.a.  This
6428 dnl means that
6429 dnl   1) linking with -lm is not necessary, and
6430 dnl   2) linking with -lm is dangerous if the order of libraries is wrong
6431 dnl In particular, if you compile any program with -mno-cygwin and link with
6432 dnl -lm, it will crash instantly when it is run.  This happens because the
6433 dnl linker incorrectly links the Cygwin libm.a (==libcygwin.a), which replaces
6434 dnl the ___main function instead of allowing it to be defined by
6435 dnl /usr/lib/mingw/libmingw32.a as it should be.
6436 dnl
6437 dnl On MacOS X, this test will find that -lm is unnecessary and leave it out.
6438 dnl
6439 dnl Just check a few floating point functions. If they are all found without
6440 dnl -lm, then we must not need -lm.
6441 have_cos=0
6442 have_floor=0
6443 AC_CHECK_FUNCS(cos, have_cos=1)
6444 AC_CHECK_FUNCS(floor, have_floor=1)
6445 AC_MSG_CHECKING(if floating point functions link without -lm)
6446 if test "$have_cos" = 1 -a "$have_floor" = 1; then
6447     AC_MSG_RESULT(yes)
6448 else
6449     AC_MSG_RESULT(no)
6450     LIBS="$LIBS -lm"
6451     # use different functions to avoid configure caching
6452     have_sin=0
6453     have_ceil=0
6454     AC_CHECK_FUNCS(sin, have_sin=1)
6455     AC_CHECK_FUNCS(ceil, have_ceil=1)
6456     AC_MSG_CHECKING(if floating point functions link with -lm)
6457     if test "$have_sin" = 1 -a "$have_ceil" = 1; then
6458         AC_MSG_RESULT(yes)
6459     else
6460         AC_MSG_RESULT(no)
6461         # not sure we should warn the user, crash, etc.
6462     fi
6463 fi
6464
6465 if test "$wxUSE_GUI" = "yes"; then
6466
6467     dnl TODO add checks that these samples will really compile (i.e. all the
6468     dnl      library features they need are present)
6469
6470     dnl TODO some samples are never built so far: mfc (requires VC++)
6471     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS artprov controls dialogs drawing \
6472                      dynamic erase event exec font image minimal mobile \
6473                      mobile/wxedit mobile/styles propsize render \
6474                      richedit rotate shaped vscroll widgets"
6475
6476     if test "$wxUSE_MONOLITHIC" != "yes"; then
6477         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS console"
6478     fi
6479     if test "$TOOLKIT" = "MSW"; then
6480         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS regtest"
6481         if test "$wxUSE_UNIVERSAL" != "yes"; then
6482             SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ownerdrw nativdlg"
6483         fi
6484     fi
6485     if test "$TOOLKIT" = "PM" -a "$wxUSE_UNIVERSAL" != "yes"; then
6486         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ownerdrw"
6487     fi
6488 else
6489     SAMPLES_SUBDIRS="console"
6490 fi
6491
6492
6493 dnl all -I options we must pass to the compiler
6494 dnl
6495 dnl note that the order is somewhat important: wxWidgets headers should
6496 dnl come first and the one with setup.h should be before $(top_srcdir)/include
6497 dnl in case the latter contains setup.h used by non-autoconf makefiles (e.g.
6498 dnl CodeWarrior):
6499 INCLUDES="-I\${top_builddir}lib/wx/include/${TOOLCHAIN_FULLNAME} \
6500 -I\${top_srcdir}/include $TOOLKIT_INCLUDE"
6501
6502 dnl C/C++ compiler options used to compile wxWidgets
6503 if test "$GXX" = yes ; then
6504     dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
6505     CWARNINGS="-Wall" 
6506     CXXWARNINGS="$CWARNINGS -Wno-ctor-dtor-privacy" 
6507     dnl should enable this one day...
6508     dnl CXXWARNINGS="-Wall -Werror"
6509 fi
6510
6511 EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE"
6512
6513 dnl remove the extra white space from the cc/c++/ld options
6514 CPPFLAGS=`echo $WXDEBUG_DEFINE $INCLUDES $CPPFLAGS`
6515 CFLAGS=`echo $CODE_GEN_FLAGS $EXTRA_CFLAGS $CFLAGS $CWARNINGS`
6516 CXXFLAGS=`echo $CODE_GEN_FLAGS $CODE_GEN_FLAGS_CXX $EXTRA_CFLAGS $CXXFLAGS $CXXWARNINGS`
6517     
6518 if test "x$MWCC" = "xyes"; then
6519     dnl Correct MW 8.3 to be more similar to GCC.  In particular we
6520     dnl must use <regex.h> from system not our local copy on OS X,
6521     dnl but must use local not system on OS 9.
6522     dnl The following should make all -I paths usable for <> includes
6523     dnl while first checking in real system paths.  With 8.3 using
6524     dnl -gccincludes it will actually check local paths before system
6525     dnl even for <> which is totally wrong.
6526
6527     dnl Note that because this absolutely needs to be before any -I
6528     dnl that we have to tack it on to the end of the compiler commandline.
6529     CC="$CC -cwd source -I-"
6530     CXX="$CXX -cwd source -I-"
6531 fi
6532
6533
6534 LIBS=`echo $LIBS`
6535 EXTRALIBS="$LDFLAGS $LDFLAGS_VERSIONING $LIBS $DMALLOC_LIBS"
6536 EXTRALIBS_XML="$EXPAT_LINK"
6537 EXTRALIBS_HTML="$MSPACK_LINK"
6538 EXTRALIBS_ODBC="$ODBC_LINK"
6539 if test "$wxUSE_GUI" = "yes"; then
6540     EXTRALIBS_GUI=`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_GNOMEPRINT`
6541 fi
6542 if test "$wxUSE_OPENGL" = "yes"; then
6543     EXTRALIBS_OPENGL="$LDFLAGS_GL $OPENGL_LIBS"
6544 fi
6545     
6546 LDFLAGS="$LDFLAGS $PROFILE"
6547
6548 dnl wxGTK does not need TOOLKIT includes in wx-config
6549 if test "$wxUSE_GTK" = 1; then
6550     WXCONFIG_INCLUDE=
6551 else
6552     WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
6553 fi
6554
6555 WXCONFIG_EXTRALIBS="$LIBS"
6556
6557 dnl wx-config must output builtin 3rd party libs in --libs in static build:
6558 if test "$wxUSE_REGEX" = "builtin" ; then
6559     wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty"
6560 fi
6561 if test "$wxUSE_EXPAT" = "builtin" ; then
6562     wxconfig_3rdparty="expat $wxconfig_3rdparty"
6563 fi
6564 if test "$wxUSE_ODBC" = "builtin" ; then
6565     wxconfig_3rdparty="odbc $wxconfig_3rdparty"
6566 fi
6567 if test "$wxUSE_LIBTIFF" = "builtin" ; then
6568     wxconfig_3rdparty="tiff $wxconfig_3rdparty"
6569 fi
6570 if test "$wxUSE_LIBJPEG" = "builtin" ; then
6571     wxconfig_3rdparty="jpeg $wxconfig_3rdparty"
6572 fi
6573 if test "$wxUSE_LIBPNG" = "builtin" ; then
6574     wxconfig_3rdparty="png $wxconfig_3rdparty"
6575 fi
6576 if test "$wxUSE_ZLIB" = "builtin" ; then
6577     wxconfig_3rdparty="zlib $wxconfig_3rdparty"
6578 fi
6579
6580 for i in $wxconfig_3rdparty ; do
6581     WXCONFIG_EXTRALIBS="-lwx${i}${lib_debug_suffix}${WX_LIB_FLAVOUR}-${WX_RELEASE}${HOST_SUFFIX} $WXCONFIG_EXTRALIBS"
6582 done
6583
6584
6585 if test "x$wxUSE_UNIVERSAL" = "xyes" ; then
6586     WXUNIV=1
6587 else
6588     WXUNIV=0
6589 fi
6590
6591 AC_SUBST(wxUSE_ZLIB)
6592 AC_SUBST(wxUSE_REGEX)
6593 AC_SUBST(wxUSE_EXPAT)
6594 AC_SUBST(wxUSE_ODBC)
6595 AC_SUBST(wxUSE_LIBJPEG)
6596 AC_SUBST(wxUSE_LIBPNG)
6597 AC_SUBST(wxUSE_LIBTIFF)
6598
6599 if test $wxUSE_MONOLITHIC = "yes" ; then
6600     MONOLITHIC=1
6601 else
6602     MONOLITHIC=0
6603 fi
6604
6605 if test $wxUSE_PLUGINS = "yes" ; then
6606     USE_PLUGINS=1
6607 else
6608     USE_PLUGINS=0
6609 fi
6610
6611 if test $wxUSE_ODBC != "no" ; then
6612     USE_ODBC=1
6613 else
6614     USE_ODBC=0
6615 fi
6616
6617 if test "$wxUSE_DEBUGREPORT" = "yes" ; then
6618     USE_QA=1
6619 else
6620     USE_QA=0
6621 fi
6622
6623 if test $wxUSE_OFFICIAL_BUILD = "yes" ; then
6624     OFFICIAL_BUILD=1
6625 else
6626     OFFICIAL_BUILD=0
6627 fi
6628
6629 AC_SUBST(VENDOR)
6630 AC_SUBST(OFFICIAL_BUILD)
6631 AC_SUBST(WX_FLAVOUR)
6632 AC_SUBST(WX_LIB_FLAVOUR)
6633
6634 AC_SUBST(WXUNIV)
6635 AC_SUBST(MONOLITHIC)
6636 AC_SUBST(USE_PLUGINS)
6637 AC_SUBST(LIBS)
6638 AC_SUBST(EXTRALIBS)
6639 AC_SUBST(EXTRALIBS_XML)
6640 AC_SUBST(EXTRALIBS_HTML)
6641 AC_SUBST(EXTRALIBS_ODBC)
6642 AC_SUBST(EXTRALIBS_GUI)
6643 AC_SUBST(EXTRALIBS_OPENGL)
6644 AC_SUBST(EXTRALIBS_SDL)
6645 AC_SUBST(WITH_PLUGIN_SDL)
6646 AC_SUBST(EXTRALIBS_GNOMEPRINT)
6647 AC_SUBST(UNICODE)
6648 AC_SUBST(BUILD)
6649 AC_SUBST(DEBUG_INFO)
6650 AC_SUBST(DEBUG_FLAG)
6651 TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr "[[A-Z]]" "[[a-z]]"`
6652 AC_SUBST(TOOLKIT_LOWERCASE)
6653 AC_SUBST(TOOLKIT_VERSION)
6654 AC_SUBST(SAMPLES_RPATH_FLAG)
6655 AC_SUBST(SAMPLES_RPATH_POSTLINK)
6656 AC_SUBST(HOST_SUFFIX)
6657 AC_SUBST(CPPUNIT_CFLAGS)
6658 AC_SUBST(CPPUNIT_LIBS)
6659
6660 case "$TOOLKIT" in
6661     GTK)
6662         TOOLKIT_USER="GTK+"
6663         if test "$WXGTK20" = 1; then
6664             TOOLKIT_USER="$TOOLKIT_USER 2"
6665         fi
6666         ;;
6667
6668     *)
6669         TOOLKIT_USER=$TOOLKIT_LOWERCASE
6670         ;;
6671 esac
6672
6673 if test "$wxUSE_WINE" = "yes"; then
6674     BAKEFILE_FORCE_PLATFORM=win32
6675 fi
6676
6677 AC_BAKEFILE([m4_include(autoconf_inc.m4)])
6678
6679 if test "$wxUSE_WINE" = "yes"; then
6680     RESCOMP=wrc
6681 fi
6682
6683 if test "$wxUSE_SHARED" = "yes"; then
6684
6685     dnl We get the shared build linker from bakefile, since it
6686     dnl moved all the logic for this out of this file and into
6687     dnl its own macro.  But it can't decide on whether to return
6688     dnl us $(VAR), ${VAR}, or the present expansion of VAR.
6689     dnl So normalise and expand everything here now, because its
6690     dnl not going to change inside wx-config anyway.
6691     sanitised_bakefile_mess=`echo "$SHARED_LD_CXX" | tr -d '()'`
6692     EXE_LINKER=`eval echo "$sanitised_bakefile_mess"`
6693
6694     dnl Need addtional flag on OS/2, so override bakefiles value
6695     dnl (there currently is no suitable variable to which the
6696     dnl  missing flags could be added, AFAICS. SN, 18.12.2004. )
6697     case "${host}" in
6698       *-pc-os2_emx | *-pc-os2-emx )
6699         SHARED_LD_CC="`pwd`/dllar.sh -name-mangler-script ./dllnames.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
6700         SHARED_LD_CXX="`pwd`/dllar.sh -name-mangler-script ./dllnames.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
6701         cp -p ${srcdir}/src/os2/dllnames.sh .
6702         cp -p ${srcdir}/src/os2/dllar.sh .
6703       ;;
6704     esac
6705 else
6706
6707     dnl No bakefile support for static builds, but this should be ok for most.
6708     EXE_LINKER="$CXX -o"
6709
6710 fi
6711 if test "$wxUSE_OMF" = "yes"; then
6712     case "${host}" in
6713       *-pc-os2_emx | *-pc-os2-emx )
6714         LDFLAGS="$LDFLAGS -Zlinker /EXEPACK"
6715         LDFLAGS_GUI="-Zlinker /PMTYPE:PM"
6716         WXCONFIG_LDFLAGS_GUI="-Zlinker /PMTYPE:PM"
6717       ;;
6718     esac
6719 fi
6720
6721 if test $GCC_PCH = 1 ; then
6722     CPPFLAGS="-DWX_PRECOMP $CPPFLAGS"
6723 fi
6724
6725 dnl FIXME: This is a temporary measure until the need for it is also
6726 dnl        removed from the headers.
6727 CPPFLAGS="-DNO_GCC_PRAGMA $CPPFLAGS"
6728
6729
6730 dnl for convenience, sort the samples in alphabetical order
6731 dnl
6732 dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
6733 dnl       in this list - hence uniq. But normally, this shouldn't be needed!
6734 dnl
6735 dnl       Unfortunately, there is a bug in OS/2's tr, such that
6736 dnl       tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
6737 dnl       only removes the Unix-like part of the introduced line break.
6738 SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
6739
6740 dnl subtle bakefile goop.
6741 dnl Used in wx-config now too, as its STATIC_FLAG with different makeup.
6742 dnl I wish we would have called it something less likely to clash with
6743 dnl things though.
6744 AC_SUBST(SHARED)
6745
6746 dnl global options
6747 AC_SUBST(WX_LIBRARY_BASENAME_NOGUI)
6748 AC_SUBST(WX_LIBRARY_BASENAME_GUI)
6749
6750 dnl debugging options
6751 AC_SUBST(WXDEBUG_DEFINE)
6752
6753 dnl toolkit options
6754 AC_SUBST(USE_GUI)
6755 AC_SUBST(AFMINSTALL)
6756 AC_SUBST(WIN32INSTALL)
6757 AC_SUBST(TOOLKIT)
6758 AC_SUBST(TOOLKIT_DIR)
6759 AC_SUBST(TOOLCHAIN_NAME)
6760 AC_SUBST(TOOLCHAIN_FULLNAME)
6761 AC_SUBST(TOOLCHAIN_DEFS)
6762 AC_SUBST(TOOLCHAIN_DLL_DEFS)
6763
6764 dnl wx-config options
6765 AC_SUBST(host_alias)
6766 AC_SUBST(cross_compiling)
6767 AC_SUBST(WIDGET_SET)
6768 AC_SUBST(WX_RELEASE)
6769 AC_SUBST(WX_VERSION)
6770 AC_SUBST(WX_SUBVERSION)
6771 AC_SUBST(WX_CHARTYPE)
6772 AC_SUBST(WX_DEBUGTYPE)
6773 AC_SUBST(WXCONFIG_EXTRALIBS)
6774 AC_SUBST(WXCONFIG_INCLUDE)
6775 AC_SUBST(WXCONFIG_RPATH)
6776 AC_SUBST(WXCONFIG_LDFLAGS_GUI)
6777 AC_SUBST(WX_LARGEFILE_FLAGS)
6778 AC_SUBST(CODE_GEN_FLAGS)
6779 AC_SUBST(CODE_GEN_FLAGS_CXX)
6780 AC_SUBST(EXE_LINKER)
6781
6782 dnl distribution vars
6783 AC_SUBST(GUIDIST)
6784 AC_SUBST(DISTDIR)
6785
6786 dnl additional subdirectories where we will build
6787 AC_SUBST(SAMPLES_SUBDIRS)
6788
6789 dnl additional libraries and linker settings
6790 AC_SUBST(LDFLAGS)
6791 AC_SUBST(LDFLAGS_GL)
6792 AC_SUBST(OPENGL_LIBS)
6793 AC_SUBST(DMALLOC_LIBS)
6794 AC_SUBST(WX_VERSION_TAG)
6795
6796 dnl additional resurces settings
6797 AC_SUBST(RESCOMP)
6798 AC_SUBST(RESFLAGS)
6799 AC_SUBST(RESPROGRAMOBJ)
6800 AC_SUBST(WX_RESOURCES_MACOSX_ASCII)
6801 AC_SUBST(WX_RESOURCES_MACOSX_DATA)
6802
6803 dnl additional for Mac OS X
6804 AC_SUBST(DEREZ)
6805 AC_SUBST(LIBWXMACRES)
6806 AC_SUBST(MACRESCOMP)
6807 AC_SUBST(MACSETFILE)
6808 AC_SUBST(MACRESWXCONFIG)
6809
6810 dnl other tools
6811 AC_SUBST(GCC)
6812 AC_SUBST(DLLTOOL)
6813
6814
6815 dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
6816 dnl itself (this macro is required if SUBDIRS variable is used in Makefile.am
6817 dnl - and we do use it)
6818 AC_PROG_MAKE_SET
6819
6820
6821 AC_CONFIG_HEADERS([lib/wx/include/${TOOLCHAIN_FULLNAME}/wx/setup.h:setup.h.in])
6822
6823 AC_CONFIG_FILES([ lib/wx/config/${TOOLCHAIN_FULLNAME}:wx-config.in ],
6824                 [ chmod +x lib/wx/config/${TOOLCHAIN_FULLNAME} ],
6825                 [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}" ])
6826
6827 AC_CONFIG_FILES([ lib/wx/config/inplace-${TOOLCHAIN_FULLNAME}:wx-config-inplace.in ],
6828                 [ chmod +x lib/wx/config/inplace-${TOOLCHAIN_FULLNAME} ],
6829                 [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}" ])
6830
6831 AC_CONFIG_FILES([ version-script Makefile ])
6832
6833 AC_CONFIG_COMMANDS([ wx-config
6834                    ],
6835                    [ rm -f wx-config
6836                      ${LN_S} lib/wx/config/inplace-${TOOLCHAIN_FULLNAME} wx-config
6837                    ],
6838                    [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}"
6839                      LN_S="${LN_S}"
6840                    ])
6841
6842 dnl This would give us us build dir that in every significant way
6843 dnl resembles an installed wx in prefix=$builddir.  It is troublesome
6844 dnl though in this form because AC_CONFIG_LINKS will fail for directories
6845 dnl on platforms that do not have symlinks.
6846 dnl AC_CONFIG_LINKS([ include/wx-$WX_RELEASE$WX_FLAVOUR:include ])
6847 dnl AC_CONFIG_LINKS([ contrib/include ])
6848
6849
6850 dnl Configure samples, contrib etc. directories, but only if they are present:
6851 if test "$wxUSE_GUI" = "yes"; then
6852     SUBDIRS="samples demos utils contrib"
6853 else dnl we build wxBase only
6854     dnl there are no wxBase programs in contrib nor demos
6855     SUBDIRS="samples utils"
6856 fi
6857 dnl Add tests to the list of subdirs if cppunit 1.8.0+ is detected
6858 AM_PATH_CPPUNIT(1.8.0, [SUBDIRS="$SUBDIRS tests"])
6859
6860 for subdir in `echo $SUBDIRS`; do
6861     if test -d ${srcdir}/${subdir} ; then
6862         if test "$wxUSE_GUI" = "yes"; then
6863             if test ${subdir} = "samples"; then
6864                 dnl only take those samples which compile in the current
6865                 dnl configuration and which exist
6866                 makefiles="samples/Makefile.in $makefiles"
6867                 for sample in `echo $SAMPLES_SUBDIRS`; do
6868                     if test -d $srcdir/samples/$sample; then
6869                         makefiles="samples/$sample/Makefile.in $makefiles"
6870                     fi
6871                 done
6872             else
6873                 dnl assume that everything compiles for utils &c
6874                 dnl any that shouldn't be built can be added to
6875                 dnl DISABLED_UTILS, DISABLED_CONTRIB or DISABLED_DEMOS
6876                 disabled_var=DISABLED_`echo $subdir | tr [[a-z]] [[A-Z]]`;
6877                 eval "disabled=\$$disabled_var"
6878                 disabled=/`echo X $disabled | sed 's@ @/|/@g'`/
6879                 makefiles=`(cd $srcdir ; find $subdir -name Makefile.in) | egrep -v "$disabled"`
6880             fi
6881         else dnl we build wxBase only
6882             dnl don't take all samples/utils, just those which build with
6883             dnl wxBase
6884             if test ${subdir} = "samples"; then
6885                 makefiles="samples/Makefile.in samples/console/Makefile.in"
6886             elif test ${subdir} = "utils"; then
6887                 makefiles=""
6888                 for util in HelpGen tex2rtf ; do
6889                     if test -d $srcdir/utils/$util ; then
6890                         makefiles="utils/$util/Makefile.in \
6891                                    utils/$util/src/Makefile.in \
6892                                    $makefiles"
6893                     fi
6894                 done
6895             else dnl assume that everything compiles for tests
6896                 makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)`
6897             fi
6898         fi
6899
6900         for mkin in $makefiles ; do
6901             mk=`echo $mkin | sed 's/Makefile\.in/Makefile/g'`
6902             AC_CONFIG_FILES([$mk])
6903         done
6904     fi
6905 done
6906
6907
6908 AC_OUTPUT
6909
6910 dnl report how we have been configured
6911 echo
6912 echo "Configured wxWidgets ${WX_VERSION} for \`${host}'"
6913 echo ""
6914 echo "  Which GUI toolkit should wxWidgets use?                 ${TOOLKIT_USER:-base only}"
6915 echo "  Should wxWidgets be compiled into single library?       ${wxUSE_MONOLITHIC:-yes}"
6916
6917 echo "  Should wxWidgets be compiled in debug mode?             ${wxUSE_DEBUG:-no}"
6918 echo "  Should wxWidgets be linked as a shared library?         ${wxUSE_SHARED:-no}"
6919 echo "  Should wxWidgets be compiled in Unicode mode?           ${wxUSE_UNICODE:-no}"
6920
6921 echo "  What level of wxWidgets compatibility should be enabled?"
6922 echo "                                       wxWidgets 2.2      ${WXWIN_COMPATIBILITY_2_2:-no}"
6923 echo "                                       wxWidgets 2.4      ${WXWIN_COMPATIBILITY_2_4:-yes}"
6924
6925 echo "  Which libraries should wxWidgets use?"
6926 echo "                                       jpeg               ${wxUSE_LIBJPEG-none}"
6927 echo "                                       png                ${wxUSE_LIBPNG-none}"
6928 echo "                                       regex              ${wxUSE_REGEX}"
6929 echo "                                       tiff               ${wxUSE_LIBTIFF-none}"
6930 if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then
6931 echo "                                       xpm                ${wxUSE_LIBXPM-none}"
6932 fi
6933 echo "                                       zlib               ${wxUSE_ZLIB}"
6934 echo "                                       odbc               ${wxUSE_ODBC}"
6935 echo "                                       expat              ${wxUSE_EXPAT}"
6936 echo "                                       libmspack          ${wxUSE_LIBMSPACK}"
6937 echo "                                       sdl                ${wxUSE_LIBSDL}"
6938 echo "                                       gnomeprint         ${wxUSE_LIBGNOMEPRINT-none}"
6939
6940 echo ""
6941
6942 dnl vi: set et sts=4 sw=4 com=\:dnl: