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