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