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