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