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