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