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