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