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