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