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