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