Added preliminary resource fork support for wxCocoa
[wxWidgets.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_REVISION($Id$)dnl
3
4 dnl ---------------------------------------------------------------------------
5 dnl
6 dnl Top-level configure.in for wxWindows by Robert Roebling, Phil Blecker,
7 dnl Vadim Zeitlin and Ron Lee
8 dnl
9 dnl This script is under the wxWindows licence.
10 dnl
11 dnl Version: $Id$
12 dnl ---------------------------------------------------------------------------
13
14 dnl ---------------------------------------------------------------------------
15 dnl initialization
16 dnl ---------------------------------------------------------------------------
17
18 dnl the file passed to AC_INIT should be specific to our package
19 AC_INIT([wx-config.in])
20
21 dnl sets build, host, target variables and the same with _alias
22 AC_CANONICAL_SYSTEM
23
24 dnl When making releases do:
25 dnl
26 dnl WX_RELEASE_NUMBER += 1
27 dnl
28 dnl ..and update WX_CURRENT, WX_RELEASE and WX_AGE according to the
29 dnl following rules:
30 dnl
31 dnl    If any changes have been made to the public interface, that is if any
32 dnl    exported class, method, global or global type has been added, removed
33 dnl    or changed in any way, then do:  WX_CURRENT += 1
34 dnl
35 dnl    If source changes have been made that *do not* alter the public
36 dnl    interface then do:  WX_REVISION += 1
37 dnl    If WX_CURRENT was incremented (as above) instead do:  WX_REVISION = 0
38 dnl
39 dnl    If any public interface was added, do:  WX_AGE += 1
40 dnl    If any public interface was removed (or altered in a way effectively
41 dnl    removing the previous definition), instead do:  WX_AGE = 0
42 dnl
43 dnl When the major or minor version numbers are incremented, all the above
44 dnl variables should be reset to 0.
45 dnl
46 dnl The resulting library name will be of the form:
47 dnl   libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
48
49 WX_MAJOR_VERSION_NUMBER=2
50 WX_MINOR_VERSION_NUMBER=5
51 WX_RELEASE_NUMBER=0
52
53 WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER
54 WX_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER
55
56 WX_MSW_VERSION=$WX_MAJOR_VERSION_NUMBER$WX_MINOR_VERSION_NUMBER$WX_RELEASE_NUMBER
57
58 WX_CURRENT=0
59 WX_REVISION=0
60 WX_AGE=0
61
62
63 dnl ------------------------------------------------------------------------
64 dnl Check platform (host system)
65 dnl ------------------------------------------------------------------------
66
67 dnl assume Unix
68 USE_UNIX=1
69 USE_WIN32=0
70 USE_DOS=0
71 USE_BEOS=0
72 USE_MAC=0
73
74 USE_LINUX=
75 USE_SGI=
76 USE_HPUX=
77 USE_SYSV=
78 USE_SVR4=
79 USE_AIX=
80 USE_SUN=
81 USE_SOLARIS=
82 USE_SUNOS=
83 USE_ALPHA=
84 USE_OSF=
85 USE_BSD=
86 USE_DARWIN=
87 USE_FREEBSD=
88 USE_OPENBSD=
89 USE_NETBSD=
90 USE_VMS=
91 USE_ULTRIX=
92 USE_DATA_GENERAL=
93
94 dnl on some platforms xxx_r() functions are declared inside "#ifdef
95 dnl _REENTRANT" and it's easier to just define this symbol for these platforms
96 dnl than checking it during run-time
97 NEEDS_D_REENTRANT_FOR_R_FUNCS=0
98
99 dnl the list of all available toolkits
100 dnl
101 dnl update NUM_TOOLKITS calculation below when adding a new toolkit here!
102 ALL_TOOLKITS="COCOA GTK MAC MGL MICROWIN MOTIF MSW PM X11"
103
104 dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
105 dnl     which are either yes or no
106 DEFAULT_wxUSE_COCOA=0
107 DEFAULT_wxUSE_GTK=0
108 DEFAULT_wxUSE_MAC=0
109 DEFAULT_wxUSE_MGL=0
110 DEFAULT_wxUSE_MICROWIN=0
111 DEFAULT_wxUSE_MOTIF=0
112 DEFAULT_wxUSE_MSW=0
113 DEFAULT_wxUSE_PM=0
114 DEFAULT_wxUSE_X11=0
115
116 dnl these are the values which are really default for the given platform -
117 dnl they're not cached and are only used if no --with-toolkit was given *and*
118 dnl nothing was found in the cache
119 DEFAULT_DEFAULT_wxUSE_COCOA=0
120 DEFAULT_DEFAULT_wxUSE_GTK=0
121 DEFAULT_DEFAULT_wxUSE_MAC=0
122 DEFAULT_DEFAULT_wxUSE_MGL=0
123 DEFAULT_DEFAULT_wxUSE_MICROWIN=0
124 DEFAULT_DEFAULT_wxUSE_MOTIF=0
125 DEFAULT_DEFAULT_wxUSE_MSW=0
126 DEFAULT_DEFAULT_wxUSE_PM=0
127 DEFAULT_DEFAULT_wxUSE_X11=0
128
129 PROGRAM_EXT=
130 SO_SUFFIX=so
131
132 dnl to support a new system, you need to add its canonical name (as determined
133 dnl by config.sub or specified by the configure command line) to this "case"
134 dnl and also define the shared library flags below - search for
135 dnl SHARED_LIB_SETUP to find the exact place
136 case "${host}" in
137   *-hp-hpux* )
138     USE_HPUX=1
139     DEFAULT_DEFAULT_wxUSE_MOTIF=1
140     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
141     SO_SUFFIX=sl
142     AC_DEFINE(__HPUX__)
143   ;;
144   *-*-linux* )
145     USE_LINUX=1
146     AC_DEFINE(__LINUX__)
147     TMP=`uname -m`
148     if test "x$TMP" = "xalpha"; then
149       USE_ALPHA=1
150       AC_DEFINE(__ALPHA__)
151     fi
152     DEFAULT_DEFAULT_wxUSE_GTK=1
153   ;;
154   *-*-irix5* | *-*-irix6* )
155     USE_SGI=1
156     USE_SVR4=1
157     AC_DEFINE(__SGI__)
158     AC_DEFINE(__SVR4__)
159     DEFAULT_DEFAULT_wxUSE_MOTIF=1
160   ;;
161   *-*-solaris2* )
162     USE_SUN=1
163     USE_SOLARIS=1
164     USE_SVR4=1
165     AC_DEFINE(__SUN__)
166     AC_DEFINE(__SOLARIS__)
167     AC_DEFINE(__SVR4__)
168     DEFAULT_DEFAULT_wxUSE_MOTIF=1
169     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
170   ;;
171   *-*-sunos4* )
172     USE_SUN=1
173     USE_SUNOS=1
174     USE_BSD=1
175     AC_DEFINE(__SUN__)
176     AC_DEFINE(__SUNOS__)
177     AC_DEFINE(__BSD__)
178     DEFAULT_DEFAULT_wxUSE_MOTIF=1
179   ;;
180   *-*-freebsd*)
181     USE_BSD=1
182     USE_FREEBSD=1
183     AC_DEFINE(__FREEBSD__)
184     AC_DEFINE(__BSD__)
185     DEFAULT_DEFAULT_wxUSE_GTK=1
186   ;;
187   *-*-openbsd*)
188     USE_BSD=1
189     USE_OPENBSD=1
190     AC_DEFINE(__OPENBSD__)
191     AC_DEFINE(__BSD__)
192     DEFAULT_DEFAULT_wxUSE_GTK=1
193   ;;
194   *-*-netbsd*)
195     USE_BSD=1
196     USE_NETBSD=1
197     AC_DEFINE(__NETBSD__)
198     AC_DEFINE(__BSD__)
199     DEFAULT_DEFAULT_wxUSE_GTK=1
200   ;;
201   *-*-osf* )
202     USE_ALPHA=1
203     USE_OSF=1
204     AC_DEFINE(__ALPHA__)
205     AC_DEFINE(__OSF__)
206     DEFAULT_DEFAULT_wxUSE_MOTIF=1
207     NEEDS_D_REENTRANT_FOR_R_FUNCS=1
208   ;;
209   *-*-dgux5* )
210     USE_ALPHA=1
211     USE_SVR4=1
212     AC_DEFINE(__ALPHA__)
213     AC_DEFINE(__SVR4__)
214     DEFAULT_DEFAULT_wxUSE_MOTIF=1
215   ;;
216   *-*-sysv5* )
217     USE_SYSV=1
218     USE_SVR4=1
219     AC_DEFINE(__SYSV__)
220     AC_DEFINE(__SVR4__)
221     DEFAULT_DEFAULT_wxUSE_MOTIF=1
222   ;;
223   *-*-aix* )
224     USE_AIX=1
225     USE_SYSV=1
226     USE_SVR4=1
227     dnl quoting from http://www-1.ibm.com/servers/esdd/articles/gnu.html:
228     dnl
229     dnl     Both archive libraries and shared libraries on AIX have an .a
230     dnl     extension. This will explain why you can't link with an .so and
231     dnl     why it works with the name changed to .a.
232     SO_SUFFIX=a
233     AC_DEFINE(__AIX__)
234     AC_DEFINE(__SYSV__)
235     AC_DEFINE(__SVR4__)
236     DEFAULT_DEFAULT_wxUSE_MOTIF=1
237   ;;
238
239   *-*-cygwin* | *-*-mingw32* )
240     dnl MBN: some of the defines have been moved after toolkit detection
241     dnl      because for wxMotif/wxGTK/wxX11 to build on Cygwin
242     dnl      USE_UNIX  must be set and not USE_WIN32
243     SO_SUFFIX=dll
244     PROGRAM_EXT=".exe"
245     RESCOMP=windres
246     DEFAULT_DEFAULT_wxUSE_MSW=1
247   ;;
248
249   *-pc-msdosdjgpp )
250     USE_UNIX=0
251     USE_DOS=1
252     AC_DEFINE(__DOS__)
253     PROGRAM_EXT=".exe"
254     DEFAULT_DEFAULT_wxUSE_MGL=1
255     dnl DJGPP needs explicit -lstdc++ for some reason (VS: mayb some versions only?)
256     LIBS="$LIBS -lstdc++"
257   ;;
258
259   *-pc-os2_emx | *-pc-os2-emx )
260     AC_DEFINE(__EMX__)
261     PROGRAM_EXT=".exe"
262     DEFAULT_DEFAULT_wxUSE_PM=1
263   ;;
264
265   powerpc-*-darwin* )
266     dnl PowerPC Darwin based distributions (including Mac OS X)
267     USE_BSD=1
268     USE_DARWIN=1
269     SO_SUFFIX=dylib
270     AC_DEFINE(__BSD__)
271     AC_DEFINE(__DARWIN__)
272     AC_DEFINE(__POWERPC__)
273     AC_DEFINE(TARGET_CARBON)
274     DEFAULT_DEFAULT_wxUSE_MAC=1
275   ;;
276
277   *-*-beos* )
278     dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this
279     USE_BEOS=1
280     AC_DEFINE(__BEOS__)
281   ;;
282
283   *)
284     AC_MSG_ERROR(unknown system type ${host}.)
285 esac
286
287 dnl ---------------------------------------------------------------------------
288 dnl command line options for configure
289 dnl ---------------------------------------------------------------------------
290
291 dnl the default values for all options - we collect them all here to simplify
292 dnl modification of the default values (for example, if the defaults for some
293 dnl platform should be changed, it can be done here too)
294 dnl
295 dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above
296
297 WX_ARG_CACHE_INIT
298
299 dnl useful to test the compilation with minimum options, define as 0 for normal
300 dnl usage
301 DEBUG_CONFIGURE=0
302 if test $DEBUG_CONFIGURE = 1; then
303   DEFAULT_wxUSE_UNIVERSAL=no
304
305   DEFAULT_wxUSE_NANOX=no
306
307   DEFAULT_wxUSE_THREADS=yes
308
309   DEFAULT_wxUSE_SHARED=yes
310   DEFAULT_wxUSE_SONAME=no
311   DEFAULT_wxUSE_OPTIMISE=no
312   DEFAULT_wxUSE_PROFILE=no
313   DEFAULT_wxUSE_NO_DEPS=no
314   DEFAULT_wxUSE_NO_RTTI=no
315   DEFAULT_wxUSE_NO_EXCEPTIONS=no
316   DEFAULT_wxUSE_PERMISSIVE=no
317   DEFAULT_wxUSE_DEBUG_FLAG=yes
318   DEFAULT_wxUSE_DEBUG_INFO=yes
319   DEFAULT_wxUSE_DEBUG_GDB=yes
320   DEFAULT_wxUSE_MEM_TRACING=no
321   DEFAULT_wxUSE_DEBUG_CONTEXT=no
322   DEFAULT_wxUSE_DMALLOC=no
323   DEFAULT_wxUSE_PRECOMP=no
324   DEFAULT_wxUSE_APPLE_IEEE=no
325
326   DEFAULT_wxUSE_LOG=yes
327   DEFAULT_wxUSE_LOGWINDOW=no
328   DEFAULT_wxUSE_LOGGUI=no
329   DEFAULT_wxUSE_LOGDIALOG=no
330
331   DEFAULT_wxUSE_GUI=yes
332   DEFAULT_wxUSE_CONTROLS=no
333
334   DEFAULT_wxUSE_REGEX=no
335   DEFAULT_wxUSE_ZLIB=no
336   DEFAULT_wxUSE_LIBPNG=no
337   DEFAULT_wxUSE_LIBJPEG=no
338   DEFAULT_wxUSE_LIBTIFF=no
339   DEFAULT_wxUSE_ODBC=no
340   DEFAULT_wxUSE_OPENGL=no
341
342   DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no
343   DEFAULT_wxUSE_SNGLINST_CHECKER=no
344   DEFAULT_wxUSE_STD_IOSTREAM=no
345   DEFAULT_wxUSE_CMDLINE_PARSER=no
346   DEFAULT_wxUSE_DATETIME=no
347   DEFAULT_wxUSE_TIMER=no
348   DEFAULT_wxUSE_STOPWATCH=no
349   DEFAULT_wxUSE_FILE=no
350   DEFAULT_wxUSE_FFILE=no
351   DEFAULT_wxUSE_TEXTBUFFER=no
352   DEFAULT_wxUSE_TEXTFILE=no
353   DEFAULT_wxUSE_WAVE=no
354   DEFAULT_wxUSE_INTL=no
355   DEFAULT_wxUSE_CONFIG=no
356   DEFAULT_wxUSE_FONTMAP=no
357   DEFAULT_wxUSE_STREAMS=no
358   DEFAULT_wxUSE_SOCKETS=no
359   DEFAULT_wxUSE_OLE=no
360   DEFAULT_wxUSE_DATAOBJ=no
361   DEFAULT_wxUSE_DIALUP_MANAGER=no
362   DEFAULT_wxUSE_JOYSTICK=no
363   DEFAULT_wxUSE_DYNLIB_CLASS=no
364   DEFAULT_wxUSE_DYNAMIC_LOADER=no
365   DEFAULT_wxUSE_LONGLONG=no
366   DEFAULT_wxUSE_GEOMETRY=no
367
368   DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
369   DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
370   DEFAULT_wxUSE_POSTSCRIPT=no
371
372   DEFAULT_wxUSE_X_RESOURCES=no
373   DEFAULT_wxUSE_CLIPBOARD=no
374   DEFAULT_wxUSE_TOOLTIPS=no
375   DEFAULT_wxUSE_DRAG_AND_DROP=no
376   DEFAULT_wxUSE_DRAGIMAGE=no
377   DEFAULT_wxUSE_SPLINES=no
378
379   DEFAULT_wxUSE_MDI_ARCHITECTURE=no
380   DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
381   DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
382
383   DEFAULT_wxUSE_RESOURCES=no
384   DEFAULT_wxUSE_CONSTRAINTS=no
385   DEFAULT_wxUSE_IPC=no
386   DEFAULT_wxUSE_HELP=no
387   DEFAULT_wxUSE_MS_HTML_HELP=no
388   DEFAULT_wxUSE_WXHTML_HELP=no
389   DEFAULT_wxUSE_TREELAYOUT=no
390   DEFAULT_wxUSE_METAFILE=no
391   DEFAULT_wxUSE_MIMETYPE=no
392   DEFAULT_wxUSE_SYSTEM_OPTIONS=no
393   DEFAULT_wxUSE_PROTOCOL=no
394   DEFAULT_wxUSE_PROTOCOL_HTTP=no
395   DEFAULT_wxUSE_PROTOCOL_FTP=no
396   DEFAULT_wxUSE_PROTOCOL_FILE=no
397   DEFAULT_wxUSE_URL=no
398
399   DEFAULT_wxUSE_COMMONDLGS=no
400   DEFAULT_wxUSE_CHOICEDLG=no
401   DEFAULT_wxUSE_COLOURDLG=no
402   DEFAULT_wxUSE_DIRDLG=no
403   DEFAULT_wxUSE_FILEDLG=no
404   DEFAULT_wxUSE_FINDREPLDLG=no
405   DEFAULT_wxUSE_FONTDLG=no
406   DEFAULT_wxUSE_MSGDLG=no
407   DEFAULT_wxUSE_NUMBERDLG=no
408   DEFAULT_wxUSE_TEXTDLG=no
409   DEFAULT_wxUSE_SPLASH=no
410   DEFAULT_wxUSE_STARTUP_TIPS=no
411   DEFAULT_wxUSE_PROGRESSDLG=no
412   DEFAULT_wxUSE_WIZARDDLG=no
413
414   DEFAULT_wxUSE_MENUS=no
415   DEFAULT_wxUSE_MINIFRAME=no
416   DEFAULT_wxUSE_HTML=no
417   DEFAULT_wxUSE_FILESYSTEM=no
418   DEFAULT_wxUSE_FS_INET=no
419   DEFAULT_wxUSE_FS_ZIP=no
420   DEFAULT_wxUSE_BUSYINFO=no
421   DEFAULT_wxUSE_ZIPSTREAM=no
422   DEFAULT_wxUSE_VALIDATORS=no
423
424   DEFAULT_wxUSE_ACCEL=no
425   DEFAULT_wxUSE_BUTTON=no
426   DEFAULT_wxUSE_BMPBUTTON=no
427   DEFAULT_wxUSE_CALCTRL=no
428   DEFAULT_wxUSE_CARET=no
429   DEFAULT_wxUSE_CHECKBOX=no
430   DEFAULT_wxUSE_CHECKLST=no
431   DEFAULT_wxUSE_CHOICE=no
432   DEFAULT_wxUSE_COMBOBOX=no
433   DEFAULT_wxUSE_DISPLAY=no
434   DEFAULT_wxUSE_GAUGE=no
435   DEFAULT_wxUSE_GRID=no
436   DEFAULT_wxUSE_IMAGLIST=no
437   DEFAULT_wxUSE_LISTBOX=no
438   DEFAULT_wxUSE_LISTCTRL=no
439   DEFAULT_wxUSE_NOTEBOOK=no
440   DEFAULT_wxUSE_RADIOBOX=no
441   DEFAULT_wxUSE_RADIOBTN=no
442   DEFAULT_wxUSE_SASH=no
443   DEFAULT_wxUSE_SCROLLBAR=no
444   DEFAULT_wxUSE_SLIDER=no
445   DEFAULT_wxUSE_SPINBTN=no
446   DEFAULT_wxUSE_SPINCTRL=no
447   DEFAULT_wxUSE_SPLITTER=no
448   DEFAULT_wxUSE_STATBMP=no
449   DEFAULT_wxUSE_STATBOX=no
450   DEFAULT_wxUSE_STATLINE=no
451   DEFAULT_wxUSE_STATTEXT=no
452   DEFAULT_wxUSE_STATUSBAR=yes
453   DEFAULT_wxUSE_TABDIALOG=no
454   DEFAULT_wxUSE_TEXTCTRL=no
455   DEFAULT_wxUSE_TOGGLEBTN=no
456   DEFAULT_wxUSE_TOOLBAR=no
457   DEFAULT_wxUSE_TOOLBAR_NATIVE=no
458   DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
459   DEFAULT_wxUSE_TREECTRL=no
460   DEFAULT_wxUSE_POPUPWIN=no
461   DEFAULT_wxUSE_TIPWINDOW=no
462
463   DEFAULT_wxUSE_UNICODE=no
464   DEFAULT_wxUSE_UNICODE_MSLU=no
465   DEFAULT_wxUSE_WCSRTOMBS=no
466
467   DEFAULT_wxUSE_PALETTE=no
468   DEFAULT_wxUSE_IMAGE=no
469   DEFAULT_wxUSE_GIF=no
470   DEFAULT_wxUSE_PCX=no
471   DEFAULT_wxUSE_PNM=no
472   DEFAULT_wxUSE_IFF=no
473   DEFAULT_wxUSE_XPM=no
474   DEFAULT_wxUSE_ICO_CUR=no
475 else
476   DEFAULT_wxUSE_UNIVERSAL=no
477
478   DEFAULT_wxUSE_NANOX=no
479
480   DEFAULT_wxUSE_THREADS=yes
481
482   DEFAULT_wxUSE_SHARED=yes
483   DEFAULT_wxUSE_SONAME=no
484   DEFAULT_wxUSE_OPTIMISE=yes
485   DEFAULT_wxUSE_PROFILE=no
486   DEFAULT_wxUSE_NO_DEPS=no
487   DEFAULT_wxUSE_NO_RTTI=no
488   DEFAULT_wxUSE_NO_EXCEPTIONS=no
489   DEFAULT_wxUSE_PERMISSIVE=no
490   DEFAULT_wxUSE_DEBUG_FLAG=no
491   DEFAULT_wxUSE_DEBUG_INFO=no
492   DEFAULT_wxUSE_DEBUG_GDB=no
493   DEFAULT_wxUSE_MEM_TRACING=no
494   DEFAULT_wxUSE_DEBUG_CONTEXT=no
495   DEFAULT_wxUSE_DMALLOC=no
496   DEFAULT_wxUSE_PRECOMP=no
497   DEFAULT_wxUSE_APPLE_IEEE=yes
498
499   DEFAULT_wxUSE_LOG=yes
500   DEFAULT_wxUSE_LOGWINDOW=yes
501   DEFAULT_wxUSE_LOGGUI=yes
502   DEFAULT_wxUSE_LOGDIALOG=yes
503
504   DEFAULT_wxUSE_GUI=yes
505
506   DEFAULT_wxUSE_REGEX=yes
507   DEFAULT_wxUSE_ZLIB=yes
508   DEFAULT_wxUSE_LIBPNG=yes
509   DEFAULT_wxUSE_LIBJPEG=yes
510   DEFAULT_wxUSE_LIBTIFF=yes
511   DEFAULT_wxUSE_ODBC=no
512   DEFAULT_wxUSE_OPENGL=no
513
514   DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes
515   DEFAULT_wxUSE_SNGLINST_CHECKER=yes
516   DEFAULT_wxUSE_STD_IOSTREAM=no
517   DEFAULT_wxUSE_CMDLINE_PARSER=yes
518   DEFAULT_wxUSE_DATETIME=yes
519   DEFAULT_wxUSE_TIMER=yes
520   DEFAULT_wxUSE_STOPWATCH=yes
521   DEFAULT_wxUSE_FILE=yes
522   DEFAULT_wxUSE_FFILE=yes
523   DEFAULT_wxUSE_TEXTBUFFER=yes
524   DEFAULT_wxUSE_TEXTFILE=yes
525   DEFAULT_wxUSE_WAVE=no
526   DEFAULT_wxUSE_INTL=yes
527   DEFAULT_wxUSE_CONFIG=yes
528   DEFAULT_wxUSE_FONTMAP=yes
529   DEFAULT_wxUSE_STREAMS=yes
530   DEFAULT_wxUSE_SOCKETS=yes
531   DEFAULT_wxUSE_OLE=yes
532   DEFAULT_wxUSE_DATAOBJ=yes
533   DEFAULT_wxUSE_DIALUP_MANAGER=yes
534   DEFAULT_wxUSE_JOYSTICK=yes
535   DEFAULT_wxUSE_DYNLIB_CLASS=yes
536   DEFAULT_wxUSE_DYNAMIC_LOADER=yes
537   DEFAULT_wxUSE_LONGLONG=yes
538   DEFAULT_wxUSE_GEOMETRY=yes
539
540   DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
541   DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
542   DEFAULT_wxUSE_POSTSCRIPT=yes
543
544   DEFAULT_wxUSE_X_RESOURCES=no
545   DEFAULT_wxUSE_CLIPBOARD=yes
546   DEFAULT_wxUSE_TOOLTIPS=yes
547   DEFAULT_wxUSE_DRAG_AND_DROP=yes
548   DEFAULT_wxUSE_DRAGIMAGE=yes
549   DEFAULT_wxUSE_SPLINES=yes
550
551   DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
552   DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
553   DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
554
555   DEFAULT_wxUSE_RESOURCES=no
556   DEFAULT_wxUSE_CONSTRAINTS=yes
557   DEFAULT_wxUSE_IPC=yes
558   DEFAULT_wxUSE_HELP=yes
559   DEFAULT_wxUSE_MS_HTML_HELP=yes
560   DEFAULT_wxUSE_WXHTML_HELP=yes
561   DEFAULT_wxUSE_TREELAYOUT=yes
562   DEFAULT_wxUSE_METAFILE=yes
563   DEFAULT_wxUSE_MIMETYPE=yes
564   DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
565   DEFAULT_wxUSE_PROTOCOL=yes
566   DEFAULT_wxUSE_PROTOCOL_HTTP=yes
567   DEFAULT_wxUSE_PROTOCOL_FTP=yes
568   DEFAULT_wxUSE_PROTOCOL_FILE=yes
569   DEFAULT_wxUSE_URL=yes
570
571   DEFAULT_wxUSE_COMMONDLGS=yes
572   DEFAULT_wxUSE_CHOICEDLG=yes
573   DEFAULT_wxUSE_COLOURDLG=yes
574   DEFAULT_wxUSE_DIRDLG=yes
575   DEFAULT_wxUSE_FILEDLG=yes
576   DEFAULT_wxUSE_FINDREPLDLG=yes
577   DEFAULT_wxUSE_FONTDLG=yes
578   DEFAULT_wxUSE_MSGDLG=yes
579   DEFAULT_wxUSE_NUMBERDLG=yes
580   DEFAULT_wxUSE_TEXTDLG=yes
581   DEFAULT_wxUSE_SPLASH=yes
582   DEFAULT_wxUSE_STARTUP_TIPS=yes
583   DEFAULT_wxUSE_PROGRESSDLG=yes
584   DEFAULT_wxUSE_WIZARDDLG=yes
585
586   DEFAULT_wxUSE_MENUS=yes
587   DEFAULT_wxUSE_MINIFRAME=yes
588   DEFAULT_wxUSE_HTML=yes
589   DEFAULT_wxUSE_FILESYSTEM=yes
590   DEFAULT_wxUSE_FS_INET=yes
591   DEFAULT_wxUSE_FS_ZIP=yes
592   DEFAULT_wxUSE_BUSYINFO=yes
593   DEFAULT_wxUSE_ZIPSTREAM=yes
594   DEFAULT_wxUSE_VALIDATORS=yes
595
596   DEFAULT_wxUSE_ACCEL=yes
597   DEFAULT_wxUSE_BUTTON=yes
598   DEFAULT_wxUSE_BMPBUTTON=yes
599   DEFAULT_wxUSE_CALCTRL=yes
600   DEFAULT_wxUSE_CARET=yes
601   DEFAULT_wxUSE_CHECKBOX=yes
602   DEFAULT_wxUSE_CHECKLST=yes
603   DEFAULT_wxUSE_CHOICE=yes
604   DEFAULT_wxUSE_COMBOBOX=yes
605   DEFAULT_wxUSE_DISPLAY=no
606   DEFAULT_wxUSE_GAUGE=yes
607   DEFAULT_wxUSE_GRID=yes
608   DEFAULT_wxUSE_IMAGLIST=yes
609   DEFAULT_wxUSE_LISTBOX=yes
610   DEFAULT_wxUSE_LISTCTRL=yes
611   DEFAULT_wxUSE_NOTEBOOK=yes
612   DEFAULT_wxUSE_RADIOBOX=yes
613   DEFAULT_wxUSE_RADIOBTN=yes
614   DEFAULT_wxUSE_SASH=yes
615   DEFAULT_wxUSE_SCROLLBAR=yes
616   DEFAULT_wxUSE_SLIDER=yes
617   DEFAULT_wxUSE_SPINBTN=yes
618   DEFAULT_wxUSE_SPINCTRL=yes
619   DEFAULT_wxUSE_SPLITTER=yes
620   DEFAULT_wxUSE_STATBMP=yes
621   DEFAULT_wxUSE_STATBOX=yes
622   DEFAULT_wxUSE_STATLINE=yes
623   DEFAULT_wxUSE_STATTEXT=yes
624   DEFAULT_wxUSE_STATUSBAR=yes
625   DEFAULT_wxUSE_TABDIALOG=no
626   DEFAULT_wxUSE_TEXTCTRL=yes
627   DEFAULT_wxUSE_TOGGLEBTN=yes
628   DEFAULT_wxUSE_TOOLBAR=yes
629   DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
630   DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
631   DEFAULT_wxUSE_TREECTRL=yes
632   DEFAULT_wxUSE_POPUPWIN=yes
633   DEFAULT_wxUSE_TIPWINDOW=yes
634
635   DEFAULT_wxUSE_UNICODE=no
636   DEFAULT_wxUSE_UNICODE_MSLU=yes
637   DEFAULT_wxUSE_WCSRTOMBS=no
638
639   DEFAULT_wxUSE_PALETTE=yes
640   DEFAULT_wxUSE_IMAGE=yes
641   DEFAULT_wxUSE_GIF=yes
642   DEFAULT_wxUSE_PCX=yes
643   DEFAULT_wxUSE_IFF=no
644   DEFAULT_wxUSE_PNM=yes
645   DEFAULT_wxUSE_XPM=yes
646   DEFAULT_wxUSE_ICO_CUR=yes
647 fi
648
649 dnl WX_ARG_WITH should be used to select whether an external package will be
650 dnl used or not, to configure compile-time features of this package itself,
651 dnl use WX_ARG_ENABLE instead
652
653 dnl ============================
654 dnl external package dependecies
655 dnl ============================
656
657 dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache
658 dnl these values manually
659 for toolkit in `echo $ALL_TOOLKITS`; do
660   LINE=`grep "wxUSE_$toolkit=" ${wx_arg_cache_file}`
661   if test "x$LINE" != "x" ; then
662     has_toolkit_in_cache=1
663     eval "DEFAULT_$LINE"
664     eval "CACHE_$toolkit=1"
665   fi
666 done
667
668 dnl ---------------------------------------------------------------------------
669 dnl --disable-gui will build only non-GUI part of wxWindows: check for this
670 dnl first to disable many other switches if it's given
671 dnl
672 dnl NB: this is still in testing stage, don't use if you don't know what you're
673 dnl     doing
674 dnl ---------------------------------------------------------------------------
675
676 WX_ARG_ENABLE(gui,         [  --enable-gui            use GUI classes], wxUSE_GUI)
677
678 if test "$wxUSE_GUI" = "yes"; then
679
680 WX_ARG_ENABLE(universal,   [  --enable-universal      use wxWindows GUI controls instead of native ones], wxUSE_UNIVERSAL)
681 AC_ARG_WITH(gtk,           [  --with-gtk              use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1])
682 AC_ARG_WITH(motif,         [  --with-motif            use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1])
683 AC_ARG_WITH(mac,           [  --with-mac              use Mac OS X], [wxUSE_MAC="$withval" TOOLKIT_GIVEN=1])
684 AC_ARG_WITH(cocoa,         [  --with-cocoa            use Cocoa], [wxUSE_COCOA="$withval" TOOLKIT_GIVEN=1])
685 AC_ARG_WITH(wine,          [  --with-wine             use Wine], [wxUSE_WINE="$withval" CACHE_WINE=1])
686 AC_ARG_WITH(msw,           [  --with-msw              use MS-Windows], [wxUSE_MSW="$withval" CACHE_MSW=1 TOOLKIT_GIVEN=1])
687 AC_ARG_WITH(pm,            [  --with-pm               use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
688 AC_ARG_WITH(mgl,           [  --with-mgl              use SciTech MGL], [wxUSE_MGL="$withval" wxUSE_UNIVERSAL="yes" CACHE_MGL=1 TOOLKIT_GIVEN=1])
689 AC_ARG_WITH(microwin,      [  --with-microwin         use MicroWindows], [wxUSE_MICROWIN="$withval" CACHE_MICROWIN=1 TOOLKIT_GIVEN=1])
690 AC_ARG_WITH(x11,           [  --with-x11              use X11], [wxUSE_X11="$withval" wxUSE_UNIVERSAL="yes" CACHE_X11=1 TOOLKIT_GIVEN=1])
691 WX_ARG_ENABLE(nanox,       [  --enable-nanox          use NanoX], wxUSE_NANOX)
692
693 WX_ARG_ENABLE(gtk2,        [  --enable-gtk2           use GTK+ 2.0 if available (EXPERIMENTAL)], wxUSE_GTK2)
694
695 WX_ARG_SYS_WITH(libpng,    [  --with-libpng           use libpng (PNG image format)], wxUSE_LIBPNG)
696 WX_ARG_SYS_WITH(libjpeg,   [  --with-libjpeg          use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
697 WX_ARG_SYS_WITH(libtiff,   [  --with-libtiff          use libtiff (TIFF file format)], wxUSE_LIBTIFF)
698 WX_ARG_WITH(opengl,        [  --with-opengl           use OpenGL (or Mesa)], wxUSE_OPENGL)
699
700 fi
701 dnl for GUI only
702
703 WX_ARG_WITH(dmalloc,       [  --with-dmalloc          use dmalloc library (http://dmalloc.com/)], wxUSE_DMALLOC)
704 WX_ARG_SYS_WITH(regex,     [  --with-regex            enable support for wxRegEx class], wxUSE_REGEX)
705 WX_ARG_SYS_WITH(zlib,      [  --with-zlib             use zlib for LZW compression], wxUSE_ZLIB)
706 WX_ARG_WITH(odbc,          [  --with-odbc             use the IODBC and wxODBC classes], wxUSE_ODBC)
707
708 dnl ---------------------------------------------------------------------------
709 dnl compile options
710 dnl ---------------------------------------------------------------------------
711
712 WX_ARG_ENABLE(shared,      [  --enable-shared         create shared library code], wxUSE_SHARED)
713 WX_ARG_ENABLE(soname,      [  --enable-soname         set the DT_SONAME field in ELF shared libraries], wxUSE_SONAME)
714 WX_ARG_ENABLE(optimise,    [  --enable-optimise       create optimised code], wxUSE_OPTIMISE)
715 WX_ARG_ENABLE(debug,       [  --enable-debug          same as debug_flag and debug_info], wxUSE_DEBUG)
716
717 dnl allow the precompiled header option to be disabled under Mac OS X/Darwin
718 WX_ARG_ENABLE(precomp,     [  --enable-precomp        enable use of precompiled headers (Mac OS X/Darwin)], wxUSE_PRECOMP)
719
720 if test "$wxUSE_DEBUG" = "yes"; then
721   DEFAULT_wxUSE_DEBUG_FLAG=yes
722   DEFAULT_wxUSE_DEBUG_INFO=yes
723 elif test "$wxUSE_DEBUG" = "no"; then
724   DEFAULT_wxUSE_DEBUG_FLAG=no
725   DEFAULT_wxUSE_DEBUG_INFO=no
726 fi
727
728 WX_ARG_ENABLE(debug_flag,    [  --enable-debug_flag     set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG)
729 WX_ARG_ENABLE(debug_info,    [  --enable-debug_info     create code with debugging information], wxUSE_DEBUG_INFO)
730 WX_ARG_ENABLE(debug_gdb,     [  --enable-debug_gdb      create code with extra GDB debugging information], wxUSE_DEBUG_GDB)
731 WX_ARG_ENABLE(debug_cntxt,   [  --enable-debug_cntxt    use wxDebugContext], wxUSE_DEBUG_CONTEXT)
732 WX_ARG_ENABLE(mem_tracing,   [  --enable-mem_tracing    create code with memory tracing], wxUSE_MEM_TRACING)
733 WX_ARG_ENABLE(profile,       [  --enable-profile        create code with profiling information], wxUSE_PROFILE)
734 WX_ARG_ENABLE(no_rtti,       [  --enable-no_rtti        create code without RTTI information], wxUSE_NO_RTTI)
735 WX_ARG_ENABLE(no_exceptions, [  --enable-no_exceptions  create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS)
736 WX_ARG_ENABLE(permissive,    [  --enable-permissive     compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
737 WX_ARG_ENABLE(no_deps,       [  --enable-no_deps        create code without dependency information], wxUSE_NO_DEPS)
738
739 WX_ARG_ENABLE(compat20,      [  --enable-compat20       enable wxWindows 2.0 compatibility], WXWIN_COMPATIBILITY_2)
740 WX_ARG_ENABLE(compat22,      [  --enable-compat22       enable wxWindows 2.2 compatibility], WXWIN_COMPATIBILITY_2_2)
741 WX_ARG_ENABLE(compat24,      [  --disable-compat24      disable wxWindows 2.4 compatibility], WXWIN_COMPATIBILITY_2_4, disable)
742
743 AC_ARG_ENABLE(rpath,         [  --enable-rpath=DIR      output the rpath flag from wx-config], [wxRPATH_DIR="$enableval"])
744
745 if test "$wxRPATH_DIR" != "" -a "$wxRPATH_DIR" != "disable"; then
746    WXCONFIG_RPATH="-Wl,-rpath -Wl,$wxRPATH_DIR"
747 fi
748
749
750 dnl ---------------------------------------------------------------------------
751 dnl (small) optional non GUI classes
752 dnl ---------------------------------------------------------------------------
753
754 WX_ARG_ENABLE(intl,          [  --enable-intl           use internationalization system], wxUSE_INTL)
755 WX_ARG_ENABLE(config,        [  --enable-config         use wxConfig (and derived) classes], wxUSE_CONFIG)
756
757 WX_ARG_ENABLE(protocols,     [  --enable-protocols      use wxProtocol and derived classes], wxUSE_PROTOCOL)
758 WX_ARG_ENABLE(ftp,           [  --enable-ftp            use wxFTP (requires wxProtocol], wxUSE_PROTOCOL_FTP)
759 WX_ARG_ENABLE(http,          [  --enable-http           use wxHTTP (requires wxProtocol], wxUSE_PROTOCOL_HTTP)
760 WX_ARG_ENABLE(fileproto,     [  --enable-fileproto      use wxFileProto class (requires wxProtocol], wxUSE_PROTOCOL_FILE)
761 WX_ARG_ENABLE(sockets,       [  --enable-sockets        use socket/network classes], wxUSE_SOCKETS)
762 WX_ARG_ENABLE(ole,           [  --enable-ole            use OLE classes], wxUSE_OLE)
763 WX_ARG_ENABLE(dataobj,       [  --enable-dataobj        use data object classes], wxUSE_DATAOBJ)
764
765 WX_ARG_ENABLE(ipc,           [  --enable-ipc            use interprocess communication (wxSocket etc.)], wxUSE_IPC)
766
767 WX_ARG_ENABLE(cmdline,       [  --enable-cmdline        use wxCmdLineParser class], wxUSE_CMDLINE_PARSER)
768 WX_ARG_ENABLE(datetime,      [  --enable-datetime       use wxDateTime class], wxUSE_DATETIME)
769 WX_ARG_ENABLE(stopwatch,     [  --enable-stopwatch      use wxStopWatch class], wxUSE_STOPWATCH)
770 WX_ARG_ENABLE(dialupman,     [  --enable-dialupman      use dialup network classes], wxUSE_DIALUP_MANAGER)
771 WX_ARG_ENABLE(apple_ieee,    [  --enable-apple_ieee     use the Apple IEEE codec], wxUSE_APPLE_IEEE)
772 WX_ARG_ENABLE(timer,         [  --enable-timer          use wxTimer class], wxUSE_TIMER)
773 WX_ARG_ENABLE(wave,          [  --enable-wave           use wxWave class], wxUSE_WAVE)
774 WX_ARG_ENABLE(fraction,      [  --enable-fraction       use wxFraction class], wxUSE_FRACTION)
775 WX_ARG_ENABLE(dynlib,        [  --enable-dynlib         use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS)
776 WX_ARG_ENABLE(dynamicloader, [  --enable-dynamicloader  use (new) wxDynamicLibrary class], wxUSE_DYNAMIC_LOADER)
777 WX_ARG_ENABLE(longlong,      [  --enable-longlong       use wxLongLong class], wxUSE_LONGLONG)
778 WX_ARG_ENABLE(geometry,      [  --enable-geometry       use geometry class], wxUSE_GEOMETRY)
779 WX_ARG_ENABLE(log,           [  --enable-log            use logging system], wxUSE_LOG)
780 WX_ARG_ENABLE(streams,       [  --enable-streams        use wxStream etc classes], wxUSE_STREAMS)
781 WX_ARG_ENABLE(file,          [  --enable-file           use wxFile classes], wxUSE_FILE)
782 WX_ARG_ENABLE(ffile,         [  --enable-ffile          use wxFFile classes], wxUSE_FFILE)
783 WX_ARG_ENABLE(textbuf,       [  --enable-textbuf        use wxTextBuffer class], wxUSE_TEXTBUFFER)
784 WX_ARG_ENABLE(textfile,      [  --enable-textfile       use wxTextFile class], wxUSE_TEXTFILE)
785 WX_ARG_ENABLE(fontmap,       [  --enable-fontmap        use font encodings conversion classes], wxUSE_FONTMAP)
786 WX_ARG_ENABLE(unicode,       [  --enable-unicode        compile wxString with Unicode support], wxUSE_UNICODE)
787 WX_ARG_ENABLE(mslu,          [  --enable-mslu           use MS Layer for Unicode on Windows 9x (win32 only)], wxUSE_UNICODE_MSLU)
788 WX_ARG_ENABLE(wxprintfv,     [  --enable-wxprintfv      use wxWindows implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF)
789 WX_ARG_ENABLE(std_iostreams, [  --enable-std_iostreams  use standard C++ stream classes], wxUSE_STD_IOSTREAM)
790 WX_ARG_ENABLE(filesystem,    [  --enable-filesystem     use virtual file systems classes], wxUSE_FILESYSTEM)
791 WX_ARG_ENABLE(fs_inet,       [  --enable-fs_inet        use virtual HTTP/FTP filesystems], wxUSE_FS_INET)
792 WX_ARG_ENABLE(fs_zip,        [  --enable-fs_zip         use virtual ZIP filesystems], wxUSE_FS_ZIP)
793 WX_ARG_ENABLE(zipstream,     [  --enable-zipstream      use wxZipInputStream], wxUSE_ZIPSTREAM)
794
795 WX_ARG_ENABLE(catch_segvs,   [  --enable-catch_segvs    catch signals and pass them to wxApp::OnFatalException], wxUSE_ON_FATAL_EXCEPTION)
796 WX_ARG_ENABLE(snglinst,      [  --enable-snglinst       use wxSingleInstanceChecker class], wxUSE_SNGLINST_CHECKER)
797
798 WX_ARG_ENABLE(mimetype,      [  --enable-mimetype       use wxMimeTypesManager], wxUSE_MIMETYPE)
799 WX_ARG_ENABLE(system_options,[  --enable-sysoptions     use wxSystemOptions], wxUSE_SYSTEM_OPTIONS)
800
801 WX_ARG_ENABLE(url,           [  --enable-url            use wxURL class], wxUSE_URL)
802 WX_ARG_ENABLE(protocol,      [  --enable-protocol       use wxProtocol class], wxUSE_PROTOCOL)
803 WX_ARG_ENABLE(protocol_http, [  --enable-protocol-http  HTTP support in wxProtocol], wxUSE_PROTOCOL_HTTP)
804 WX_ARG_ENABLE(protocol_ftp,  [  --enable-protocol-ftp   FTP support in wxProtocol], wxUSE_PROTOCOL_FTP)
805 WX_ARG_ENABLE(protocol_file, [  --enable-protocol-file  FILE support in wxProtocol], wxUSE_PROTOCOL_FILE)
806
807
808 dnl ---------------------------------------------------------------------------
809 dnl "big" options (i.e. those which change a lot of things throughout the library)
810 dnl ---------------------------------------------------------------------------
811
812 WX_ARG_ENABLE(threads,     [  --enable-threads        use threads], wxUSE_THREADS)
813
814 if test "$wxUSE_GUI" = "yes"; then
815
816 dnl ---------------------------------------------------------------------------
817 dnl "big" GUI options
818 dnl ---------------------------------------------------------------------------
819
820 WX_ARG_ENABLE(docview,     [  --enable-docview        use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE)
821 WX_ARG_ENABLE(help,        [  --enable-help           use help subsystem], wxUSE_HELP)
822 WX_ARG_ENABLE(mshtmlhelp,  [  --enable-mshtmlhelp     use MS HTML Help (win32)], wxUSE_MS_HTML_HELP)
823 WX_ARG_ENABLE(html,        [  --enable-html           use wxHTML sub-library], wxUSE_HTML)
824 WX_ARG_ENABLE(htmlhelp,    [  --enable-htmlhelp       use wxHTML-based help], wxUSE_WXHTML_HELP)
825 WX_ARG_ENABLE(constraints, [  --enable-constraints    use layout-constraints system], wxUSE_CONSTRAINTS)
826 WX_ARG_ENABLE(printarch,   [  --enable-printarch      use printing architecture], wxUSE_PRINTING_ARCHITECTURE)
827 WX_ARG_ENABLE(mdi,         [  --enable-mdi            use multiple document interface architecture], wxUSE_MDI_ARCHITECTURE)
828 WX_ARG_ENABLE(loggui,      [  --enable-loggui         use standard GUI logger], wxUSE_LOGGUI)
829 WX_ARG_ENABLE(logwin,      [  --enable-logwin         use wxLogWindow], wxUSE_LOGWINDOW)
830 WX_ARG_ENABLE(logdialog,   [  --enable-logdialog      use wxLogDialog], wxUSE_LOGDIALOG)
831
832 dnl ---------------------------------------------------------------------------
833 dnl PostScript options
834 dnl ---------------------------------------------------------------------------
835 WX_ARG_ENABLE(postscript,  [  --enable-postscript     use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT)
836
837 dnl VZ: these options seem to be always on, if someone wants to change it please do
838 dnl WX_ARG_ENABLE(PS-normalized,    [  --enable-PS-normalized  use normalized PS fonts], dnl             wxUSE_NORMALIZED_PS_FONTS)
839 dnl WX_ARG_ENABLE(afmfonts,        [  --enable-afmfonts       use Adobe Font Metric Font table], dnl             wxUSE_AFM_FOR_POSTSCRIPT)
840
841 dnl ---------------------------------------------------------------------------
842 dnl resources
843 dnl ---------------------------------------------------------------------------
844
845 dnl WX_ARG_ENABLE(prologio,    [  --enable-prologio       use Prolog IO library], wxUSE_PROLOGIO)
846 WX_ARG_ENABLE(resources,   [  --enable-resources      use wxWindows resources], wxUSE_RESOURCES)
847
848 WX_ARG_ENABLE(xresources,  [  --enable-xresources     use X resources for save (default for gtk+)], wxUSE_X_RESOURCES)
849
850 dnl ---------------------------------------------------------------------------
851 dnl IPC &c
852 dnl ---------------------------------------------------------------------------
853
854 WX_ARG_ENABLE(clipboard,   [  --enable-clipboard      use wxClipboard class], wxUSE_CLIPBOARD)
855 WX_ARG_ENABLE(dnd,         [  --enable-dnd            use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP)
856 WX_ARG_ENABLE(metafile,    [  --enable-metafile       use win32 metafiles], wxUSE_METAFILE)
857
858 dnl WX_ARG_ENABLE(treelayout,  [  --enable-treelayout     use wxTreeLayout class], wxUSE_TREELAYOUT)
859
860 dnl ---------------------------------------------------------------------------
861 dnl optional GUI controls (in alphabetical order except the first one)
862 dnl ---------------------------------------------------------------------------
863
864 WX_ARG_ENABLE(controls,    [  --enable-controls       use all usual controls], wxUSE_CONTROLS)
865
866 dnl even with --enable-controls, some may be disabled by giving
867 dnl --disable-<control> later on the command line - but by default all will be
868 dnl used (and vice versa)
869 if test "$wxUSE_CONTROLS" = "yes"; then
870   DEFAULT_wxUSE_ACCEL=yes
871   DEFAULT_wxUSE_BMPBUTTON=yes
872   DEFAULT_wxUSE_BUTTON=yes
873   DEFAULT_wxUSE_CALCTRL=no
874   DEFAULT_wxUSE_CARET=yes
875   DEFAULT_wxUSE_COMBOBOX=yes
876   DEFAULT_wxUSE_CHECKBOX=yes
877   DEFAULT_wxUSE_CHECKLISTBOX=yes
878   DEFAULT_wxUSE_CHOICE=yes
879   DEFAULT_wxUSE_GAUGE=yes
880   DEFAULT_wxUSE_GRID=yes
881   DEFAULT_wxUSE_IMAGLIST=yes
882   DEFAULT_wxUSE_LISTBOX=yes
883   DEFAULT_wxUSE_LISTCTRL=yes
884   DEFAULT_wxUSE_NOTEBOOK=yes
885   DEFAULT_wxUSE_RADIOBOX=yes
886   DEFAULT_wxUSE_RADIOBTN=yes
887   DEFAULT_wxUSE_SASH=yes
888   DEFAULT_wxUSE_SCROLLBAR=yes
889   DEFAULT_wxUSE_SLIDER=yes
890   DEFAULT_wxUSE_SPINBTN=yes
891   DEFAULT_wxUSE_SPINCTRL=yes
892   DEFAULT_wxUSE_SPLITTER=yes
893   DEFAULT_wxUSE_STATBMP=yes
894   DEFAULT_wxUSE_STATBOX=yes
895   DEFAULT_wxUSE_STATLINE=yes
896   DEFAULT_wxUSE_STATUSBAR=yes
897   DEFAULT_wxUSE_TAB_DIALOG=yes
898   DEFAULT_wxUSE_TOGGLEBTN=yes
899   DEFAULT_wxUSE_TOOLBAR=yes
900   DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
901   DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
902   DEFAULT_wxUSE_TOOLTIPS=yes
903   DEFAULT_wxUSE_TREECTRL=yes
904   DEFAULT_wxUSE_POPUPWIN=yes
905   DEFAULT_wxUSE_TIPWINDOW=yes
906 elif test "$wxUSE_CONTROLS" = "no"; then
907   DEFAULT_wxUSE_ACCEL=no
908   DEFAULT_wxUSE_BMPBUTTON=no
909   DEFAULT_wxUSE_BUTTON=no
910   DEFAULT_wxUSE_CALCTRL=no
911   DEFAULT_wxUSE_CARET=no
912   DEFAULT_wxUSE_COMBOBOX=no
913   DEFAULT_wxUSE_CHECKBOX=no
914   DEFAULT_wxUSE_CHECKLISTBOX=no
915   DEFAULT_wxUSE_CHOICE=no
916   DEFAULT_wxUSE_GAUGE=no
917   DEFAULT_wxUSE_GRID=no
918   DEFAULT_wxUSE_IMAGLIST=no
919   DEFAULT_wxUSE_LISTBOX=no
920   DEFAULT_wxUSE_LISTCTRL=no
921   DEFAULT_wxUSE_NOTEBOOK=no
922   DEFAULT_wxUSE_RADIOBOX=no
923   DEFAULT_wxUSE_RADIOBTN=no
924   DEFAULT_wxUSE_SASH=no
925   DEFAULT_wxUSE_SCROLLBAR=no
926   DEFAULT_wxUSE_SLIDER=no
927   DEFAULT_wxUSE_SPINBTN=no
928   DEFAULT_wxUSE_SPINCTRL=no
929   DEFAULT_wxUSE_SPLITTER=no
930   DEFAULT_wxUSE_STATBMP=no
931   DEFAULT_wxUSE_STATBOX=no
932   DEFAULT_wxUSE_STATLINE=no
933   DEFAULT_wxUSE_STATUSBAR=no
934   DEFAULT_wxUSE_TAB_DIALOG=no
935   DEFAULT_wxUSE_TOGGLEBTN=no
936   DEFAULT_wxUSE_TOOLBAR=no
937   DEFAULT_wxUSE_TOOLBAR_NATIVE=no
938   DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
939   DEFAULT_wxUSE_TOOLTIPS=no
940   DEFAULT_wxUSE_TREECTRL=no
941   DEFAULT_wxUSE_POPUPWIN=no
942   DEFAULT_wxUSE_TIPWINDOW=no
943 fi
944
945 ## FIXME: This is a blatant hack
946 if test "x$wxUSE_COCOA" != "x" -a "$wxUSE_COCOA" != "0" ; then
947   wxUSE_PRINTING_ARCHITECTURE=no
948   wxUSE_HELP=no
949   wxUSE_CLIPBOARD=no
950   wxUSE_DRAG_AND_DROP=no
951   wxUSE_DATAOBJ=no
952   DEFAULT_wxUSE_TOOLBAR_NATIVE=no
953   DEFAULT_wxUSE_TEXTDLG=no
954   DEFAULT_wxUSE_GAUGE=no
955   DEFAULT_wxUSE_SCROLLBAR=no
956   DEFAULT_wxUSE_SLIDER=no
957   DEFAULT_wxUSE_COMBOBOX=no
958   DEFAULT_wxUSE_CALCTRL=no
959   DEFAULT_wxUSE_SPINBTN=no
960   DEFAULT_wxUSE_SPINCTRL=no
961   DEFAULT_wxUSE_TOOLTIPS=no
962   DEFAULT_wxUSE_COLOURDLG=no
963   DEFAULT_wxUSE_DRAGIMAGE=no
964   DEFAULT_wxUSE_FINDREPLDLG=no
965   DEFAULT_wxUSE_FONTDLG=no
966   DEFAULT_wxUSE_GRID=no
967   DEFAULT_wxUSE_NUMBERDLG=no
968   DEFAULT_wxUSE_PROGRESSDLG=no
969   DEFAULT_wxUSE_SASH=no
970   DEFAULT_wxUSE_SPLITTER=no
971   DEFAULT_wxUSE_WIZARDDLG=no
972   DEFAULT_wxUSE_SPLITTER=no
973   DEFAULT_wxUSE_STARTUP_TIPS=no
974 fi
975
976 WX_ARG_ENABLE(accel,       [  --enable-accel          use accelerators], wxUSE_ACCEL)
977 WX_ARG_ENABLE(button,      [  --enable-button         use wxButton class], wxUSE_BUTTON)
978 WX_ARG_ENABLE(bmpbutton,   [  --enable-bmpbutton      use wxBitmapButton class], wxUSE_BMPBUTTON)
979 WX_ARG_ENABLE(calendar,    [  --enable-calendar       use wxCalendarCtrl class], wxUSE_CALCTRL)
980 WX_ARG_ENABLE(caret,       [  --enable-caret          use wxCaret class], wxUSE_CARET)
981 WX_ARG_ENABLE(checkbox,    [  --enable-checkbox       use wxCheckBox class], wxUSE_CHECKBOX)
982 WX_ARG_ENABLE(checklst,    [  --enable-checklst       use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST)
983 WX_ARG_ENABLE(choice,      [  --enable-choice         use wxChoice class], wxUSE_CHOICE)
984 WX_ARG_ENABLE(combobox,    [  --enable-combobox       use wxComboBox class], wxUSE_COMBOBOX)
985 WX_ARG_ENABLE(display,     [  --enable-display        use wxDisplay class], wxUSE_DISPLAY)
986 WX_ARG_ENABLE(gauge,       [  --enable-gauge          use wxGauge class], wxUSE_GAUGE)
987 WX_ARG_ENABLE(grid,        [  --enable-grid           use wxGrid class], wxUSE_GRID)
988 WX_ARG_ENABLE(imaglist,    [  --enable-imaglist       use wxImageList class], wxUSE_IMAGLIST)
989 WX_ARG_ENABLE(listbox,     [  --enable-listbox        use wxListBox class], wxUSE_LISTBOX)
990 WX_ARG_ENABLE(listctrl,    [  --enable-listctrl       use wxListCtrl class], wxUSE_LISTCTRL)
991 WX_ARG_ENABLE(notebook,    [  --enable-notebook       use wxNotebook class], wxUSE_NOTEBOOK)
992 WX_ARG_ENABLE(radiobox,    [  --enable-radiobox       use wxRadioBox class], wxUSE_RADIOBOX)
993 WX_ARG_ENABLE(radiobtn,    [  --enable-radiobtn       use wxRadioButton class], wxUSE_RADIOBTN)
994 WX_ARG_ENABLE(sash,        [  --enable-sash           use wxSashWindow class], wxUSE_SASH)
995 WX_ARG_ENABLE(scrollbar,   [  --enable-scrollbar      use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR)
996 WX_ARG_ENABLE(slider,      [  --enable-slider         use wxSlider class], wxUSE_SLIDER)
997 WX_ARG_ENABLE(spinbtn,     [  --enable-spinbtn        use wxSpinButton class], wxUSE_SPINBTN)
998 WX_ARG_ENABLE(spinctrl,    [  --enable-spinctrl       use wxSpinCtrl class], wxUSE_SPINCTRL)
999 WX_ARG_ENABLE(splitter,    [  --enable-splitter       use wxSplitterWindow class], wxUSE_SPLITTER)
1000 WX_ARG_ENABLE(statbmp,     [  --enable-statbmp        use wxStaticBitmap class], wxUSE_STATBMP)
1001 WX_ARG_ENABLE(statbox,     [  --enable-statbox        use wxStaticBox class], wxUSE_STATBOX)
1002 WX_ARG_ENABLE(statline,    [  --enable-statline       use wxStaticLine class], wxUSE_STATLINE)
1003 WX_ARG_ENABLE(stattext,    [  --enable-stattext       use wxStaticText class], wxUSE_STATTEXT)
1004 WX_ARG_ENABLE(statusbar,   [  --enable-statusbar      use wxStatusBar class], wxUSE_STATUSBAR)
1005 WX_ARG_ENABLE(tabdialog,   [  --enable-tabdialog      use wxTabControl class], wxUSE_TABDIALOG)
1006 WX_ARG_ENABLE(textctrl,    [  --enable-textctrl       use wxTextCtrl class], wxUSE_TEXTCTRL)
1007 WX_ARG_ENABLE(togglebtn,   [  --enable-togglebtn      use wxToggleButton class], wxUSE_TOGGLEBTN)
1008 WX_ARG_ENABLE(toolbar,     [  --enable-toolbar        use wxToolBar class], wxUSE_TOOLBAR)
1009 WX_ARG_ENABLE(tbarnative,  [  --enable-tbarnative     use native wxToolBar class], wxUSE_TOOLBAR_NATIVE)
1010 WX_ARG_ENABLE(tbarsmpl,    [  --enable-tbarsmpl       use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE)
1011 WX_ARG_ENABLE(treectrl,    [  --enable-treectrl       use wxTreeCtrl class], wxUSE_TREECTRL)
1012 WX_ARG_ENABLE(tipwindow,   [  --enable-tipwindow      use wxTipWindow class], wxUSE_TIPWINDOW)
1013 WX_ARG_ENABLE(popupwin,    [  --enable-popupwin       use wxPopUpWindow class], wxUSE_POPUPWIN)
1014
1015 dnl ---------------------------------------------------------------------------
1016 dnl common dialogs
1017 dnl ---------------------------------------------------------------------------
1018
1019 WX_ARG_ENABLE(commondlg,   [  --enable-commondlg      use all common dialogs], wxUSE_COMMONDLGS)
1020 WX_ARG_ENABLE(choicedlg,   [  --enable-choicedlg      use wxChoiceDialog], wxUSE_CHOICEDLG)
1021 WX_ARG_ENABLE(coldlg,      [  --enable-coldlg         use wxColourDialog], wxUSE_COLOURDLG)
1022 WX_ARG_ENABLE(filedlg,     [  --enable-filedlg        use wxFileDialog], wxUSE_FILEDLG)
1023 WX_ARG_ENABLE(finddlg,     [  --enable-finddlg        use wxFindReplaceDialog], wxUSE_FINDREPLDLG)
1024 WX_ARG_ENABLE(fontdlg,     [  --enable-fontdlg        use wxFontDialog], wxUSE_FONTDLG)
1025 WX_ARG_ENABLE(dirdlg,      [  --enable-dirdlg         use wxDirDialog], wxUSE_DIRDLG)
1026 WX_ARG_ENABLE(msgdlg,      [  --enable-msgdlg         use wxMessageDialog], wxUSE_MSGDLG)
1027 WX_ARG_ENABLE(numberdlg,   [  --enable-numberdlg      use wxNumberEntryDialog], wxUSE_NUMBERDLG)
1028 WX_ARG_ENABLE(splash,      [  --enable-splash         use wxSplashScreen], wxUSE_SPLASH)
1029 WX_ARG_ENABLE(textdlg,     [  --enable-textdlg        use wxTextDialog], wxUSE_TEXTDLG)
1030 WX_ARG_ENABLE(tipdlg,      [  --enable-tipdlg         use startup tips], wxUSE_STARTUP_TIPS)
1031 WX_ARG_ENABLE(progressdlg, [  --enable-progressdlg    use wxProgressDialog], wxUSE_PROGRESSDLG)
1032 WX_ARG_ENABLE(wizarddlg,   [  --enable-wizarddlg      use wxWizard], wxUSE_WIZARDDLG)
1033
1034 dnl ---------------------------------------------------------------------------
1035 dnl misc GUI options
1036 dnl ---------------------------------------------------------------------------
1037
1038 WX_ARG_ENABLE(menus,       [  --enable-menus          use wxMenu/wxMenuBar/wxMenuItem classes], wxUSE_MENUS)
1039 WX_ARG_ENABLE(miniframe,   [  --enable-miniframe      use wxMiniFrame class], wxUSE_MINIFRAME)
1040 WX_ARG_ENABLE(tooltips,    [  --enable-tooltips       use wxToolTip class], wxUSE_TOOLTIPS)
1041 WX_ARG_ENABLE(splines,     [  --enable-splines        use spline drawing code], wxUSE_SPLINES)
1042 WX_ARG_ENABLE(validators,  [  --enable-validators     use wxValidator and derived classes], wxUSE_VALIDATORS)
1043 WX_ARG_ENABLE(busyinfo,    [  --enable-busyinfo       use wxBusyInfo], wxUSE_BUSYINFO)
1044 WX_ARG_ENABLE(joystick,    [  --enable-joystick       use wxJoystick (Linux only)], wxUSE_JOYSTICK)
1045 WX_ARG_ENABLE(metafile,    [  --enable-metafiles      use wxMetaFile (Windows only)], wxUSE_METAFILE)
1046 WX_ARG_ENABLE(dragimage,   [  --enable-dragimage      use wxDragImage], wxUSE_DRAGIMAGE)
1047
1048 dnl ---------------------------------------------------------------------------
1049 dnl support for image formats that do not rely on external library
1050 dnl ---------------------------------------------------------------------------
1051
1052 WX_ARG_ENABLE(palette,     [  --enable-palette        use wxPalette class], wxUSE_PALETTE)
1053 WX_ARG_ENABLE(image,       [  --enable-image          use wxImage class], wxUSE_IMAGE)
1054 WX_ARG_ENABLE(gif,         [  --enable-gif            use gif images (GIF file format)], wxUSE_GIF)
1055 WX_ARG_ENABLE(pcx,         [  --enable-pcx            use pcx images (PCX file format)], wxUSE_PCX)
1056 WX_ARG_ENABLE(iff,         [  --enable-iff            use iff images (IFF file format)], wxUSE_IFF)
1057 WX_ARG_ENABLE(pnm,         [  --enable-pnm            use pnm images (PNM file format)], wxUSE_PNM)
1058 WX_ARG_ENABLE(xpm,         [  --enable-xpm            use xpm images (XPM file format)], wxUSE_XPM)
1059 WX_ARG_ENABLE(ico_cur,     [  --enable-icocur         use Windows ICO and CUR formats], wxUSE_ICO_CUR)
1060
1061 fi
1062
1063 dnl General settings (needed for GUI and non-GUI compilations alike).
1064 dnl Path separator; ':' for unix, ';' for OS/2
1065 dnl Stem for flex output; lexyy for OS/2, lex.yy otherwise
1066 case "${host}" in
1067   *-pc-os2_emx | *-pc-os2-emx )
1068     PATH_IFS=';'
1069 dnl Really ought to text for this as meanwhile there are flex versions using
1070 dnl lex.yy as well due to FAT support being more and more dropped...
1071     LEX_STEM="lexyy"
1072   ;;
1073   *)
1074     PATH_IFS=':'
1075     LEX_STEM="lex.yy"
1076   ;;
1077 esac
1078
1079 dnl for GUI only
1080
1081 dnl cache the options values before (may be) aborting below
1082 WX_ARG_CACHE_FLUSH
1083
1084 dnl check that no more than one toolkit is given and that if none are given that
1085 dnl we have a default one
1086
1087 AC_MSG_CHECKING(for toolkit)
1088
1089 # In Wine, we need to default to MSW, not GTK or MOTIF
1090 if test "$wxUSE_WINE" = "yes"; then
1091     DEFAULT_DEFAULT_wxUSE_GTK=0
1092     DEFAULT_DEFAULT_wxUSE_MOTIF=0
1093     DEFAULT_DEFAULT_wxUSE_MSW=1
1094 fi
1095
1096 if test "$wxUSE_GUI" = "yes"; then
1097
1098     if test "$USE_BEOS" = 1; then
1099         AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui])
1100     fi
1101
1102     if test "$TOOLKIT_GIVEN" = 1; then
1103       dnl convert "yes" to 1 and "no" to 0
1104       for toolkit in `echo $ALL_TOOLKITS`; do
1105         var=wxUSE_$toolkit
1106         eval "value=\$${var}"
1107         eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`"
1108       done
1109     else
1110       dnl try to guess the most apropriate toolkit for this platform
1111       for toolkit in `echo $ALL_TOOLKITS`; do
1112         if test "$has_toolkit_in_cache" != 1; then
1113           var=DEFAULT_DEFAULT_wxUSE_$toolkit
1114         else
1115           var=DEFAULT_wxUSE_$toolkit
1116         fi
1117         eval "wxUSE_$toolkit=\$${var}"
1118       done
1119     fi
1120
1121     dnl we suppose that expr is available (maybe there is a better way to do
1122     dnl this? what about using ALL_TOOLKITS? TODO)
1123     NUM_TOOLKITS=`expr ${wxUSE_COCOA:-0} + ${wxUSE_GTK:-0} + ${wxUSE_MAC:-0} \
1124                   + ${wxUSE_MGL:-0} + ${wxUSE_MICROWIN:-0} \
1125                   + ${wxUSE_MOTIF:-0} + ${wxUSE_MSW:-0} + ${wxUSE_X11:-0}`
1126
1127     dnl Allow wxUSE_PM only for OS/2 with EMX.
1128     case "${host}" in
1129       *-pc-os2_emx | *-pc-os2-emx )
1130         NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}`
1131     esac
1132
1133     case "$NUM_TOOLKITS" in
1134       1)
1135       ;;
1136       0)
1137         AC_MSG_ERROR(Please specify a toolkit -- cannot determine the default for ${host})
1138       ;;
1139       *)
1140         AC_MSG_ERROR(Please specify at most one toolkit (maybe some are cached in configarg.cache?))
1141     esac
1142
1143     dnl cache the wxUSE_<TOOLKIT> values too
1144     for toolkit in `echo $ALL_TOOLKITS`; do
1145       var=wxUSE_$toolkit
1146       eval "value=\$${var}"
1147       if test "x$value" != x; then
1148         cache_var=CACHE_$toolkit
1149         eval "cache=\$${cache_var}"
1150         if test "$cache" = 1; then
1151           echo "$var=$value" >> ${wx_arg_cache_file}
1152         fi
1153         if test "$value" = 1; then
1154           toolkit_echo=`echo $toolkit | tr [[A-Z]] [[a-z]]`
1155           AC_MSG_RESULT($toolkit_echo)
1156         fi
1157       fi
1158     done
1159 else
1160     AC_MSG_RESULT(base ($host_alias hosted) only)
1161 fi
1162
1163 dnl ---------------------------------------------------------------------------
1164 dnl When we are using Cygwin with Motif/GTK+, we want it to appear like
1165 dnl 'just' a POSIX platform, so the Win32 API must not be available
1166 dnl ---------------------------------------------------------------------------
1167 dnl (Windows-only piece)
1168 wants_win32=0
1169 doesnt_want_win32=0
1170 case "${host}" in
1171   *-*-cygwin*)
1172       if test "$wxUSE_MSW" = 1 ; then
1173         wants_win32=1
1174       else
1175         doesnt_want_win32=1
1176       fi
1177   ;;
1178   *-*-mingw*)
1179       wants_win32=1
1180   ;;
1181 esac
1182
1183 dnl ---------------------------------------------------------------------------
1184 dnl Wine is a virtual platform, we need to patch things up a bit
1185 dnl ---------------------------------------------------------------------------
1186 if test "$wxUSE_WINE" = "yes"; then
1187     wants_win32=1
1188     dnl FIXME: we should do a better job of testing for these
1189     CC=winegcc
1190     CXX=wineg++
1191     RESCOMP=wrc
1192 fi
1193
1194 dnl NB: The two tests bellow are *NOT* mutually exclusive! They should only
1195 dnl     take effect on Cygwin/Mingw and not other platforms.
1196 if test "$wants_win32" = 1 ; then
1197     USE_UNIX=0
1198     USE_WIN32=1
1199     AC_DEFINE(__WIN32__)
1200     AC_DEFINE(__WIN95__)
1201     AC_DEFINE(__WINDOWS__)
1202     AC_DEFINE(__GNUWIN32__)
1203     AC_DEFINE(STRICT)
1204     AC_DEFINE(WINVER, 0x0400)
1205 fi
1206 if test "$doesnt_want_win32" = 1 ; then
1207     USE_UNIX=1
1208     USE_WIN32=0
1209 fi
1210 dnl (end of Windows-only piece)
1211
1212 if test "$USE_UNIX" = 1 ; then
1213     wxUSE_UNIX=yes
1214     AC_DEFINE(__UNIX__)
1215 fi
1216
1217 dnl ---------------------------------------------------------------------------
1218 dnl Checks for programs
1219 dnl ---------------------------------------------------------------------------
1220
1221 dnl flush the cache because checking for programs might abort
1222 AC_CACHE_SAVE
1223
1224 dnl cross-compiling support: we're cross compiling if the build system is
1225 dnl different from the target one (assume host and target be always the same)
1226 if test "$build" != "$host" ; then
1227     if test "$USE_WIN32" = 1 -o "$USE_DOS" = 1 -o "$USE_UNIX"; then
1228         CC=$host_alias-gcc
1229         CXX=$host_alias-c++
1230         AR=$host_alias-ar
1231         RANLIB=$host_alias-ranlib
1232         DLLTOOL=$host_alias-dlltool
1233         RESCOMP=$host_alias-windres
1234         LD=$host_alias-ld
1235         NM=$host_alias-nm
1236         STRIP=$host_alias-strip
1237     else
1238         AC_MSG_ERROR($build_alias -> $host_alias cross compilation not supported yet.)
1239     fi
1240 fi
1241
1242 dnl C-compiler checks
1243 dnl   defines CC with the compiler to use
1244 dnl   defines GCC with yes if using gcc
1245 dnl   defines GCC empty if not using gcc
1246 dnl   defines CFLAGS
1247 dnl
1248 dnl this magic incantation is needed to prevent AC_PROG_CC from setting the
1249 dnl default CFLAGS (something like "-g -O2") -- we don't need this as we add
1250 dnl -g and -O flags ourselves below
1251 CFLAGS=${CFLAGS:=}
1252 AC_PROG_CC
1253
1254 dnl is -traditional needed for correct compilations
1255 dnl   adds -traditional for gcc if needed
1256 AC_PROG_GCC_TRADITIONAL
1257
1258 AC_LANG_SAVE
1259 AC_LANG_CPLUSPLUS
1260
1261 dnl C++-compiler checks
1262 dnl   defines CXX with the compiler to use
1263 dnl   defines GXX with yes if using gxx
1264 dnl   defines GXX empty if not using gxx
1265 dnl   defines CXXFLAGS
1266 dnl
1267 dnl see CFLAGS line above
1268 CXXFLAGS=${CXXFLAGS:=}
1269 AC_PROG_CXX
1270
1271 AC_LANG_RESTORE
1272
1273 dnl ranlib command
1274 dnl   defines RANLIB with the appropriate command
1275 AC_PROG_RANLIB
1276
1277 dnl ar command
1278 dnl   defines AR with the appropriate command
1279 AC_CHECK_PROG(AR, ar, ar, ar)
1280
1281 dnl install checks
1282 dnl   defines INSTALL with the appropriate command
1283 AC_PROG_INSTALL
1284
1285 dnl   make install path absolute (if not already);
1286 dnl   will fail with (some) MSDOS paths
1287 case ${INSTALL} in
1288   /* ) # Absolute
1289      ;;
1290   ?:* ) # Drive letter, considered as absolute.
1291      ;;
1292   *)
1293      INSTALL=`pwd`/${INSTALL} ;;
1294 esac
1295
1296 dnl HP-UX install doesn't handle the "-d" switch so don't use it there
1297 case ${host} in
1298     *-hp-hpux* )
1299         INSTALL_DIR="mkdir"
1300         ;;
1301
1302     *)  INSTALL_DIR="$INSTALL -d"
1303         ;;
1304 esac
1305
1306
1307 case "${host}" in
1308
1309     dnl The other BSD's should probably go in here too, since this is
1310     dnl to workaround a strange static lib BSDism.
1311     dnl Mac OS X install seems to ignore -p option...
1312     powerpc-*-darwin* )
1313         INSTALL_PROGRAM="cp -fp"
1314         INSTALL_DATA="cp -fp"
1315         ;;
1316     *)
1317         ;;
1318 esac
1319
1320 dnl strip command
1321 dnl   defines STRIP as strip or nothing if not found
1322 AC_CHECK_PROG(STRIP, strip, strip, true)
1323
1324 dnl does make support "-include" (only GNU make does AFAIK)?
1325 AC_CACHE_CHECK([if make is GNU make], wx_cv_prog_makeisgnu,
1326 [
1327     if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
1328             egrep -s GNU > /dev/null); then
1329         wx_cv_prog_makeisgnu="yes"
1330     else
1331         wx_cv_prog_makeisgnu="no"
1332     fi
1333 ])
1334
1335 if test "x$wx_cv_prog_makeisgnu" = "xyes"; then
1336     IF_GNU_MAKE=""
1337 else
1338     IF_GNU_MAKE="#"
1339 fi
1340
1341 AC_SUBST(IF_GNU_MAKE)
1342
1343 dnl we don't need to check for VPATH support in GNU make - it does have it
1344 if test "x$wx_cv_prog_makeisgnu" != "xyes"; then
1345 dnl check if VPATH works
1346 AC_CACHE_CHECK([if make supports VPATH], wx_cv_prog_makevpath, [
1347 dnl create Makefile
1348 cat - << EOF > confMake
1349 check : file
1350         cp \$? \$@
1351         cp \$? final_file
1352 EOF
1353
1354 if test ! -d sub ; then
1355   mkdir sub
1356 fi
1357 echo dummy > sub/file
1358 ${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null
1359 RESULT=$?
1360 rm -f sub/file check final_file confMake
1361 rmdir sub
1362 if test "$RESULT" = 0; then
1363   wx_cv_prog_makevpath="yes"
1364 else
1365   wx_cv_prog_makevpath="no"
1366 fi
1367 ])
1368
1369 if test "x$wx_cv_prog_makevpath" != "xyes"; then
1370 AC_MSG_ERROR([
1371 You need a make-utility that is able to use the variable
1372 VPATH correctly.
1373 If your version of make does not support VPATH correctly,
1374 please install GNU-make (possibly as gmake), and start
1375 configure with the following command:
1376 export MAKE=gmake; ./configure  for sh-type shells
1377 setenv MAKE gmake; ./configure  for csh-type shells
1378 Also please do remember to use gmake in this case every time
1379 you are trying to compile.
1380 ])
1381 fi dnl make without VPATH
1382 fi dnl not GNU make
1383
1384 dnl YACC checks
1385 dnl   defines YACC with the appropriate command
1386 AC_PROG_YACC
1387
1388 dnl LEX checks
1389 dnl   defines LEX with the appropriate command
1390 dnl   defines LEXLIB with the appropriate library
1391 AC_PROG_LEX
1392
1393 dnl needed for making link to setup.h
1394 AC_PROG_LN_S
1395
1396 dnl ---------------------------------------------------------------------------
1397 dnl When we are using gcc on OS/2, we want to be either using resources (PM)
1398 dnl or a more complete POSIX emulation for Motif/GTK+/X11
1399 dnl ---------------------------------------------------------------------------
1400 dnl (OS/2-only piece)
1401 case "${host}" in
1402   *-pc-os2_emx | *-pc-os2-emx )
1403       dnl Explicitly link -lstdcpp, since we are using "gcc" not "g++"/"c++".
1404       LIBS="$LIBS -lstdcpp"
1405       if test "$wxUSE_MOTIF" = 1 -o "$wxUSE_GTK" = 1 -o "$wxUSE_X11" = 1; then
1406           dnl More complete Unix emulation for unix-like ports
1407           dnl by linking in POSIX/2's cExt (if available).
1408           AC_CHECK_LIB(cExt, drand48, LIBS="$LIBS -lcExt")
1409       else
1410           dnl Include resources for the "native" port (wxPM).
1411           RESPROGRAMOBJ="\${top_srcdir}/include/wx/os2/wx.res"
1412       fi
1413   ;;
1414 esac
1415 dnl (end of OS/2-only piece)
1416
1417 dnl ------------------------------------------------------------------------
1418 dnl Check for headers
1419 dnl ------------------------------------------------------------------------
1420
1421 dnl test for strings.h needed under AIX, but do not check for it wxMac as
1422 dnl it exists but is only a simple redirection to string.h and it is in
1423 dnl conflict with Strings.h in FlatCarbon headers
1424 if test "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then
1425   dnl defines HAVE_STRINGS_H
1426   AC_CHECK_HEADERS(strings.h)
1427 fi
1428
1429 dnl defines HAVE_STDLIB_H
1430 AC_CHECK_HEADERS(stdlib.h)
1431 dnl defines HAVE_MALLOC_H
1432 AC_CHECK_HEADERS(malloc.h)
1433 dnl defines HAVE_UNISTD_H
1434 AC_CHECK_HEADERS(unistd.h)
1435 dnl defines HAVE_WCHAR_H
1436 AC_CHECK_HEADERS(wchar.h)
1437
1438 dnl maybe wchar_t is in wcstr.h if we don't have wchar.h?
1439 if test "$ac_cv_header_wchar_h" != "yes"; then
1440     dnl defines HAVE_WCSTR_H
1441     AC_CHECK_HEADERS(wcstr.h)
1442 fi
1443
1444 dnl defines HAVE_FNMATCH_H
1445 AC_CHECK_HEADERS(fnmatch.h)
1446
1447 if test "x$ac_cv_header_fnmatch_h" = "xyes"; then
1448     AC_CHECK_FUNCS(fnmatch)
1449 fi
1450
1451 dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
1452 AC_CHECK_HEADERS(langinfo.h)
1453
1454 case "${host}" in
1455   *-pc-os2_emx | *-pc-os2-emx )
1456       dnl Explicitly link -lintl if langinfo.h is available.
1457       if test $ac_cv_header_langinfo_h = "yes"; then
1458           LIBS="$LIBS -lintl"
1459       fi
1460   ;;
1461 esac
1462
1463 if test "$wxUSE_GUI" = "yes"; then
1464     if test "$wxUSE_UNIX" = "yes"; then
1465         dnl defines HAVE_X11_XKBLIB_H
1466         AC_CHECK_HEADERS(X11/XKBlib.h)
1467     fi
1468 fi
1469
1470 dnl ---------------------------------------------------------------------------
1471 dnl Checks for compiler characteristics
1472 dnl ---------------------------------------------------------------------------
1473
1474 dnl defines const to be empty if c-compiler does not support const fully
1475 AC_C_CONST
1476 dnl defines inline to a sensible value for the c-compiler
1477 AC_C_INLINE
1478
1479 dnl check the sizes of integral types (give some reasonable default values for
1480 dnl cross-compiling)
1481 dnl   defines the size of certain types of variables in SIZEOF_<TYPE>
1482 AC_CHECK_SIZEOF(char, 1)
1483 AC_CHECK_SIZEOF(short, 2)
1484 AC_CHECK_SIZEOF(void *, 4)
1485 AC_CHECK_SIZEOF(int, 4)
1486 AC_CHECK_SIZEOF(long, 4)
1487
1488 case "${host}" in
1489     arm-*-linux* )
1490         AC_CHECK_SIZEOF(long long, 8)
1491     ;;
1492     *-hp-hpux* )
1493         AC_CHECK_SIZEOF(long long, 0)
1494         if test "$ac_cv_sizeof_long_long" != "0"; then
1495             dnl HPUX 10.20 headers need this define in order to use long long definitions
1496             CPPFLAGS="$CPPFLAGS -D_INCLUDE_LONGLONG"
1497         fi
1498     ;;
1499     * )
1500         AC_CHECK_SIZEOF(long long, 0)
1501 esac
1502
1503 dnl we have to do it ourselves because SGI/Irix's stdio.h does not include
1504 dnl wchar_t and AC_CHECK_SIZEOF only includes stdio.h
1505 dnl Mac OS X does not provide wchar.h and wchar_t is defined by stdlib.h (GD)
1506 AC_CACHE_CHECK([size of wchar_t], wx_cv_sizeof_wchar_t,
1507 [
1508     AC_TRY_RUN(
1509         [
1510             /* DJGPP only has fake wchar_t: */
1511             #ifdef __DJGPP__
1512             #  error "fake wchar_t"
1513             #endif
1514             #ifdef HAVE_WCHAR_H
1515             #  ifdef __CYGWIN__
1516             #    include <stddef.h>
1517             #  endif
1518             #  include <wchar.h>
1519             #endif
1520             #ifdef HAVE_STDLIB_H
1521             #  include <stdlib.h>
1522             #endif
1523             #include <stdio.h>
1524             int main()
1525             {
1526                 FILE *f=fopen("conftestval", "w");
1527                 if (!f) exit(1);
1528                 fprintf(f, "%i", sizeof(wchar_t));
1529                 exit(0);
1530             }
1531         ],
1532         wx_cv_sizeof_wchar_t=`cat conftestval`,
1533         wx_cv_sizeof_wchar_t=0,
1534         [
1535             case "${host}" in
1536               *-pc-msdosdjgpp )
1537                 wx_cv_sizeof_wchar_t=0
1538                 ;;
1539               * )
1540                 wx_cv_sizeof_wchar_t=4
1541                 ;;
1542             esac
1543         ]
1544     )
1545 ])
1546
1547 AC_DEFINE_UNQUOTED(SIZEOF_WCHAR_T, $wx_cv_sizeof_wchar_t)
1548
1549 dnl check for large file support
1550 AC_SYS_LARGEFILE
1551
1552 dnl we need to define _FILE_OFFSET_BITS or _LARGE_FILES on the compiler command
1553 dnl line because otherwise the system headers risk being included before
1554 dnl wx/defs.h which defines these constants leading to inconsistent
1555 dnl sizeof(off_t) in different source files of the same program and linking
1556 dnl problems
1557 if test "x$wx_largefile" = "xyes"; then
1558     if test "x$ac_cv_sys_file_offset_bits" = "x64"; then
1559         WX_LARGEFILE_FLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES"
1560     else
1561         WX_LARGEFILE_FLAGS="-D_LARGE_FILES"
1562     fi
1563     CPPFLAGS="$CPPFLAGS $WX_LARGEFILE_FLAGS"
1564 fi
1565
1566 dnl check for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling)
1567 WX_C_BIGENDIAN
1568
1569 dnl check for iostream (as opposed to iostream.h) standard header
1570 WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH))
1571
1572 dnl check whether C++ compiler supports bool built-in type
1573 WX_CPP_BOOL
1574
1575 dnl check whether C++ compiler supports explicit keyword
1576 WX_CPP_EXPLICIT
1577
1578 dnl check whether C++ compiler supports C++ casts
1579 AC_CXX_CONST_CAST
1580
1581 dnl ---------------------------------------------------------------------------
1582 dnl Define search path for includes and libraries: all headers and libs will be
1583 dnl looked for in all directories of this path
1584 dnl ---------------------------------------------------------------------------
1585
1586 dnl Notice that /usr/include should *not* be in this list, otherwise it breaks
1587 dnl compilation on Solaris/AIX/... with gcc because standard (non ANSI C)
1588 dnl headers are included instead of the "fixed" (ANSI-fied) gcc ones.
1589 dnl
1590 dnl Also try to put all directories which may contain X11R6 before those which
1591 dnl may contain X11R5/4 - we want to use R6 on machines which have both!
1592 SEARCH_INCLUDE="\
1593     /usr/local/include        \
1594                               \
1595     /usr/Motif-1.2/include    \
1596     /usr/Motif-2.1/include    \
1597                               \
1598     /usr/include/Motif1.2     \
1599     /opt/xpm/include/X11      \
1600     /opt/GBxpm/include/       \
1601     /opt/GBxpm/X11/include/   \
1602                               \
1603     /usr/Motif1.2/include     \
1604     /usr/dt/include           \
1605     /usr/openwin/include      \
1606                               \
1607     /usr/include/Xm           \
1608                               \
1609     /usr/X11R6/include        \
1610     /usr/X11R6.4/include      \
1611     /usr/X11R5/include        \
1612     /usr/X11R4/include        \
1613                               \
1614     /usr/include/X11R6        \
1615     /usr/include/X11R5        \
1616     /usr/include/X11R4        \
1617                               \
1618     /usr/local/X11R6/include  \
1619     /usr/local/X11R5/include  \
1620     /usr/local/X11R4/include  \
1621                               \
1622     /usr/local/include/X11R6  \
1623     /usr/local/include/X11R5  \
1624     /usr/local/include/X11R4  \
1625                               \
1626     /usr/X11/include          \
1627     /usr/include/X11          \
1628     /usr/local/X11/include    \
1629     /usr/local/include/X11    \
1630                               \
1631     /usr/X386/include         \
1632     /usr/x386/include         \
1633     /usr/XFree86/include/X11  \
1634                               \
1635     X:/XFree86/include        \
1636     X:/XFree86/include/X11    \
1637                               \
1638     /usr/include/gtk          \
1639     /usr/local/include/gtk    \
1640     /usr/include/glib         \
1641     /usr/local/include/glib   \
1642                               \
1643     /usr/include/qt           \
1644     /usr/local/include/qt     \
1645                               \
1646     /usr/include/windows      \
1647     /usr/include/wine         \
1648     /usr/local/include/wine   \
1649                               \
1650     /usr/unsupported/include  \
1651     /usr/athena/include       \
1652     /usr/local/x11r5/include  \
1653     /usr/lpp/Xamples/include  \
1654                               \
1655     /usr/openwin/share/include"
1656
1657 SEARCH_LIB="`echo "$SEARCH_INCLUDE" | sed s/include/lib/g` "
1658
1659 dnl ------------------------------------------------------------------------
1660 dnl Check for libraries
1661 dnl ------------------------------------------------------------------------
1662
1663 dnl flush the cache because checking for libraries below might abort
1664 AC_CACHE_SAVE
1665
1666 dnl check for glibc version
1667 dnl
1668 dnl VZ: I have no idea why had this check been there originally, but now
1669 dnl     we could probably do without it by just always adding _GNU_SOURCE
1670 if test "$USE_LINUX" = 1; then
1671     AC_CACHE_CHECK([for glibc 2.1 or later], wx_cv_lib_glibc21,[
1672         AC_TRY_COMPILE([#include <features.h>],
1673             [
1674                 #if (__GLIBC__ < 2) || (__GLIBC_MINOR__ < 1)
1675                     #error not glibc2.1
1676                 #endif
1677             ],
1678             [
1679                 wx_cv_lib_glibc21=yes
1680             ],
1681             [
1682                 wx_cv_lib_glibc21=no
1683             ]
1684         )
1685     ])
1686     if test "$wx_cv_lib_glibc21" = "yes"; then
1687         AC_DEFINE(wxHAVE_GLIBC2)
1688     fi
1689 fi
1690
1691 dnl we may need _GNU_SOURCE for 2 things:
1692 dnl
1693 dnl  1. to get PTHREAD_MUTEX_RECURSIVE with glibc 2.1+ (strictly speaking we
1694 dnl  only need _XOPEN_SOURCE=500 but just defining this disables _BSD_SOURCE
1695 dnl  which breaks libtiff compilation, so it is simpler to just define
1696 dnl  _GNU_SOURCE to get everything)
1697 dnl
1698 dnl  2. for Unicode functions
1699 if test "x$wx_cv_lib_glibc21" = "xyes"; then
1700     if test "$wxUSE_UNICODE" = "yes" -o "$wxUSE_THREADS" = "yes"; then
1701         AC_DEFINE(_GNU_SOURCE)
1702     fi
1703 fi
1704
1705 dnl ---------------------------------------------------------------------------
1706 dnl Optional libraries
1707 dnl
1708 dnl   --with-<lib>=sys
1709 dnl       looks for system library and fails if not found
1710 dnl
1711 dnl   --with-<lib>
1712 dnl   --with-<lib>=yes
1713 dnl       looks for system library and, if not found, prints a warning,
1714 dnl       falls back to the builtin wx version, and continues configuration
1715 dnl
1716 dnl   --with-<lib>=builtin
1717 dnl       uses builtin wx version without searching for system library
1718 dnl
1719 dnl   --with-<lib>=no
1720 dnl   --without-<lib>
1721 dnl       do not use library (neither system nor builtin wx version)
1722 dnl
1723 dnl ---------------------------------------------------------------------------
1724
1725 dnl ------------------------------------------------------------------------
1726 dnl Check for regex libraries
1727 dnl ------------------------------------------------------------------------
1728
1729 REGEX_INCLUDE=
1730 if test "$wxUSE_REGEX" != "no"; then
1731     AC_DEFINE(wxUSE_REGEX)
1732
1733     if test "$wxUSE_REGEX" = "sys" -o "$wxUSE_REGEX" = "yes" ; then
1734         dnl according to Unix 98 specs, regcomp() is in libc but I believe that
1735         dnl on some old systems it may be in libregex - check for it too?
1736         AC_CHECK_HEADER(regex.h, AC_CHECK_FUNCS(regcomp))
1737
1738         if test "x$ac_cv_func_regcomp" != "xyes"; then
1739             if test "$wxUSE_REGEX" = "sys" ; then
1740                 AC_MSG_ERROR([system regex library not found! Use --with-regex to use built-in version])
1741             else
1742                 AC_MSG_WARN([system regex library not found, will use built-in instead])
1743                 wxUSE_REGEX=builtin
1744             fi
1745         else
1746             dnl we are using the system library
1747             wxUSE_REGEX=sys
1748         fi
1749     fi
1750
1751     if test "$wxUSE_REGEX" = "builtin" ; then
1752         REGEX_INCLUDE="-I\${top_srcdir}/src/regex"
1753     fi
1754 fi
1755
1756 dnl ------------------------------------------------------------------------
1757 dnl Check for zlib compression library
1758 dnl ------------------------------------------------------------------------
1759
1760 ZLIB_INCLUDE=
1761 ZLIB_LINK=
1762 if test "$wxUSE_ZLIB" != "no" ; then
1763     AC_DEFINE(wxUSE_ZLIB)
1764
1765     if test "$wxUSE_ZLIB" = "sys" -o "$wxUSE_ZLIB" = "yes" ; then
1766         dnl don't test for zlib under Mac -- its verson there is 1.1.3 but we
1767         dnl should still use it because hopefully (can someone confirm this?)
1768         dnl Apple did fix the security problem in it and not using the system
1769         dnl library results in a whole bunch of warnings when linking with
1770         dnl Carbon framework
1771         if test "$USE_DARWIN" = 1; then
1772             system_zlib_h_ok="yes"
1773         else
1774             dnl we have troubles with ancient zlib versions (e.g. 1.0.4 is
1775             dnl known to not work) and although I don't know which is
1776             dnl the minimal required version it's safer to test for 1.1.4 as
1777             dnl it fixes a security problem in 1.1.3 -- and hopefully nobody
1778             dnl has anything more ancient (1.1.3 was released in July 1998)
1779             dnl anyhow
1780             AC_CACHE_CHECK([for zlib.h >= 1.1.4], ac_cv_header_zlib_h,
1781                 AC_TRY_RUN(
1782                     [
1783                         dnl zlib.h defines ZLIB_VERSION="x.y.z"
1784                         #include <zlib.h>
1785                         #include <stdio.h>
1786
1787                         dnl don't use the brackets as quotes, we need them
1788                         changequote(,)
1789                         int main()
1790                         {
1791                             FILE *f=fopen("conftestval", "w");
1792                             if (!f) exit(1);
1793                             fprintf(f, "%s",
1794                                     ZLIB_VERSION[0] == '1' &&
1795                                     (ZLIB_VERSION[2] > '1' ||
1796                                     (ZLIB_VERSION[2] == '1' &&
1797                                      ZLIB_VERSION[4] >= '4')) ? "yes" : "no");
1798                             exit(0);
1799                         }
1800                         changequote([,])
1801                     ],
1802                     ac_cv_header_zlib_h=`cat conftestval`,
1803                     ac_cv_header_zlib_h=no,
1804                     dnl cross-compiling: don't have an answer, try later
1805                     unset ac_cv_header_zlib_h
1806                 )
1807             )
1808             dnl If the test above did not come up with a value (e.g. cross
1809             dnl compiling) then this should give a definitive answer
1810             AC_CHECK_HEADER(zlib.h)
1811
1812             system_zlib_h_ok=$ac_cv_header_zlib_h
1813         fi
1814
1815         if test "$system_zlib_h_ok" = "yes"; then
1816             AC_CHECK_LIB(z, deflate, ZLIB_LINK=" -lz")
1817         fi
1818
1819         if test "x$ZLIB_LINK" = "x" ; then
1820             if test "$wxUSE_ZLIB" = "sys" ; then
1821                 AC_MSG_ERROR([zlib library not found or too old! Use --with-zlib=builtin to use built-in version])
1822             else
1823                 AC_MSG_WARN([zlib library not found or too old, will use built-in instead])
1824                 wxUSE_ZLIB=builtin
1825             fi
1826         else
1827             dnl we are using the system library
1828             wxUSE_ZLIB=sys
1829         fi
1830     fi
1831
1832     if test "$wxUSE_ZLIB" = "builtin" ; then
1833         ZLIB_INCLUDE="-I\${top_srcdir}/src/zlib"
1834     fi
1835 fi
1836
1837 dnl ------------------------------------------------------------------------
1838 dnl Check for png library
1839 dnl ------------------------------------------------------------------------
1840
1841 PNG_INCLUDE=
1842 PNG_LINK=
1843 if test "$wxUSE_LIBPNG" != "no" ; then
1844     AC_DEFINE(wxUSE_LIBPNG)
1845
1846     if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBPNG" = "builtin" ; then
1847         AC_MSG_WARN([wxMGL doesn't work with builtin png library, will use MGL one instead])
1848         wxUSE_LIBPNG=sys
1849     fi
1850
1851     dnl for the check below to have a chance to succeed, we must already have
1852     dnl libz somewhere (don't do this when bulding wxMGL since its libpng
1853     dnl doesn't depend on zlib)
1854     if test "$wxUSE_MGL" != 1 -a "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then
1855         AC_MSG_WARN([system png library doesn't work without system zlib, will use built-in instead])
1856         wxUSE_LIBPNG=builtin
1857     fi
1858
1859     if test "$wxUSE_MGL" != 1 ; then
1860         dnl Don't check for libpng when building wxMGL, libmgl contains it
1861         if test "$wxUSE_LIBPNG" = "sys" -o "$wxUSE_LIBPNG" = "yes" ; then
1862             dnl libpng version 0.9 is known to not work, if an even newer
1863             dnl version is required, just bump it up in the test below
1864             AC_CACHE_CHECK([for png.h > 0.90], ac_cv_header_png_h,
1865                 AC_TRY_RUN(
1866                     [
1867                         dnl png.h defines PNG_LIBPNG_VER=number
1868                         #include <png.h>
1869                         #include <stdio.h>
1870
1871                         int main()
1872                         {
1873                             FILE *f=fopen("conftestval", "w");
1874                             if (!f) exit(1);
1875                             fprintf(f, "%s",
1876                                      PNG_LIBPNG_VER > 90 ? "yes" : "no");
1877                             exit(0);
1878                         }
1879                     ],
1880                     ac_cv_header_png_h=`cat conftestval`,
1881                     ac_cv_header_png_h=no,
1882                     dnl cross-compiling: test (later) if we have any png.h
1883                     unset ac_cv_header_png_h
1884                 )
1885             )
1886             AC_CHECK_HEADER(png.h)
1887
1888             if test "$ac_cv_header_png_h" = "yes"; then
1889                 AC_CHECK_LIB(png, png_check_sig, PNG_LINK=" -lpng", , [-lz -lm])
1890             fi
1891
1892             if test "x$PNG_LINK" = "x" ; then
1893                 if test "$wxUSE_LIBPNG" = "sys" ; then
1894                     AC_MSG_ERROR([system png library not found or too old! Use --with-libpng=builtin to use built-in version])
1895                 else
1896                     AC_MSG_WARN([system png library not found or too old, will use built-in instead])
1897                     wxUSE_LIBPNG=builtin
1898                 fi
1899             else
1900                 dnl we are using the system library
1901                 wxUSE_LIBPNG=sys
1902             fi
1903         fi
1904     fi
1905
1906     if test "$wxUSE_LIBPNG" = "builtin" ; then
1907         PNG_INCLUDE="-I\${top_srcdir}/src/png"
1908     fi
1909
1910     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
1911 fi
1912
1913 dnl ------------------------------------------------------------------------
1914 dnl Check for jpeg library
1915 dnl ------------------------------------------------------------------------
1916
1917 JPEG_INCLUDE=
1918 JPEG_LINK=
1919 if test "$wxUSE_LIBJPEG" != "no" ; then
1920     AC_DEFINE(wxUSE_LIBJPEG)
1921
1922     if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBJPEG" = "builtin" ; then
1923         AC_MSG_WARN([wxMGL doesn't work with builtin jpeg library, will use MGL one instead])
1924         wxUSE_LIBJPEG=sys
1925     fi
1926
1927     if test "$wxUSE_MGL" != 1 ; then
1928         dnl Don't check for libjpeg when building wxMGL, libmgl contains it
1929         if test "$wxUSE_LIBJPEG" = "sys" -o "$wxUSE_LIBJPEG" = "yes" ; then
1930             dnl can't use AC_CHECK_HEADER as jconfig.h defines things like
1931             dnl HAVE_STDLIB_H which are already defined and this provokes
1932             dnl a compiler warning which configure considers as an error...
1933             AC_MSG_CHECKING(for jpeglib.h)
1934             AC_CACHE_VAL(ac_cv_header_jpeglib_h,
1935                 AC_TRY_COMPILE(
1936                     [
1937                         #undef HAVE_STDLIB_H
1938                         #include <stdio.h>
1939                         #include <jpeglib.h>
1940                     ],
1941                     [
1942                     ],
1943                     ac_cv_header_jpeglib_h=yes,
1944                     ac_cv_header_jpeglib_h=no
1945                 )
1946             )
1947             AC_MSG_RESULT($ac_cv_header_jpeglib_h)
1948
1949             if test "$ac_cv_header_jpeglib_h" = "yes"; then
1950                 AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK=" -ljpeg")
1951             fi
1952
1953             if test "x$JPEG_LINK" = "x" ; then
1954                 if test "$wxUSE_LIBJPEG" = "sys" ; then
1955                     AC_MSG_ERROR([system jpeg library not found! Use --with-libjpeg=builtin to use built-in version])
1956                 else
1957                     AC_MSG_WARN([system jpeg library not found, will use built-in instead])
1958                     wxUSE_LIBJPEG=builtin
1959                 fi
1960             else
1961                 dnl we are using the system library
1962                 wxUSE_LIBJPEG=sys
1963             fi
1964         fi
1965     fi
1966
1967     if test "$wxUSE_LIBJPEG" = "builtin" ; then
1968         JPEG_INCLUDE="-I\${top_srcdir}/src/jpeg"
1969     fi
1970 fi
1971
1972 dnl ------------------------------------------------------------------------
1973 dnl Check for tiff library
1974 dnl ------------------------------------------------------------------------
1975
1976 TIFF_INCLUDE=
1977 TIFF_LINK=
1978 TIFF_PREREQ_LINKS=-lm
1979 if test "$wxUSE_LIBTIFF" != "no" ; then
1980     AC_DEFINE(wxUSE_LIBTIFF)
1981
1982     if test "$wxUSE_LIBTIFF" = "sys" -o "$wxUSE_LIBTIFF" = "yes" ; then
1983         dnl libtiff may depend on libjpeg and libz so use them in the test
1984         dnl below or it would fail
1985         if test "$wxUSE_LIBJPEG" = "sys"; then
1986             TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $JPEG_LINK"
1987         fi
1988         if test "$wxUSE_ZLIB" = "sys"; then
1989             TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $ZLIB_LINK"
1990         fi
1991         AC_CHECK_HEADER(tiffio.h,
1992                         AC_CHECK_LIB(tiff, TIFFError,
1993                                      TIFF_LINK=" -ltiff",
1994                                      ,
1995                                      $TIFF_PREREQ_LINKS)
1996                        )
1997
1998         if test "x$TIFF_LINK" = "x" ; then
1999             if test "$wxUSE_LIBTIFF" = "sys" ; then
2000                 AC_MSG_ERROR([system tiff library not found! Use --with-libtiff=builtin to use built-in version])
2001             else
2002                 AC_MSG_WARN([system tiff library not found, will use built-in instead])
2003                 wxUSE_LIBTIFF=builtin
2004             fi
2005         else
2006             dnl we are using the system library
2007             wxUSE_LIBTIFF=sys
2008         fi
2009     fi
2010
2011     if test "$wxUSE_LIBTIFF" = "builtin" ; then
2012         TIFF_INCLUDE="-I\${top_srcdir}/src/tiff"
2013     fi
2014 fi
2015
2016 dnl ----------------------------------------------------------------
2017 dnl search for toolkit (widget sets)
2018 dnl ----------------------------------------------------------------
2019
2020 AFMINSTALL=
2021 WIN32INSTALL=
2022
2023 TOOLKIT=
2024 TOOLKIT_INCLUDE=
2025 WIDGET_SET=
2026
2027 dnl are we building for a win32 target environment?
2028 dnl If so, setup common stuff needed for both GUI and Base libs.
2029 if test "$USE_WIN32" = 1 ; then
2030     AC_CHECK_HEADERS(w32api.h)
2031     AC_CHECK_HEADER(windows.h, [],
2032     [
2033         AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
2034     ])
2035
2036     dnl check if can use _WIN32_IE macro
2037     AC_CACHE_CHECK([if w32api has good enough MSIE support], wx_cv_w32api_win32_ie,
2038     [
2039       AC_TRY_COMPILE([#include <w32api.h>],
2040                      [
2041                        #define wxCHECK_W32API_VERSION( major, minor ) \
2042                        ( defined( __W32API_MAJOR_VERSION ) && defined( __W32API_MINOR_VERSION ) \
2043                        && ( ( __W32API_MAJOR_VERSION > (major) ) \
2044                        || ( __W32API_MAJOR_VERSION == (major) && __W32API_MINOR_VERSION >= (minor))))
2045
2046                        #if !wxCHECK_W32API_VERSION(1,1)
2047                        #error You need w32api 1.1 or newer
2048                        #endif
2049                      ], [
2050                         wx_cv_w32api_win32_ie=yes
2051                      ], [
2052                         wx_cv_w32api_win32_ie=no
2053                      ])
2054     ])
2055     if test "$wx_cv_w32api_win32_ie" = "yes" ; then
2056         CPPFLAGS="$CPPFLAGS -D_WIN32_IE=0x400"
2057     fi
2058
2059     dnl --- FIXME: This is still a somewhat random list of libs,
2060     dnl ---        some of them should probably be included conditionally.
2061     LIBS="$LIBS -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -ladvapi32 -lwsock32"
2062
2063     case "${host}" in
2064         *-*-cygwin* )
2065             dnl Cygwin doesn't include these by default
2066             LIBS="$LIBS -lkernel32 -luser32 -lgdi32 -lcomdlg32"
2067             TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WIN95__"
2068     esac
2069
2070     dnl add extra odbc libs if we have compiled in odbc
2071     if test "$wxUSE_ODBC" = "yes" ; then
2072         LIBS=" -lodbc32 -lole32 -loleaut32 $LIBS"
2073     fi
2074
2075     RESFLAGS="--include-dir \$(top_srcdir)/include --include-dir \$(top_srcdir)/\$(program_dir) --define __WIN32__ --define __WIN95__ --define __GNUWIN32__"
2076     RESPROGRAMOBJ="\$(PROGRAM)_resources.o"
2077
2078     dnl install Win32-specific files in "make install"
2079     WIN32INSTALL=win32install
2080 fi
2081
2082 if test "$USE_DARWIN" = 1; then
2083     dnl Mac OS X/Darwin GCC uses precompiled headers by default
2084     dnl this can cause problems both when compiling wxMac and wxBase
2085     if test "$wxUSE_PRECOMP" = "yes"; then
2086         CPPFLAGS="$CPPFLAGS -cpp-precomp"
2087     else
2088         CPPFLAGS="$CPPFLAGS -no-cpp-precomp"
2089     fi
2090 fi
2091
2092 if test "$wxUSE_GUI" = "yes"; then
2093     USE_GUI=1
2094
2095     GUI_TK_LIBRARY=
2096
2097     WXGTK12=
2098     WXGTK127=
2099     WXGTK20=
2100
2101     if test "$wxUSE_MSW" = 1 ; then
2102         TOOLKIT=MSW
2103         GUIDIST=MSW_DIST
2104
2105         dnl -mwindows causes a heap of other default gui libs to be linked in.
2106         dnl All platforms need this, except maybe cygwin
2107         LDFLAGS="$LDFLAGS -Wl,--subsystem,windows -mwindows"
2108     fi
2109
2110     if test "$wxUSE_GTK" = 1; then
2111         AC_MSG_CHECKING([for GTK+ version])
2112
2113         gtk_version_cached=1
2114         AC_CACHE_VAL(wx_cv_lib_gtk,
2115             [
2116                 dnl stupid GTK+ AM macros produce their own messages, so we
2117                 dnl have to pass to the next line
2118                 gtk_version_cached=0
2119                 AC_MSG_RESULT()
2120
2121                 dnl we must link against lgthread unless the user
2122                 dnl used --disable-threads
2123                 GTK_MODULES=
2124                 if test "$wxUSE_THREADS" = "yes"; then
2125                     GTK_MODULES=gthread
2126                 fi
2127
2128                 dnl note that if we fail to find GTK2 we abort and don't fall
2129                 dnl back to GTK1.x
2130                 wx_cv_lib_gtk=
2131                 if test "x$wxUSE_GTK2" = "xyes"; then
2132                     AM_PATH_GTK_2_0(2.0.0, wx_cv_lib_gtk=2.0, , $GTK_MODULES)
2133                 else
2134                     AM_PATH_GTK(1.2.7, wx_cv_lib_gtk=1.2.7, , $GTK_MODULES)
2135
2136                     if test -z "$wx_cv_lib_gtk"; then
2137                         AM_PATH_GTK(1.2.3, wx_cv_lib_gtk=1.2.3, , $GTK_MODULES)
2138                     fi
2139                 fi
2140
2141                 if test -z "$wx_cv_lib_gtk"; then
2142                     dnl looks better in AC_MSG_RESULT
2143                     wx_cv_lib_gtk=none
2144                 else
2145                     dnl we need to cache GTK_CFLAGS and GTK_LIBS for the
2146                     dnl subsequent runs
2147                     wx_cv_cflags_gtk=$GTK_CFLAGS
2148                     wx_cv_libs_gtk=$GTK_LIBS
2149                 fi
2150             ]
2151         )
2152
2153         dnl if it wasn't cached, the messages from AM_PATH_GTK() above are
2154         dnl enough
2155         if test "$gtk_version_cached" = 1; then
2156             AC_MSG_RESULT($wx_cv_lib_gtk)
2157         fi
2158
2159         case "$wx_cv_lib_gtk" in
2160             2.0)    WXGTK20=1
2161                     TOOLKIT_VERSION=2
2162                     ;;
2163             1.2.7)  WXGTK127=1
2164                     WXGTK12=1
2165                     ;;
2166             1.2.3)  WXGTK12=1
2167                     ;;
2168             *)      AC_MSG_ERROR([
2169 Please check that gtk-config is in path, the directory
2170 where GTK+ libraries are installed (returned by
2171 'gtk-config --libs' command) is in LD_LIBRARY_PATH or
2172 equivalent variable and GTK+ is version 1.2.3 or above.
2173                             ])
2174                     ;;
2175         esac
2176
2177         if test "$WXGTK20" = 1; then
2178             if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
2179                 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2180                     [
2181                         CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2182                         LIBS="$LIBS $PANGOFT2_LIBS"
2183                     ],
2184                     [
2185                         AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2186                         wxUSE_PRINTING_ARCHITECTURE="no"
2187                     ]
2188                 )
2189             fi
2190         else
2191             if test "$wxUSE_UNICODE" = "yes"; then
2192                 AC_MSG_WARN([Unicode configuration not supported with GTK+ 1.x])
2193                 wxUSE_UNICODE=no
2194             fi
2195         fi
2196
2197         dnl we need poll() in src/gtk/app.cpp (we know that Darwin doesn't
2198         dnl have it but we do the check for the others)
2199         if test "$USE_DARWIN" != 1; then
2200             AC_CHECK_FUNCS(poll)
2201         fi
2202
2203         TOOLKIT_INCLUDE="$wx_cv_cflags_gtk"
2204         GUI_TK_LIBRARY="$wx_cv_libs_gtk"
2205
2206         AFMINSTALL=afminstall
2207         TOOLKIT=GTK
2208         GUIDIST=GTK_DIST
2209
2210         dnl test for XIM support in libgdk
2211         AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM))
2212     fi
2213
2214     if test "$wxUSE_MGL" = 1; then
2215        AC_MSG_CHECKING(for SciTech MGL library)
2216         if test "x$MGL_ROOT" = x ; then
2217             AC_MSG_RESULT(not found)
2218             AC_MSG_ERROR([Cannot find MGL library. Make sure MGL_ROOT is set.])
2219         else
2220             AC_MSG_RESULT($MGL_ROOT)
2221         fi
2222
2223         AC_MSG_CHECKING(for libmgl location)
2224         dnl Find MGL library that we want
2225         dnl FIXME_MGL - test for MGL variants for freebsd etc.
2226         case "${host}" in
2227             *-*-linux* )
2228               if test "x$wxUSE_SHARED" = xyes ; then
2229                   mgl_os_candidates="linux/gcc/glibc.so linux/gcc/glibc"
2230               else
2231                   mgl_os_candidates="linux/gcc/glibc linux/gcc/glibc.so"
2232               fi
2233               ;;
2234             *-pc-msdosdjgpp )
2235               mgl_os_candidates="dos32/dj2"
2236               ;;
2237             *)
2238               AC_MSG_ERROR(This system type ${host} is not yet supported by wxMGL.)
2239         esac
2240
2241         mgl_lib_type=""
2242         mgl_os=""
2243
2244         for mgl_os_i in $mgl_os_candidates ; do
2245             if test "x$mgl_os" = x ; then
2246                 if test "$wxUSE_DEBUG_FLAG" = yes ; then
2247                     if test -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.a -o \
2248                             -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.so; then
2249                         mgl_lib_type=debug
2250                         mgl_os=$mgl_os_i
2251                     fi
2252                 fi
2253                 if test "x$mgl_lib_type" = x ; then
2254                     if test -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.a -o \
2255                             -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.so; then
2256                         mgl_lib_type=release
2257                         mgl_os=$mgl_os_i
2258                     fi
2259                 fi
2260             fi
2261         done
2262
2263         if test "x$mgl_os" = x ; then
2264             AC_MSG_RESULT(not found)
2265             AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.])
2266         fi
2267         AC_MSG_RESULT("$MGL_ROOT/lib/$mgl_lib_type/$mgl_os")
2268
2269         wxUSE_UNIVERSAL="yes"
2270
2271         TOOLKIT_INCLUDE="-I$MGL_ROOT/include"
2272         GUI_TK_LIBRARY="-L$MGL_ROOT/lib/$mgl_lib_type/$mgl_os -lmgl -lmglcpp -lpm"
2273
2274         AFMINSTALL=afminstall
2275         TOOLKIT=MGL
2276         GUIDIST=MGL_DIST
2277     fi
2278
2279     if test "$wxUSE_MICROWIN" = 1; then
2280         AC_MSG_CHECKING(for MicroWindows)
2281         if test "x$MICROWINDOWS" = x ; then
2282             AC_MSG_RESULT(not found)
2283             AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWINDOWS is set.])
2284         else
2285             AC_MSG_RESULT($MICROWINDOWS)
2286         fi
2287
2288         if test -f $MICROWINDOWS/lib/libmwin.a; then
2289             AC_MSG_RESULT(MicroWindows' libraries found.)
2290         else
2291             AC_MSG_ERROR([Cannot find MicroWindows libraries, make sure they are compiled.])
2292         fi
2293
2294         TOOLKIT_INCLUDE="-I$MICROWINDOWS/include"
2295         GUI_TK_LIBRARY="-L$MICROWINDOWS/lib -lmwin -lmwengine -mwfonts -mwdrivers -mwinlib"
2296
2297         wxUSE_UNIVERSAL="yes"
2298
2299         AFMINSTALL=afminstall
2300         TOOLKIT=MICROWIN
2301         GUIDIST=MICROWIN_DIST
2302
2303         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXMSW__ -D__WIN95__ -D__WIN32__ -DMWIN -DMICROWIN_NOCONTROLS -DMICROWIN_TODO=1"
2304     fi
2305
2306     if test "$wxUSE_X11" = 1; then
2307         dnl use standard macros to check for X headers/libs, this brings support
2308         dnl for the standard configure options --x-includes and --x-libraries
2309         AC_PATH_XTRA
2310
2311         if test "$no_x" = "yes"; then
2312           AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2313         fi
2314
2315         GUI_TK_LIBRARY="$X_LIBS"
2316         TOOLKIT_INCLUDE="$X_CFLAGS"
2317         AFMINSTALL=afminstall
2318         COMPILED_X_PROGRAM=0
2319
2320         if test "$wxUSE_NANOX" = "yes"; then
2321             AC_MSG_CHECKING(for MicroWindows/NanoX distribution)
2322             if test "x$MICROWIN" = x ; then
2323                 AC_MSG_RESULT(not found)
2324                 AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWIN is set.])
2325             else
2326                 AC_MSG_RESULT($MICROWIN)
2327                 AC_DEFINE(wxUSE_NANOX)
2328             fi
2329         fi
2330
2331         xpm_link=
2332         AC_MSG_CHECKING(for Xpm library)
2333         WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
2334         if test "$ac_find_libraries" != "" ; then
2335             WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
2336             GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
2337             xpm_link=" -lXpm"
2338             AC_DEFINE(wxHAVE_LIB_XPM)
2339             AC_MSG_RESULT(found at $ac_find_libraries)
2340         else
2341             AC_TRY_COMPILE(
2342                 [
2343                     #include <X11/xpm.h>
2344                 ],
2345                 [
2346                     int version;
2347                     version = XpmLibraryVersion();
2348                 ],
2349                 [
2350                     xpm_link=" -lXpm"
2351                     AC_DEFINE(wxHAVE_LIB_XPM)
2352                     AC_MSG_RESULT(found in default search path)
2353                     COMPILED_X_PROGRAM=0
2354                 ],
2355                 [
2356                     AC_MSG_RESULT(no)
2357                     AC_MSG_WARN(library will be compiled without support for images in XPM format)
2358                 ]
2359             )
2360         fi
2361
2362         if test "$wxUSE_UNICODE" = "yes"; then
2363                 PKG_CHECK_MODULES(PANGOX, pangox,
2364                     [
2365                         CXXFLAGS="$CXXFLAGS $PANGOX_CFLAGS"
2366                         LIBS="$LIBS $PANGOX_LIBS"
2367                     ],
2368                     [
2369                         AC_MSG_ERROR([pangox library not found, library cannot be compiled in Unicode mode])
2370                     ]
2371                 )
2372                 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2373                     [
2374                         CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2375                         LIBS="$LIBS $PANGOFT2_LIBS"
2376                     ],
2377                     [
2378                         AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2379                         wxUSE_PRINTING_ARCHITECTURE="no"
2380                     ]
2381                 )
2382                 PKG_CHECK_MODULES(PANGOXFT, pangoxft,
2383                     [
2384                         CXXFLAGS="$CXXFLAGS $PANGOXFT_CFLAGS"
2385                         LIBS="$LIBS $PANGOXFT_LIBS"
2386                     ],
2387                     [
2388                         AC_MSG_WARN([pangoxft library not found, library will be compiled without anti-aliasing support])
2389                     ]
2390                 )
2391         fi
2392
2393         wxUSE_UNIVERSAL="yes"
2394
2395         if test "$wxUSE_NANOX" = "yes"; then
2396             TOOLKIT_INCLUDE="-I\$(top_srcdir)/include/wx/x11/nanox -I\$(MICROWIN)/src/include $TOOLKIT_INCLUDE"
2397             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 -DLINUX=1 -DUNIX=1 -DUSE_EXPOSURE -DSCREEN_HEIGHT=480 -DSCREEN_WIDTH=640 -DSCREEN_DEPTH=4 -DX11=1"
2398             GUI_TK_LIBRARY="$GUI_TK_LIBRARY \$(MICROWIN)/src/lib/libnano-X.a"
2399         else
2400             GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lX11$xpm_link"
2401         fi
2402
2403         TOOLKIT_VPATH="\${top_srcdir}/src/x11"
2404         TOOLKIT=X11
2405         GUIDIST=X11_DIST
2406     fi
2407
2408     if test "$wxUSE_MOTIF" = 1; then
2409         dnl use standard macros to check for X headers/libs, this brings support
2410         dnl for the standard configure options --x-includes and --x-libraries
2411         AC_PATH_XTRA
2412
2413         if test "$no_x" = "yes"; then
2414           AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2415         fi
2416
2417         dnl for some reason AC_PATH_XTRA seems to add -INONE and -LNONE to
2418         dnl X_LIBS and X_CFLAGS respectively -- what for??
2419         GUI_TK_LIBRARY=`echo $X_LIBS | sed 's/ -LNONE//'`
2420         TOOLKIT_INCLUDE=`echo $X_CFLAGS | sed 's/ -INONE//'`
2421         AFMINSTALL=afminstall
2422         COMPILED_X_PROGRAM=0
2423
2424         AC_MSG_CHECKING(for Motif/Lesstif headers)
2425         WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
2426         if test "$ac_find_includes" != "" ; then
2427             AC_MSG_RESULT(found in $ac_find_includes)
2428             WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
2429             TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE$ac_path_to_include"
2430         else
2431             AC_TRY_COMPILE(
2432                 [
2433                     #include <Xm/Xm.h>
2434                 ],
2435                 [
2436                     int version;
2437                     version = xmUseVersion;
2438                 ],
2439                 [
2440                     AC_MSG_RESULT(found in default search path)
2441                     COMPILED_X_PROGRAM=1
2442                 ],
2443                 [
2444                     AC_MSG_RESULT(no)
2445                     AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
2446                 ]
2447             )
2448         fi
2449
2450         if test "$COMPILED_X_PROGRAM" = 0; then
2451             AC_MSG_CHECKING(for Motif/Lesstif library)
2452             WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
2453             if test "$ac_find_libraries" != "" ; then
2454                 AC_MSG_RESULT(found at $ac_find_libraries)
2455
2456                 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
2457                 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
2458             else
2459                 dnl it might happen that we found headers in one of the
2460                 dnl standard paths but the libs are elsewhere - we do need to
2461                 dnl try to compile a sample program then here
2462                 save_CFLAGS=$CFLAGS
2463                 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2464
2465                 AC_TRY_COMPILE(
2466                     [
2467                         #include <Xm/Xm.h>
2468                     ],
2469                     [
2470                         int version;
2471                         version = xmUseVersion;
2472                     ],
2473                     [
2474                         AC_MSG_RESULT(found in default search path)
2475                         COMPILED_X_PROGRAM=1
2476                     ],
2477                     [
2478                         AC_MSG_RESULT(no)
2479                         AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
2480                     ]
2481                 )
2482
2483                 CFLAGS=$save_CFLAGS
2484             fi
2485         fi
2486
2487         xpm_link=
2488         AC_MSG_CHECKING(for Xpm library)
2489         WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
2490         if test "$ac_find_libraries" != "" ; then
2491             WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
2492             GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
2493
2494             xpm_link=" -lXpm"
2495             AC_DEFINE(wxHAVE_LIB_XPM)
2496             AC_MSG_RESULT(found at $ac_find_libraries)
2497         else
2498             save_CFLAGS=$CFLAGS
2499             CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2500
2501             AC_TRY_COMPILE(
2502                 [
2503                     #include <X11/xpm.h>
2504                 ],
2505                 [
2506                     int version;
2507                     version = XpmLibraryVersion();
2508                 ],
2509                 [
2510                     xpm_link=" -lXpm"
2511                     AC_DEFINE(wxHAVE_LIB_XPM)
2512                     AC_MSG_RESULT(found in default search path)
2513                     COMPILED_X_PROGRAM=0
2514                 ],
2515                 [
2516                     AC_MSG_RESULT(no)
2517                     AC_MSG_WARN(library will be compiled without support for images in XPM format)
2518                 ]
2519             )
2520
2521             CFLAGS=$save_CFLAGS
2522         fi
2523
2524         AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])
2525         libp_link=""
2526         libsm_ice_link=""
2527         libs_found=0
2528         for libp in "" " -lXp"; do
2529             if test "$libs_found" = "0"; then
2530                 for libsm_ice in " -lSM -lICE"; do
2531                     if test "$libs_found" = "0"; then
2532                         save_LIBS="$LIBS"
2533                         LIBS="$GUI_TK_LIBRARY -lXm${xpm_link} ${libp} -lXmu -lXext -lXt${libsm_ice} -lX11"
2534                         save_CFLAGS=$CFLAGS
2535                         CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2536
2537                         AC_TRY_LINK(
2538                             [
2539                                 #include <Xm/Xm.h>
2540                                 #include <Xm/List.h>
2541                             ],
2542                             [
2543                                 XmString string = NULL;
2544                                 Widget w = NULL;
2545                                 int position = 0;
2546                                 XmListAddItem(w, string, position);
2547                             ],
2548                             [
2549                                 libp_link="$libp"
2550                                 libsm_ice_link="$libsm_ice"
2551                                 AC_MSG_RESULT(
2552                                     [need${libp_link}${libsm_ice_link}])
2553                                 libs_found=1
2554                             ], []
2555                         )
2556
2557                         LIBS="$save_LIBS"
2558                         CFLAGS=$save_CFLAGS
2559                     fi
2560                 done
2561             fi
2562         done
2563
2564         if test "$libs_found" = "0"; then
2565             AC_MSG_RESULT([can't find the right libraries])
2566             AC_MSG_ERROR([can't link a simple motif program])
2567         fi
2568
2569         save_CFLAGS=$CFLAGS
2570         CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2571         AC_MSG_CHECKING([for Motif 2])
2572         AC_TRY_COMPILE([
2573                         #include <Xm/Xm.h>
2574                        ],
2575                        [
2576                         #if XmVersion < 2000
2577                         #error "Not Motif 2"
2578                         #endif
2579                        ],
2580                        [
2581                         AC_DEFINE(__WXMOTIF20__,1)
2582                         AC_MSG_RESULT([found])
2583                        ],
2584                        [
2585                         AC_DEFINE(__WXMOTIF20__,0)
2586                         AC_MSG_RESULT([not found])
2587                        ])
2588         CFLAGS=$save_CFLAGS
2589
2590         GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXm$xpm_link${libp_link} -lXmu -lXext -lXt${libsm_ice_link} -lX11"
2591         TOOLKIT_VPATH="\${top_srcdir}/src/motif${PATH_IFS}\${top_srcdir}/src/motif/xmcombo${PATH_IFS}\${top_srcdir}/src/x11"
2592         TOOLKIT=MOTIF
2593         GUIDIST=MOTIF_DIST
2594     fi
2595
2596     if test "$wxUSE_MAC" = 1; then
2597         CPPFLAGS="$CPPFLAGS -fpascal-strings -I\${top_srcdir}/src/mac/morefilex -I/Developer/Headers/FlatCarbon"
2598
2599         TOOLKIT_VPATH="\${top_srcdir}/src/mac${PATH_IFS}\${top_srcdir}/src/mac/morefilex"
2600         TOOLKIT=MAC
2601         dnl we can't call this MAC_DIST or autoconf thinks its a macro
2602         GUIDIST=MACX_DIST
2603     fi
2604
2605     if test "$wxUSE_COCOA" = 1; then
2606         TOOLKIT_VPATH="\${top_srcdir}/src/cocoa"
2607         TOOLKIT=COCOA
2608         GUIDIST=COCOA_DIST
2609     fi
2610
2611     if test "$wxUSE_PM" = 1; then
2612         TOOLKIT=PM
2613         GUIDIST=GTK_DIST
2614 dnl        AC_MSG_WARN([OS/2 PM requires old resource format, re-enabled])
2615 dnl        wxUSE_PROLOGIO="yes"
2616 dnl        wxUSE_RESOURCES="yes"
2617         AC_MSG_WARN([OS/2 threads are not yet supported... disabled])
2618         wxUSE_THREADS="no"
2619     fi
2620
2621     dnl the name of the directory where the files for this toolkit live
2622     if test "$TOOLKIT" = "PM" ; then
2623         TOOLKIT_DIR="os2"
2624     else
2625         TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
2626     fi
2627
2628     dnl misc other files depending on the port
2629     PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst"
2630
2631     if test "$wxUSE_UNIVERSAL" = "yes"; then
2632         ALL_OBJECTS="\$(GUI_LOWLEVEL_OBJS) \${UNIVOBJS}"
2633
2634         dnl ALL_SOURCES and ALL_HEADERS shouldn't include really all sources
2635         dnl and headers as some/most are not needed for wxUniv but I don't
2636         dnl have time to add GUI_LOWLEVEL_SOURCES/HEADERS stuff now (TODO!)
2637         ALL_SOURCES="\$(ALL_SOURCES) \${UNIV_SOURCES}"
2638         ALL_HEADERS="\$(ALL_HEADERS) \${UNIV_HEADERS}"
2639
2640         PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst"
2641         if test "$wxUSE_X11" = 1; then
2642             TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}${PATH_IFS}\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes"
2643         else
2644             TOOLKIT_VPATH="\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes${PATH_IFS}\${top_srcdir}/src/${TOOLKIT_DIR}"
2645         fi
2646         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__"
2647         WIDGET_SET=univ
2648     else
2649         ALL_OBJECTS="\$(GUIOBJS)"
2650         ALL_SOURCES="\$(ALL_SOURCES)"
2651         ALL_HEADERS="\$(ALL_HEADERS)"
2652     fi
2653
2654     ALL_OBJECTS="${ALL_OBJECTS} \$(COMMONOBJS) \$(GENERICOBJS)"
2655
2656     if test "$TOOLKIT" != "MSW" -a "$USE_DOS" != 1; then
2657         ALL_OBJECTS="${ALL_OBJECTS} \$(UNIXOBJS)"
2658     fi
2659
2660     if test "$wxUSE_HTML" = "yes"; then
2661         ALL_OBJECTS="${ALL_OBJECTS} \$(HTMLOBJS)"
2662     fi
2663
2664     if test "$wxUSE_LIBJPEG" = "builtin" ; then
2665         ALL_OBJECTS="${ALL_OBJECTS} \$(JPEGOBJS)"
2666     fi
2667     if test "$wxUSE_LIBTIFF" = "builtin" ; then
2668         ALL_OBJECTS="${ALL_OBJECTS} \$(TIFFOBJS)"
2669     fi
2670     if test "$wxUSE_LIBPNG" = "builtin" ; then
2671         ALL_OBJECTS="${ALL_OBJECTS} \$(PNGOBJS)"
2672     fi
2673
2674     dnl distribute samples/demos/utils with GUI versions
2675     GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
2676     DISTDIR="wx\$(TOOLKIT)"
2677 else
2678     USE_GUI=0
2679
2680     dnl this doesn't quite work right for wxBase, but the places
2681     dnl where it is wrong aren't fatal (yet) though.
2682     TOOLKIT_DIR="base"
2683
2684     dnl the sources, their dependenices and the headers
2685     if test "$USE_WIN32" = 1 ; then
2686         ALL_OBJECTS="\${BASE_OBJS} \${BASE_MSW_OBJS}"
2687         TOOLKIT_VPATH="\${top_srcdir}/src/msw"
2688
2689         dnl yes, the toolkit for wxBase on win32 is actually MSW
2690         dnl wxBase on unix does not need a 'TOOLKIT' defined.
2691         TOOLKIT="MSW"
2692     else
2693         ALL_OBJECTS="\${BASE_OBJS} \${BASE_UNIX_OBJS}"
2694         TOOLKIT_VPATH="\${top_srcdir}/src/unix"
2695     fi
2696
2697     ALL_SOURCES="\$(ALL_SOURCES)"
2698     ALL_HEADERS="\$(ALL_HEADERS)"
2699
2700     PORT_FILES="\${top_srcdir}/src/files.lst"
2701
2702     dnl distribute only wxBase sources/headers
2703     GUIDIST="BASE_DIST"
2704     DISTDIR="wxBase"
2705 fi
2706
2707 dnl ---------------------------------------------------------------------------
2708 dnl Optional libraries included when system library is not used
2709 dnl ---------------------------------------------------------------------------
2710
2711 dnl ODBC objects are Unix only
2712 if test "$TOOLKIT" != "MSW" -a "$wxUSE_ODBC" = "yes" ; then
2713     ALL_OBJECTS="${ALL_OBJECTS} \$(IODBCOBJS)"
2714 fi
2715
2716 if test "$wxUSE_REGEX" = "builtin" ; then
2717     ALL_OBJECTS="${ALL_OBJECTS} \$(REGEXOBJS)"
2718 fi
2719 if test "$wxUSE_ZLIB" = "builtin" ; then
2720     ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
2721 fi
2722
2723 dnl ---------------------------------------------------------------------------
2724 dnl OpenGL libraries
2725 dnl ---------------------------------------------------------------------------
2726
2727 if test "$wxUSE_OPENGL" = "yes"; then
2728     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = "1"; then
2729         OPENGL_LIBS="-framework OpenGL -framework AGL"
2730     elif test "$wxUSE_MSW" = 1; then
2731         OPENGL_LIBS="-lopengl32 -lglu32"
2732     else
2733         AC_CHECK_HEADER(GL/gl.h,
2734             [
2735                 AC_MSG_CHECKING([for -lGL])
2736                 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],[GL])
2737                 if test "$ac_find_libraries" != "" ; then
2738                     WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
2739                     if test "$ac_path_to_link" = " -L/usr/lib" ; then
2740                         LDFLAGS_GL="$LDFLAGS"
2741                     else
2742                         LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
2743                     fi
2744                     OPENGL_LIBS="-lGL -lGLU"
2745                     AC_MSG_RESULT([yes])
2746                 else
2747                     AC_MSG_RESULT([no])
2748                     AC_MSG_CHECKING([for -lMesaGL])
2749                     WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],[MesaGL])
2750                     if test "$ac_find_libraries" != "" ; then
2751                         WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
2752                         LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
2753                         OPENGL_LIBS="-lMesaGL -lMesaGLU"
2754                         AC_MSG_RESULT([yes])
2755                     else
2756                         AC_MSG_RESULT([no])
2757                     fi
2758                 fi
2759             ])
2760
2761         if test "x$OPENGL_LIBS" = "x"; then
2762             dnl it should be an error and not a warning because OpenGL is not on
2763             dnl by default and so if it had been explicitely requested, we
2764             dnl shouldn't just fall back to compiling the library without it
2765             AC_MSG_ERROR(OpenGL libraries not available)
2766         fi
2767     fi
2768
2769     if test "$wxUSE_OPENGL" = "yes"; then
2770         AC_DEFINE(wxUSE_OPENGL)
2771         AC_DEFINE(wxUSE_GLCANVAS)
2772         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl"
2773     fi
2774 fi
2775
2776 if test -z "$TOOLKIT_VPATH" ; then
2777     TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}"
2778 fi
2779
2780 dnl the symbol which allows conditional compilation for the given toolkit
2781 if test -n "$TOOLKIT" ; then
2782     TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WX${TOOLKIT}__"
2783 fi
2784
2785 lib_unicode_suffix=
2786 if test "$wxUSE_UNICODE" = "yes"; then
2787     lib_unicode_suffix=u
2788 fi
2789
2790 lib_debug_suffix=
2791 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
2792     lib_debug_suffix=d
2793 fi
2794
2795 WX_VERSION_TAG=`echo WX${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_${WX_RELEASE} | tr "[[a-z]]" "[[A-Z]]"`
2796
2797 TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}-${WX_RELEASE}"
2798 TOOLCHAIN_NAME_GL="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_gl-${WX_RELEASE}"
2799
2800 if test "$cross_compiling" = "yes"; then
2801     TOOLCHAIN_NAME="${TOOLCHAIN_NAME}-${host_alias}"
2802     TOOLCHAIN_NAME_GL="${TOOLCHAIN_NAME_GL}-${host_alias}"
2803 fi
2804
2805 dnl library link name
2806 WX_LIBRARY="wx_${TOOLCHAIN_NAME}"
2807 WX_LIBRARY_GL="wx_${TOOLCHAIN_NAME_GL}"
2808 WX_LIBRARY_BASENAME="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}"
2809
2810 dnl the name of the shared library
2811 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2812 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2813
2814 dnl the name of the links to the shared library
2815 WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}"
2816 WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2817 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}"
2818 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
2819
2820 case "${host}" in
2821     *-*-cygwin* | *-*-mingw32* )
2822
2823         dnl If we are cross compiling we want to use the 'full' unix type name for the
2824         dnl lib, but for a native install use the windows style naming convention.
2825         dnl (excepting again that we strip the ELF style version numbers off it).
2826
2827         dnl FIXME: is this GL stuff actually even used for wxMSW?  should it be??
2828
2829         if test "$cross_compiling" != "yes" -a "$TOOLKIT_DIR" = "msw"; then
2830             WX_LIBRARY="wxmsw${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2831             WX_LIBRARY_GL="wxmsw_gl${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2832             WX_LIBRARY_NAME_SHARED="${WX_LIBRARY}.${SO_SUFFIX}"
2833             WX_LIBRARY_NAME_SHARED_GL="${WX_LIBRARY_GL}.${SO_SUFFIX}"
2834         else
2835             WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}"
2836             WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
2837         fi
2838         ;;
2839
2840     *-*-darwin* )
2841         dnl Under Mac OS X, the naming conventions for shared libraries
2842         dnl are different: the number precedes the suffix.
2843
2844         WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2845         WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2846
2847         WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${WX_CURRENT}.${SO_SUFFIX}"
2848         WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2849         WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${SO_SUFFIX}"
2850         WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
2851
2852         dnl Under Mac OS X, we should build real frameworks instead of simple
2853         dnl dynamic shared libraries (in order to embed the resources)
2854         if test "$wxUSE_MAC" = 1; then
2855             dnl base name of the resource file for wxMac must be the same
2856             dnl as library installation base name (-install_name)
2857             WX_RESOURCES_MACOSX_ASCII="lib${WX_LIBRARY}.${WX_CURRENT}.r"
2858             WX_RESOURCES_MACOSX_DATA="lib${WX_LIBRARY}.${WX_CURRENT}.rsrc"
2859         fi
2860         ;;
2861 esac
2862
2863 dnl the name of the static library
2864 WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
2865 WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY_GL}.a"
2866
2867 dnl define which libs wx-config should link.
2868 WXCONFIG_LIBS="-l${WX_LIBRARY}"
2869 WXCONFIG_LIBS_STATIC="lib${WX_LIBRARY}.a"
2870
2871 if test "$wxUSE_OPENGL" = "yes"; then
2872     WXCONFIG_LIBS_GL="-l${WX_LIBRARY_GL} ${OPENGL_LIBS}"
2873     WXCONFIG_LIBS_STATIC_GL="lib${WX_LIBRARY_GL}.a ${OPENGL_LIBS}"
2874 fi
2875
2876
2877 dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
2878
2879 if test "$wxUSE_SHARED" = "yes"; then
2880     case "${host}" in
2881       *-pc-os2_emx | *-pc-os2-emx | \
2882       *-pc-msdosdjgpp )
2883         dnl only static for now
2884         wxUSE_SHARED=no
2885         AC_MSG_WARN([Host system doesn't support shared libraries, disabling])
2886       ;;
2887     esac
2888 fi
2889
2890 if test "$wxUSE_SHARED" = "yes"; then
2891
2892     dnl install targets
2893     if test "$wxUSE_OPENGL" = "yes"; then
2894         WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2895         WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1} \$(build_libdir)/${WX_LIBRARY_LINK1_GL}"
2896     else
2897         WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2898         WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1}"
2899     fi
2900
2901     dnl the extra compiler flags needed for compilation of shared library
2902     if test "$GCC" = "yes"; then
2903         dnl the switch for gcc is the same under all platforms
2904         PIC_FLAG="-fPIC"
2905     fi
2906
2907
2908     dnl use versioned symbols if available on the platform
2909     WX_VERSIONED_SYMBOLS([\$(top_builddir)/version-script])
2910
2911     dnl the command to use for creating the shared library
2912     SHARED_LD="${CXX} -shared -o"
2913
2914     case "${host}" in
2915       *-hp-hpux* )
2916         dnl default settings are good for gcc but not for the native HP-UX
2917         if test "$GCC" = "yes"; then
2918             dnl -o flag must be after PIC flag
2919             SHARED_LD="${CXX} -shared ${PIC_FLAG} -o"
2920         else
2921             dnl no idea why it wants it, but it does
2922             LDFLAGS="$LDFLAGS -L/usr/lib"
2923
2924             SHARED_LD="${CXX} -b -o"
2925             PIC_FLAG="+Z"
2926         fi
2927
2928         dnl install shared libs without symlinks
2929         if test "$wxUSE_OPENGL" = "yes"; then
2930             WX_ALL_INSTALLED="preinstall_gl"
2931             WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED} \$(build_libdir)/${WX_LIBRARY_NAME_SHARED_GL}"
2932         else
2933             WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
2934         fi
2935       ;;
2936
2937       *-*-linux* )
2938         if test "$GCC" != "yes"; then
2939             AC_CACHE_CHECK([for Intel compiler], wx_cv_prog_icc,
2940             [
2941                 AC_TRY_COMPILE([],
2942                     [
2943                         #ifndef __INTEL_COMPILER
2944                         #error Not icc
2945                         #endif
2946                     ],
2947                     wx_cv_prog_icc=yes,
2948                     wx_cv_prog_icc=no
2949                 )
2950             ])
2951             if test "$wx_cv_prog_icc" = "yes"; then
2952                 PIC_FLAG="-KPIC"
2953             fi
2954         fi
2955
2956         if test "$wxUSE_SONAME" = "yes" ; then
2957             SONAME_FLAGS="-Wl,-soname,${WX_LIBRARY_LINK1}"
2958             SONAME_FLAGS_GL="-Wl,-soname,${WX_LIBRARY_LINK1_GL}"
2959             dnl substitute this in makelib.env for the contrib libs
2960             WX_TARGET_LIBRARY_SONAME="-Wl,-soname,\$(TARGETLIB_LINK1)"
2961         fi
2962       ;;
2963
2964       *-*-solaris2* )
2965         if test "$GCC" = yes ; then
2966             dnl newer versions of gcc need -isystem to compile X headers on
2967             dnl Solaris (which use old style C syntax)
2968             CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
2969         else
2970             SHARED_LD="${CXX} -G -o"
2971             PIC_FLAG="-KPIC"
2972             SONAME_FLAGS="-h ${WX_LIBRARY_NAME_SHARED}"
2973             SONAME_FLAGS_GL="-h ${WX_LIBRARY_NAME_SHARED_GL}"
2974         fi
2975       ;;
2976
2977       *-*-darwin* )
2978         dnl For Unix to MacOS X porting instructions, see:
2979         dnl http://fink.sourceforge.net/doc/porting/porting.html
2980         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -DWXMAKINGDLL"
2981         CFLAGS="$CFLAGS -fno-common"
2982         CXXFLAGS="$CXXFLAGS -fno-common"
2983         dnl wxWindows must be fully binded (lazy binding breaks RTTI classinfo)
2984         dnl this can be done either with the exe linker flag -Wl,-bind_at_load
2985         dnl or with a double stage link in order to create a single module
2986         dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
2987         SHARED_LD="\${top_srcdir}/distrib/mac/shared-ld-sh -undefined suppress -flat_namespace -o"
2988         PIC_FLAG="-dynamic -fPIC"
2989         dnl library installation base name and wxMac resources file base name
2990         dnl must be identical in order for the resource file to be found at
2991         dnl run time in src/mac/app.cpp
2992         SONAME_FLAGS="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1}"
2993         SONAME_FLAGS_GL="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1_GL}"
2994       ;;
2995
2996       *-*-aix* )
2997         dnl default settings are ok for gcc
2998         if test "$GCC" != "yes"; then
2999             dnl the abs path below used to be hardcoded here so I guess it must
3000             dnl be some sort of standard location under AIX?
3001             AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
3002                           makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
3003
3004             SHARED_LD="$(AIX_CXX_LD) -p 0 -o"
3005         fi
3006       ;;
3007
3008       *-*-cygwin* | *-*-mingw32* )
3009         WX_LIBRARY_IMPORTLIB="${WX_LIBRARY_NAME_SHARED}.a"
3010
3011         SHARED_LD="${CXX} -shared -Wl,--out-implib,lib/${WX_LIBRARY_IMPORTLIB} -o"
3012         TOOLCHAIN_DLL_DEFS="${TOOLCHAIN_DLL_DEFS} -DWXUSINGDLL=1"
3013
3014         PIC_FLAG="-UWXUSINGDLL -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1"
3015
3016         dnl Don't build seperate GL library
3017         WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
3018         WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
3019
3020         if test "$wxUSE_OPENGL" = "yes"; then
3021             LIBS="${LIBS} ${OPENGL_LIBS}"
3022         fi
3023       ;;
3024
3025       *-*-beos* )
3026         dnl can't use gcc under BeOS for shared library creation because it
3027         dnl complains about missing 'main'
3028         SHARED_LD="${LD} -shared -o"
3029       ;;
3030
3031       *-*-irix* )
3032         dnl default settings are ok for gcc
3033         if test "$GCC" != "yes"; then
3034             PIC_FLAG="-KPIC"
3035         fi
3036       ;;
3037
3038       *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \
3039       *-*-sunos4* | \
3040       *-*-osf* | \
3041       *-*-dgux5* | \
3042       *-*-sysv5* )
3043         dnl defaults are ok
3044       ;;
3045
3046       *)
3047         AC_MSG_ERROR(unknown system type $host.)
3048     esac
3049
3050     dnl set target to shared if not explicitly chose static before
3051     if test "x$WX_TARGET_LIBRARY" = "x"; then
3052         WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
3053         WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
3054     fi
3055
3056     dnl do not alter the LIBRARY_TYPE strings "so" and "a", they are magic
3057     WX_TARGET_LIBRARY_TYPE="so"
3058     INSTALL_LIBRARY='$(INSTALL_PROGRAM)'
3059 fi
3060
3061 dnl do not 'else' this, it may be changed in the above conditional.
3062 if test "$wxUSE_SHARED" = "no"; then
3063
3064     dnl give static wxBase and wxMSW build a working install target
3065     if test "$wxUSE_GUI" = "no" -o "$USE_WIN32" = 1 ; then
3066         dnl we're here because WX_ALL_INSTALLED is empty, but play safe anyway
3067         WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3068     fi
3069
3070     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
3071         WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3072     fi
3073
3074     if test "$wxUSE_OPENGL" = "yes"; then
3075         WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_gl"
3076         WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC} \$(build_libdir)/${WX_LIBRARY_NAME_STATIC_GL}"
3077     else
3078         WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC}"
3079     fi
3080
3081     WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
3082     WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
3083
3084     WX_TARGET_LIBRARY_TYPE="a"
3085     INSTALL_LIBRARY='$(INSTALL_DATA)'
3086
3087     dnl wx-config should assume the --static flag by default if we don't have
3088     dnl any shared libs anyhow
3089     STATIC_FLAG="yes"
3090 else
3091     STATIC_FLAG="no"
3092 fi
3093
3094 dnl default value is to (silently) do nothing in the makefile
3095 MACRESCOMP="@#"
3096 MACSETFILE="@#"
3097 MACRESWXCONFIG="#"
3098 if test "$wxUSE_MAC" = 1; then
3099     dnl add the resources target for wxMac
3100     LIBWXMACRES="\$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}"
3101     WX_ALL="${WX_ALL} ${LIBWXMACRES}"
3102     WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_res"
3103     AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
3104     AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
3105     AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
3106     MACOSX_BUNDLE="bundle"
3107     dnl resources are bundled both with shared library and applications
3108     dnl since the carb resource *must* be included in the application
3109     MACRESCOMP="\$(RESCOMP) -d __DARWIN__ -t APPL Carbon.r ${LIBWXMACRES} -o"
3110     MACSETFILE="\$(SETFILE)"
3111     MACRESWXCONFIG="${RESCOMP} -d __DARWIN__ -t APPL Carbon.r \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
3112 elif test "$wxUSE_COCOA" = 1; then
3113     AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
3114     AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
3115     AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
3116     MACRESCOMP="echo -n | \$(RESCOMP) -d __DARWIN__ -t APPL ${LIBWXMACRES} -o"
3117     MACSETFILE="\$(SETFILE)"
3118     MACRESWXCONFIG="echo -n | ${RESCOMP} -d __DARWIN__ -t APPL \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
3119 else
3120     if test "$wxUSE_PM" = 1; then
3121         MACRESCOMP="emxbind -ep"
3122     fi
3123 fi
3124
3125 dnl ---------------------------------------------------------------------------
3126 dnl Checks for typedefs
3127 dnl ---------------------------------------------------------------------------
3128
3129 dnl   defines mode_t if not already defined
3130 AC_TYPE_MODE_T
3131 dnl   defines off_t if not already defined
3132 AC_TYPE_OFF_T
3133 dnl   defines pid_t if not already defined
3134 AC_TYPE_PID_T
3135 dnl   defines size_t if not already defined
3136 AC_TYPE_SIZE_T
3137 dnl   defines uid_t and gid_t if not already defined
3138 AC_TYPE_UID_T
3139
3140 dnl check what exactly size_t is on this machine - this is necessary to avoid
3141 dnl ambiguos overloads in several places, notably wx/string.h and wx/array.h
3142 AC_LANG_SAVE
3143 AC_LANG_CPLUSPLUS
3144 AC_CACHE_CHECK([if size_t is unsigned int],
3145     wx_cv_size_t_is_uint,
3146     dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work
3147     dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate
3148     dnl methods in a local class (i.e. class inside a function) declaration
3149     dnl without any objections!!
3150     dnl
3151     dnl hence the hack below: we must have Foo at global scope!
3152     AC_TRY_COMPILE([#include <stddef.h>],
3153         [
3154             return 0; }
3155
3156             struct Foo { void foo(size_t); void foo(unsigned int); };
3157
3158             int bar() {
3159         ],
3160         wx_cv_size_t_is_uint=no,
3161         wx_cv_size_t_is_uint=yes
3162     )
3163 )
3164
3165 if test "$wx_cv_size_t_is_uint" = "yes"; then
3166     AC_DEFINE(wxSIZE_T_IS_UINT)
3167 else
3168     AC_CACHE_CHECK([if size_t is unsigned long],
3169         wx_cv_size_t_is_ulong,
3170         AC_TRY_COMPILE([#include <stddef.h>],
3171             [
3172                 return 0; }
3173
3174                 struct Foo { void foo(size_t); void foo(unsigned long); };
3175
3176                 int bar() {
3177             ],
3178             wx_cv_size_t_is_ulong=no,
3179             wx_cv_size_t_is_ulong=yes
3180         )
3181     )
3182
3183     if test "$wx_cv_size_t_is_ulong" = "yes"; then
3184         AC_DEFINE(wxSIZE_T_IS_ULONG)
3185     fi
3186 fi
3187
3188 AC_LANG_RESTORE
3189
3190 dnl ---------------------------------------------------------------------------
3191 dnl Checks for structures
3192 dnl ---------------------------------------------------------------------------
3193
3194 dnl does passwd struct has the pw_gecos field?
3195 AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
3196     [
3197         AC_TRY_COMPILE([#include <pwd.h>],
3198              [
3199                 char *p;
3200                 struct passwd *pw;
3201                 p = pw->pw_gecos;
3202              ],
3203              [
3204                 wx_cv_struct_pw_gecos=yes
3205              ],
3206              [
3207                 wx_cv_struct_pw_gecos=no
3208              ]
3209         )
3210     ]
3211 )
3212
3213 if test "$wx_cv_struct_pw_gecos" = "yes"; then
3214     AC_DEFINE(HAVE_PW_GECOS)
3215 fi
3216
3217 dnl ---------------------------------------------------------------------------
3218 dnl Check for functions
3219 dnl ---------------------------------------------------------------------------
3220
3221 dnl don't check for wchar_t functions if we haven't got wchar_t itself
3222 if test "$wx_cv_sizeof_wchar_t" != "0"; then
3223     AC_DEFINE(wxUSE_WCHAR_T)
3224
3225     dnl check for wcslen in all possible places
3226     WCSLEN_FOUND=0
3227     WCHAR_LINK=
3228     AC_CHECK_FUNCS(wcslen, WCSLEN_FOUND=1)
3229
3230     if test "$WCSLEN_FOUND" = 0; then
3231         if test "$TOOLKIT" = "MSW"; then
3232             AC_CHECK_LIB(msvcrt, wcslen, WCHAR_OK=1)
3233         else
3234             AC_CHECK_LIB(w, wcslen, [
3235                             WCHAR_LINK=" -lw"
3236                             WCSLEN_FOUND=1
3237                         ])
3238         fi
3239     fi
3240
3241     if test "$WCSLEN_FOUND" = 1; then
3242         AC_DEFINE(HAVE_WCSLEN)
3243     fi
3244
3245     dnl try to use wcsrtombs instead of wcstombs which is buggy in old GNU
3246     dnl libc versions if possible
3247     AC_CHECK_FUNCS(wcsrtombs)
3248 else
3249     AC_MSG_WARN([Wide character support is unavailable])
3250 fi
3251
3252 dnl *printf() functions sometimes are available in the library but not
3253 dnl prototyped -- if this is the case, we can't use them from C++ code, but to
3254 dnl detect this we have to use C++ compiler for testing
3255 AC_LANG_SAVE
3256 AC_LANG_CPLUSPLUS
3257
3258 dnl check for vsnprintf() -- a safe version of vsprintf())
3259 dnl
3260 dnl the trouble here is that on some systems (notable HP-UX) this function is
3261 dnl present in libc but not in the system headers and so AC_CHECK_FUNCS (which,
3262 dnl stupidly, provides a dummy function declaration inside its extension)
3263 dnl succeeds, even with C++ compiler, but the compilation of wxWindows fails
3264 dnl
3265 dnl so we first check if the function is in the library
3266 AC_CHECK_FUNCS(vsnprintf)
3267
3268 if test "$ac_cv_func_vsnprintf" = "yes"; then
3269     dnl yes it is -- now check if it is in the headers
3270     AC_CACHE_CHECK([for vsnprintf declaration], wx_cv_func_vsnprintf_decl,
3271         [
3272             AC_TRY_COMPILE(
3273                 [
3274                     #include <stdio.h>
3275                     #include <stdarg.h>
3276                 ],
3277                 [
3278                     char *buf;
3279                     va_list ap;
3280                     vsnprintf(buf, 10u, "%s", ap);
3281                 ],
3282                 wx_cv_func_vsnprintf_decl=yes,
3283                 wx_cv_func_vsnprintf_decl=no
3284             )
3285         ]
3286     )
3287
3288     if test "$wx_cv_func_vsnprintf_decl" = "yes"; then
3289         AC_DEFINE(HAVE_VSNPRINTF_DECL)
3290     fi
3291 fi
3292
3293 if test "$wxUSE_UNICODE" = yes; then
3294     dnl also look if we have wide char IO functions
3295     AC_CHECK_FUNCS(fputwc wprintf vswprintf)
3296
3297     dnl MinGW has a vswprintf with a different prototype, and
3298     dnl a _vsnwprintf with the correct prototype, but AC_CHECK_FUNCS
3299     dnl finds it even if it is not declared in some versions...
3300     AC_MSG_CHECKING([for _vsnwprintf])
3301     AC_TRY_COMPILE([#include <wchar.h>],
3302                    [&_vsnwprintf;],
3303                    [AC_MSG_RESULT([yes])
3304                     AC_DEFINE(HAVE__VSNWPRINTF)],
3305                    [AC_MSG_RESULT([no])]);
3306 fi
3307
3308 AC_LANG_RESTORE
3309
3310
3311
3312 dnl the following tests are for Unix(like) systems only
3313 if test "$TOOLKIT" != "MSW"; then
3314
3315 dnl check for available version of iconv()
3316
3317 AC_LANG_SAVE
3318 AC_LANG_CPLUSPLUS
3319 AM_ICONV
3320 LIBS="$LIBICONV $LIBS"
3321 AC_LANG_RESTORE
3322
3323 dnl check for POSIX signals if we need them
3324 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
3325     AC_CHECK_FUNCS(sigaction)
3326
3327     if test "$ac_cv_func_sigaction" = "no"; then
3328         AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
3329         wxUSE_ON_FATAL_EXCEPTION=no
3330     fi
3331
3332     if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3333       AC_LANG_SAVE
3334       AC_LANG_CPLUSPLUS
3335
3336       AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
3337       [
3338         AC_TRY_COMPILE([#include <signal.h>],
3339                      [
3340                         extern void testSigHandler(int);
3341
3342                         struct sigaction sa;
3343                         sa.sa_handler = testSigHandler;
3344                      ], [
3345                         wx_cv_type_sa_handler=int
3346                      ], [
3347                         wx_cv_type_sa_handler=void
3348                      ])
3349       ])
3350
3351       AC_LANG_RESTORE
3352
3353       AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
3354     fi
3355 fi
3356
3357 dnl check for the function for temp files creation
3358 AC_CHECK_FUNCS(mkstemp mktemp, break)
3359
3360 dnl get the library function to use for wxGetDiskSpace(): it is statfs() under
3361 dnl Linux and *BSD and statvfs() under Solaris
3362 AC_CACHE_CHECK(for statfs, wx_cv_func_statfs,
3363     AC_TRY_COMPILE(
3364         [
3365              #if defined(__BSD__)
3366                #include <sys/param.h>
3367                #include <sys/mount.h>
3368              #else
3369                #include <sys/vfs.h>
3370              #endif
3371         ],
3372         [
3373              long l;
3374              struct statfs fs;
3375              statfs("/", &fs);
3376              l = fs.f_bsize;
3377              l += fs.f_blocks;
3378              l += fs.f_bavail;
3379         ],
3380         [
3381              wx_cv_func_statfs=yes
3382         ],
3383         [
3384              wx_cv_func_statfs=no
3385         ]
3386     )
3387 )
3388
3389 if test "$wx_cv_func_statfs" = "yes"; then
3390     wx_cv_type_statvfs_t="struct statfs"
3391     AC_DEFINE(HAVE_STATFS)
3392 else
3393     AC_CACHE_CHECK(for statvfs, wx_cv_func_statvfs,
3394         AC_TRY_COMPILE(
3395             [
3396                 #include <stddef.h>
3397                 #include <sys/statvfs.h>
3398             ],
3399             [
3400                 statvfs("/", NULL);
3401             ],
3402             wx_cv_func_statvfs=yes,
3403             wx_cv_func_statvfs=no
3404         )
3405     )
3406
3407     if test "$wx_cv_func_statvfs" = "yes"; then
3408         dnl we also have to check whether we should use statvfs_t (works under
3409         dnl Solaris 8, doesn't work under Solaris 7) or "struct statvfs" (vice
3410         dnl versa) as the argument for statvfs in 64 bit off_t mode (in 32 bit
3411         dnl mode both work fine)
3412         dnl
3413         dnl for this check C++ compiler has to be used as passing incompatible
3414         dnl pointers is just a warning and not an error in C
3415         AC_LANG_SAVE
3416         AC_LANG_CPLUSPLUS
3417
3418         AC_CACHE_CHECK(for statvfs argument type, wx_cv_type_statvfs_t,
3419             AC_TRY_COMPILE(
3420                 [
3421                     #include <sys/statvfs.h>
3422                 ],
3423                 [
3424                     long l;
3425                     statvfs_t fs;
3426                     statvfs("/", &fs);
3427                     l = fs.f_bsize;
3428                     l += fs.f_blocks;
3429                     l += fs.f_bavail;
3430                 ],
3431                 wx_cv_type_statvfs_t=statvfs_t,
3432                 [
3433                     AC_TRY_COMPILE(
3434                         [
3435                             #include <sys/statvfs.h>
3436                         ],
3437                         [
3438                             long l;
3439                             struct statvfs fs;
3440                             statvfs("/", &fs);
3441                             l = fs.f_bsize;
3442                             l += fs.f_blocks;
3443                             l += fs.f_bavail;
3444                         ],
3445                         wx_cv_type_statvfs_t="struct statvfs",
3446                         wx_cv_type_statvfs_t="unknown"
3447                     )
3448                 ]
3449             )
3450         )
3451
3452         AC_LANG_RESTORE
3453
3454         if test "$wx_cv_type_statvfs_t" != "unknown"; then
3455             AC_DEFINE(HAVE_STATVFS)
3456         fi
3457     else
3458         dnl set it for the test below
3459         wx_cv_type_statvfs_t="unknown"
3460     fi
3461 fi
3462
3463 if test "$wx_cv_type_statvfs_t" != "unknown"; then
3464     AC_DEFINE_UNQUOTED(WX_STATFS_T, $wx_cv_type_statvfs_t)
3465 else
3466     AC_MSG_WARN([wxGetDiskSpace() function won't work without statfs()])
3467 fi
3468
3469 dnl check for fcntl() or at least flock() needed by Unix implementation of
3470 dnl wxSingleInstanceChecker
3471 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
3472     AC_CHECK_FUNCS(fcntl flock, break)
3473
3474     if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then
3475         AC_MSG_WARN(wxSingleInstanceChecker not available)
3476         wxUSE_SNGLINST_CHECKER=no
3477     fi
3478 fi
3479
3480 dnl check for timegm() used by datetime.cpp
3481 AC_CHECK_FUNCS(timegm)
3482
3483 dnl look for a function to modify the environment
3484 AC_CHECK_FUNCS(putenv setenv, break)
3485
3486 HAVE_SOME_SLEEP_FUNC=0
3487 if test "$USE_BEOS" = 1; then
3488     dnl BeOS has its own (wonder where did they get it from) sleep() function
3489     dnl in unistd.h
3490     AC_DEFINE(HAVE_SLEEP)
3491     HAVE_SOME_SLEEP_FUNC=1
3492 fi
3493
3494 if test "$USE_DARWIN" = 1; then
3495     dnl Mac OS X/Darwin has both nanosleep and usleep
3496     dnl but only usleep is defined in unistd.h
3497     AC_DEFINE(HAVE_USLEEP)
3498     HAVE_SOME_SLEEP_FUNC=1
3499 fi
3500
3501 if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
3502     dnl try nanosleep() in libc and libposix4, if this fails - usleep()
3503     POSIX4_LINK=
3504     AC_CHECK_FUNCS(nanosleep,
3505         AC_DEFINE(HAVE_NANOSLEEP),
3506         [
3507             AC_CHECK_LIB(posix4, nanosleep,
3508                 [
3509                     AC_DEFINE(HAVE_NANOSLEEP)
3510                     POSIX4_LINK=" -lposix4"
3511                 ],
3512                 [
3513                     AC_CHECK_FUNCS(usleep,
3514                         AC_DEFINE(HAVE_USLEEP),
3515                         AC_MSG_WARN([wxSleep() function will not work])
3516                     )
3517                 ]
3518             )
3519         ]
3520     )
3521 fi
3522
3523 dnl check for uname (POSIX) and gethostname (BSD)
3524 AC_CHECK_FUNCS(uname gethostname, break)
3525
3526 dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
3527 dnl but not for C++ one - hence change language)
3528 AC_LANG_SAVE
3529 AC_LANG_CPLUSPLUS
3530
3531 AC_CHECK_FUNCS(strtok_r)
3532
3533 AC_LANG_RESTORE
3534
3535 dnl check for inet_addr and inet_aton (these may live either in libc, or in
3536 dnl libnsl or libresolv or libsocket)
3537 INET_LINK=
3538 AC_CHECK_FUNCS(inet_addr,
3539     AC_DEFINE(HAVE_INET_ADDR),
3540     [
3541         AC_CHECK_LIB(nsl, inet_addr,
3542             INET_LINK="nsl",
3543             AC_CHECK_LIB(resolv, inet_addr,
3544                 INET_LINK="resolv",
3545                 AC_CHECK_LIB(socket, inet_addr,
3546                     INET_LINK="socket"
3547                 )
3548             )
3549         )
3550     ]
3551 )
3552
3553 AC_CHECK_FUNCS(inet_aton,
3554         AC_DEFINE(HAVE_INET_ATON),
3555         [
3556             dnl only check it in the same lib
3557             AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
3558         ])
3559
3560 if test "x$INET_LINK" != "x"; then
3561     AC_DEFINE(HAVE_INET_ADDR)
3562     INET_LINK=" -l$INET_LINK"
3563 fi
3564
3565 fi
3566 dnl if !MSW
3567
3568 dnl ===========================================================================
3569 dnl Now we have all the info we need - use it!
3570 dnl ===========================================================================
3571
3572 dnl flush the cache
3573 AC_CACHE_SAVE
3574
3575 dnl ---------------------------------------------------------------------------
3576 dnl thread support for Unix (for Win32 see past the next matching "else")
3577 dnl ---------------------------------------------------------------------------
3578
3579 dnl under MSW (except mingw32) we always have thread support
3580 CPP_MT_FLAG=
3581 if test "$TOOLKIT" != "MSW"; then
3582
3583     dnl the code below:
3584     dnl
3585     dnl   defines THREADS_LINK and THREADS_CFLAGS which are the options
3586     dnl   necessary to build the MT programs for the linker and compiler
3587     dnl   respectively
3588     dnl
3589     dnl   sets wxUSE_THREADS=1 if thread support is activated
3590
3591     THREADS_LINK=
3592     THREADS_CFLAGS=
3593
3594     if test "$wxUSE_THREADS" = "yes" ; then
3595         if test "$USE_BEOS" = 1; then
3596             AC_MSG_WARN([BeOS threads are not yet supported... disabled])
3597             wxUSE_THREADS="no"
3598         fi
3599     fi
3600
3601     if test "$wxUSE_THREADS" = "yes" ; then
3602         dnl find if POSIX threads are available
3603         dnl
3604         dnl the tests here are based on ACX_PTHREAD macro from autoconf macro
3605         dnl archive from http://ac-archive.sourceforge.net/
3606         dnl
3607         dnl thanks to Steven G. Johnson <stevenj@alum.mit.edu> and Alejandro
3608         dnl Forero Cuervo <bachue@bachue.com> for the original code
3609
3610         dnl TODO: cache the result
3611
3612         dnl define the list of the thread options to try in the loop below
3613         dnl with the convention that anything starting with '-' is a cpp flag
3614         dnl while anything else is a library (i.e. there is an implicit "-l")
3615         THREAD_OPTS="-pthread"
3616         case "${host}" in
3617           *-*-solaris2* | *-*-sunos4* )
3618                 if test "x$GCC" = "xyes"; then
3619                     dnl Solaris/gcc combination use this one for some reason
3620                     THREAD_OPTS="-pthreads $THREAD_OPTS"
3621                 else
3622                     THREAD_OPTS="-mt $THREAD_OPTS"
3623                 fi
3624                 ;;
3625           *-*-freebsd*)
3626                 dnl look, in order, for the kernel threads, then Linux threads
3627                 dnl and finally the userland threads
3628                 THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r"
3629                 ;;
3630           *-*-darwin* | *-*-cygwin* )
3631                 dnl Darwin / Mac OS X just uses -lpthread tested below
3632                 dnl and so does Cygwin
3633                 THREAD_OPTS=""
3634                 ;;
3635           *-*-aix*)
3636                 dnl AIX calls the library libpthreads - thanks IBM!
3637                 THREAD_OPTS="pthreads"
3638                 ;;
3639           *-hp-hpux* )
3640                 dnl HP-UX aCC only gives a warning, not an error about
3641                 dnl -pthread but it doesn't work and we have to use -lpthread
3642                 dnl there
3643                 if test "x$GCC" != "xyes"; then
3644                     THREAD_OPTS=""
3645                 fi
3646         esac
3647
3648         dnl simply linking with libpthread should make the test below work but
3649         dnl it's far from certain that the threaded programs compiled without
3650         dnl any special switches actually work, so try it after all the others
3651         THREAD_OPTS="$THREAD_OPTS pthread none"
3652
3653         dnl now test for all possibilities
3654         THREADS_OK=no
3655         for flag in $THREAD_OPTS; do
3656             case $flag in
3657                 none)
3658                     AC_MSG_CHECKING([whether pthreads work without any flags])
3659                     ;;
3660
3661                 -*)
3662                     AC_MSG_CHECKING([whether pthreads work with $flag])
3663                     THREADS_CFLAGS="$flag"
3664                     ;;
3665
3666                 *)
3667                     AC_MSG_CHECKING([for the pthreads library -l$flag])
3668                     THREADS_LINK="-l$flag"
3669                     ;;
3670               esac
3671
3672               save_LIBS="$LIBS"
3673               save_CFLAGS="$CFLAGS"
3674               LIBS="$THREADS_LINK $LIBS"
3675               CFLAGS="$THREADS_CFLAGS $CFLAGS"
3676
3677               AC_TRY_LINK([#include <pthread.h>],
3678                           [pthread_create(0,0,0,0);],
3679                           THREADS_OK=yes)
3680
3681               LIBS="$save_LIBS"
3682               CFLAGS="$save_CFLAGS"
3683
3684               AC_MSG_RESULT($THREADS_OK)
3685               if test "x$THREADS_OK" = "xyes"; then
3686                       break;
3687               fi
3688
3689               THREADS_LINK=""
3690               THREADS_CFLAGS=""
3691       done
3692
3693       if test "x$THREADS_OK" != "xyes"; then
3694           wxUSE_THREADS=no
3695           AC_MSG_WARN([No thread support on this system... disabled])
3696       else
3697           dnl yes, these special compiler flags should be used with the
3698           dnl linker as well
3699           LDFLAGS="$THREADS_CFLAGS $LDFLAGS"
3700           LIBS="$THREADS_LINK $LIBS"
3701
3702           AC_MSG_CHECKING([if more special flags are required for pthreads])
3703           flag=no
3704           case "${host}" in
3705             *-aix*)
3706                 dnl again quoting from
3707                 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
3708                 dnl
3709                 dnl     When compiling and linking with -pthread, the library
3710                 dnl     search path should include -L/usr/lib/threads at the
3711                 dnl     beginning of the path.
3712                 LDFLAGS="-L/usr/lib/threads $LDFLAGS"
3713                 flag="-D_THREAD_SAFE"
3714                 ;;
3715             *-freebsd*)
3716                 flag="-D_THREAD_SAFE"
3717                 ;;
3718             *-hp-hpux* )
3719                 flag="-D_REENTRANT"
3720                 if test "x$GCC" != "xyes"; then
3721                     dnl see http://docs.hp.com/hpux/onlinedocs/2213/threads.htm
3722                     flag="$flag -D_RWSTD_MULTI_THREAD"
3723                 fi
3724                 ;;
3725             *solaris* | alpha*-osf*)
3726                 flag="-D_REENTRANT"
3727                 ;;
3728           esac
3729           AC_MSG_RESULT(${flag})
3730           if test "x$flag" != xno; then
3731               THREADS_CFLAGS="$THREADS_CFLAGS $flag"
3732           fi
3733
3734           if test "x$THREADS_CFLAGS" != "x"; then
3735             dnl don't add these options to CPPFLAGS as cpp might not know them
3736             CFLAGS="$CFLAGS $THREADS_CFLAGS"
3737             CXXFLAGS="$CXXFLAGS $THREADS_CFLAGS"
3738           fi
3739       fi
3740     fi
3741
3742     dnl do other tests only if we are using threads
3743     if test "$wxUSE_THREADS" = "yes" ; then
3744       AC_CHECK_FUNCS(thr_setconcurrency)
3745
3746       AC_CHECK_HEADERS(sched.h)
3747       if test "$ac_cv_header_sched_h" = "yes"; then
3748           AC_CHECK_FUNC(sched_yield,
3749             AC_DEFINE(HAVE_SCHED_YIELD),
3750             [
3751                 AC_CHECK_LIB(posix4,
3752                     sched_yield,
3753                     [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK=" -lposix4"],
3754                     AC_MSG_WARN(wxThread::Yield will not work properly)
3755                 )
3756             ]
3757           )
3758       fi
3759
3760       dnl to be able to set the thread priority, we need to have all of the
3761       dnl following functions:
3762       dnl   1. pthread_attr_getschedpolicy
3763       dnl   2. sched_get_priority_min and sched_get_priority_max
3764       dnl      (this one can be in either libpthread or libposix4 (under Solaris))
3765       dnl   3. pthread_attr_getschedparam and pthread_attr_setschedparam
3766       HAVE_PRIOR_FUNCS=0
3767       AC_CHECK_FUNC(pthread_attr_getschedpolicy,
3768                      AC_CHECK_FUNC(pthread_attr_setschedparam,
3769                        AC_CHECK_FUNC(sched_get_priority_max,
3770                            HAVE_PRIOR_FUNCS=1,
3771                            AC_CHECK_LIB([posix4], sched_get_priority_max,
3772                              [
3773                                 HAVE_PRIOR_FUNCS=1
3774                                 POSIX4_LINK=" -lposix4"
3775                              ],
3776                            )
3777                        )
3778                      )
3779                    )
3780
3781       if test "$HAVE_PRIOR_FUNCS" = 1; then
3782         AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
3783       else
3784         AC_MSG_WARN(Setting thread priority will not work)
3785       fi
3786
3787       AC_CHECK_FUNC(pthread_cancel,
3788                     AC_DEFINE(HAVE_PTHREAD_CANCEL),
3789                     AC_MSG_WARN([wxThread::Kill() will not work properly]))
3790
3791       AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push,
3792       [
3793         AC_TRY_COMPILE([#include <pthread.h>],
3794                      [
3795                         pthread_cleanup_push(NULL, NULL);
3796                         pthread_cleanup_pop(0);
3797                      ], [
3798                         wx_cv_func_pthread_cleanup_push=yes
3799                      ], [
3800                         wx_cv_func_pthread_cleanup_push=no
3801                      ])
3802       ])
3803
3804       if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then
3805           AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS)
3806       fi
3807
3808       dnl mutexattr_t initialization is done in quite different ways on different
3809       dnl platforms, so check for a few things:
3810       dnl
3811       dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
3812       dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
3813       dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
3814       dnl defined, we do it by directly assigned
3815       dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
3816
3817       AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
3818       [
3819         AC_TRY_COMPILE([#include <pthread.h>],
3820             [
3821                pthread_mutexattr_t attr;
3822                pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
3823             ], [
3824                wx_cv_type_pthread_mutexattr_t=yes
3825             ], [
3826                wx_cv_type_pthread_mutexattr_t=no
3827             ]
3828         )
3829       ])
3830
3831       if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
3832         AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
3833       else
3834         dnl don't despair, there may be another way to do it
3835         AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
3836                        wx_cv_type_pthread_rec_mutex_init,
3837         [
3838             AC_TRY_COMPILE([#include <pthread.h>],
3839                 [
3840                     pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
3841                 ], [
3842                     wx_cv_type_pthread_rec_mutex_init=yes
3843                 ], [
3844                     wx_cv_type_pthread_rec_mutex_init=no
3845                 ]
3846             )
3847         ])
3848         if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then
3849           AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
3850         else
3851           dnl this may break code working elsewhere, so at least warn about it
3852           AC_MSG_WARN([wxMutex won't be recursive on this platform])
3853         fi
3854       fi
3855     fi
3856
3857 dnl from if !MSW
3858 else
3859     if test "$wxUSE_THREADS" = "yes" ; then
3860       case "${host}" in
3861         *-*-mingw32* )
3862             dnl check if the compiler accepts -mthreads
3863             AC_CACHE_CHECK([if compiler supports -mthreads],
3864                 wx_cv_cflags_mthread,
3865                 [
3866                     CFLAGS_OLD="$CFLAGS"
3867                     CFLAGS="$CFLAGS -mthreads"
3868                     AC_TRY_COMPILE([], [],
3869                         wx_cv_cflags_mthread=yes,
3870                         wx_cv_cflags_mthread=no
3871                     )
3872                 ]
3873             )
3874
3875             if test "$wx_cv_cflags_mthread" = "yes"; then
3876                 dnl it does, use it
3877                 CXXFLAGS="$CXXFLAGS -mthreads"
3878                 TOOLCHAIN_DEFS="$TOOLCHAIN_DEFS -mthreads"
3879                 LDFLAGS="$LDFLAGS -mthreads"
3880             else
3881                 dnl it doesn't
3882                 CFLAGS="$CFLAGS_OLD"
3883             fi
3884         ;;
3885       esac
3886     fi
3887 fi
3888
3889 if test "$wxUSE_THREADS" = "yes"; then
3890   AC_DEFINE(wxUSE_THREADS)
3891
3892   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
3893 else
3894   dnl on some systems, _REENTRANT should be defined if we want to use any _r()
3895   dnl functions - add tests for other functions here as well
3896   if test "$ac_cv_func_strtok_r" = "yes"; then
3897     AC_MSG_CHECKING(if -D_REENTRANT is needed)
3898     if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
3899         TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D_REENTRANT"
3900         AC_MSG_RESULT(yes)
3901     else
3902         AC_MSG_RESULT(no)
3903     fi
3904   fi
3905 fi
3906
3907 if test "$WXGTK20" = 1 ; then
3908   AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
3909   WXGTK12=1
3910 fi
3911
3912 if test "$WXGTK12" = 1 ; then
3913   AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
3914 fi
3915
3916 if test "$WXGTK127" = 1 ; then
3917   AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
3918 fi
3919
3920 WXDEBUG=
3921
3922 if test "$wxUSE_DEBUG_INFO" = "yes" ; then
3923     WXDEBUG="-g"
3924     wxUSE_OPTIMISE=no
3925 fi
3926
3927 if test "$wxUSE_DEBUG_GDB" = "yes" ; then
3928     wxUSE_DEBUG_INFO=yes
3929     WXDEBUG="-ggdb"
3930 fi
3931
3932 if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
3933     AC_DEFINE(WXDEBUG)
3934     WXDEBUG_DEFINE="-D__WXDEBUG__"
3935 else
3936     if test "$wxUSE_GTK" = 1 ; then
3937         WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
3938     fi
3939 fi
3940
3941 if test "$wxUSE_MEM_TRACING" = "yes" ; then
3942     AC_DEFINE(wxUSE_MEMORY_TRACING)
3943     AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
3944     AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
3945     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
3946 fi
3947
3948 if test "$wxUSE_DMALLOC" = "yes" ; then
3949     DMALLOC_LIBS="-ldmalloc"
3950 fi
3951
3952 PROFILE=
3953 if test "$wxUSE_PROFILE" = "yes" ; then
3954     PROFILE=" -pg"
3955 fi
3956
3957 CODE_GEN_FLAGS=
3958 CODE_GEN_FLAGS_CXX=
3959 if test "$GCC" = "yes" ; then
3960     if test "$wxUSE_NO_RTTI" = "yes" ; then
3961         CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-rtti"
3962     fi
3963     if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
3964         CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-exceptions"
3965     fi
3966     if test "$wxUSE_PERMISSIVE" = "yes" ; then
3967         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
3968     fi
3969     if test "$USE_WIN32" = 1 ; then
3970         # I'm not even really sure what this was ever added to solve,
3971         # but someone added it for mingw native builds, so I guess
3972         # they had a reason, right??
3973         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fno-pcc-struct-return"
3974     fi
3975
3976     dnl Ian Brown <ian.brown@printsoft.de> reports that versions of gcc before
3977     dnl 3.0 overflow the table of contents on rs6000 as they create an entry
3978     dnl for each subroutine by default -- using the switch below only creates
3979     dnl one entry per file instead at the price of minor performance penalty
3980     dnl
3981     dnl As of wx2.4 a bug in the hppa gcc compiler causes a similar problem
3982     dnl without -ffunction-sections.  No idea how long we'll need to maintain
3983     dnl this, or even the extent of gcc/wx version combinations affected, but
3984     dnl also as above, this 'fix' does not come without side effects.
3985     dnl
3986     dnl TODO: test for the gcc version here (how?)
3987     case "${host}" in
3988       powerpc*-*-aix* )
3989         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -mminimal-toc"
3990         ;;
3991       *-hppa* )
3992         CODE_GEN_FLAGS="$CODE_GEN_FLAGS -ffunction-sections"
3993         ;;
3994     esac
3995 fi
3996
3997 OPTIMISE=
3998 if test "$wxUSE_OPTIMISE" = "no" ; then
3999     if test "$GCC" = yes ; then
4000         dnl use -O0 because compiling with it is faster than compiling with no
4001         dnl optimization options at all (at least with g++ 3.2)
4002         OPTIMISE="-O0"
4003     fi
4004 else
4005     if test "$GCC" = yes ; then
4006         OPTIMISE="-O2"
4007
4008         dnl VZ: does anybody know what does this do??
4009         case "${host}" in
4010             i586-*-*|i686-*-* )
4011             OPTIMISE="${OPTIMISE} "
4012         ;;
4013         esac
4014     else
4015         OPTIMISE="-O"
4016     fi
4017 fi
4018
4019 dnl ---------------------------------------------------------------------------
4020 dnl compatibility level
4021 dnl ---------------------------------------------------------------------------
4022
4023 if test "$WXWIN_COMPATIBILITY_2" = "yes"; then
4024     AC_DEFINE(WXWIN_COMPATIBILITY_2)
4025
4026     WXWIN_COMPATIBILITY_2_2="yes"
4027 fi
4028
4029 if test "x$WXWIN_COMPATIBILITY_2_2" = "xyes"; then
4030     AC_DEFINE(WXWIN_COMPATIBILITY_2_2)
4031
4032     WXWIN_COMPATIBILITY_2_4="yes"
4033 fi
4034
4035 if test "x$WXWIN_COMPATIBILITY_2_4" != "xno"; then
4036     AC_DEFINE(WXWIN_COMPATIBILITY_2_4)
4037 fi
4038
4039 dnl ---------------------------------------------------------------------------
4040 dnl the library may be built without GUI classes at all
4041 dnl ---------------------------------------------------------------------------
4042
4043 if test "$wxUSE_GUI" = "yes"; then
4044   AC_DEFINE(wxUSE_GUI)
4045
4046   dnl the things we always pull in the GUI version of the library:
4047   dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
4048   dnl    library really can't be built without those)
4049   dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
4050   dnl    almost any program and the first 2 are needed to show a message box
4051   dnl    which want to be always able to do)
4052   dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
4053   dnl    to compile without them (if the app doesn't do any drawing, it doesn't
4054   dnl    need the dcs, pens, brushes, ...), this just can't be done now
4055   dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
4056   dnl 5. misc stuff: timers, settings, message box
4057 else
4058   AC_DEFINE(wxUSE_NOGUI)
4059 fi
4060
4061 dnl ---------------------------------------------------------------------------
4062 dnl Unix/Windows
4063 dnl ---------------------------------------------------------------------------
4064
4065 if test "$wxUSE_UNIX" = "yes"; then
4066   AC_DEFINE(wxUSE_UNIX)
4067 fi
4068
4069 dnl ---------------------------------------------------------------------------
4070 dnl Register non-GUI class options for makefiles and setup.h
4071 dnl ---------------------------------------------------------------------------
4072
4073 if test "$wxUSE_APPLE_IEEE" = "yes"; then
4074   AC_DEFINE(wxUSE_APPLE_IEEE)
4075 fi
4076
4077 if test "$wxUSE_TIMER" = "yes"; then
4078   AC_DEFINE(wxUSE_TIMER)
4079 fi
4080
4081 if test "$wxUSE_WAVE" = "yes"; then
4082   AC_DEFINE(wxUSE_WAVE)
4083 fi
4084
4085 if test "$wxUSE_CMDLINE_PARSER" = "yes"; then
4086   AC_DEFINE(wxUSE_CMDLINE_PARSER)
4087 fi
4088
4089 if test "$wxUSE_STOPWATCH" = "yes"; then
4090   AC_DEFINE(wxUSE_STOPWATCH)
4091 fi
4092
4093 if test "$wxUSE_DATETIME" = "yes"; then
4094   AC_DEFINE(wxUSE_DATETIME)
4095 fi
4096
4097 if test "$wxUSE_FILE" = "yes"; then
4098   AC_DEFINE(wxUSE_FILE)
4099 fi
4100
4101 if test "$wxUSE_FFILE" = "yes"; then
4102   AC_DEFINE(wxUSE_FFILE)
4103 fi
4104
4105 if test "$wxUSE_FILESYSTEM" = "yes"; then
4106   AC_DEFINE(wxUSE_FILESYSTEM)
4107 fi
4108
4109 if test "$wxUSE_FS_INET" = "yes"; then
4110   AC_DEFINE(wxUSE_FS_INET)
4111 fi
4112
4113 if test "$wxUSE_FS_ZIP" = "yes"; then
4114   AC_DEFINE(wxUSE_FS_ZIP)
4115 fi
4116
4117 if test "$wxUSE_ZIPSTREAM" = "yes"; then
4118   AC_DEFINE(wxUSE_ZIPSTREAM)
4119 fi
4120
4121 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
4122   AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
4123 fi
4124
4125 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
4126   AC_DEFINE(wxUSE_SNGLINST_CHECKER)
4127 fi
4128
4129 if test "$wxUSE_BUSYINFO" = "yes"; then
4130   AC_DEFINE(wxUSE_BUSYINFO)
4131 fi
4132
4133 if test "$wxUSE_STD_IOSTREAM" = "yes"; then
4134   AC_DEFINE(wxUSE_STD_IOSTREAM)
4135 fi
4136
4137 if test "$wxUSE_TEXTBUFFER" = "yes"; then
4138     AC_DEFINE(wxUSE_TEXTBUFFER)
4139 fi
4140
4141 if test "$wxUSE_TEXTFILE" = "yes"; then
4142   if test "$wxUSE_FILE" != "yes" -o "$wxUSE_TEXTBUFFER" != "yes" ; then
4143     AC_MSG_WARN(wxTextFile requires wxFile and wxTextBuffer... disabled)
4144   else
4145     AC_DEFINE(wxUSE_TEXTFILE)
4146   fi
4147 fi
4148
4149 if test "$wxUSE_CONFIG" = "yes" ; then
4150   if test "$wxUSE_TEXTFILE" != "yes"; then
4151     AC_MSG_WARN(wxConfig requires wxTextFile... disabled)
4152   else
4153     AC_DEFINE(wxUSE_CONFIG)
4154     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
4155   fi
4156 fi
4157
4158 if test "$wxUSE_INTL" = "yes" ; then
4159   if test "$wxUSE_FILE" != "yes"; then
4160     AC_MSG_WARN(I18n code requires wxFile... disabled)
4161   else
4162     AC_DEFINE(wxUSE_INTL)
4163     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
4164     GUIDIST="$GUIDIST INTL_DIST"
4165   fi
4166 fi
4167
4168 if test "$wxUSE_LOG" = "yes"; then
4169   AC_DEFINE(wxUSE_LOG)
4170
4171     if test "$wxUSE_LOGGUI" = "yes"; then
4172       AC_DEFINE(wxUSE_LOGGUI)
4173     fi
4174
4175     if test "$wxUSE_LOGWINDOW" = "yes"; then
4176       AC_DEFINE(wxUSE_LOGWINDOW)
4177     fi
4178
4179     if test "$wxUSE_LOGDIALOG" = "yes"; then
4180       AC_DEFINE(wxUSE_LOG_DIALOG)
4181     fi
4182 fi
4183
4184 if test "$wxUSE_LONGLONG" = "yes"; then
4185   AC_DEFINE(wxUSE_LONGLONG)
4186 fi
4187
4188 if test "$wxUSE_GEOMETRY" = "yes"; then
4189   AC_DEFINE(wxUSE_GEOMETRY)
4190 fi
4191
4192 if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
4193   AC_DEFINE(wxUSE_DIALUP_MANAGER)
4194   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
4195 fi
4196
4197 if test "$wxUSE_STREAMS" = "yes" ; then
4198   AC_DEFINE(wxUSE_STREAMS)
4199 fi
4200
4201 dnl ---------------------------------------------------------------------------
4202 dnl time/date functions
4203 dnl ------------------------------------------------------------------------
4204
4205 if test "$wxUSE_DATETIME" = "yes"; then
4206     dnl check for strptime
4207     AC_CHECK_FUNCS(strptime)
4208
4209     dnl check for timezone variable
4210     dnl   doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead
4211     AC_CACHE_CHECK(for timezone variable in <time.h>,
4212                    wx_cv_var_timezone,
4213                    [
4214                         AC_TRY_COMPILE(
4215                             [
4216                                 #include <time.h>
4217                             ],
4218                             [
4219                                 int tz;
4220                                 tz = timezone;
4221                             ],
4222                             [
4223                                 wx_cv_var_timezone=timezone
4224                             ],
4225                             [
4226                                 AC_TRY_COMPILE(
4227                                     [
4228                                         #include <time.h>
4229                                     ],
4230                                     [
4231                                         int tz;
4232                                         tz = _timezone;
4233                                     ],
4234                                     [
4235                                         wx_cv_var_timezone=_timezone
4236                                     ],
4237                                     [
4238                                         AC_TRY_COMPILE(
4239                                             [
4240                                                 #include <time.h>
4241                                             ],
4242                                             [
4243                                                 int tz;
4244                                                 tz = __timezone;
4245                                             ],
4246                                             [
4247                                                 wx_cv_var_timezone=__timezone
4248                                             ],
4249                                             [
4250                                                 if test "$USE_DOS" = 0 ; then
4251                                                     AC_MSG_WARN(no timezone variable, will use tm_gmtoff instead)
4252                                                 fi
4253                                             ]
4254                                         )
4255                                     ]
4256                                 )
4257                             ]
4258                         )
4259                    ]
4260     )
4261
4262     dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
4263     if test "x$wx_cv_var_timezone" != x ; then
4264         AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
4265     fi
4266
4267     dnl check for localtime (it's POSIX, but the check can do no harm...)
4268     AC_CHECK_FUNCS(localtime)
4269
4270     if test "$ac_cv_func_localtime" = "yes"; then
4271         AC_CACHE_CHECK(for tm_gmtoff in struct tm,
4272                        wx_cv_struct_tm_has_gmtoff,
4273         [
4274             AC_TRY_COMPILE(
4275                 [
4276                     #include <time.h>
4277                 ],
4278                 [
4279                     struct tm tm;
4280                     tm.tm_gmtoff++;
4281                 ],
4282                 [
4283                     wx_cv_struct_tm_has_gmtoff=yes
4284                 ],
4285                 wx_cv_struct_tm_has_gmtoff=no
4286             )
4287         ])
4288     fi
4289
4290     if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then
4291         AC_DEFINE(WX_GMTOFF_IN_TM)
4292     fi
4293
4294     dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
4295     dnl function to be used for high resolution timers
4296     AC_CHECK_FUNCS(gettimeofday ftime, break)
4297
4298     if test "$ac_cv_func_gettimeofday" = "yes"; then
4299         AC_CACHE_CHECK([whether gettimeofday takes two arguments],
4300                        wx_cv_func_gettimeofday_has_2_args,
4301         [
4302             dnl on some _really_ old systems it takes only 1 argument
4303             AC_LANG_SAVE
4304             AC_LANG_CPLUSPLUS
4305
4306             AC_TRY_COMPILE(
4307                 [
4308                     #include <sys/time.h>
4309                     #include <unistd.h>
4310                 ],
4311                 [
4312                     struct timeval tv;
4313                     gettimeofday(&tv, NULL);
4314                 ],
4315                 wx_cv_func_gettimeofday_has_2_args=yes,
4316                 AC_TRY_COMPILE(
4317                     [
4318                         #include <sys/time.h>
4319                         #include <unistd.h>
4320                     ],
4321                     [
4322                         struct timeval tv;
4323                         gettimeofday(&tv);
4324                     ],
4325                     wx_cv_func_gettimeofday_has_2_args=no,
4326                     [
4327                         AC_MSG_WARN([failed to determine number of gettimeofday() arguments])
4328                         wx_cv_func_gettimeofday_has_2_args=unknown
4329                     ]
4330                 )
4331             )
4332             AC_LANG_RESTORE
4333         ])
4334
4335         if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
4336             AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
4337         fi
4338     fi
4339
4340     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
4341 fi
4342
4343 dnl ------------------------------------------------------------------------
4344 dnl wxSocket
4345 dnl ------------------------------------------------------------------------
4346
4347 dnl VZ: the GUI hooks wxSocket needs are not implemented yet in wxMGL
4348 if test "$wxUSE_SOCKETS" = "yes"; then
4349     if test "$wxUSE_MGL" = "1"; then
4350         AC_MSG_WARN([wxSocket not yet supported under MGL... disabled])
4351         wxUSE_SOCKETS="no"
4352     fi
4353 fi
4354
4355 if test "$wxUSE_SOCKETS" = "yes"; then
4356     dnl under MSW we always have sockets
4357     if test "$TOOLKIT" != "MSW"; then
4358         dnl under Solaris and OS/2, socket functions live in -lsocket
4359         AC_CHECK_FUNC(socket,,
4360             AC_CHECK_LIB(socket, socket,
4361                 if test "$INET_LINK" != " -lsocket"; then
4362                     INET_LINK="$INET_LINK -lsocket"
4363                 fi,
4364                 [
4365                     AC_MSG_WARN([socket library not found - sockets will be disabled])
4366                     wxUSE_SOCKETS=no
4367                 ]
4368             )
4369         )
4370     fi
4371 fi
4372
4373 if test "$wxUSE_SOCKETS" = "yes" ; then
4374     dnl this test may be appropriate if building under cygwin
4375     dnl right now I'm assuming it also uses the winsock stuff
4376     dnl like mingw does..  -- RL
4377     if test "$TOOLKIT" != "MSW"; then
4378         dnl determine the type of third argument for getsockname
4379         AC_CACHE_CHECK([what is the type of the third argument of getsockname],
4380                        wx_cv_type_getsockname3,
4381             [
4382                 AC_LANG_SAVE
4383                 AC_LANG_CPLUSPLUS
4384
4385                 AC_TRY_COMPILE(
4386                     [
4387                         #include <sys/types.h>
4388                         #include <sys/socket.h>
4389                     ],
4390                     [
4391                         socklen_t len;
4392                         getsockname(0, 0, &len);
4393                     ],
4394                     wx_cv_type_getsockname3=socklen_t,
4395                     AC_TRY_COMPILE(
4396                         [
4397                             #include <sys/types.h>
4398                             #include <sys/socket.h>
4399                         ],
4400                         [
4401                             size_t len;
4402                             getsockname(0, 0, &len);
4403                         ],
4404                         wx_cv_type_getsockname3=size_t,
4405                         AC_TRY_COMPILE(
4406                             [
4407                                 #include <sys/types.h>
4408                                 #include <sys/socket.h>
4409                             ],
4410                             [
4411                                 int len;
4412                                 getsockname(0, 0, &len);
4413                             ],
4414                             wx_cv_type_getsockname3=int,
4415                             wx_cv_type_getsockname3=unknown
4416                         )
4417                     )
4418                 )
4419
4420                 AC_LANG_RESTORE
4421             ])
4422
4423         if test "$wx_cv_type_getsockname3" = "unknown"; then
4424             wxUSE_SOCKETS=no
4425             AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
4426         else
4427             AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
4428         fi
4429     fi
4430 fi
4431
4432 if test "$wxUSE_SOCKETS" = "yes" ; then
4433     AC_DEFINE(wxUSE_SOCKETS)
4434     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
4435 fi
4436
4437 dnl ---------------------------------------------------------------------------
4438 dnl Joystick support
4439 dnl ---------------------------------------------------------------------------
4440
4441 if test "$wxUSE_GUI" = "yes"; then
4442
4443     if test "$TOOLKIT" = "MAC" -o "$TOOLKIT" = "COCOA"; then
4444         AC_MSG_WARN([Joystick not yet supported under Mac OS X... disabled])
4445         wxUSE_JOYSTICK=no
4446      fi
4447     if test "$TOOLKIT" = "MOTIF"; then
4448         AC_MSG_WARN([Joystick not yet supported under Motif... disabled])
4449         wxUSE_JOYSTICK=no
4450      fi
4451     if test "$TOOLKIT" = "X11"; then
4452         AC_MSG_WARN([Joystick not yet supported under X11... disabled])
4453         wxUSE_JOYSTICK=no
4454      fi
4455
4456     dnl under MSW we always have joystick support
4457     if test "$TOOLKIT" != "MSW"; then
4458         if test "$wxUSE_JOYSTICK" = "yes"; then
4459             dnl joystick support is only for Linux 2.1.x or greater
4460             AC_CHECK_HEADERS(linux/joystick.h)
4461             if test "$ac_cv_header_linux_joystick_h" != "yes"; then
4462                 wxUSE_JOYSTICK=no
4463                 AC_MSG_WARN(Joystick not supported by this system... disabled)
4464             fi
4465         fi
4466     fi
4467
4468     if test "$wxUSE_JOYSTICK" = "yes"; then
4469         AC_DEFINE(wxUSE_JOYSTICK)
4470         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
4471     fi
4472 fi
4473
4474 dnl ------------------------------------------------------------------------
4475 dnl DLL support
4476 dnl ------------------------------------------------------------------------
4477
4478 dnl under MSW we always have LoadLibrary/GetProcAddress
4479 if test "$TOOLKIT" != "MSW"; then
4480
4481     HAVE_DL_FUNCS=0
4482     HAVE_SHL_FUNCS=0
4483     if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then
4484         if test "$USE_DARWIN" = 1; then
4485             dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X
4486             HAVE_DL_FUNCS=1
4487         else
4488             dnl the test is a bit complicated because we check for dlopen() both with
4489             dnl and without -ldl and we also try to find shl_load() if there is no
4490             dnl dlopen() on this system
4491             AC_CHECK_FUNCS(dlopen,
4492             [
4493                 AC_DEFINE(HAVE_DLOPEN)
4494                 HAVE_DL_FUNCS=1
4495             ],
4496             [
4497                 AC_CHECK_LIB(dl, dlopen,
4498                             [
4499                                 AC_DEFINE(HAVE_DLOPEN)
4500                                 HAVE_DL_FUNCS=1
4501                                 DL_LINK=" -ldl$DL_LINK"
4502                             ],
4503                             [
4504                                 AC_CHECK_FUNCS(shl_load,
4505                                               [
4506                                                 AC_DEFINE(HAVE_SHL_LOAD)
4507                                                 HAVE_SHL_FUNCS=1
4508                                               ],
4509                                               [
4510                                                 AC_CHECK_LIB(shl_load, dld,
4511                                                              [
4512                                                                 HAVE_SHL_FUNCS=1
4513                                                                 DL_LINK=" -ldld$DL_LINK"
4514                                                              ])
4515                                               ])
4516                             ])
4517             ])
4518
4519         dnl check also for dlerror()
4520         if test "$HAVE_DL_FUNCS" = 1; then
4521             AC_CHECK_FUNCS(dlerror,
4522                            AC_DEFINE(HAVE_DLERROR),
4523                            AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)))
4524         fi
4525         fi
4526
4527         if test "$HAVE_DL_FUNCS" = 0; then
4528             if test "$HAVE_SHL_FUNCS" = 0; then
4529               if test "$USE_UNIX" = 1; then
4530                   AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
4531                   wxUSE_DYNAMIC_LOADER=no
4532                   wxUSE_DYNLIB_CLASS=no
4533               else
4534                   AC_MSG_WARN([Assuming wxLibrary class works on this platform])
4535               fi
4536             fi
4537         fi
4538     fi
4539 fi
4540
4541 if test "$wxUSE_DYNAMIC_LOADER" = "yes" ; then
4542     AC_DEFINE(wxUSE_DYNAMIC_LOADER)
4543 elif test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
4544     AC_DEFINE(wxUSE_DYNLIB_CLASS)
4545 fi
4546
4547 dnl ---------------------------------------------------------------------------
4548 dnl String stuff
4549 dnl ---------------------------------------------------------------------------
4550
4551 if test "$wxUSE_FONTMAP" = "yes" ; then
4552   AC_DEFINE(wxUSE_FONTMAP)
4553 fi
4554
4555 if test "$wxUSE_UNICODE" = "yes" ; then
4556   AC_DEFINE(wxUSE_UNICODE)
4557
4558   if test "$wxUSE_MSW" != 1; then
4559       wxUSE_UNICODE_MSLU=no
4560   fi
4561
4562   if test "$wxUSE_MSW" = 1 -a "$wxUSE_UNICODE_MSLU" = "yes"; then
4563         AC_CHECK_LIB(unicows,main,
4564             [
4565                 AC_DEFINE(wxUSE_UNICODE_MSLU)
4566             ],
4567             [
4568                 AC_MSG_WARN([Compiler doesn't support MSLU (libunicows.a), disabled.
4569                              Applications will only run on Windows NT/2000/XP!])
4570                 wxUSE_UNICODE_MSLU=no
4571             ])
4572     fi
4573 fi
4574
4575 if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
4576   AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
4577 fi
4578
4579
4580 dnl ----------------------------------------------------------------
4581 dnl iODBC support
4582 dnl ----------------------------------------------------------------
4583
4584 IODBC_C_SRC=""
4585 if test "$wxUSE_ODBC" = "yes" ; then
4586     AC_DEFINE(wxUSE_ODBC)
4587     WXODBCFLAG="-D_IODBC_"
4588     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
4589 fi
4590
4591 dnl ----------------------------------------------------------------
4592 dnl Register PostScript options for makefiles and setup.h
4593 dnl ----------------------------------------------------------------
4594
4595 if test "$wxUSE_POSTSCRIPT" = "yes" ; then
4596   AC_DEFINE(wxUSE_POSTSCRIPT)
4597 fi
4598
4599 AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
4600
4601 AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
4602
4603 dnl ---------------------------------------------------------------------------
4604 dnl big GUI components: MDI, doc/view, printing, help, ...
4605 dnl ---------------------------------------------------------------------------
4606
4607 if test "$wxUSE_CONSTRAINTS" = "yes"; then
4608     AC_DEFINE(wxUSE_CONSTRAINTS)
4609     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
4610 fi
4611
4612 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4613
4614 dnl     There is now experimental generic MDI support
4615 dnl     if test "$wxUSE_UNIVERSAL" = "yes"; then
4616 dnl         AC_MSG_WARN(MDI not yet supported for wxUniversal... disabled)
4617 dnl         wxUSE_MDI_ARCHITECTURE=no
4618 dnl     fi
4619
4620    if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4621        AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
4622        SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
4623    fi
4624 fi
4625
4626 if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
4627     AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
4628     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
4629     if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4630         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
4631     fi
4632 fi
4633
4634 if test "$wxUSE_HELP" = "yes"; then
4635     AC_DEFINE(wxUSE_HELP)
4636     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
4637
4638     if test "$wxUSE_MSW" = 1; then
4639       if test "$wxUSE_MS_HTML_HELP" = "yes"; then
4640         AC_DEFINE(wxUSE_MS_HTML_HELP)
4641       fi
4642     fi
4643
4644     if test "$wxUSE_WXHTML_HELP" = "yes"; then
4645       if test "$wxUSE_HTML" = "yes"; then
4646         AC_DEFINE(wxUSE_WXHTML_HELP)
4647       else
4648         AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled)
4649         wxUSE_WXHTML_HELP=no
4650       fi
4651     fi
4652 fi
4653
4654 if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
4655     if test "$wxUSE_CONSTRAINTS" != "yes"; then
4656         AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
4657     else
4658         AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
4659     fi
4660     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
4661 fi
4662
4663 dnl if test "$wxUSE_PROLOGIO" = "yes" ; then
4664 dnl     AC_DEFINE(wxUSE_PROLOGIO)
4665 dnl     ALL_OBJECTS="$ALL_OBJECTS parser.o"
4666 dnl fi
4667
4668 dnl if test "$wxUSE_RESOURCES" = "yes" ; then
4669 dnl     if test "$wxUSE_NANOX" = "yes"; then
4670 dnl         AC_MSG_WARN([Cannot use resource database functions in NanoX])
4671 dnl     else
4672 dnl         AC_DEFINE(wxUSE_RESOURCES)
4673 dnl         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource"
4674 dnl     fi
4675 dnl     if test "$wxUSE_PROLOGIO" != "yes" ; then
4676 dnl         ALL_OBJECTS="$ALL_OBJECTS parser.o"
4677 dnl     fi
4678 dnl fi
4679
4680 if test "$wxUSE_X_RESOURCES" = "yes"; then
4681     AC_DEFINE(wxUSE_X_RESOURCES)
4682 fi
4683
4684 dnl ---------------------------------------------------------------------------
4685 dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
4686 dnl ---------------------------------------------------------------------------
4687
4688 dnl check for ole headers and disable a few features requiring it if not
4689 dnl present (earlier versions of mingw32 don't have ole2.h)
4690 if test "$wxUSE_MSW" = 1 -a \( "$wxUSE_DATAOBJ"       = "yes" \
4691                           -o "$wxUSE_CLIPBOARD"     = "yes" \
4692                           -o "$wxUSE_OLE"     = "yes" \
4693                           -o "$wxUSE_DRAG_AND_DROP" = "yes" \) ; then
4694     AC_CHECK_HEADERS(ole2.h)
4695
4696     if test "$ac_cv_header_ole2_h" = "yes" ; then
4697         if test "$GCC" = yes ; then
4698             AC_LANG_SAVE
4699             AC_LANG_CPLUSPLUS
4700
4701             AC_MSG_CHECKING([if g++ requires -fvtable-thunks])
4702             AC_TRY_COMPILE([#include <windows.h>
4703                             #include <ole2.h>],
4704                            [],
4705                            [AC_MSG_RESULT(no)],
4706                            [AC_MSG_RESULT(yes)
4707                             CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"])
4708             AC_LANG_RESTORE
4709             ALL_OBJECTS="$ALL_OBJECTS \$(OLEOBJS)"
4710             LIBS=" -lrpcrt4 -loleaut32 -lole32 -luuid$LIBS"
4711             AC_DEFINE(wxUSE_OLE)
4712
4713         fi
4714
4715         dnl for OLE clipboard and dnd
4716         AC_DEFINE(wxUSE_DATAOBJ)
4717     else
4718         AC_MSG_WARN([Some features disabled because OLE headers not found])
4719
4720         wxUSE_CLIPBOARD=no
4721         wxUSE_DRAG_AND_DROP=no
4722         wxUSE_DATAOBJ=no
4723         wxUSE_OLE=no
4724     fi
4725
4726     if test "$wxUSE_METAFILE" = "yes"; then
4727         AC_DEFINE(wxUSE_METAFILE)
4728
4729         dnl this one should probably be made separately configurable
4730         AC_DEFINE(wxUSE_ENH_METAFILE)
4731     fi
4732 fi
4733
4734 if test "$wxUSE_IPC" = "yes"; then
4735     if test "$wxUSE_SOCKETS" != "yes"; then
4736         AC_MSG_WARN(wxWindows IPC classes require sockets... disabled)
4737     fi
4738
4739     AC_DEFINE(wxUSE_IPC)
4740 fi
4741
4742 if test "$wxUSE_CLIPBOARD" = "yes"; then
4743     if test "$wxUSE_MGL" = 1; then
4744         AC_MSG_WARN([Clipboard not yet supported under MGL... disabled])
4745         wxUSE_CLIPBOARD=no
4746     fi
4747
4748     if test "$wxUSE_CLIPBOARD" = "yes"; then
4749         AC_DEFINE(wxUSE_CLIPBOARD)
4750
4751         dnl required by clipboard code in configuration check
4752         AC_DEFINE(wxUSE_DATAOBJ)
4753     fi
4754 fi
4755
4756 if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
4757     if test "$wxUSE_GTK" = 1; then
4758         if test "$WXGTK12" != 1; then
4759             AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2... disabled])
4760             wxUSE_DRAG_AND_DROP=no
4761         fi
4762     fi
4763
4764     if test "$wxUSE_MOTIF" = 1; then
4765         AC_MSG_WARN([Drag and drop not yet supported under Motif... disabled])
4766         wxUSE_DRAG_AND_DROP=no
4767     fi
4768
4769     if test "$wxUSE_X11" = 1; then
4770         AC_MSG_WARN([Drag and drop not yet supported under X11... disabled])
4771         wxUSE_DRAG_AND_DROP=no
4772     fi
4773
4774     if test "$wxUSE_MGL" = 1; then
4775         AC_MSG_WARN([Drag and drop not yet supported under MGL... disabled])
4776         wxUSE_DRAG_AND_DROP=no
4777     fi
4778
4779     if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
4780         AC_DEFINE(wxUSE_DRAG_AND_DROP)
4781         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
4782     fi
4783
4784 fi
4785
4786 if test "$wxUSE_SPLINES" = "yes" ; then
4787   AC_DEFINE(wxUSE_SPLINES)
4788 fi
4789
4790 dnl ---------------------------------------------------------------------------
4791 dnl GUI controls
4792 dnl ---------------------------------------------------------------------------
4793
4794 USES_CONTROLS=0
4795 if test "$wxUSE_CONTROLS" = "yes"; then
4796   USES_CONTROLS=1
4797 fi
4798
4799 if test "$wxUSE_ACCEL" = "yes"; then
4800   AC_DEFINE(wxUSE_ACCEL)
4801   USES_CONTROLS=1
4802 fi
4803
4804 if test "$wxUSE_BUTTON" = "yes"; then
4805   AC_DEFINE(wxUSE_BUTTON)
4806   USES_CONTROLS=1
4807 fi
4808
4809 if test "$wxUSE_BMPBUTTON" = "yes"; then
4810   AC_DEFINE(wxUSE_BMPBUTTON)
4811   USES_CONTROLS=1
4812 fi
4813
4814 if test "$wxUSE_CALCTRL" = "yes"; then
4815   AC_DEFINE(wxUSE_CALENDARCTRL)
4816   USES_CONTROLS=1
4817   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
4818 fi
4819
4820 if test "$wxUSE_CARET" = "yes"; then
4821   AC_DEFINE(wxUSE_CARET)
4822   USES_CONTROLS=1
4823   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
4824 fi
4825
4826 if test "$wxUSE_COMBOBOX" = "yes"; then
4827   AC_DEFINE(wxUSE_COMBOBOX)
4828   USES_CONTROLS=1
4829 fi
4830
4831 if test "$wxUSE_CHOICE" = "yes"; then
4832   AC_DEFINE(wxUSE_CHOICE)
4833   USES_CONTROLS=1
4834 fi
4835
4836 if test "$wxUSE_CHECKBOX" = "yes"; then
4837   AC_DEFINE(wxUSE_CHECKBOX)
4838   USES_CONTROLS=1
4839 fi
4840
4841 if test "$wxUSE_CHECKLST" = "yes"; then
4842   AC_DEFINE(wxUSE_CHECKLISTBOX)
4843   USES_CONTROLS=1
4844   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
4845 fi
4846
4847 if test "$wxUSE_DISPLAY" = "yes"; then
4848     AC_DEFINE(wxUSE_DISPLAY)
4849     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display"
4850 fi
4851
4852 if test "$wxUSE_GAUGE" = "yes"; then
4853   AC_DEFINE(wxUSE_GAUGE)
4854   USES_CONTROLS=1
4855 fi
4856
4857 if test "$wxUSE_GRID" = "yes"; then
4858   AC_DEFINE(wxUSE_GRID)
4859   USES_CONTROLS=1
4860   SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
4861 fi
4862
4863 if test "$wxUSE_IMAGLIST" = "yes"; then
4864     AC_DEFINE(wxUSE_IMAGLIST)
4865 fi
4866
4867 if test "$wxUSE_LISTBOX" = "yes"; then
4868     AC_DEFINE(wxUSE_LISTBOX)
4869     USES_CONTROLS=1
4870 fi
4871
4872 if test "$wxUSE_LISTCTRL" = "yes"; then
4873     if test "$wxUSE_IMAGLIST" = "yes"; then
4874         AC_DEFINE(wxUSE_LISTCTRL)
4875         USES_CONTROLS=1
4876         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
4877     else
4878         AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
4879     fi
4880 fi
4881
4882 if test "$wxUSE_NOTEBOOK" = "yes"; then
4883     AC_DEFINE(wxUSE_NOTEBOOK)
4884     USES_CONTROLS=1
4885     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
4886 fi
4887
4888 dnl if test "$wxUSE_PROPSHEET" = "yes"; then
4889 dnl     AC_DEFINE(wxUSE_PROPSHEET)
4890 dnl     USES_CONTROLS=1
4891 dnl     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist"
4892 dnl fi
4893
4894 if test "$wxUSE_RADIOBOX" = "yes"; then
4895     AC_DEFINE(wxUSE_RADIOBOX)
4896     USES_CONTROLS=1
4897 fi
4898
4899 if test "$wxUSE_RADIOBTN" = "yes"; then
4900     AC_DEFINE(wxUSE_RADIOBTN)
4901     USES_CONTROLS=1
4902 fi
4903
4904 if test "$wxUSE_SASH" = "yes"; then
4905     AC_DEFINE(wxUSE_SASH)
4906     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
4907 fi
4908
4909 if test "$wxUSE_SCROLLBAR" = "yes"; then
4910     AC_DEFINE(wxUSE_SCROLLBAR)
4911     USES_CONTROLS=1
4912     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
4913 fi
4914
4915 if test "$wxUSE_SLIDER" = "yes"; then
4916     AC_DEFINE(wxUSE_SLIDER)
4917     USES_CONTROLS=1
4918 fi
4919
4920 if test "$wxUSE_SPINBTN" = "yes"; then
4921     AC_DEFINE(wxUSE_SPINBTN)
4922     USES_CONTROLS=1
4923 fi
4924
4925 if test "$wxUSE_SPINCTRL" = "yes"; then
4926     AC_DEFINE(wxUSE_SPINCTRL)
4927     USES_CONTROLS=1
4928 fi
4929
4930 if test "$wxUSE_SPLITTER" = "yes"; then
4931     AC_DEFINE(wxUSE_SPLITTER)
4932     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
4933 fi
4934
4935 if test "$wxUSE_STATBMP" = "yes"; then
4936     AC_DEFINE(wxUSE_STATBMP)
4937     USES_CONTROLS=1
4938 fi
4939
4940 if test "$wxUSE_STATBOX" = "yes"; then
4941     AC_DEFINE(wxUSE_STATBOX)
4942     USES_CONTROLS=1
4943 fi
4944
4945 if test "$wxUSE_STATTEXT" = "yes"; then
4946     AC_DEFINE(wxUSE_STATTEXT)
4947     USES_CONTROLS=1
4948 fi
4949
4950 if test "$wxUSE_STATLINE" = "yes"; then
4951     AC_DEFINE(wxUSE_STATLINE)
4952     USES_CONTROLS=1
4953 fi
4954
4955 if test "$wxUSE_STATUSBAR" = "yes"; then
4956     AC_DEFINE(wxUSE_STATUSBAR)
4957     USES_CONTROLS=1
4958
4959     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
4960 fi
4961
4962 if test "$wxUSE_TABDIALOG" = "yes"; then
4963     AC_DEFINE(wxUSE_TAB_DIALOG)
4964     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
4965 fi
4966
4967 if test "$wxUSE_TEXTCTRL" = "yes"; then
4968     AC_DEFINE(wxUSE_TEXTCTRL)
4969     USES_CONTROLS=1
4970     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
4971 fi
4972
4973 if test "$wxUSE_TOGGLEBTN" = "yes"; then
4974     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
4975         AC_MSG_WARN([Toggle button not yet supported under Mac OS X... disabled])
4976         wxUSE_TOGGLEBTN=no
4977     fi
4978     if test "$wxUSE_UNIVERSAL" = "yes"; then
4979         AC_MSG_WARN([Toggle button not yet supported under wxUniversal... disabled])
4980         wxUSE_TOGGLEBTN=no
4981     fi
4982
4983     if test "$wxUSE_TOGGLEBTN" = "yes"; then
4984         AC_DEFINE(wxUSE_TOGGLEBTN)
4985         USES_CONTROLS=1
4986     fi
4987 fi
4988
4989 if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
4990     AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
4991     wxUSE_TOOLBAR="yes"
4992     USES_CONTROLS=1
4993 fi
4994
4995 if test "$wxUSE_TOOLBAR" = "yes"; then
4996     AC_DEFINE(wxUSE_TOOLBAR)
4997     USES_CONTROLS=1
4998
4999     dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
5000     if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
5001         wxUSE_TOOLBAR_NATIVE="yes"
5002     fi
5003
5004     if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
5005         AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
5006         USES_CONTROLS=1
5007     fi
5008
5009     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
5010 fi
5011
5012 if test "$wxUSE_TOOLTIPS" = "yes"; then
5013     if test "$wxUSE_MOTIF" = 1; then
5014         AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled])
5015     else
5016         if test "$wxUSE_UNIVERSAL" = "yes"; then
5017             AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled])
5018         else
5019             AC_DEFINE(wxUSE_TOOLTIPS)
5020         fi
5021     fi
5022 fi
5023
5024 if test "$wxUSE_TREECTRL" = "yes"; then
5025     if test "$wxUSE_IMAGLIST" = "yes"; then
5026         AC_DEFINE(wxUSE_TREECTRL)
5027         USES_CONTROLS=1
5028         SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
5029     else
5030         AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
5031     fi
5032 fi
5033
5034 if test "$wxUSE_POPUPWIN" = "yes"; then
5035     if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
5036         AC_MSG_WARN([Popup window not yet supported under Mac OS X... disabled])
5037     else
5038         if test "$wxUSE_MOTIF" = 1; then
5039             AC_MSG_WARN([wxPopupWindow not yet supported under Motif... disabled])
5040         else
5041             if test "$wxUSE_PM" = 1; then
5042                 AC_MSG_WARN([wxPopupWindow not yet supported under PM... disabled])
5043             else
5044                 AC_DEFINE(wxUSE_POPUPWIN)
5045
5046                 USES_CONTROLS=1
5047             fi
5048         fi
5049     fi
5050 fi
5051
5052 if test "$wxUSE_TIPWINDOW" = "yes"; then
5053     if test "$wxUSE_PM" = 1; then
5054         AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled])
5055     else
5056         AC_DEFINE(wxUSE_TIPWINDOW)
5057     fi
5058 fi
5059
5060 if test "$USES_CONTROLS" = 1; then
5061     AC_DEFINE(wxUSE_CONTROLS)
5062 fi
5063
5064 dnl ---------------------------------------------------------------------------
5065 dnl misc options
5066 dnl ---------------------------------------------------------------------------
5067
5068 dnl if test "$wxUSE_TREELAYOUT" = "yes"; then
5069 dnl     AC_DEFINE(wxUSE_TREELAYOUT)
5070 dnl     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treelay"
5071 dnl fi
5072
5073 if test "$wxUSE_DRAGIMAGE" = "yes"; then
5074     AC_DEFINE(wxUSE_DRAGIMAGE)
5075     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
5076 fi
5077
5078 if test "$wxUSE_MENUS" = "yes"; then
5079     AC_DEFINE(wxUSE_MENUS)
5080     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
5081 fi
5082
5083 if test "$wxUSE_METAFILE" = "yes"; then
5084     AC_DEFINE(wxUSE_METAFILE)
5085 fi
5086
5087 if test "$wxUSE_MIMETYPE" = "yes"; then
5088     AC_DEFINE(wxUSE_MIMETYPE)
5089 fi
5090
5091 if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
5092     AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
5093 if test "$TOOLKIT" = "MSW"; then
5094     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar"
5095 fi
5096
5097 fi
5098
5099 if test "$wxUSE_PROTOCOL" = "yes"; then
5100     if test "$wxUSE_SOCKETS" != "yes"; then
5101         AC_MSG_WARN(Protocol classes require sockets... disabled)
5102         wxUSE_PROTOCOL=no
5103     fi
5104
5105     if test "$wxUSE_PROTOCOL" = "yes"; then
5106         AC_DEFINE(wxUSE_PROTOCOL)
5107
5108         if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then
5109             AC_DEFINE(wxUSE_PROTOCOL_HTTP)
5110         fi
5111         if test "$wxUSE_PROTOCOL_FTP" = "yes"; then
5112             AC_DEFINE(wxUSE_PROTOCOL_FTP)
5113         fi
5114         if test "$wxUSE_PROTOCOL_FILE" = "yes"; then
5115             AC_DEFINE(wxUSE_PROTOCOL_FILE)
5116         fi
5117     fi
5118 fi
5119
5120 if test "$wxUSE_URL" = "yes"; then
5121     if test "$wxUSE_PROTOCOL" != "yes"; then
5122         AC_MSG_WARN(wxURL class requires wxProtocol... disabled)
5123         wxUSE_URL=no
5124     fi
5125     if test "$wxUSE_URL" = "yes"; then
5126         AC_DEFINE(wxUSE_URL)
5127     fi
5128 fi
5129
5130 if test "$wxUSE_MINIFRAME" = "yes"; then
5131     AC_DEFINE(wxUSE_MINIFRAME)
5132     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
5133 fi
5134
5135 if test "$wxUSE_HTML" = "yes"; then
5136     AC_DEFINE(wxUSE_HTML)
5137     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html"
5138 fi
5139
5140 if test "$wxUSE_VALIDATORS" = "yes"; then
5141     AC_DEFINE(wxUSE_VALIDATORS)
5142     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
5143 fi
5144
5145 if test "$wxUSE_PALETTE" = "yes" ; then
5146   AC_DEFINE(wxUSE_PALETTE)
5147 fi
5148
5149 if test "$wxUSE_IMAGE" = "yes" ; then
5150   AC_DEFINE(wxUSE_IMAGE)
5151 fi
5152
5153 if test "$wxUSE_GIF" = "yes" ; then
5154   AC_DEFINE(wxUSE_GIF)
5155 fi
5156
5157 if test "$wxUSE_PCX" = "yes" ; then
5158   AC_DEFINE(wxUSE_PCX)
5159 fi
5160
5161 if test "$wxUSE_IFF" = "yes" ; then
5162   AC_DEFINE(wxUSE_IFF)
5163 fi
5164
5165 if test "$wxUSE_PNM" = "yes" ; then
5166   AC_DEFINE(wxUSE_PNM)
5167 fi
5168
5169 if test "$wxUSE_XPM" = "yes" ; then
5170   AC_DEFINE(wxUSE_XPM)
5171 fi
5172
5173 if test "$wxUSE_ICO_CUR" = "yes" ; then
5174   AC_DEFINE(wxUSE_ICO_CUR)
5175 fi
5176
5177 if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then
5178   dnl Must be done this late because -lunicows must be before all the other libs
5179   LIBS=" -lunicows $LIBS"
5180 fi
5181
5182 dnl ---------------------------------------------------------------------------
5183 dnl common dialog
5184 dnl ---------------------------------------------------------------------------
5185
5186 if test "$wxUSE_CHOICEDLG" = "yes"; then
5187     AC_DEFINE(wxUSE_CHOICEDLG)
5188 fi
5189
5190 if test "$wxUSE_COLOURDLG" = "yes"; then
5191     AC_DEFINE(wxUSE_COLOURDLG)
5192 fi
5193
5194 if test "$wxUSE_FILEDLG" = "yes"; then
5195     AC_DEFINE(wxUSE_FILEDLG)
5196 fi
5197
5198 if test "$wxUSE_FINDREPLDLG" = "yes"; then
5199     AC_DEFINE(wxUSE_FINDREPLDLG)
5200 fi
5201
5202 if test "$wxUSE_FONTDLG" = "yes"; then
5203     AC_DEFINE(wxUSE_FONTDLG)
5204 fi
5205
5206 if test "$wxUSE_DIRDLG" = "yes"; then
5207     if test "$wxUSE_TREECTRL" != "yes"; then
5208         AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
5209     else
5210         AC_DEFINE(wxUSE_DIRDLG)
5211     fi
5212 fi
5213
5214 if test "$wxUSE_MSGDLG" = "yes"; then
5215     AC_DEFINE(wxUSE_MSGDLG)
5216 fi
5217
5218 if test "$wxUSE_NUMBERDLG" = "yes"; then
5219     AC_DEFINE(wxUSE_NUMBERDLG)
5220 fi
5221
5222 if test "$wxUSE_PROGRESSDLG" = "yes"; then
5223     if test "$wxUSE_CONSTRAINTS" != "yes"; then
5224        AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
5225     else
5226         AC_DEFINE(wxUSE_PROGRESSDLG)
5227     fi
5228 fi
5229
5230 if test "$wxUSE_SPLASH" = "yes"; then
5231     AC_DEFINE(wxUSE_SPLASH)
5232 fi
5233
5234 if test "$wxUSE_STARTUP_TIPS" = "yes"; then
5235     if test "$wxUSE_CONSTRAINTS" != "yes"; then
5236        AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
5237     else
5238         AC_DEFINE(wxUSE_STARTUP_TIPS)
5239     fi
5240 fi
5241
5242 if test "$wxUSE_TEXTDLG" = "yes"; then
5243     AC_DEFINE(wxUSE_TEXTDLG)
5244 fi
5245
5246 if test "$wxUSE_WIZARDDLG" = "yes"; then
5247     AC_DEFINE(wxUSE_WIZARDDLG)
5248     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard"
5249 fi
5250
5251 dnl ---------------------------------------------------------------------------
5252 dnl get the string with OS info - used by wxGetOsDescription()
5253 dnl ---------------------------------------------------------------------------
5254
5255 if test "$cross_compiling" = "yes"; then
5256     dnl Use best guess from host as we can't use uname when cross compiling
5257     OSINFO="\"$host\""
5258 else
5259     dnl attualy work out OS version
5260     OSINFO=`uname -s -r -m`
5261     OSINFO="\"$OSINFO\""
5262 fi
5263
5264 AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
5265
5266 dnl ---------------------------------------------------------------------------
5267 dnl define the variable containing the installation prefix (used in dcpsg.cpp)
5268 dnl ---------------------------------------------------------------------------
5269
5270 if test "x$prefix" != "xNONE"; then
5271     wxPREFIX=$prefix
5272 else
5273     wxPREFIX=$ac_default_prefix
5274 fi
5275
5276 AC_DEFINE_UNQUOTED(wxINSTALL_PREFIX, "$wxPREFIX")
5277
5278 dnl define the variables used in wx-config
5279 top_builddir=`pwd`
5280
5281 dnl ---------------------------------------------------------------------------
5282 dnl Output the makefiles and such from the results found above
5283 dnl ---------------------------------------------------------------------------
5284
5285 dnl all additional libraries (except wxWindows itself) we link with
5286
5287 dnl note that we always link with -lm except for Mac OS X
5288 dnl extended.c uses floor() and is always linked in
5289
5290 if test "$wxUSE_MAC" = 1 ; then
5291     LDFLAGS="$LDFLAGS -framework Carbon -framework System"
5292 fi
5293 if test "$wxUSE_COCOA" = 1 ; then
5294     LDFLAGS="$LDFLAGS -framework Cocoa -framework System"
5295 fi
5296
5297 dnl FIXME: should this be covered by the conditional above
5298 dnl given the -lm comment there?  Or should that comment (and
5299 dnl this one) be removed..   [ 7 Nov 2001 ]
5300
5301 LIBS="$ZLIB_LINK $POSIX4_LINK $INET_LINK $WCHAR_LINK $DL_LINK $LIBS"
5302
5303 dnl Only add the -lm library if floating point functions cannot be used
5304 dnl without it.  This check is important on cygwin because of the bizarre
5305 dnl way that they have organized functions into libraries.  On cygwin, both
5306 dnl libc.a and libm.a are symbolic links to a single lib libcygwin.a.  This
5307 dnl means that
5308 dnl   1) linking with -lm is not necessary, and
5309 dnl   2) linking with -lm is dangerous if the order of libraries is wrong
5310 dnl In particular, if you compile any program with -mno-cygwin and link with
5311 dnl -lm, it will crash instantly when it is run.  This happens because the
5312 dnl linker incorrectly links the Cygwin libm.a (==libcygwin.a), which replaces
5313 dnl the ___main function instead of allowing it to be defined by
5314 dnl /usr/lib/mingw/libmingw32.a as it should be.
5315 dnl
5316 dnl On MacOS X, this test will find that -lm is unnecessary and leave it out.
5317 dnl
5318 dnl Just check a few floating point functions. If they are all found without
5319 dnl -lm, then we must not need -lm.
5320 have_cos=0
5321 have_floor=0
5322 AC_CHECK_FUNCS(cos, have_cos=1)
5323 AC_CHECK_FUNCS(floor, have_floor=1)
5324 AC_MSG_CHECKING(if floating point functions link without -lm)
5325 if test "$have_cos" = 1 -a "$have_floor" = 1; then
5326     AC_MSG_RESULT(yes)
5327 else
5328     AC_MSG_RESULT(no)
5329     LIBS="$LIBS -lm"
5330     # use different functions to avoid configure caching
5331     have_sin=0
5332     have_ceil=0
5333     AC_CHECK_FUNCS(sin, have_sin=1)
5334     AC_CHECK_FUNCS(ceil, have_ceil=1)
5335     AC_MSG_CHECKING(if floating point functions link with -lm)
5336     if test "$have_sin" = 1 -a "$have_ceil" = 1; then
5337         AC_MSG_RESULT(yes)
5338     else
5339         AC_MSG_RESULT(no)
5340         # not sure we should warn the user, crash, etc.
5341     fi
5342 fi
5343
5344 if test "$wxUSE_GUI" = "yes"; then
5345
5346     LIBS="$GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $LIBS"
5347
5348     dnl TODO add checks that these samples will really compile (i.e. all the
5349     dnl      library features they need are present)
5350
5351     dnl TODO some samples are never built so far:
5352     dnl      ipc, mfc, nativdlg, oleauto, ownerdrw
5353     SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS artprov controls dialogs \
5354                      drawing dynamic erase event exec font image \
5355                      minimal propsize rotate shaped widgets"
5356
5357     dnl this is needed to be able to find AFM files
5358     CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"
5359 else
5360     SAMPLES_SUBDIRS="console"
5361 fi
5362
5363
5364 dnl all -I options we must pass to the compiler
5365 dnl
5366 dnl note that the order is somewhat important, in particular the ZLIB_INCLUDE
5367 dnl and other stuff for the built in libraries should come first to avoid
5368 dnl including the system headers with the same name (it is particularly
5369 dnl important for zlib because XFree 4.2.0 has its own, horribly old and
5370 dnl incompatible, zlib.h) and the wxWindows headers should come first anyhow
5371 INCLUDES="-I\${top_builddir}/lib/wx/include/${TOOLCHAIN_NAME} \
5372 -I\${top_srcdir}/include \
5373 $REGEX_INCLUDE $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TIFF_INCLUDE \
5374 $TOOLKIT_INCLUDE"
5375
5376 dnl wxGTK does not need TOOLKIT includes in wx-config
5377 if test "$wxUSE_GTK" = 1; then
5378     WXCONFIG_INCLUDE=
5379 else
5380     WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
5381 fi
5382
5383 dnl C/C++ compiler options used to compile wxWindows
5384 if test "$GXX" = yes ; then
5385     dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
5386     CXXWARNINGS="-Wall"
5387     dnl should enable this one day...
5388     dnl CXXWARNINGS="-Wall -Werror"
5389
5390     dnl Add this *after* all compile tests, we don't need or want generated
5391     dnl depfiles until actually building the lib
5392     if test "$wxUSE_NO_DEPS" = "no" ; then
5393         CFLAGS="-MMD $CFLAGS"
5394         CXXFLAGS="-MMD $CXXFLAGS"
5395     fi
5396 fi
5397
5398 EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE"
5399
5400 dnl remove the extra white space from the cc/c++/ld options
5401 CPPFLAGS=`echo $INCLUDES $CPPFLAGS | sed 's/ \\+/ /g'`
5402 CFLAGS=`echo $EXTRA_CFLAGS $CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
5403 CXXFLAGS=`echo $EXTRA_CFLAGS $CXXFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
5404 LIBS=`echo $LIBS | sed 's/ \+/ /g'`
5405
5406 LDFLAGS="$LDFLAGS $PROFILE"
5407
5408 dnl for convenience, sort the samples in alphabetical order
5409 dnl
5410 dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
5411 dnl       in this list - hence uniq. But normally, this shouldn't be needed!
5412 dnl
5413 dnl       Unfortunately, there is a bug in OS/2's tr, such that
5414 dnl       tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
5415 dnl       only removes the Unix-like part of the introduced line break.
5416 SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
5417
5418 dnl makefile variables
5419 AC_SUBST(LEX_STEM)
5420 AC_SUBST(PATH_IFS)
5421
5422 dnl global options
5423 AC_SUBST(WX_MAJOR_VERSION_NUMBER)
5424 AC_SUBST(WX_MINOR_VERSION_NUMBER)
5425 AC_SUBST(WX_RELEASE_NUMBER)
5426 AC_SUBST(WX_LIBRARY_NAME_STATIC)
5427 AC_SUBST(WX_LIBRARY_NAME_SHARED)
5428 AC_SUBST(WX_LIBRARY_BASENAME)
5429 AC_SUBST(WX_LIBRARY_IMPORTLIB)
5430 AC_SUBST(WX_TARGET_LIBRARY)
5431 AC_SUBST(WX_LIBRARY_LINK1)
5432 AC_SUBST(WX_LIBRARY_LINK2)
5433 AC_SUBST(PROGRAM_EXT)
5434
5435 dnl global gl options
5436 AC_SUBST(WX_LIBRARY_NAME_STATIC_GL)
5437 AC_SUBST(WX_LIBRARY_NAME_SHARED_GL)
5438 AC_SUBST(WX_TARGET_LIBRARY_GL)
5439 AC_SUBST(WX_LIBRARY_LINK1_GL)
5440 AC_SUBST(WX_LIBRARY_LINK2_GL)
5441
5442 dnl are we supposed to create the links?
5443 AC_SUBST(WX_ALL)
5444 AC_SUBST(WX_ALL_INSTALLED)
5445
5446 AC_SUBST(SHARED_LD)
5447 AC_SUBST(PIC_FLAG)
5448 AC_SUBST(CODE_GEN_FLAGS)
5449 AC_SUBST(CODE_GEN_FLAGS_CXX)
5450
5451 AC_SUBST(SONAME_FLAGS)
5452 AC_SUBST(SONAME_FLAGS_GL)
5453 AC_SUBST(WX_TARGET_LIBRARY_SONAME)
5454 AC_SUBST(WX_TARGET_LIBRARY_TYPE)
5455
5456 AC_SUBST(STATIC_FLAG)
5457
5458 dnl debugging options
5459 AC_SUBST(WXDEBUG_DEFINE)
5460
5461 dnl toolkit options
5462 AC_SUBST(USE_GUI)
5463 AC_SUBST(AFMINSTALL)
5464 AC_SUBST(WIN32INSTALL)
5465 AC_SUBST(TOOLKIT)
5466 AC_SUBST(TOOLKIT_DIR)
5467 AC_SUBST(TOOLKIT_VPATH)
5468 AC_SUBST(TOOLCHAIN_NAME)
5469 AC_SUBST(TOOLCHAIN_DEFS)
5470 AC_SUBST(TOOLCHAIN_DLL_DEFS)
5471
5472 dnl wx-config options
5473 AC_SUBST(top_builddir)
5474 AC_SUBST(host_alias)
5475 AC_SUBST(cross_compiling)
5476 AC_SUBST(WXCONFIG_LIBS)
5477 AC_SUBST(WXCONFIG_LIBS_GL)
5478 AC_SUBST(WXCONFIG_LIBS_STATIC)
5479 AC_SUBST(WXCONFIG_LIBS_STATIC_GL)
5480 AC_SUBST(WXCONFIG_INCLUDE)
5481 AC_SUBST(WXCONFIG_RPATH)
5482 AC_SUBST(WX_LARGEFILE_FLAGS)
5483
5484 dnl the list of files to compile/install
5485 AC_SUBST(ALL_OBJECTS)
5486 AC_SUBST(ALL_HEADERS)
5487 AC_SUBST(ALL_SOURCES)
5488
5489 dnl distribution vars
5490 AC_SUBST(GUIDIST)
5491 AC_SUBST(PORT_FILES)
5492 AC_SUBST(DISTDIR)
5493
5494 dnl additional subdirectories where we will build
5495 AC_SUBST(SAMPLES_SUBDIRS)
5496
5497 dnl additional libraries and linker settings
5498 AC_SUBST(LDFLAGS)
5499 AC_SUBST(LDFLAGS_GL)
5500 AC_SUBST(LDFLAGS_VERSIONING)
5501 AC_SUBST(LDFLAGS_EXE)
5502 AC_SUBST(OPENGL_LIBS)
5503 AC_SUBST(DMALLOC_LIBS)
5504 AC_SUBST(EXTRADEFS)
5505 AC_SUBST(WX_VERSION_TAG)
5506
5507 dnl additional resurces settings
5508 AC_SUBST(RESCOMP)
5509 AC_SUBST(RESFLAGS)
5510 AC_SUBST(RESPROGRAMOBJ)
5511 AC_SUBST(WX_RESOURCES_MACOSX_ASCII)
5512 AC_SUBST(WX_RESOURCES_MACOSX_DATA)
5513
5514 dnl additional for Mac OS X
5515 AC_SUBST(DEREZ)
5516 AC_SUBST(MACOSX_BUNDLE)
5517 AC_SUBST(LIBWXMACRES)
5518 AC_SUBST(MACRESCOMP)
5519 AC_SUBST(MACSETFILE)
5520 AC_SUBST(MACRESWXCONFIG)
5521
5522 dnl other tools
5523 AC_SUBST(GCC)
5524 AC_SUBST(DLLTOOL)
5525 AC_SUBST(AS)
5526 AC_SUBST(NM)
5527 AC_SUBST(LD)
5528 AC_SUBST(MAKEINFO)
5529 AC_SUBST(INSTALL_LIBRARY)
5530 AC_SUBST(INSTALL_DIR)
5531
5532 dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
5533 dnl itself (this macro is required if SUBDIRS variable is used in Makefile.am
5534 dnl - and we do use it)
5535 AC_PROG_MAKE_SET
5536
5537 dnl move setup.h back if available
5538 if test -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h; then
5539     mv -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h setup.h
5540 fi
5541
5542 AC_CONFIG_HEADER(setup.h:setup.h.in)
5543
5544 dnl we need to pass SAMPLES_SUBDIRS (and some other) to the configure in
5545 dnl samples and the only way to do it is to use the environment (another
5546 dnl idea could have been to use the cache but this wouldn't work when
5547 dnl configure doesn't use cache at all which is the default with autoconf 2.50)
5548 wx_cv_path_samplesubdirs=$SAMPLES_SUBDIRS
5549 wx_cv_if_gnu_make=$IF_GNU_MAKE
5550 wx_cv_path_ifs=$PATH_IFS
5551 wx_cv_program_ext=$PROGRAM_EXT
5552 wx_cv_target_library=$WX_TARGET_LIBRARY
5553 wx_cv_target_library_gl=$WX_TARGET_LIBRARY_GL
5554 wx_cv_target_libtype=$WX_TARGET_LIBRARY_TYPE
5555 wx_cv_library_basename=${WX_LIBRARY_BASENAME}
5556 wx_cv_release=${WX_RELEASE}
5557 wx_cv_current=${WX_CURRENT}
5558 wx_cv_revision=${WX_REVISION}
5559 wx_cv_age=${WX_AGE}
5560 wx_cv_use_gui=${USE_GUI}
5561 wx_cv_use_resources=${wxUSE_RESOURCES}
5562 export wx_cv_path_samplesubdirs wx_cv_if_gnu_make \
5563        wx_cv_path_ifs wx_cv_program_ext \
5564        wx_cv_target_library wx_cv_target_library_gl wx_cv_target_libtype \
5565        wx_cv_library_basename wx_cv_release wx_cv_current wx_cv_revision wx_cv_age \
5566        wx_cv_use_gui wx_cv_use_resources
5567
5568 AC_CONFIG_SUBDIRS(demos samples utils contrib)
5569
5570 dnl create each of the files in the space separated list from the file.in
5571 dnl (the original file name may be overriden by appending another name after a
5572 dnl colon)
5573 AC_OUTPUT([
5574             wx-config
5575             version-script
5576             src/make.env
5577             src/makeprog.env
5578             src/makelib.env
5579             Makefile
5580           ],
5581           [
5582             dnl This test is required to make the following idempotent.
5583             dnl Otherwise running config.status or rerunning configure
5584             dnl would stomp the wx-config link or try to move it onto
5585             dnl itself.
5586             dnl Use -h instead of -L to test for link (GD)
5587             dnl   -h is documented as obsolete under Mac OS X but works
5588             dnl   -L is obsolete under Solaris8
5589             if test ! -h wx-config; then
5590                 chmod +x wx-config
5591                 mv wx-config wx${TOOLCHAIN_NAME}-config
5592                 ${LN_S} wx${TOOLCHAIN_NAME}-config wx-config
5593             fi
5594
5595             if test ! -d lib; then
5596               mkdir lib
5597             fi
5598             if test ! -d lib/wx; then
5599               mkdir lib/wx
5600             fi
5601             if test ! -d lib/wx/include; then
5602               mkdir lib/wx/include
5603             fi
5604             if test ! -d lib/wx/include/${TOOLCHAIN_NAME}; then
5605               mkdir lib/wx/include/${TOOLCHAIN_NAME}
5606             fi
5607             if test ! -d lib/wx/include/${TOOLCHAIN_NAME}/wx; then
5608               mkdir lib/wx/include/${TOOLCHAIN_NAME}/wx
5609             fi
5610             if test -f setup.h; then
5611               mv -f setup.h lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h
5612             fi
5613           ],
5614           [
5615             TOOLCHAIN_NAME="${TOOLCHAIN_NAME}"
5616             LN_S="${LN_S}"
5617           ]
5618          )
5619
5620 dnl report on what we decided to do
5621 echo
5622 echo "Configured wxWindows ${WX_VERSION} for \`${host}'"
5623 echo ""
5624 echo "  Which GUI toolkit should wxWindows use?                 ${TOOLKIT:-base only}"
5625
5626 echo "  Should wxWindows be compiled in debug mode?             ${wxUSE_DEBUG:-no}"
5627 echo "  Should wxWindows be linked as a shared library?         ${wxUSE_SHARED:-no}"
5628 echo "  Should wxWindows be compiled in Unicode mode?           ${wxUSE_UNICODE:-no}"
5629
5630 echo "  What level of wxWindows compatibility should be enabled?"
5631 echo "                                       wxWindows 2.0      ${WXWIN_COMPATIBILITY_2:-no}"
5632 echo "                                       wxWindows 2.2      ${WXWIN_COMPATIBILITY_2_2:-no}"
5633 echo "                                       wxWindows 2.4      ${WXWIN_COMPATIBILITY_2_4:-yes}"
5634
5635 echo "  Which libraries should wxWindows use?"
5636 echo "                                       jpeg               ${wxUSE_LIBJPEG-none}"
5637 echo "                                       png                ${wxUSE_LIBPNG-none}"
5638 echo "                                       regex              ${wxUSE_REGEX}"
5639 echo "                                       tiff               ${wxUSE_LIBTIFF-none}"
5640 echo "                                       zlib               ${wxUSE_ZLIB}"
5641
5642 echo ""
5643
5644 dnl vi: set et sts=4 sw=4 com=\:dnl: