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