]> git.saurik.com Git - wxWidgets.git/blame - configure.in
switch to pImpl pattern for mac printing
[wxWidgets.git] / configure.in
CommitLineData
9a98a854
VZ
1dnl Process this file with autoconf to produce a configure script.
2AC_REVISION($Id$)dnl
3
4dnl ---------------------------------------------------------------------------
5dnl
3a922bb4
RL
6dnl Top-level configure.in for wxWindows by Robert Roebling, Phil Blecker,
7dnl Vadim Zeitlin and Ron Lee
9a98a854
VZ
8dnl
9dnl This script is under the wxWindows licence.
10dnl
11dnl Version: $Id$
bcd2b961 12dnl ---------------------------------------------------------------------------
9a98a854
VZ
13
14dnl ---------------------------------------------------------------------------
15dnl initialization
16dnl ---------------------------------------------------------------------------
17
a9b5e89f 18dnl the file passed to AC_INIT should be specific to our package
a72a4bfa 19AC_INIT([wx-config.in])
9a98a854 20
e59890c3 21dnl sets build, host, target variables and the same with _alias
7c66a493
VZ
22AC_CANONICAL_SYSTEM
23
24dnl When making releases do:
25dnl
26dnl WX_RELEASE_NUMBER += 1
2b6f061f 27dnl
6426998c
RL
28dnl ..and update WX_CURRENT, WX_RELEASE and WX_AGE according to the
29dnl following rules:
2b6f061f 30dnl
6426998c
RL
31dnl If any changes have been made to the public interface, that is if any
32dnl exported class, method, global or global type has been added, removed
33dnl or changed in any way, then do: WX_CURRENT += 1
34dnl
35dnl If source changes have been made that *do not* alter the public
36dnl interface then do: WX_REVISION += 1
37dnl If WX_CURRENT was incremented (as above) instead do: WX_REVISION = 0
38dnl
39dnl If any public interface was added, do: WX_AGE += 1
40dnl If any public interface was removed (or altered in a way effectively
41dnl removing the previous definition), instead do: WX_AGE = 0
42dnl
43dnl When the major or minor version numbers are incremented, all the above
44dnl variables should be reset to 0.
45dnl
46dnl The resulting library name will be of the form:
47dnl libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
9a98a854
VZ
48
49WX_MAJOR_VERSION_NUMBER=2
34bed6d9
VZ
50WX_MINOR_VERSION_NUMBER=5
51WX_RELEASE_NUMBER=0
9a98a854 52
2b6f061f 53WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER
2aa88730 54WX_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER
6426998c 55
978f1259
RL
56WX_MSW_VERSION=$WX_MAJOR_VERSION_NUMBER$WX_MINOR_VERSION_NUMBER$WX_RELEASE_NUMBER
57
34bed6d9 58WX_CURRENT=0
6426998c
RL
59WX_REVISION=0
60WX_AGE=0
61
9a98a854
VZ
62
63dnl ------------------------------------------------------------------------
64dnl Check platform (host system)
65dnl ------------------------------------------------------------------------
66
4a8900f2 67dnl OS (assume Unix)
9a98a854 68USE_UNIX=1
4882bf1b 69USE_WIN32=0
f9bc1684 70USE_DOS=0
b12915c1 71USE_BEOS=0
1216f52d 72USE_MAC=0
b12915c1 73
4a8900f2 74dnl Unix kind
9a98a854 75USE_AIX=
9a98a854 76USE_BSD=
f11bdd03 77USE_DARWIN=
9a98a854 78USE_FREEBSD=
4a8900f2
VZ
79USE_HPUX=
80USE_LINUX=
f6bcfd97 81USE_NETBSD=
4a8900f2
VZ
82USE_OPENBSD=
83USE_OSF=
84USE_SGI=
85USE_SOLARIS=
86USE_SUN=
87USE_SUNOS=
88USE_SVR4=
89USE_SYSV=
9a98a854
VZ
90USE_VMS=
91USE_ULTRIX=
4a8900f2
VZ
92USE_UNIXWARE=
93
94dnl hardware platform
95USE_ALPHA=
9a98a854 96
ab9b9eab
VZ
97dnl on some platforms xxx_r() functions are declared inside "#ifdef
98dnl _REENTRANT" and it's easier to just define this symbol for these platforms
99dnl than checking it during run-time
100NEEDS_D_REENTRANT_FOR_R_FUNCS=0
101
ced859c3 102dnl the list of all available toolkits
1e6feb95
VZ
103dnl
104dnl update NUM_TOOLKITS calculation below when adding a new toolkit here!
ac0c4cc3 105ALL_TOOLKITS="COCOA GTK MAC MGL MICROWIN MOTIF MSW PM X11"
ced859c3 106
9a98a854
VZ
107dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
108dnl which are either yes or no
ac0c4cc3 109DEFAULT_wxUSE_COCOA=0
9a98a854 110DEFAULT_wxUSE_GTK=0
1e6feb95
VZ
111DEFAULT_wxUSE_MAC=0
112DEFAULT_wxUSE_MGL=0
1725144d 113DEFAULT_wxUSE_MICROWIN=0
9a98a854
VZ
114DEFAULT_wxUSE_MOTIF=0
115DEFAULT_wxUSE_MSW=0
e07802fc 116DEFAULT_wxUSE_PM=0
7f5c07ab 117DEFAULT_wxUSE_X11=0
9a98a854 118
143121c5
VZ
119dnl these are the values which are really default for the given platform -
120dnl they're not cached and are only used if no --with-toolkit was given *and*
121dnl nothing was found in the cache
ac0c4cc3 122DEFAULT_DEFAULT_wxUSE_COCOA=0
143121c5 123DEFAULT_DEFAULT_wxUSE_GTK=0
1e6feb95
VZ
124DEFAULT_DEFAULT_wxUSE_MAC=0
125DEFAULT_DEFAULT_wxUSE_MGL=0
1725144d 126DEFAULT_DEFAULT_wxUSE_MICROWIN=0
143121c5
VZ
127DEFAULT_DEFAULT_wxUSE_MOTIF=0
128DEFAULT_DEFAULT_wxUSE_MSW=0
e07802fc 129DEFAULT_DEFAULT_wxUSE_PM=0
7f5c07ab 130DEFAULT_DEFAULT_wxUSE_X11=0
143121c5 131
d6a55c4b 132PROGRAM_EXT=
3a922bb4 133SO_SUFFIX=so
d6a55c4b 134
b12915c1
VZ
135dnl to support a new system, you need to add its canonical name (as determined
136dnl by config.sub or specified by the configure command line) to this "case"
137dnl and also define the shared library flags below - search for
138dnl SHARED_LIB_SETUP to find the exact place
9a98a854
VZ
139case "${host}" in
140 *-hp-hpux* )
141 USE_HPUX=1
143121c5 142 DEFAULT_DEFAULT_wxUSE_MOTIF=1
ab9b9eab 143 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
3a922bb4 144 SO_SUFFIX=sl
9a98a854
VZ
145 AC_DEFINE(__HPUX__)
146 ;;
147 *-*-linux* )
148 USE_LINUX=1
149 AC_DEFINE(__LINUX__)
150 TMP=`uname -m`
151 if test "x$TMP" = "xalpha"; then
152 USE_ALPHA=1
153 AC_DEFINE(__ALPHA__)
154 fi
143121c5 155 DEFAULT_DEFAULT_wxUSE_GTK=1
9a98a854
VZ
156 ;;
157 *-*-irix5* | *-*-irix6* )
158 USE_SGI=1
159 USE_SVR4=1
160 AC_DEFINE(__SGI__)
161 AC_DEFINE(__SVR4__)
143121c5 162 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
163 ;;
164 *-*-solaris2* )
165 USE_SUN=1
166 USE_SOLARIS=1
167 USE_SVR4=1
168 AC_DEFINE(__SUN__)
169 AC_DEFINE(__SOLARIS__)
170 AC_DEFINE(__SVR4__)
143121c5 171 DEFAULT_DEFAULT_wxUSE_MOTIF=1
ab9b9eab 172 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
9a98a854
VZ
173 ;;
174 *-*-sunos4* )
175 USE_SUN=1
176 USE_SUNOS=1
177 USE_BSD=1
178 AC_DEFINE(__SUN__)
179 AC_DEFINE(__SUNOS__)
180 AC_DEFINE(__BSD__)
143121c5 181 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854 182 ;;
f6bcfd97 183 *-*-freebsd*)
9a98a854
VZ
184 USE_BSD=1
185 USE_FREEBSD=1
186 AC_DEFINE(__FREEBSD__)
187 AC_DEFINE(__BSD__)
143121c5 188 DEFAULT_DEFAULT_wxUSE_GTK=1
9a98a854 189 ;;
1cf8c0a9
VZ
190 *-*-openbsd*)
191 USE_BSD=1
192 USE_OPENBSD=1
1cf8c0a9 193 AC_DEFINE(__OPENBSD__)
2b5f62a0 194 AC_DEFINE(__BSD__)
1cf8c0a9
VZ
195 DEFAULT_DEFAULT_wxUSE_GTK=1
196 ;;
f6bcfd97
BP
197 *-*-netbsd*)
198 USE_BSD=1
199 USE_NETBSD=1
f6bcfd97 200 AC_DEFINE(__NETBSD__)
2b5f62a0 201 AC_DEFINE(__BSD__)
f6bcfd97
BP
202 DEFAULT_DEFAULT_wxUSE_GTK=1
203 ;;
9a98a854
VZ
204 *-*-osf* )
205 USE_ALPHA=1
206 USE_OSF=1
207 AC_DEFINE(__ALPHA__)
208 AC_DEFINE(__OSF__)
143121c5 209 DEFAULT_DEFAULT_wxUSE_MOTIF=1
f6bcfd97 210 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
9a98a854
VZ
211 ;;
212 *-*-dgux5* )
213 USE_ALPHA=1
214 USE_SVR4=1
215 AC_DEFINE(__ALPHA__)
216 AC_DEFINE(__SVR4__)
143121c5 217 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
218 ;;
219 *-*-sysv5* )
220 USE_SYSV=1
221 USE_SVR4=1
222 AC_DEFINE(__SYSV__)
223 AC_DEFINE(__SVR4__)
143121c5 224 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
225 ;;
226 *-*-aix* )
227 USE_AIX=1
228 USE_SYSV=1
229 USE_SVR4=1
2b5f62a0
VZ
230 dnl quoting from http://www-1.ibm.com/servers/esdd/articles/gnu.html:
231 dnl
232 dnl Both archive libraries and shared libraries on AIX have an .a
233 dnl extension. This will explain why you can't link with an .so and
1542ea39 234 dnl why it works with the name changed to .a.
321d2b14 235 SO_SUFFIX=a
9a98a854
VZ
236 AC_DEFINE(__AIX__)
237 AC_DEFINE(__SYSV__)
238 AC_DEFINE(__SVR4__)
143121c5 239 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854 240 ;;
a9b5e89f 241
4a8900f2
VZ
242 *-*-*UnixWare*)
243 USE_SYSV=1
244 USE_SVR4=1
245 USE_UNIXWARE=1
246 AC_DEFINE(__UNIXWARE__)
247 ;;
248
1c8183e2 249 *-*-cygwin* | *-*-mingw32* )
17234b26
MB
250 dnl MBN: some of the defines have been moved after toolkit detection
251 dnl because for wxMotif/wxGTK/wxX11 to build on Cygwin
252 dnl USE_UNIX must be set and not USE_WIN32
3a922bb4 253 SO_SUFFIX=dll
cf27ef00 254 PROGRAM_EXT=".exe"
7b7a7637 255 RESCOMP=windres
a9b5e89f
VZ
256 DEFAULT_DEFAULT_wxUSE_MSW=1
257 ;;
258
f9bc1684
VS
259 *-pc-msdosdjgpp )
260 USE_UNIX=0
261 USE_DOS=1
262 AC_DEFINE(__DOS__)
263 PROGRAM_EXT=".exe"
264 DEFAULT_DEFAULT_wxUSE_MGL=1
24f5e003
VS
265 dnl DJGPP needs explicit -lstdc++ for some reason (VS: mayb some versions only?)
266 LIBS="$LIBS -lstdc++"
f9bc1684
VS
267 ;;
268
9829f277 269 *-pc-os2_emx | *-pc-os2-emx )
91b8de8d 270 AC_DEFINE(__EMX__)
cf27ef00 271 PROGRAM_EXT=".exe"
e07802fc 272 DEFAULT_DEFAULT_wxUSE_PM=1
91b8de8d 273 ;;
a9b5e89f 274
d08b457b
GD
275 powerpc-*-darwin* )
276 dnl PowerPC Darwin based distributions (including Mac OS X)
b4085ce6 277 USE_BSD=1
f11bdd03 278 USE_DARWIN=1
3a922bb4 279 SO_SUFFIX=dylib
b4085ce6 280 AC_DEFINE(__BSD__)
f11bdd03 281 AC_DEFINE(__DARWIN__)
d08b457b 282 AC_DEFINE(__POWERPC__)
82d43113 283 AC_DEFINE(TARGET_CARBON)
b4085ce6
GD
284 DEFAULT_DEFAULT_wxUSE_MAC=1
285 ;;
286
b12915c1
VZ
287 *-*-beos* )
288 dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this
289 USE_BEOS=1
290 AC_DEFINE(__BEOS__)
291 ;;
292
9a98a854 293 *)
a9b5e89f 294 AC_MSG_ERROR(unknown system type ${host}.)
9a98a854
VZ
295esac
296
9a98a854
VZ
297dnl ---------------------------------------------------------------------------
298dnl command line options for configure
299dnl ---------------------------------------------------------------------------
300
301dnl the default values for all options - we collect them all here to simplify
302dnl modification of the default values (for example, if the defaults for some
303dnl platform should be changed, it can be done here too)
304dnl
305dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above
306
143121c5
VZ
307WX_ARG_CACHE_INIT
308
9a98a854
VZ
309dnl useful to test the compilation with minimum options, define as 0 for normal
310dnl usage
311DEBUG_CONFIGURE=0
312if test $DEBUG_CONFIGURE = 1; then
1e6feb95
VZ
313 DEFAULT_wxUSE_UNIVERSAL=no
314
6ec507fd
JS
315 DEFAULT_wxUSE_NANOX=no
316
9a98a854
VZ
317 DEFAULT_wxUSE_THREADS=yes
318
2aa88730 319 DEFAULT_wxUSE_SHARED=yes
3a922bb4 320 DEFAULT_wxUSE_SONAME=no
1e6feb95 321 DEFAULT_wxUSE_OPTIMISE=no
9a98a854 322 DEFAULT_wxUSE_PROFILE=no
5586805b 323 DEFAULT_wxUSE_NO_DEPS=no
8f4a9a10
RR
324 DEFAULT_wxUSE_NO_RTTI=no
325 DEFAULT_wxUSE_NO_EXCEPTIONS=no
5586805b 326 DEFAULT_wxUSE_PERMISSIVE=no
9a98a854
VZ
327 DEFAULT_wxUSE_DEBUG_FLAG=yes
328 DEFAULT_wxUSE_DEBUG_INFO=yes
329 DEFAULT_wxUSE_DEBUG_GDB=yes
330 DEFAULT_wxUSE_MEM_TRACING=no
143121c5 331 DEFAULT_wxUSE_DEBUG_CONTEXT=no
9a98a854 332 DEFAULT_wxUSE_DMALLOC=no
a7ae7112 333 DEFAULT_wxUSE_PRECOMP=no
9a98a854
VZ
334 DEFAULT_wxUSE_APPLE_IEEE=no
335
336 DEFAULT_wxUSE_LOG=yes
1e6feb95
VZ
337 DEFAULT_wxUSE_LOGWINDOW=no
338 DEFAULT_wxUSE_LOGGUI=no
69d27ff7 339 DEFAULT_wxUSE_LOGDIALOG=no
9a98a854
VZ
340
341 DEFAULT_wxUSE_GUI=yes
1e6feb95 342 DEFAULT_wxUSE_CONTROLS=no
9a98a854 343
3e44f09d 344 DEFAULT_wxUSE_REGEX=no
9a98a854
VZ
345 DEFAULT_wxUSE_ZLIB=no
346 DEFAULT_wxUSE_LIBPNG=no
9a98a854 347 DEFAULT_wxUSE_LIBJPEG=no
c7a2bf27 348 DEFAULT_wxUSE_LIBTIFF=no
9a98a854 349 DEFAULT_wxUSE_ODBC=no
bdad4e7e 350 DEFAULT_wxUSE_OPENGL=no
9a98a854 351
eb4efbdc 352 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no
4f3c5f06 353 DEFAULT_wxUSE_SNGLINST_CHECKER=no
fd15d8f1 354 DEFAULT_wxUSE_STD_IOSTREAM=no
1e6feb95
VZ
355 DEFAULT_wxUSE_CMDLINE_PARSER=no
356 DEFAULT_wxUSE_DATETIME=no
1e6feb95
VZ
357 DEFAULT_wxUSE_TIMER=no
358 DEFAULT_wxUSE_STOPWATCH=no
9a98a854 359 DEFAULT_wxUSE_FILE=no
1e6feb95 360 DEFAULT_wxUSE_FFILE=no
a3a584a7 361 DEFAULT_wxUSE_TEXTBUFFER=no
9a98a854 362 DEFAULT_wxUSE_TEXTFILE=no
2749089a 363 DEFAULT_wxUSE_WAVE=no
9a98a854
VZ
364 DEFAULT_wxUSE_INTL=no
365 DEFAULT_wxUSE_CONFIG=no
1e6feb95 366 DEFAULT_wxUSE_FONTMAP=no
9a98a854
VZ
367 DEFAULT_wxUSE_STREAMS=no
368 DEFAULT_wxUSE_SOCKETS=no
3bce6687
JS
369 DEFAULT_wxUSE_OLE=no
370 DEFAULT_wxUSE_DATAOBJ=no
1c8515f9 371 DEFAULT_wxUSE_DIALUP_MANAGER=no
9a98a854 372 DEFAULT_wxUSE_JOYSTICK=no
6bff71f8 373 DEFAULT_wxUSE_DYNLIB_CLASS=no
0b9ab0bd 374 DEFAULT_wxUSE_DYNAMIC_LOADER=no
9a98a854 375 DEFAULT_wxUSE_LONGLONG=no
e8f65ba6 376 DEFAULT_wxUSE_GEOMETRY=no
9a98a854
VZ
377
378 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
379 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
380 DEFAULT_wxUSE_POSTSCRIPT=no
381
382 DEFAULT_wxUSE_X_RESOURCES=no
383 DEFAULT_wxUSE_CLIPBOARD=no
384 DEFAULT_wxUSE_TOOLTIPS=no
385 DEFAULT_wxUSE_DRAG_AND_DROP=no
24fd6d87 386 DEFAULT_wxUSE_DRAGIMAGE=no
9a98a854
VZ
387 DEFAULT_wxUSE_SPLINES=no
388
389 DEFAULT_wxUSE_MDI_ARCHITECTURE=no
390 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
391 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
392
9a98a854
VZ
393 DEFAULT_wxUSE_RESOURCES=no
394 DEFAULT_wxUSE_CONSTRAINTS=no
395 DEFAULT_wxUSE_IPC=no
396 DEFAULT_wxUSE_HELP=no
29fd3c0c 397 DEFAULT_wxUSE_MS_HTML_HELP=no
3379ed37 398 DEFAULT_wxUSE_WXHTML_HELP=no
24176f2c 399 DEFAULT_wxUSE_TREELAYOUT=no
9a98a854 400 DEFAULT_wxUSE_METAFILE=no
1e6feb95 401 DEFAULT_wxUSE_MIMETYPE=no
4cdb0ab0
VS
402 DEFAULT_wxUSE_SYSTEM_OPTIONS=no
403 DEFAULT_wxUSE_PROTOCOL=no
404 DEFAULT_wxUSE_PROTOCOL_HTTP=no
405 DEFAULT_wxUSE_PROTOCOL_FTP=no
406 DEFAULT_wxUSE_PROTOCOL_FILE=no
407 DEFAULT_wxUSE_URL=no
3bd8fb5f 408
9a98a854 409 DEFAULT_wxUSE_COMMONDLGS=no
1e6feb95
VZ
410 DEFAULT_wxUSE_CHOICEDLG=no
411 DEFAULT_wxUSE_COLOURDLG=no
ce4169a4 412 DEFAULT_wxUSE_DIRDLG=no
1e6feb95 413 DEFAULT_wxUSE_FILEDLG=no
8db37e06 414 DEFAULT_wxUSE_FINDREPLDLG=no
1e6feb95
VZ
415 DEFAULT_wxUSE_FONTDLG=no
416 DEFAULT_wxUSE_MSGDLG=no
417 DEFAULT_wxUSE_NUMBERDLG=no
c11584af 418 DEFAULT_wxUSE_TEXTDLG=no
cbca9943 419 DEFAULT_wxUSE_SPLASH=no
a641505f 420 DEFAULT_wxUSE_STARTUP_TIPS=no
ce4169a4 421 DEFAULT_wxUSE_PROGRESSDLG=no
b1f5d087
VZ
422 DEFAULT_wxUSE_WIZARDDLG=no
423
1e6feb95 424 DEFAULT_wxUSE_MENUS=no
9a98a854 425 DEFAULT_wxUSE_MINIFRAME=no
5526e819 426 DEFAULT_wxUSE_HTML=no
24528b0c 427 DEFAULT_wxUSE_FILESYSTEM=no
e3e717ec
VZ
428 DEFAULT_wxUSE_FS_INET=no
429 DEFAULT_wxUSE_FS_ZIP=no
d78b3d64
VS
430 DEFAULT_wxUSE_BUSYINFO=no
431 DEFAULT_wxUSE_ZIPSTREAM=no
1e6feb95 432 DEFAULT_wxUSE_VALIDATORS=no
9a98a854
VZ
433
434 DEFAULT_wxUSE_ACCEL=no
1e6feb95 435 DEFAULT_wxUSE_BUTTON=no
9a98a854 436 DEFAULT_wxUSE_BMPBUTTON=no
1e6feb95
VZ
437 DEFAULT_wxUSE_CALCTRL=no
438 DEFAULT_wxUSE_CARET=no
9a98a854
VZ
439 DEFAULT_wxUSE_CHECKBOX=no
440 DEFAULT_wxUSE_CHECKLST=no
1e6feb95 441 DEFAULT_wxUSE_CHOICE=no
9a98a854 442 DEFAULT_wxUSE_COMBOBOX=no
ddb4769e 443 DEFAULT_wxUSE_DISPLAY=no
9a98a854
VZ
444 DEFAULT_wxUSE_GAUGE=no
445 DEFAULT_wxUSE_GRID=no
446 DEFAULT_wxUSE_IMAGLIST=no
447 DEFAULT_wxUSE_LISTBOX=no
448 DEFAULT_wxUSE_LISTCTRL=no
449 DEFAULT_wxUSE_NOTEBOOK=no
450 DEFAULT_wxUSE_RADIOBOX=no
451 DEFAULT_wxUSE_RADIOBTN=no
e602002e 452 DEFAULT_wxUSE_SASH=no
9a98a854
VZ
453 DEFAULT_wxUSE_SCROLLBAR=no
454 DEFAULT_wxUSE_SLIDER=no
455 DEFAULT_wxUSE_SPINBTN=no
66f38406 456 DEFAULT_wxUSE_SPINCTRL=no
9a98a854
VZ
457 DEFAULT_wxUSE_SPLITTER=no
458 DEFAULT_wxUSE_STATBMP=no
459 DEFAULT_wxUSE_STATBOX=no
460 DEFAULT_wxUSE_STATLINE=no
1e6feb95 461 DEFAULT_wxUSE_STATTEXT=no
9a98a854
VZ
462 DEFAULT_wxUSE_STATUSBAR=yes
463 DEFAULT_wxUSE_TABDIALOG=no
1e6feb95 464 DEFAULT_wxUSE_TEXTCTRL=no
1db8dc4a 465 DEFAULT_wxUSE_TOGGLEBTN=no
9a98a854 466 DEFAULT_wxUSE_TOOLBAR=no
360d6699
VZ
467 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
468 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
9a98a854 469 DEFAULT_wxUSE_TREECTRL=no
9f41d601 470 DEFAULT_wxUSE_POPUPWIN=no
0b01706f 471 DEFAULT_wxUSE_TIPWINDOW=no
9a98a854
VZ
472
473 DEFAULT_wxUSE_UNICODE=no
a72a4bfa 474 DEFAULT_wxUSE_UNICODE_MSLU=no
9a98a854 475 DEFAULT_wxUSE_WCSRTOMBS=no
e90c1d2a 476
d275c7eb 477 DEFAULT_wxUSE_PALETTE=no
0046ff7c 478 DEFAULT_wxUSE_IMAGE=no
0940bcf7
HH
479 DEFAULT_wxUSE_GIF=no
480 DEFAULT_wxUSE_PCX=no
481 DEFAULT_wxUSE_PNM=no
4b6b4dfc 482 DEFAULT_wxUSE_IFF=no
0046ff7c 483 DEFAULT_wxUSE_XPM=no
658974ae 484 DEFAULT_wxUSE_ICO_CUR=no
9a98a854 485else
1e6feb95
VZ
486 DEFAULT_wxUSE_UNIVERSAL=no
487
6ec507fd
JS
488 DEFAULT_wxUSE_NANOX=no
489
9a98a854
VZ
490 DEFAULT_wxUSE_THREADS=yes
491
2aa88730 492 DEFAULT_wxUSE_SHARED=yes
3a922bb4 493 DEFAULT_wxUSE_SONAME=no
9a98a854
VZ
494 DEFAULT_wxUSE_OPTIMISE=yes
495 DEFAULT_wxUSE_PROFILE=no
5586805b 496 DEFAULT_wxUSE_NO_DEPS=no
8f4a9a10
RR
497 DEFAULT_wxUSE_NO_RTTI=no
498 DEFAULT_wxUSE_NO_EXCEPTIONS=no
5586805b 499 DEFAULT_wxUSE_PERMISSIVE=no
9a98a854
VZ
500 DEFAULT_wxUSE_DEBUG_FLAG=no
501 DEFAULT_wxUSE_DEBUG_INFO=no
502 DEFAULT_wxUSE_DEBUG_GDB=no
503 DEFAULT_wxUSE_MEM_TRACING=no
143121c5 504 DEFAULT_wxUSE_DEBUG_CONTEXT=no
9a98a854 505 DEFAULT_wxUSE_DMALLOC=no
a7ae7112 506 DEFAULT_wxUSE_PRECOMP=no
9a98a854
VZ
507 DEFAULT_wxUSE_APPLE_IEEE=yes
508
509 DEFAULT_wxUSE_LOG=yes
d73be714
VZ
510 DEFAULT_wxUSE_LOGWINDOW=yes
511 DEFAULT_wxUSE_LOGGUI=yes
69d27ff7 512 DEFAULT_wxUSE_LOGDIALOG=yes
9a98a854
VZ
513
514 DEFAULT_wxUSE_GUI=yes
515
831b3152 516 DEFAULT_wxUSE_REGEX=yes
9a98a854
VZ
517 DEFAULT_wxUSE_ZLIB=yes
518 DEFAULT_wxUSE_LIBPNG=yes
9a98a854 519 DEFAULT_wxUSE_LIBJPEG=yes
b47c832e 520 DEFAULT_wxUSE_LIBTIFF=yes
16b52fa1 521 DEFAULT_wxUSE_ODBC=no
bdad4e7e 522 DEFAULT_wxUSE_OPENGL=no
9a98a854 523
eb4efbdc 524 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes
4f3c5f06 525 DEFAULT_wxUSE_SNGLINST_CHECKER=yes
073478b3 526 DEFAULT_wxUSE_STD_IOSTREAM=no
1e6feb95
VZ
527 DEFAULT_wxUSE_CMDLINE_PARSER=yes
528 DEFAULT_wxUSE_DATETIME=yes
1e6feb95
VZ
529 DEFAULT_wxUSE_TIMER=yes
530 DEFAULT_wxUSE_STOPWATCH=yes
9a98a854 531 DEFAULT_wxUSE_FILE=yes
1e6feb95 532 DEFAULT_wxUSE_FFILE=yes
a3a584a7 533 DEFAULT_wxUSE_TEXTBUFFER=yes
9a98a854 534 DEFAULT_wxUSE_TEXTFILE=yes
2749089a 535 DEFAULT_wxUSE_WAVE=no
9a98a854
VZ
536 DEFAULT_wxUSE_INTL=yes
537 DEFAULT_wxUSE_CONFIG=yes
1e6feb95 538 DEFAULT_wxUSE_FONTMAP=yes
9a98a854
VZ
539 DEFAULT_wxUSE_STREAMS=yes
540 DEFAULT_wxUSE_SOCKETS=yes
3bce6687
JS
541 DEFAULT_wxUSE_OLE=yes
542 DEFAULT_wxUSE_DATAOBJ=yes
1c8515f9 543 DEFAULT_wxUSE_DIALUP_MANAGER=yes
9a98a854 544 DEFAULT_wxUSE_JOYSTICK=yes
6bff71f8 545 DEFAULT_wxUSE_DYNLIB_CLASS=yes
9337b578 546 DEFAULT_wxUSE_DYNAMIC_LOADER=yes
b685cd9b 547 DEFAULT_wxUSE_LONGLONG=yes
e8f65ba6 548 DEFAULT_wxUSE_GEOMETRY=yes
9a98a854
VZ
549
550 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
551 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
552 DEFAULT_wxUSE_POSTSCRIPT=yes
553
554 DEFAULT_wxUSE_X_RESOURCES=no
555 DEFAULT_wxUSE_CLIPBOARD=yes
556 DEFAULT_wxUSE_TOOLTIPS=yes
557 DEFAULT_wxUSE_DRAG_AND_DROP=yes
24fd6d87 558 DEFAULT_wxUSE_DRAGIMAGE=yes
9a98a854
VZ
559 DEFAULT_wxUSE_SPLINES=yes
560
561 DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
562 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
563 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
564
2b5f62a0 565 DEFAULT_wxUSE_RESOURCES=no
9a98a854
VZ
566 DEFAULT_wxUSE_CONSTRAINTS=yes
567 DEFAULT_wxUSE_IPC=yes
568 DEFAULT_wxUSE_HELP=yes
29fd3c0c 569 DEFAULT_wxUSE_MS_HTML_HELP=yes
3379ed37 570 DEFAULT_wxUSE_WXHTML_HELP=yes
24176f2c 571 DEFAULT_wxUSE_TREELAYOUT=yes
9a98a854 572 DEFAULT_wxUSE_METAFILE=yes
1e6feb95 573 DEFAULT_wxUSE_MIMETYPE=yes
0cbff120 574 DEFAULT_wxUSE_SYSTEM_OPTIONS=yes
4cdb0ab0
VS
575 DEFAULT_wxUSE_PROTOCOL=yes
576 DEFAULT_wxUSE_PROTOCOL_HTTP=yes
577 DEFAULT_wxUSE_PROTOCOL_FTP=yes
578 DEFAULT_wxUSE_PROTOCOL_FILE=yes
579 DEFAULT_wxUSE_URL=yes
9a98a854
VZ
580
581 DEFAULT_wxUSE_COMMONDLGS=yes
1e6feb95
VZ
582 DEFAULT_wxUSE_CHOICEDLG=yes
583 DEFAULT_wxUSE_COLOURDLG=yes
ce4169a4 584 DEFAULT_wxUSE_DIRDLG=yes
1e6feb95 585 DEFAULT_wxUSE_FILEDLG=yes
8db37e06 586 DEFAULT_wxUSE_FINDREPLDLG=yes
1e6feb95
VZ
587 DEFAULT_wxUSE_FONTDLG=yes
588 DEFAULT_wxUSE_MSGDLG=yes
589 DEFAULT_wxUSE_NUMBERDLG=yes
c11584af 590 DEFAULT_wxUSE_TEXTDLG=yes
cbca9943 591 DEFAULT_wxUSE_SPLASH=yes
a641505f 592 DEFAULT_wxUSE_STARTUP_TIPS=yes
ce4169a4 593 DEFAULT_wxUSE_PROGRESSDLG=yes
f33f19dd
VZ
594 DEFAULT_wxUSE_WIZARDDLG=yes
595
1e6feb95 596 DEFAULT_wxUSE_MENUS=yes
9a98a854 597 DEFAULT_wxUSE_MINIFRAME=yes
d4c241b9 598 DEFAULT_wxUSE_HTML=yes
24528b0c 599 DEFAULT_wxUSE_FILESYSTEM=yes
d4c241b9
RR
600 DEFAULT_wxUSE_FS_INET=yes
601 DEFAULT_wxUSE_FS_ZIP=yes
602 DEFAULT_wxUSE_BUSYINFO=yes
603 DEFAULT_wxUSE_ZIPSTREAM=yes
9a98a854
VZ
604 DEFAULT_wxUSE_VALIDATORS=yes
605
606 DEFAULT_wxUSE_ACCEL=yes
1e6feb95 607 DEFAULT_wxUSE_BUTTON=yes
9a98a854 608 DEFAULT_wxUSE_BMPBUTTON=yes
1e6feb95
VZ
609 DEFAULT_wxUSE_CALCTRL=yes
610 DEFAULT_wxUSE_CARET=yes
9a98a854
VZ
611 DEFAULT_wxUSE_CHECKBOX=yes
612 DEFAULT_wxUSE_CHECKLST=yes
ce4169a4 613 DEFAULT_wxUSE_CHOICE=yes
9a98a854 614 DEFAULT_wxUSE_COMBOBOX=yes
ddb4769e 615 DEFAULT_wxUSE_DISPLAY=no
9a98a854
VZ
616 DEFAULT_wxUSE_GAUGE=yes
617 DEFAULT_wxUSE_GRID=yes
618 DEFAULT_wxUSE_IMAGLIST=yes
619 DEFAULT_wxUSE_LISTBOX=yes
620 DEFAULT_wxUSE_LISTCTRL=yes
621 DEFAULT_wxUSE_NOTEBOOK=yes
622 DEFAULT_wxUSE_RADIOBOX=yes
623 DEFAULT_wxUSE_RADIOBTN=yes
e602002e 624 DEFAULT_wxUSE_SASH=yes
9a98a854
VZ
625 DEFAULT_wxUSE_SCROLLBAR=yes
626 DEFAULT_wxUSE_SLIDER=yes
627 DEFAULT_wxUSE_SPINBTN=yes
66f38406 628 DEFAULT_wxUSE_SPINCTRL=yes
9a98a854
VZ
629 DEFAULT_wxUSE_SPLITTER=yes
630 DEFAULT_wxUSE_STATBMP=yes
631 DEFAULT_wxUSE_STATBOX=yes
632 DEFAULT_wxUSE_STATLINE=yes
1e6feb95 633 DEFAULT_wxUSE_STATTEXT=yes
9a98a854
VZ
634 DEFAULT_wxUSE_STATUSBAR=yes
635 DEFAULT_wxUSE_TABDIALOG=no
1e6feb95 636 DEFAULT_wxUSE_TEXTCTRL=yes
1db8dc4a 637 DEFAULT_wxUSE_TOGGLEBTN=yes
9a98a854 638 DEFAULT_wxUSE_TOOLBAR=yes
360d6699
VZ
639 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
640 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
9a98a854 641 DEFAULT_wxUSE_TREECTRL=yes
9f41d601 642 DEFAULT_wxUSE_POPUPWIN=yes
0b01706f 643 DEFAULT_wxUSE_TIPWINDOW=yes
9a98a854
VZ
644
645 DEFAULT_wxUSE_UNICODE=no
a72a4bfa 646 DEFAULT_wxUSE_UNICODE_MSLU=yes
9a98a854 647 DEFAULT_wxUSE_WCSRTOMBS=no
e90c1d2a 648
d275c7eb 649 DEFAULT_wxUSE_PALETTE=yes
0046ff7c 650 DEFAULT_wxUSE_IMAGE=yes
0940bcf7
HH
651 DEFAULT_wxUSE_GIF=yes
652 DEFAULT_wxUSE_PCX=yes
cc0e8480 653 DEFAULT_wxUSE_IFF=no
0940bcf7 654 DEFAULT_wxUSE_PNM=yes
0046ff7c 655 DEFAULT_wxUSE_XPM=yes
658974ae 656 DEFAULT_wxUSE_ICO_CUR=yes
9a98a854
VZ
657fi
658
143121c5 659dnl WX_ARG_WITH should be used to select whether an external package will be
9a98a854 660dnl used or not, to configure compile-time features of this package itself,
143121c5 661dnl use WX_ARG_ENABLE instead
9a98a854
VZ
662
663dnl ============================
664dnl external package dependecies
665dnl ============================
666
143121c5
VZ
667dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache
668dnl these values manually
ced859c3 669for toolkit in `echo $ALL_TOOLKITS`; do
d74f4b5a
VZ
670 LINE=`grep "wxUSE_$toolkit=" ${wx_arg_cache_file}`
671 if test "x$LINE" != "x" ; then
143121c5
VZ
672 has_toolkit_in_cache=1
673 eval "DEFAULT_$LINE"
ced859c3 674 eval "CACHE_$toolkit=1"
143121c5
VZ
675 fi
676done
677
e90c1d2a
VZ
678dnl ---------------------------------------------------------------------------
679dnl --disable-gui will build only non-GUI part of wxWindows: check for this
680dnl first to disable many other switches if it's given
681dnl
682dnl NB: this is still in testing stage, don't use if you don't know what you're
683dnl doing
684dnl ---------------------------------------------------------------------------
685
686WX_ARG_ENABLE(gui, [ --enable-gui use GUI classes], wxUSE_GUI)
687
b12915c1 688if test "$wxUSE_GUI" = "yes"; then
e90c1d2a 689
1e6feb95 690WX_ARG_ENABLE(universal, [ --enable-universal use wxWindows GUI controls instead of native ones], wxUSE_UNIVERSAL)
ced859c3
VZ
691AC_ARG_WITH(gtk, [ --with-gtk use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1])
692AC_ARG_WITH(motif, [ --with-motif use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1])
b4085ce6 693AC_ARG_WITH(mac, [ --with-mac use Mac OS X], [wxUSE_MAC="$withval" TOOLKIT_GIVEN=1])
ac0c4cc3 694AC_ARG_WITH(cocoa, [ --with-cocoa use Cocoa], [wxUSE_COCOA="$withval" TOOLKIT_GIVEN=1])
d1188635 695AC_ARG_WITH(wine, [ --with-wine use Wine], [wxUSE_WINE="$withval" CACHE_WINE=1])
b4efce5e 696AC_ARG_WITH(msw, [ --with-msw use MS-Windows], [wxUSE_MSW="$withval" CACHE_MSW=1 TOOLKIT_GIVEN=1])
e07802fc 697AC_ARG_WITH(pm, [ --with-pm use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
6c657b52 698AC_ARG_WITH(mgl, [ --with-mgl use SciTech MGL], [wxUSE_MGL="$withval" wxUSE_UNIVERSAL="yes" CACHE_MGL=1 TOOLKIT_GIVEN=1])
1725144d 699AC_ARG_WITH(microwin, [ --with-microwin use MicroWindows], [wxUSE_MICROWIN="$withval" CACHE_MICROWIN=1 TOOLKIT_GIVEN=1])
3c011993 700AC_ARG_WITH(x11, [ --with-x11 use X11], [wxUSE_X11="$withval" wxUSE_UNIVERSAL="yes" CACHE_X11=1 TOOLKIT_GIVEN=1])
ba875e66 701WX_ARG_ENABLE(nanox, [ --enable-nanox use NanoX], wxUSE_NANOX)
143121c5 702
d74f4b5a 703WX_ARG_ENABLE(gtk2, [ --enable-gtk2 use GTK+ 2.0 if available (EXPERIMENTAL)], wxUSE_GTK2)
a9b5e89f 704
422107f9
VZ
705WX_ARG_SYS_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG)
706WX_ARG_SYS_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
0dcf9893 707WX_ARG_SYS_WITH(libtiff, [ --with-libtiff use libtiff (TIFF file format)], wxUSE_LIBTIFF)
143121c5 708WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL)
b12915c1
VZ
709
710fi
711dnl for GUI only
712
d0e9b150 713WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (http://dmalloc.com/)], wxUSE_DMALLOC)
3e44f09d 714WX_ARG_SYS_WITH(regex, [ --with-regex enable support for wxRegEx class], wxUSE_REGEX)
422107f9 715WX_ARG_SYS_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB)
143121c5 716WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC)
9a98a854 717
9a98a854
VZ
718dnl ---------------------------------------------------------------------------
719dnl compile options
720dnl ---------------------------------------------------------------------------
721
2aa88730 722WX_ARG_ENABLE(shared, [ --enable-shared create shared library code], wxUSE_SHARED)
3a922bb4 723WX_ARG_ENABLE(soname, [ --enable-soname set the DT_SONAME field in ELF shared libraries], wxUSE_SONAME)
143121c5 724WX_ARG_ENABLE(optimise, [ --enable-optimise create optimised code], wxUSE_OPTIMISE)
143121c5 725WX_ARG_ENABLE(debug, [ --enable-debug same as debug_flag and debug_info], wxUSE_DEBUG)
70d1b3cf 726
b2fee376
GD
727dnl allow the precompiled header option to be disabled under Mac OS X/Darwin
728WX_ARG_ENABLE(precomp, [ --enable-precomp enable use of precompiled headers (Mac OS X/Darwin)], wxUSE_PRECOMP)
683dccda 729
70d1b3cf
VZ
730if test "$wxUSE_DEBUG" = "yes"; then
731 DEFAULT_wxUSE_DEBUG_FLAG=yes
732 DEFAULT_wxUSE_DEBUG_INFO=yes
733elif test "$wxUSE_DEBUG" = "no"; then
734 DEFAULT_wxUSE_DEBUG_FLAG=no
735 DEFAULT_wxUSE_DEBUG_INFO=no
736fi
737
f7bdcdd7
RR
738WX_ARG_ENABLE(debug_flag, [ --enable-debug_flag set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG)
739WX_ARG_ENABLE(debug_info, [ --enable-debug_info create code with debugging information], wxUSE_DEBUG_INFO)
740WX_ARG_ENABLE(debug_gdb, [ --enable-debug_gdb create code with extra GDB debugging information], wxUSE_DEBUG_GDB)
741WX_ARG_ENABLE(debug_cntxt, [ --enable-debug_cntxt use wxDebugContext], wxUSE_DEBUG_CONTEXT)
742WX_ARG_ENABLE(mem_tracing, [ --enable-mem_tracing create code with memory tracing], wxUSE_MEM_TRACING)
743WX_ARG_ENABLE(profile, [ --enable-profile create code with profiling information], wxUSE_PROFILE)
744WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI)
b3e8d00a 745WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS)
5586805b
RR
746WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
747WX_ARG_ENABLE(no_deps, [ --enable-no_deps create code without dependency information], wxUSE_NO_DEPS)
9a98a854 748
b3e8d00a 749WX_ARG_ENABLE(compat20, [ --enable-compat20 enable wxWindows 2.0 compatibility], WXWIN_COMPATIBILITY_2)
65d8ef1e
VS
750WX_ARG_ENABLE(compat22, [ --enable-compat22 enable wxWindows 2.2 compatibility], WXWIN_COMPATIBILITY_2_2)
751WX_ARG_ENABLE(compat24, [ --disable-compat24 disable wxWindows 2.4 compatibility], WXWIN_COMPATIBILITY_2_4, disable)
54276ccf 752
3bd8fb5f
RD
753AC_ARG_ENABLE(rpath, [ --enable-rpath=DIR output the rpath flag from wx-config], [wxRPATH_DIR="$enableval"])
754
755if test "$wxRPATH_DIR" != "" -a "$wxRPATH_DIR" != "disable"; then
756 WXCONFIG_RPATH="-Wl,-rpath -Wl,$wxRPATH_DIR"
757fi
758
759
9a98a854
VZ
760dnl ---------------------------------------------------------------------------
761dnl (small) optional non GUI classes
762dnl ---------------------------------------------------------------------------
763
fd15d8f1
RR
764WX_ARG_ENABLE(intl, [ --enable-intl use internationalization system], wxUSE_INTL)
765WX_ARG_ENABLE(config, [ --enable-config use wxConfig (and derived) classes], wxUSE_CONFIG)
b12915c1 766
a5d46b73
VZ
767WX_ARG_ENABLE(protocols, [ --enable-protocols use wxProtocol and derived classes], wxUSE_PROTOCOL)
768WX_ARG_ENABLE(ftp, [ --enable-ftp use wxFTP (requires wxProtocol], wxUSE_PROTOCOL_FTP)
769WX_ARG_ENABLE(http, [ --enable-http use wxHTTP (requires wxProtocol], wxUSE_PROTOCOL_HTTP)
770WX_ARG_ENABLE(fileproto, [ --enable-fileproto use wxFileProto class (requires wxProtocol], wxUSE_PROTOCOL_FILE)
fd15d8f1 771WX_ARG_ENABLE(sockets, [ --enable-sockets use socket/network classes], wxUSE_SOCKETS)
3bce6687
JS
772WX_ARG_ENABLE(ole, [ --enable-ole use OLE classes], wxUSE_OLE)
773WX_ARG_ENABLE(dataobj, [ --enable-dataobj use data object classes], wxUSE_DATAOBJ)
b12915c1 774
fd15d8f1 775WX_ARG_ENABLE(ipc, [ --enable-ipc use interprocess communication (wxSocket etc.)], wxUSE_IPC)
eb4efbdc 776
1e6feb95
VZ
777WX_ARG_ENABLE(cmdline, [ --enable-cmdline use wxCmdLineParser class], wxUSE_CMDLINE_PARSER)
778WX_ARG_ENABLE(datetime, [ --enable-datetime use wxDateTime class], wxUSE_DATETIME)
1e6feb95 779WX_ARG_ENABLE(stopwatch, [ --enable-stopwatch use wxStopWatch class], wxUSE_STOPWATCH)
eb4efbdc 780WX_ARG_ENABLE(dialupman, [ --enable-dialupman use dialup network classes], wxUSE_DIALUP_MANAGER)
fd15d8f1 781WX_ARG_ENABLE(apple_ieee, [ --enable-apple_ieee use the Apple IEEE codec], wxUSE_APPLE_IEEE)
1e6feb95 782WX_ARG_ENABLE(timer, [ --enable-timer use wxTimer class], wxUSE_TIMER)
fd15d8f1
RR
783WX_ARG_ENABLE(wave, [ --enable-wave use wxWave class], wxUSE_WAVE)
784WX_ARG_ENABLE(fraction, [ --enable-fraction use wxFraction class], wxUSE_FRACTION)
785WX_ARG_ENABLE(dynlib, [ --enable-dynlib use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS)
0b9ab0bd 786WX_ARG_ENABLE(dynamicloader, [ --enable-dynamicloader use (new) wxDynamicLibrary class], wxUSE_DYNAMIC_LOADER)
fd15d8f1 787WX_ARG_ENABLE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG)
e8f65ba6 788WX_ARG_ENABLE(geometry, [ --enable-geometry use geometry class], wxUSE_GEOMETRY)
fd15d8f1
RR
789WX_ARG_ENABLE(log, [ --enable-log use logging system], wxUSE_LOG)
790WX_ARG_ENABLE(streams, [ --enable-streams use wxStream etc classes], wxUSE_STREAMS)
791WX_ARG_ENABLE(file, [ --enable-file use wxFile classes], wxUSE_FILE)
1e6feb95 792WX_ARG_ENABLE(ffile, [ --enable-ffile use wxFFile classes], wxUSE_FFILE)
a3a584a7
VZ
793WX_ARG_ENABLE(textbuf, [ --enable-textbuf use wxTextBuffer class], wxUSE_TEXTBUFFER)
794WX_ARG_ENABLE(textfile, [ --enable-textfile use wxTextFile class], wxUSE_TEXTFILE)
1e6feb95 795WX_ARG_ENABLE(fontmap, [ --enable-fontmap use font encodings conversion classes], wxUSE_FONTMAP)
fd15d8f1 796WX_ARG_ENABLE(unicode, [ --enable-unicode compile wxString with Unicode support], wxUSE_UNICODE)
a72a4bfa 797WX_ARG_ENABLE(mslu, [ --enable-mslu use MS Layer for Unicode on Windows 9x (win32 only)], wxUSE_UNICODE_MSLU)
fd15d8f1 798WX_ARG_ENABLE(wxprintfv, [ --enable-wxprintfv use wxWindows implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF)
fd15d8f1 799WX_ARG_ENABLE(std_iostreams, [ --enable-std_iostreams use standard C++ stream classes], wxUSE_STD_IOSTREAM)
24528b0c 800WX_ARG_ENABLE(filesystem, [ --enable-filesystem use virtual file systems classes], wxUSE_FILESYSTEM)
e3e717ec
VZ
801WX_ARG_ENABLE(fs_inet, [ --enable-fs_inet use virtual HTTP/FTP filesystems], wxUSE_FS_INET)
802WX_ARG_ENABLE(fs_zip, [ --enable-fs_zip use virtual ZIP filesystems], wxUSE_FS_ZIP)
d78b3d64 803WX_ARG_ENABLE(zipstream, [ --enable-zipstream use wxZipInputStream], wxUSE_ZIPSTREAM)
9a98a854 804
eb4efbdc 805WX_ARG_ENABLE(catch_segvs, [ --enable-catch_segvs catch signals and pass them to wxApp::OnFatalException], wxUSE_ON_FATAL_EXCEPTION)
4f3c5f06 806WX_ARG_ENABLE(snglinst, [ --enable-snglinst use wxSingleInstanceChecker class], wxUSE_SNGLINST_CHECKER)
eb4efbdc 807
69d27ff7 808WX_ARG_ENABLE(mimetype, [ --enable-mimetype use wxMimeTypesManager], wxUSE_MIMETYPE)
b3e8d00a 809WX_ARG_ENABLE(system_options,[ --enable-sysoptions use wxSystemOptions], wxUSE_SYSTEM_OPTIONS)
1e6feb95 810
4cdb0ab0
VS
811WX_ARG_ENABLE(url, [ --enable-url use wxURL class], wxUSE_URL)
812WX_ARG_ENABLE(protocol, [ --enable-protocol use wxProtocol class], wxUSE_PROTOCOL)
813WX_ARG_ENABLE(protocol_http, [ --enable-protocol-http HTTP support in wxProtocol], wxUSE_PROTOCOL_HTTP)
814WX_ARG_ENABLE(protocol_ftp, [ --enable-protocol-ftp FTP support in wxProtocol], wxUSE_PROTOCOL_FTP)
815WX_ARG_ENABLE(protocol_file, [ --enable-protocol-file FILE support in wxProtocol], wxUSE_PROTOCOL_FILE)
816
817
9a98a854
VZ
818dnl ---------------------------------------------------------------------------
819dnl "big" options (i.e. those which change a lot of things throughout the library)
820dnl ---------------------------------------------------------------------------
821
143121c5 822WX_ARG_ENABLE(threads, [ --enable-threads use threads], wxUSE_THREADS)
9a98a854 823
b12915c1
VZ
824if test "$wxUSE_GUI" = "yes"; then
825
9a98a854
VZ
826dnl ---------------------------------------------------------------------------
827dnl "big" GUI options
828dnl ---------------------------------------------------------------------------
829
143121c5 830WX_ARG_ENABLE(docview, [ --enable-docview use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE)
3379ed37 831WX_ARG_ENABLE(help, [ --enable-help use help subsystem], wxUSE_HELP)
29fd3c0c 832WX_ARG_ENABLE(mshtmlhelp, [ --enable-mshtmlhelp use MS HTML Help (win32)], wxUSE_MS_HTML_HELP)
3379ed37
VZ
833WX_ARG_ENABLE(html, [ --enable-html use wxHTML sub-library], wxUSE_HTML)
834WX_ARG_ENABLE(htmlhelp, [ --enable-htmlhelp use wxHTML-based help], wxUSE_WXHTML_HELP)
143121c5
VZ
835WX_ARG_ENABLE(constraints, [ --enable-constraints use layout-constraints system], wxUSE_CONSTRAINTS)
836WX_ARG_ENABLE(printarch, [ --enable-printarch use printing architecture], wxUSE_PRINTING_ARCHITECTURE)
837WX_ARG_ENABLE(mdi, [ --enable-mdi use multiple document interface architecture], wxUSE_MDI_ARCHITECTURE)
1e6feb95
VZ
838WX_ARG_ENABLE(loggui, [ --enable-loggui use standard GUI logger], wxUSE_LOGGUI)
839WX_ARG_ENABLE(logwin, [ --enable-logwin use wxLogWindow], wxUSE_LOGWINDOW)
69d27ff7 840WX_ARG_ENABLE(logdialog, [ --enable-logdialog use wxLogDialog], wxUSE_LOGDIALOG)
9a98a854
VZ
841
842dnl ---------------------------------------------------------------------------
843dnl PostScript options
844dnl ---------------------------------------------------------------------------
143121c5 845WX_ARG_ENABLE(postscript, [ --enable-postscript use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT)
9a98a854
VZ
846
847dnl VZ: these options seem to be always on, if someone wants to change it please do
143121c5
VZ
848dnl WX_ARG_ENABLE(PS-normalized, [ --enable-PS-normalized use normalized PS fonts], dnl wxUSE_NORMALIZED_PS_FONTS)
849dnl WX_ARG_ENABLE(afmfonts, [ --enable-afmfonts use Adobe Font Metric Font table], dnl wxUSE_AFM_FOR_POSTSCRIPT)
9a98a854
VZ
850
851dnl ---------------------------------------------------------------------------
852dnl resources
853dnl ---------------------------------------------------------------------------
1e6feb95 854
2fc9385a 855dnl WX_ARG_ENABLE(prologio, [ --enable-prologio use Prolog IO library], wxUSE_PROLOGIO)
143121c5
VZ
856WX_ARG_ENABLE(resources, [ --enable-resources use wxWindows resources], wxUSE_RESOURCES)
857
858WX_ARG_ENABLE(xresources, [ --enable-xresources use X resources for save (default for gtk+)], wxUSE_X_RESOURCES)
9a98a854 859
9a98a854
VZ
860dnl ---------------------------------------------------------------------------
861dnl IPC &c
862dnl ---------------------------------------------------------------------------
9a98a854 863
ddb4769e 864WX_ARG_ENABLE(clipboard, [ --enable-clipboard use wxClipboard class], wxUSE_CLIPBOARD)
143121c5 865WX_ARG_ENABLE(dnd, [ --enable-dnd use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP)
b64f0a5f 866WX_ARG_ENABLE(metafile, [ --enable-metafile use win32 metafiles], wxUSE_METAFILE)
143121c5 867
2fc9385a 868dnl WX_ARG_ENABLE(treelayout, [ --enable-treelayout use wxTreeLayout class], wxUSE_TREELAYOUT)
9a98a854
VZ
869
870dnl ---------------------------------------------------------------------------
871dnl optional GUI controls (in alphabetical order except the first one)
872dnl ---------------------------------------------------------------------------
873
143121c5 874WX_ARG_ENABLE(controls, [ --enable-controls use all usual controls], wxUSE_CONTROLS)
9a98a854
VZ
875
876dnl even with --enable-controls, some may be disabled by giving
877dnl --disable-<control> later on the command line - but by default all will be
878dnl used (and vice versa)
879if test "$wxUSE_CONTROLS" = "yes"; then
880 DEFAULT_wxUSE_ACCEL=yes
1e6feb95
VZ
881 DEFAULT_wxUSE_BMPBUTTON=yes
882 DEFAULT_wxUSE_BUTTON=yes
883 DEFAULT_wxUSE_CALCTRL=no
9a98a854
VZ
884 DEFAULT_wxUSE_CARET=yes
885 DEFAULT_wxUSE_COMBOBOX=yes
9a98a854
VZ
886 DEFAULT_wxUSE_CHECKBOX=yes
887 DEFAULT_wxUSE_CHECKLISTBOX=yes
ce4169a4 888 DEFAULT_wxUSE_CHOICE=yes
9a98a854
VZ
889 DEFAULT_wxUSE_GAUGE=yes
890 DEFAULT_wxUSE_GRID=yes
891 DEFAULT_wxUSE_IMAGLIST=yes
892 DEFAULT_wxUSE_LISTBOX=yes
893 DEFAULT_wxUSE_LISTCTRL=yes
894 DEFAULT_wxUSE_NOTEBOOK=yes
895 DEFAULT_wxUSE_RADIOBOX=yes
896 DEFAULT_wxUSE_RADIOBTN=yes
897 DEFAULT_wxUSE_SASH=yes
898 DEFAULT_wxUSE_SCROLLBAR=yes
899 DEFAULT_wxUSE_SLIDER=yes
900 DEFAULT_wxUSE_SPINBTN=yes
66f38406 901 DEFAULT_wxUSE_SPINCTRL=yes
9a98a854
VZ
902 DEFAULT_wxUSE_SPLITTER=yes
903 DEFAULT_wxUSE_STATBMP=yes
904 DEFAULT_wxUSE_STATBOX=yes
905 DEFAULT_wxUSE_STATLINE=yes
906 DEFAULT_wxUSE_STATUSBAR=yes
907 DEFAULT_wxUSE_TAB_DIALOG=yes
1db8dc4a 908 DEFAULT_wxUSE_TOGGLEBTN=yes
9a98a854 909 DEFAULT_wxUSE_TOOLBAR=yes
360d6699
VZ
910 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
911 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
9a98a854
VZ
912 DEFAULT_wxUSE_TOOLTIPS=yes
913 DEFAULT_wxUSE_TREECTRL=yes
9f41d601 914 DEFAULT_wxUSE_POPUPWIN=yes
0b01706f 915 DEFAULT_wxUSE_TIPWINDOW=yes
9a98a854
VZ
916elif test "$wxUSE_CONTROLS" = "no"; then
917 DEFAULT_wxUSE_ACCEL=no
1e6feb95
VZ
918 DEFAULT_wxUSE_BMPBUTTON=no
919 DEFAULT_wxUSE_BUTTON=no
920 DEFAULT_wxUSE_CALCTRL=no
9a98a854
VZ
921 DEFAULT_wxUSE_CARET=no
922 DEFAULT_wxUSE_COMBOBOX=no
9a98a854
VZ
923 DEFAULT_wxUSE_CHECKBOX=no
924 DEFAULT_wxUSE_CHECKLISTBOX=no
ce4169a4 925 DEFAULT_wxUSE_CHOICE=no
9a98a854
VZ
926 DEFAULT_wxUSE_GAUGE=no
927 DEFAULT_wxUSE_GRID=no
928 DEFAULT_wxUSE_IMAGLIST=no
929 DEFAULT_wxUSE_LISTBOX=no
930 DEFAULT_wxUSE_LISTCTRL=no
931 DEFAULT_wxUSE_NOTEBOOK=no
932 DEFAULT_wxUSE_RADIOBOX=no
933 DEFAULT_wxUSE_RADIOBTN=no
934 DEFAULT_wxUSE_SASH=no
935 DEFAULT_wxUSE_SCROLLBAR=no
936 DEFAULT_wxUSE_SLIDER=no
937 DEFAULT_wxUSE_SPINBTN=no
66f38406 938 DEFAULT_wxUSE_SPINCTRL=no
9a98a854
VZ
939 DEFAULT_wxUSE_SPLITTER=no
940 DEFAULT_wxUSE_STATBMP=no
941 DEFAULT_wxUSE_STATBOX=no
942 DEFAULT_wxUSE_STATLINE=no
943 DEFAULT_wxUSE_STATUSBAR=no
944 DEFAULT_wxUSE_TAB_DIALOG=no
1db8dc4a 945 DEFAULT_wxUSE_TOGGLEBTN=no
9a98a854 946 DEFAULT_wxUSE_TOOLBAR=no
360d6699
VZ
947 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
948 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
9a98a854
VZ
949 DEFAULT_wxUSE_TOOLTIPS=no
950 DEFAULT_wxUSE_TREECTRL=no
9f41d601 951 DEFAULT_wxUSE_POPUPWIN=no
0b01706f 952 DEFAULT_wxUSE_TIPWINDOW=no
9a98a854
VZ
953fi
954
ac0c4cc3
DE
955## FIXME: This is a blatant hack
956if test "x$wxUSE_COCOA" != "x" -a "$wxUSE_COCOA" != "0" ; then
957 wxUSE_PRINTING_ARCHITECTURE=no
958 wxUSE_HELP=no
959 wxUSE_CLIPBOARD=no
960 wxUSE_DRAG_AND_DROP=no
961 wxUSE_DATAOBJ=no
962 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
ac0c4cc3
DE
963 DEFAULT_wxUSE_GAUGE=no
964 DEFAULT_wxUSE_SCROLLBAR=no
965 DEFAULT_wxUSE_SLIDER=no
966 DEFAULT_wxUSE_COMBOBOX=no
967 DEFAULT_wxUSE_CALCTRL=no
968 DEFAULT_wxUSE_SPINBTN=no
969 DEFAULT_wxUSE_SPINCTRL=no
970 DEFAULT_wxUSE_TOOLTIPS=no
ac0c4cc3 971 DEFAULT_wxUSE_COLOURDLG=no
ac0c4cc3
DE
972 DEFAULT_wxUSE_DRAGIMAGE=no
973 DEFAULT_wxUSE_FINDREPLDLG=no
974 DEFAULT_wxUSE_FONTDLG=no
975 DEFAULT_wxUSE_GRID=no
ac0c4cc3
DE
976 DEFAULT_wxUSE_NUMBERDLG=no
977 DEFAULT_wxUSE_PROGRESSDLG=no
ac0c4cc3
DE
978 DEFAULT_wxUSE_SASH=no
979 DEFAULT_wxUSE_SPLITTER=no
980 DEFAULT_wxUSE_WIZARDDLG=no
981 DEFAULT_wxUSE_SPLITTER=no
982 DEFAULT_wxUSE_STARTUP_TIPS=no
ac0c4cc3
DE
983fi
984
143121c5 985WX_ARG_ENABLE(accel, [ --enable-accel use accelerators], wxUSE_ACCEL)
1e6feb95 986WX_ARG_ENABLE(button, [ --enable-button use wxButton class], wxUSE_BUTTON)
143121c5 987WX_ARG_ENABLE(bmpbutton, [ --enable-bmpbutton use wxBitmapButton class], wxUSE_BMPBUTTON)
1e6feb95
VZ
988WX_ARG_ENABLE(calendar, [ --enable-calendar use wxCalendarCtrl class], wxUSE_CALCTRL)
989WX_ARG_ENABLE(caret, [ --enable-caret use wxCaret class], wxUSE_CARET)
143121c5
VZ
990WX_ARG_ENABLE(checkbox, [ --enable-checkbox use wxCheckBox class], wxUSE_CHECKBOX)
991WX_ARG_ENABLE(checklst, [ --enable-checklst use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST)
ce4169a4 992WX_ARG_ENABLE(choice, [ --enable-choice use wxChoice class], wxUSE_CHOICE)
ddb4769e
VZ
993WX_ARG_ENABLE(combobox, [ --enable-combobox use wxComboBox class], wxUSE_COMBOBOX)
994WX_ARG_ENABLE(display, [ --enable-display use wxDisplay class], wxUSE_DISPLAY)
143121c5
VZ
995WX_ARG_ENABLE(gauge, [ --enable-gauge use wxGauge class], wxUSE_GAUGE)
996WX_ARG_ENABLE(grid, [ --enable-grid use wxGrid class], wxUSE_GRID)
997WX_ARG_ENABLE(imaglist, [ --enable-imaglist use wxImageList class], wxUSE_IMAGLIST)
998WX_ARG_ENABLE(listbox, [ --enable-listbox use wxListBox class], wxUSE_LISTBOX)
999WX_ARG_ENABLE(listctrl, [ --enable-listctrl use wxListCtrl class], wxUSE_LISTCTRL)
1000WX_ARG_ENABLE(notebook, [ --enable-notebook use wxNotebook class], wxUSE_NOTEBOOK)
1001WX_ARG_ENABLE(radiobox, [ --enable-radiobox use wxRadioBox class], wxUSE_RADIOBOX)
1002WX_ARG_ENABLE(radiobtn, [ --enable-radiobtn use wxRadioButton class], wxUSE_RADIOBTN)
1003WX_ARG_ENABLE(sash, [ --enable-sash use wxSashWindow class], wxUSE_SASH)
1004WX_ARG_ENABLE(scrollbar, [ --enable-scrollbar use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR)
1005WX_ARG_ENABLE(slider, [ --enable-slider use wxSlider class], wxUSE_SLIDER)
1006WX_ARG_ENABLE(spinbtn, [ --enable-spinbtn use wxSpinButton class], wxUSE_SPINBTN)
66f38406 1007WX_ARG_ENABLE(spinctrl, [ --enable-spinctrl use wxSpinCtrl class], wxUSE_SPINCTRL)
143121c5
VZ
1008WX_ARG_ENABLE(splitter, [ --enable-splitter use wxSplitterWindow class], wxUSE_SPLITTER)
1009WX_ARG_ENABLE(statbmp, [ --enable-statbmp use wxStaticBitmap class], wxUSE_STATBMP)
1010WX_ARG_ENABLE(statbox, [ --enable-statbox use wxStaticBox class], wxUSE_STATBOX)
1011WX_ARG_ENABLE(statline, [ --enable-statline use wxStaticLine class], wxUSE_STATLINE)
1e6feb95 1012WX_ARG_ENABLE(stattext, [ --enable-stattext use wxStaticText class], wxUSE_STATTEXT)
143121c5
VZ
1013WX_ARG_ENABLE(statusbar, [ --enable-statusbar use wxStatusBar class], wxUSE_STATUSBAR)
1014WX_ARG_ENABLE(tabdialog, [ --enable-tabdialog use wxTabControl class], wxUSE_TABDIALOG)
1e6feb95 1015WX_ARG_ENABLE(textctrl, [ --enable-textctrl use wxTextCtrl class], wxUSE_TEXTCTRL)
1db8dc4a 1016WX_ARG_ENABLE(togglebtn, [ --enable-togglebtn use wxToggleButton class], wxUSE_TOGGLEBTN)
143121c5 1017WX_ARG_ENABLE(toolbar, [ --enable-toolbar use wxToolBar class], wxUSE_TOOLBAR)
360d6699
VZ
1018WX_ARG_ENABLE(tbarnative, [ --enable-tbarnative use native wxToolBar class], wxUSE_TOOLBAR_NATIVE)
1019WX_ARG_ENABLE(tbarsmpl, [ --enable-tbarsmpl use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE)
143121c5 1020WX_ARG_ENABLE(treectrl, [ --enable-treectrl use wxTreeCtrl class], wxUSE_TREECTRL)
0b01706f 1021WX_ARG_ENABLE(tipwindow, [ --enable-tipwindow use wxTipWindow class], wxUSE_TIPWINDOW)
9f41d601 1022WX_ARG_ENABLE(popupwin, [ --enable-popupwin use wxPopUpWindow class], wxUSE_POPUPWIN)
9a98a854
VZ
1023
1024dnl ---------------------------------------------------------------------------
b1f5d087 1025dnl common dialogs
9a98a854
VZ
1026dnl ---------------------------------------------------------------------------
1027
b3e8d00a 1028WX_ARG_ENABLE(commondlg, [ --enable-commondlg use all common dialogs], wxUSE_COMMONDLGS)
1e6feb95
VZ
1029WX_ARG_ENABLE(choicedlg, [ --enable-choicedlg use wxChoiceDialog], wxUSE_CHOICEDLG)
1030WX_ARG_ENABLE(coldlg, [ --enable-coldlg use wxColourDialog], wxUSE_COLOURDLG)
1031WX_ARG_ENABLE(filedlg, [ --enable-filedlg use wxFileDialog], wxUSE_FILEDLG)
69d27ff7 1032WX_ARG_ENABLE(finddlg, [ --enable-finddlg use wxFindReplaceDialog], wxUSE_FINDREPLDLG)
1e6feb95 1033WX_ARG_ENABLE(fontdlg, [ --enable-fontdlg use wxFontDialog], wxUSE_FONTDLG)
ce4169a4 1034WX_ARG_ENABLE(dirdlg, [ --enable-dirdlg use wxDirDialog], wxUSE_DIRDLG)
1e6feb95
VZ
1035WX_ARG_ENABLE(msgdlg, [ --enable-msgdlg use wxMessageDialog], wxUSE_MSGDLG)
1036WX_ARG_ENABLE(numberdlg, [ --enable-numberdlg use wxNumberEntryDialog], wxUSE_NUMBERDLG)
cbca9943 1037WX_ARG_ENABLE(splash, [ --enable-splash use wxSplashScreen], wxUSE_SPLASH)
c11584af 1038WX_ARG_ENABLE(textdlg, [ --enable-textdlg use wxTextDialog], wxUSE_TEXTDLG)
a641505f 1039WX_ARG_ENABLE(tipdlg, [ --enable-tipdlg use startup tips], wxUSE_STARTUP_TIPS)
ce4169a4 1040WX_ARG_ENABLE(progressdlg, [ --enable-progressdlg use wxProgressDialog], wxUSE_PROGRESSDLG)
b1f5d087
VZ
1041WX_ARG_ENABLE(wizarddlg, [ --enable-wizarddlg use wxWizard], wxUSE_WIZARDDLG)
1042
1043dnl ---------------------------------------------------------------------------
1044dnl misc GUI options
1045dnl ---------------------------------------------------------------------------
1046
1e6feb95 1047WX_ARG_ENABLE(menus, [ --enable-menus use wxMenu/wxMenuBar/wxMenuItem classes], wxUSE_MENUS)
143121c5
VZ
1048WX_ARG_ENABLE(miniframe, [ --enable-miniframe use wxMiniFrame class], wxUSE_MINIFRAME)
1049WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUSE_TOOLTIPS)
1050WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES)
1051WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
d78b3d64 1052WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
b3e8d00a 1053WX_ARG_ENABLE(joystick, [ --enable-joystick use wxJoystick (Linux only)], wxUSE_JOYSTICK)
1e6feb95 1054WX_ARG_ENABLE(metafile, [ --enable-metafiles use wxMetaFile (Windows only)], wxUSE_METAFILE)
24fd6d87 1055WX_ARG_ENABLE(dragimage, [ --enable-dragimage use wxDragImage], wxUSE_DRAGIMAGE)
143121c5 1056
0940bcf7
HH
1057dnl ---------------------------------------------------------------------------
1058dnl support for image formats that do not rely on external library
1059dnl ---------------------------------------------------------------------------
1060
d275c7eb 1061WX_ARG_ENABLE(palette, [ --enable-palette use wxPalette class], wxUSE_PALETTE)
0046ff7c 1062WX_ARG_ENABLE(image, [ --enable-image use wxImage class], wxUSE_IMAGE)
6b5286d1
HH
1063WX_ARG_ENABLE(gif, [ --enable-gif use gif images (GIF file format)], wxUSE_GIF)
1064WX_ARG_ENABLE(pcx, [ --enable-pcx use pcx images (PCX file format)], wxUSE_PCX)
4b6b4dfc 1065WX_ARG_ENABLE(iff, [ --enable-iff use iff images (IFF file format)], wxUSE_IFF)
6b5286d1 1066WX_ARG_ENABLE(pnm, [ --enable-pnm use pnm images (PNM file format)], wxUSE_PNM)
69d27ff7 1067WX_ARG_ENABLE(xpm, [ --enable-xpm use xpm images (XPM file format)], wxUSE_XPM)
c7206e64 1068WX_ARG_ENABLE(ico_cur, [ --enable-icocur use Windows ICO and CUR formats], wxUSE_ICO_CUR)
0940bcf7 1069
b12915c1 1070fi
590b1a4d
SN
1071
1072dnl General settings (needed for GUI and non-GUI compilations alike).
1073dnl Path separator; ':' for unix, ';' for OS/2
1074dnl Stem for flex output; lexyy for OS/2, lex.yy otherwise
1075case "${host}" in
1076 *-pc-os2_emx | *-pc-os2-emx )
d8f591c4
SN
1077 PATH_IFS=';'
1078dnl Really ought to text for this as meanwhile there are flex versions using
1079dnl lex.yy as well due to FAT support being more and more dropped...
590b1a4d
SN
1080 LEX_STEM="lexyy"
1081 ;;
1082 *)
1083 PATH_IFS=':'
1084 LEX_STEM="lex.yy"
1085 ;;
1086esac
1087
b12915c1
VZ
1088dnl for GUI only
1089
143121c5
VZ
1090dnl cache the options values before (may be) aborting below
1091WX_ARG_CACHE_FLUSH
9a98a854
VZ
1092
1093dnl check that no more than one toolkit is given and that if none are given that
1094dnl we have a default one
efeb0365 1095
143121c5
VZ
1096AC_MSG_CHECKING(for toolkit)
1097
d1188635
JS
1098# In Wine, we need to default to MSW, not GTK or MOTIF
1099if test "$wxUSE_WINE" = "yes"; then
1100 DEFAULT_DEFAULT_wxUSE_GTK=0
1101 DEFAULT_DEFAULT_wxUSE_MOTIF=0
1102 DEFAULT_DEFAULT_wxUSE_MSW=1
1103fi
1104
e90c1d2a
VZ
1105if test "$wxUSE_GUI" = "yes"; then
1106
3a922bb4
RL
1107 if test "$USE_BEOS" = 1; then
1108 AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui])
1109 fi
b12915c1 1110
3a922bb4
RL
1111 if test "$TOOLKIT_GIVEN" = 1; then
1112 dnl convert "yes" to 1 and "no" to 0
1113 for toolkit in `echo $ALL_TOOLKITS`; do
1114 var=wxUSE_$toolkit
1115 eval "value=\$${var}"
1116 eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`"
1117 done
143121c5 1118 else
3a922bb4
RL
1119 dnl try to guess the most apropriate toolkit for this platform
1120 for toolkit in `echo $ALL_TOOLKITS`; do
1121 if test "$has_toolkit_in_cache" != 1; then
1122 var=DEFAULT_DEFAULT_wxUSE_$toolkit
1123 else
1124 var=DEFAULT_wxUSE_$toolkit
1125 fi
1126 eval "wxUSE_$toolkit=\$${var}"
1127 done
143121c5 1128 fi
4c0ed911 1129
3a922bb4
RL
1130 dnl we suppose that expr is available (maybe there is a better way to do
1131 dnl this? what about using ALL_TOOLKITS? TODO)
ac0c4cc3
DE
1132 NUM_TOOLKITS=`expr ${wxUSE_COCOA:-0} + ${wxUSE_GTK:-0} + ${wxUSE_MAC:-0} \
1133 + ${wxUSE_MGL:-0} + ${wxUSE_MICROWIN:-0} \
1134 + ${wxUSE_MOTIF:-0} + ${wxUSE_MSW:-0} + ${wxUSE_X11:-0}`
9a98a854 1135
3a922bb4 1136 dnl Allow wxUSE_PM only for OS/2 with EMX.
3a922bb4 1137 case "${host}" in
9829f277 1138 *-pc-os2_emx | *-pc-os2-emx )
3a922bb4 1139 NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}`
3a922bb4 1140 esac
9a98a854 1141
3a922bb4
RL
1142 case "$NUM_TOOLKITS" in
1143 1)
1144 ;;
1145 0)
d74f4b5a 1146 AC_MSG_ERROR(Please specify a toolkit -- cannot determine the default for ${host})
3a922bb4
RL
1147 ;;
1148 *)
d74f4b5a 1149 AC_MSG_ERROR(Please specify at most one toolkit (maybe some are cached in configarg.cache?))
3a922bb4 1150 esac
143121c5 1151
3a922bb4
RL
1152 dnl cache the wxUSE_<TOOLKIT> values too
1153 for toolkit in `echo $ALL_TOOLKITS`; do
1154 var=wxUSE_$toolkit
1155 eval "value=\$${var}"
1156 if test "x$value" != x; then
1157 cache_var=CACHE_$toolkit
1158 eval "cache=\$${cache_var}"
1159 if test "$cache" = 1; then
1160 echo "$var=$value" >> ${wx_arg_cache_file}
1161 fi
1162 if test "$value" = 1; then
1163 toolkit_echo=`echo $toolkit | tr [[A-Z]] [[a-z]]`
1164 AC_MSG_RESULT($toolkit_echo)
1165 fi
1166 fi
1167 done
e90c1d2a 1168else
3a922bb4 1169 AC_MSG_RESULT(base ($host_alias hosted) only)
e90c1d2a
VZ
1170fi
1171
17234b26
MB
1172dnl ---------------------------------------------------------------------------
1173dnl When we are using Cygwin with Motif/GTK+, we want it to appear like
1174dnl 'just' a POSIX platform, so the Win32 API must not be available
1175dnl ---------------------------------------------------------------------------
43d99b6d
VS
1176dnl (Windows-only piece)
1177wants_win32=0
1178doesnt_want_win32=0
17234b26
MB
1179case "${host}" in
1180 *-*-cygwin*)
1181 if test "$wxUSE_MSW" = 1 ; then
43d99b6d
VS
1182 wants_win32=1
1183 else
1184 doesnt_want_win32=1
17234b26
MB
1185 fi
1186 ;;
1187 *-*-mingw*)
43d99b6d 1188 wants_win32=1
17234b26
MB
1189 ;;
1190esac
1191
d1188635
JS
1192dnl ---------------------------------------------------------------------------
1193dnl Wine is a virtual platform, we need to patch things up a bit
1194dnl ---------------------------------------------------------------------------
1195if test "$wxUSE_WINE" = "yes"; then
1196 wants_win32=1
1197 dnl FIXME: we should do a better job of testing for these
1198 CC=winegcc
1199 CXX=wineg++
1200 RESCOMP=wrc
1201fi
1202
43d99b6d
VS
1203dnl NB: The two tests bellow are *NOT* mutually exclusive! They should only
1204dnl take effect on Cygwin/Mingw and not other platforms.
1205if test "$wants_win32" = 1 ; then
17234b26
MB
1206 USE_UNIX=0
1207 USE_WIN32=1
1208 AC_DEFINE(__WIN32__)
1209 AC_DEFINE(__WIN95__)
1210 AC_DEFINE(__WINDOWS__)
1211 AC_DEFINE(__GNUWIN32__)
1212 AC_DEFINE(STRICT)
1213 AC_DEFINE(WINVER, 0x0400)
43d99b6d
VS
1214fi
1215if test "$doesnt_want_win32" = 1 ; then
17234b26
MB
1216 USE_UNIX=1
1217 USE_WIN32=0
1218fi
43d99b6d 1219dnl (end of Windows-only piece)
17234b26
MB
1220
1221if test "$USE_UNIX" = 1 ; then
1222 wxUSE_UNIX=yes
1223 AC_DEFINE(__UNIX__)
1224fi
1225
9a98a854
VZ
1226dnl ---------------------------------------------------------------------------
1227dnl Checks for programs
1228dnl ---------------------------------------------------------------------------
1229
1230dnl flush the cache because checking for programs might abort
1231AC_CACHE_SAVE
1232
1233dnl cross-compiling support: we're cross compiling if the build system is
1234dnl different from the target one (assume host and target be always the same)
e59890c3 1235if test "$build" != "$host" ; then
9d353d4a 1236 if test "$USE_WIN32" = 1 -o "$USE_DOS" = 1 -o "$USE_UNIX"; then
3a922bb4
RL
1237 CC=$host_alias-gcc
1238 CXX=$host_alias-c++
1239 AR=$host_alias-ar
1240 RANLIB=$host_alias-ranlib
1241 DLLTOOL=$host_alias-dlltool
1242 RESCOMP=$host_alias-windres
1243 LD=$host_alias-ld
1244 NM=$host_alias-nm
1245 STRIP=$host_alias-strip
1246 else
1247 AC_MSG_ERROR($build_alias -> $host_alias cross compilation not supported yet.)
1248 fi
9a98a854
VZ
1249fi
1250
1251dnl C-compiler checks
1252dnl defines CC with the compiler to use
1253dnl defines GCC with yes if using gcc
1254dnl defines GCC empty if not using gcc
1255dnl defines CFLAGS
04727afd
VZ
1256dnl
1257dnl this magic incantation is needed to prevent AC_PROG_CC from setting the
2b5f62a0 1258dnl default CFLAGS (something like "-g -O2") -- we don't need this as we add
04727afd 1259dnl -g and -O flags ourselves below
ec603395 1260CFLAGS=${CFLAGS:=}
9a98a854
VZ
1261AC_PROG_CC
1262
9a98a854
VZ
1263dnl is -traditional needed for correct compilations
1264dnl adds -traditional for gcc if needed
1265AC_PROG_GCC_TRADITIONAL
1266
1267AC_LANG_SAVE
1268AC_LANG_CPLUSPLUS
1269
1270dnl C++-compiler checks
1271dnl defines CXX with the compiler to use
1272dnl defines GXX with yes if using gxx
1273dnl defines GXX empty if not using gxx
1274dnl defines CXXFLAGS
04727afd
VZ
1275dnl
1276dnl see CFLAGS line above
ec603395 1277CXXFLAGS=${CXXFLAGS:=}
9a98a854
VZ
1278AC_PROG_CXX
1279
9a98a854
VZ
1280AC_LANG_RESTORE
1281
1282dnl ranlib command
1283dnl defines RANLIB with the appropriate command
1284AC_PROG_RANLIB
1285
1286dnl ar command
1287dnl defines AR with the appropriate command
1288AC_CHECK_PROG(AR, ar, ar, ar)
1289
1290dnl install checks
1291dnl defines INSTALL with the appropriate command
6054113a 1292AC_PROG_INSTALL
2e033fd1 1293
ab9f788e
SN
1294dnl make install path absolute (if not already);
1295dnl will fail with (some) MSDOS paths
2e033fd1
CE
1296case ${INSTALL} in
1297 /* ) # Absolute
1298 ;;
ab9f788e
SN
1299 ?:* ) # Drive letter, considered as absolute.
1300 ;;
3bd8fb5f 1301 *)
2e033fd1
CE
1302 INSTALL=`pwd`/${INSTALL} ;;
1303esac
1304
4f5a7f74
VZ
1305dnl HP-UX install doesn't handle the "-d" switch so don't use it there
1306case ${host} in
1307 *-hp-hpux* )
1308 INSTALL_DIR="mkdir"
1309 ;;
1310
1311 *) INSTALL_DIR="$INSTALL -d"
1312 ;;
1313esac
1314
2e033fd1 1315
d6853540
RL
1316case "${host}" in
1317
b5853384
GD
1318 dnl The other BSD's should probably go in here too, since this is
1319 dnl to workaround a strange static lib BSDism.
1320 dnl Mac OS X install seems to ignore -p option...
d6853540 1321 powerpc-*-darwin* )
eb99ae0b
GD
1322 INSTALL_PROGRAM="cp -fp"
1323 INSTALL_DATA="cp -fp"
d6853540
RL
1324 ;;
1325 *)
6054113a 1326 ;;
d6853540 1327esac
9a98a854 1328
9a98a854
VZ
1329dnl strip command
1330dnl defines STRIP as strip or nothing if not found
1331AC_CHECK_PROG(STRIP, strip, strip, true)
1332
414eab6d
VZ
1333dnl does make support "-include" (only GNU make does AFAIK)?
1334AC_CACHE_CHECK([if make is GNU make], wx_cv_prog_makeisgnu,
1335[
1336 if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
c13b1125 1337 egrep -s GNU > /dev/null); then
414eab6d
VZ
1338 wx_cv_prog_makeisgnu="yes"
1339 else
1340 wx_cv_prog_makeisgnu="no"
1341 fi
1342])
1343
1344if test "x$wx_cv_prog_makeisgnu" = "xyes"; then
1345 IF_GNU_MAKE=""
1346else
1347 IF_GNU_MAKE="#"
1348fi
1349
1350AC_SUBST(IF_GNU_MAKE)
1351
1352dnl we don't need to check for VPATH support in GNU make - it does have it
1353if test "x$wx_cv_prog_makeisgnu" != "xyes"; then
9a98a854 1354dnl check if VPATH works
04e7a216 1355AC_CACHE_CHECK([if make supports VPATH], wx_cv_prog_makevpath, [
9a98a854
VZ
1356dnl create Makefile
1357cat - << EOF > confMake
1358check : file
1359 cp \$? \$@
1360 cp \$? final_file
1361EOF
1362
1363if test ! -d sub ; then
1364 mkdir sub
1365fi
1366echo dummy > sub/file
f6bcfd97 1367${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null
9a98a854
VZ
1368RESULT=$?
1369rm -f sub/file check final_file confMake
1370rmdir sub
1371if test "$RESULT" = 0; then
04e7a216 1372 wx_cv_prog_makevpath="yes"
9a98a854 1373else
04e7a216
VZ
1374 wx_cv_prog_makevpath="no"
1375fi
1376])
1377
1378if test "x$wx_cv_prog_makevpath" != "xyes"; then
1379AC_MSG_ERROR([
9a98a854
VZ
1380You need a make-utility that is able to use the variable
1381VPATH correctly.
1382If your version of make does not support VPATH correctly,
1383please install GNU-make (possibly as gmake), and start
1384configure with the following command:
1385export MAKE=gmake; ./configure for sh-type shells
1386setenv MAKE gmake; ./configure for csh-type shells
1387Also please do remember to use gmake in this case every time
1388you are trying to compile.
1e487827 1389])
414eab6d
VZ
1390fi dnl make without VPATH
1391fi dnl not GNU make
613d0995 1392
9a98a854
VZ
1393dnl YACC checks
1394dnl defines YACC with the appropriate command
1395AC_PROG_YACC
1396
1397dnl LEX checks
1398dnl defines LEX with the appropriate command
1399dnl defines LEXLIB with the appropriate library
2aa88730 1400AC_PROG_LEX
9a98a854 1401
c7114f59
VZ
1402dnl needed for making link to setup.h
1403AC_PROG_LN_S
1404
2b5f62a0
VZ
1405dnl ---------------------------------------------------------------------------
1406dnl When we are using gcc on OS/2, we want to be either using resources (PM)
1407dnl or a more complete POSIX emulation for Motif/GTK+/X11
1408dnl ---------------------------------------------------------------------------
1409dnl (OS/2-only piece)
1410case "${host}" in
1411 *-pc-os2_emx | *-pc-os2-emx )
1412 dnl Explicitly link -lstdcpp, since we are using "gcc" not "g++"/"c++".
1413 LIBS="$LIBS -lstdcpp"
1414 if test "$wxUSE_MOTIF" = 1 -o "$wxUSE_GTK" = 1 -o "$wxUSE_X11" = 1; then
1415 dnl More complete Unix emulation for unix-like ports
1416 dnl by linking in POSIX/2's cExt (if available).
1417 AC_CHECK_LIB(cExt, drand48, LIBS="$LIBS -lcExt")
1418 else
1419 dnl Include resources for the "native" port (wxPM).
1420 RESPROGRAMOBJ="\${top_srcdir}/include/wx/os2/wx.res"
1421 fi
1422 ;;
1423esac
1424dnl (end of OS/2-only piece)
1425
21d1c967
GD
1426dnl ------------------------------------------------------------------------
1427dnl Check for headers
1428dnl ------------------------------------------------------------------------
1429
1430dnl test for strings.h needed under AIX, but do not check for it wxMac as
1431dnl it exists but is only a simple redirection to string.h and it is in
1432dnl conflict with Strings.h in FlatCarbon headers
ac0c4cc3 1433if test "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then
21d1c967
GD
1434 dnl defines HAVE_STRINGS_H
1435 AC_CHECK_HEADERS(strings.h)
1436fi
1437
1438dnl defines HAVE_STDLIB_H
1439AC_CHECK_HEADERS(stdlib.h)
1440dnl defines HAVE_MALLOC_H
1441AC_CHECK_HEADERS(malloc.h)
1442dnl defines HAVE_UNISTD_H
1443AC_CHECK_HEADERS(unistd.h)
1444dnl defines HAVE_WCHAR_H
1445AC_CHECK_HEADERS(wchar.h)
1446
1447dnl maybe wchar_t is in wcstr.h if we don't have wchar.h?
1448if test "$ac_cv_header_wchar_h" != "yes"; then
1449 dnl defines HAVE_WCSTR_H
1450 AC_CHECK_HEADERS(wcstr.h)
1451fi
1452
21d1c967
GD
1453dnl defines HAVE_FNMATCH_H
1454AC_CHECK_HEADERS(fnmatch.h)
1455
1456if test "x$ac_cv_header_fnmatch_h" = "xyes"; then
1457 AC_CHECK_FUNCS(fnmatch)
1458fi
1459
1460dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
1461AC_CHECK_HEADERS(langinfo.h)
1462
ab9f788e
SN
1463case "${host}" in
1464 *-pc-os2_emx | *-pc-os2-emx )
1465 dnl Explicitly link -lintl if langinfo.h is available.
1466 if test $ac_cv_header_langinfo_h = "yes"; then
1467 LIBS="$LIBS -lintl"
1468 fi
1469 ;;
1470esac
1542ea39 1471
21d1c967
GD
1472if test "$wxUSE_GUI" = "yes"; then
1473 if test "$wxUSE_UNIX" = "yes"; then
1474 dnl defines HAVE_X11_XKBLIB_H
1475 AC_CHECK_HEADERS(X11/XKBlib.h)
1476 fi
1477fi
1478
90dd450c
VZ
1479dnl ---------------------------------------------------------------------------
1480dnl Checks for compiler characteristics
1481dnl ---------------------------------------------------------------------------
1482
1483dnl defines const to be empty if c-compiler does not support const fully
1484AC_C_CONST
1485dnl defines inline to a sensible value for the c-compiler
1486AC_C_INLINE
1487
1488dnl check the sizes of integral types (give some reasonable default values for
1489dnl cross-compiling)
1490dnl defines the size of certain types of variables in SIZEOF_<TYPE>
1491AC_CHECK_SIZEOF(char, 1)
1492AC_CHECK_SIZEOF(short, 2)
1493AC_CHECK_SIZEOF(void *, 4)
1494AC_CHECK_SIZEOF(int, 4)
1495AC_CHECK_SIZEOF(long, 4)
1496
1497case "${host}" in
1498 arm-*-linux* )
1499 AC_CHECK_SIZEOF(long long, 8)
1500 ;;
4f57cf11
GD
1501 *-hp-hpux* )
1502 AC_CHECK_SIZEOF(long long, 0)
1503 if test "$ac_cv_sizeof_long_long" != "0"; then
1504 dnl HPUX 10.20 headers need this define in order to use long long definitions
1505 CPPFLAGS="$CPPFLAGS -D_INCLUDE_LONGLONG"
1506 fi
1507 ;;
90dd450c
VZ
1508 * )
1509 AC_CHECK_SIZEOF(long long, 0)
1510esac
1511
90dd450c
VZ
1512dnl we have to do it ourselves because SGI/Irix's stdio.h does not include
1513dnl wchar_t and AC_CHECK_SIZEOF only includes stdio.h
1514dnl Mac OS X does not provide wchar.h and wchar_t is defined by stdlib.h (GD)
1515AC_CACHE_CHECK([size of wchar_t], wx_cv_sizeof_wchar_t,
1516[
1517 AC_TRY_RUN(
1518 [
2b5f62a0
VZ
1519 /* DJGPP only has fake wchar_t: */
1520 #ifdef __DJGPP__
1521 # error "fake wchar_t"
1522 #endif
90dd450c
VZ
1523 #ifdef HAVE_WCHAR_H
1524 # ifdef __CYGWIN__
1525 # include <stddef.h>
1526 # endif
1527 # include <wchar.h>
1528 #endif
1529 #ifdef HAVE_STDLIB_H
1530 # include <stdlib.h>
1531 #endif
1532 #include <stdio.h>
1533 int main()
1534 {
1535 FILE *f=fopen("conftestval", "w");
1536 if (!f) exit(1);
1537 fprintf(f, "%i", sizeof(wchar_t));
1538 exit(0);
1539 }
1540 ],
1541 wx_cv_sizeof_wchar_t=`cat conftestval`,
1542 wx_cv_sizeof_wchar_t=0,
2b5f62a0
VZ
1543 [
1544 case "${host}" in
1545 *-pc-msdosdjgpp )
1546 wx_cv_sizeof_wchar_t=0
1547 ;;
1548 * )
1549 wx_cv_sizeof_wchar_t=4
1550 ;;
1551 esac
1552 ]
90dd450c
VZ
1553 )
1554])
1555
1556AC_DEFINE_UNQUOTED(SIZEOF_WCHAR_T, $wx_cv_sizeof_wchar_t)
1557
1558dnl check for large file support
1559AC_SYS_LARGEFILE
1560
f02444d0
VZ
1561dnl we need to define _FILE_OFFSET_BITS or _LARGE_FILES on the compiler command
1562dnl line because otherwise the system headers risk being included before
1563dnl wx/defs.h which defines these constants leading to inconsistent
1564dnl sizeof(off_t) in different source files of the same program and linking
1565dnl problems
1566if test "x$wx_largefile" = "xyes"; then
e26c13cf
RD
1567 if test "x$ac_cv_sys_file_offset_bits" = "x64"; then
1568 WX_LARGEFILE_FLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES"
f02444d0 1569 else
e26c13cf 1570 WX_LARGEFILE_FLAGS="-D_LARGE_FILES"
f02444d0 1571 fi
e26c13cf 1572 CPPFLAGS="$CPPFLAGS $WX_LARGEFILE_FLAGS"
f02444d0
VZ
1573fi
1574
90dd450c
VZ
1575dnl check for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling)
1576WX_C_BIGENDIAN
1577
1578dnl check for iostream (as opposed to iostream.h) standard header
1579WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH))
1580
1581dnl check whether C++ compiler supports bool built-in type
1582WX_CPP_BOOL
1583
986ecc86
VZ
1584dnl check whether C++ compiler supports explicit keyword
1585WX_CPP_EXPLICIT
1586
521196a2
MB
1587dnl check whether C++ compiler supports C++ casts
1588AC_CXX_CONST_CAST
1589
9a98a854
VZ
1590dnl ---------------------------------------------------------------------------
1591dnl Define search path for includes and libraries: all headers and libs will be
1592dnl looked for in all directories of this path
1593dnl ---------------------------------------------------------------------------
1594
2b5f62a0
VZ
1595dnl Notice that /usr/include should *not* be in this list, otherwise it breaks
1596dnl compilation on Solaris/AIX/... with gcc because standard (non ANSI C)
1597dnl headers are included instead of the "fixed" (ANSI-fied) gcc ones.
afc31813
VZ
1598dnl
1599dnl Also try to put all directories which may contain X11R6 before those which
1600dnl may contain X11R5/4 - we want to use R6 on machines which have both!
9a98a854 1601SEARCH_INCLUDE="\
ee31c269
VZ
1602 /usr/local/include \
1603 \
9a98a854
VZ
1604 /usr/Motif-1.2/include \
1605 /usr/Motif-2.1/include \
1606 \
1607 /usr/include/Motif1.2 \
1608 /opt/xpm/include/X11 \
8636aed8
RR
1609 /opt/GBxpm/include/ \
1610 /opt/GBxpm/X11/include/ \
9a98a854
VZ
1611 \
1612 /usr/Motif1.2/include \
1613 /usr/dt/include \
afc31813
VZ
1614 /usr/openwin/include \
1615 \
9a98a854
VZ
1616 /usr/include/Xm \
1617 \
1618 /usr/X11R6/include \
afc31813 1619 /usr/X11R6.4/include \
9a98a854
VZ
1620 /usr/X11R5/include \
1621 /usr/X11R4/include \
1622 \
9a98a854
VZ
1623 /usr/include/X11R6 \
1624 /usr/include/X11R5 \
1625 /usr/include/X11R4 \
1626 \
1627 /usr/local/X11R6/include \
1628 /usr/local/X11R5/include \
1629 /usr/local/X11R4/include \
1630 \
1631 /usr/local/include/X11R6 \
1632 /usr/local/include/X11R5 \
1633 /usr/local/include/X11R4 \
1634 \
1635 /usr/X11/include \
1636 /usr/include/X11 \
1637 /usr/local/X11/include \
1638 /usr/local/include/X11 \
1639 \
1640 /usr/X386/include \
1641 /usr/x386/include \
1642 /usr/XFree86/include/X11 \
1643 \
4c0ed911 1644 X:/XFree86/include \
d51e8205
SN
1645 X:/XFree86/include/X11 \
1646 \
9a98a854 1647 /usr/include/gtk \
5a92d200 1648 /usr/local/include/gtk \
9a98a854 1649 /usr/include/glib \
5a92d200
RR
1650 /usr/local/include/glib \
1651 \
1652 /usr/include/qt \
1653 /usr/local/include/qt \
1654 \
a9b5e89f 1655 /usr/include/windows \
5a92d200
RR
1656 /usr/include/wine \
1657 /usr/local/include/wine \
1658 \
9a98a854
VZ
1659 /usr/unsupported/include \
1660 /usr/athena/include \
1661 /usr/local/x11r5/include \
1662 /usr/lpp/Xamples/include \
1663 \
2b5f62a0 1664 /usr/openwin/share/include"
9a98a854
VZ
1665
1666SEARCH_LIB="`echo "$SEARCH_INCLUDE" | sed s/include/lib/g` "
1667
1668dnl ------------------------------------------------------------------------
1669dnl Check for libraries
1670dnl ------------------------------------------------------------------------
1671
143121c5 1672dnl flush the cache because checking for libraries below might abort
9a98a854
VZ
1673AC_CACHE_SAVE
1674
19bc6aad 1675dnl check for glibc version
efdc61a6
VZ
1676dnl
1677dnl VZ: I have no idea why had this check been there originally, but now
5c0a20c3 1678dnl we could probably do without it by just always adding _GNU_SOURCE
19bc6aad
VZ
1679if test "$USE_LINUX" = 1; then
1680 AC_CACHE_CHECK([for glibc 2.1 or later], wx_cv_lib_glibc21,[
1681 AC_TRY_COMPILE([#include <features.h>],
1682 [
efdc61a6 1683 #if (__GLIBC__ < 2) || (__GLIBC_MINOR__ < 1)
19bc6aad
VZ
1684 #error not glibc2.1
1685 #endif
1686 ],
1687 [
1688 wx_cv_lib_glibc21=yes
1689 ],
1690 [
1691 wx_cv_lib_glibc21=no
1692 ]
1693 )
1694 ])
1695 if test "$wx_cv_lib_glibc21" = "yes"; then
1696 AC_DEFINE(wxHAVE_GLIBC2)
1697 fi
1698fi
1699
5c0a20c3
VZ
1700dnl we may need _GNU_SOURCE for 2 things:
1701dnl
1702dnl 1. to get PTHREAD_MUTEX_RECURSIVE with glibc 2.1+ (strictly speaking we
1703dnl only need _XOPEN_SOURCE=500 but just defining this disables _BSD_SOURCE
1704dnl which breaks libtiff compilation, so it is simpler to just define
1705dnl _GNU_SOURCE to get everything)
1706dnl
1707dnl 2. for Unicode functions
1708if test "x$wx_cv_lib_glibc21" = "xyes"; then
1709 if test "$wxUSE_UNICODE" = "yes" -o "$wxUSE_THREADS" = "yes"; then
1710 AC_DEFINE(_GNU_SOURCE)
1711 fi
1712fi
1713
4f14bcd8
GD
1714dnl ---------------------------------------------------------------------------
1715dnl Optional libraries
1716dnl
1717dnl --with-<lib>=sys
1718dnl looks for system library and fails if not found
1719dnl
1720dnl --with-<lib>
1721dnl --with-<lib>=yes
1722dnl looks for system library and, if not found, prints a warning,
1723dnl falls back to the builtin wx version, and continues configuration
1724dnl
1725dnl --with-<lib>=builtin
1726dnl uses builtin wx version without searching for system library
1727dnl
1728dnl --with-<lib>=no
1729dnl --without-<lib>
1730dnl do not use library (neither system nor builtin wx version)
1731dnl
1732dnl ---------------------------------------------------------------------------
1733
18dbb1f6
VZ
1734dnl ------------------------------------------------------------------------
1735dnl Check for regex libraries
1736dnl ------------------------------------------------------------------------
1737
1738REGEX_INCLUDE=
1739if test "$wxUSE_REGEX" != "no"; then
4f14bcd8
GD
1740 AC_DEFINE(wxUSE_REGEX)
1741
1742 if test "$wxUSE_REGEX" = "sys" -o "$wxUSE_REGEX" = "yes" ; then
1743 dnl according to Unix 98 specs, regcomp() is in libc but I believe that
1744 dnl on some old systems it may be in libregex - check for it too?
ef33c576 1745 AC_CHECK_HEADER(regex.h, [AC_CHECK_FUNCS(regcomp)])
4f14bcd8
GD
1746
1747 if test "x$ac_cv_func_regcomp" != "xyes"; then
1748 if test "$wxUSE_REGEX" = "sys" ; then
1749 AC_MSG_ERROR([system regex library not found! Use --with-regex to use built-in version])
1750 else
a3df447d 1751 AC_MSG_WARN([system regex library not found, will use built-in instead])
4f14bcd8
GD
1752 wxUSE_REGEX=builtin
1753 fi
1754 else
1755 dnl we are using the system library
1756 wxUSE_REGEX=sys
18dbb1f6 1757 fi
4f14bcd8 1758 fi
18dbb1f6 1759
4f14bcd8 1760 if test "$wxUSE_REGEX" = "builtin" ; then
18dbb1f6
VZ
1761 REGEX_INCLUDE="-I\${top_srcdir}/src/regex"
1762 fi
4f14bcd8 1763fi
18dbb1f6 1764
4f14bcd8
GD
1765dnl ------------------------------------------------------------------------
1766dnl Check for zlib compression library
1767dnl ------------------------------------------------------------------------
1768
1769ZLIB_INCLUDE=
1770ZLIB_LINK=
1771if test "$wxUSE_ZLIB" != "no" ; then
1772 AC_DEFINE(wxUSE_ZLIB)
1773
1774 if test "$wxUSE_ZLIB" = "sys" -o "$wxUSE_ZLIB" = "yes" ; then
d775acfa
VZ
1775 dnl don't test for zlib under Mac -- its verson there is 1.1.3 but we
1776 dnl should still use it because hopefully (can someone confirm this?)
1777 dnl Apple did fix the security problem in it and not using the system
1778 dnl library results in a whole bunch of warnings when linking with
1779 dnl Carbon framework
1780 if test "$USE_DARWIN" = 1; then
1781 system_zlib_h_ok="yes"
1782 else
1783 dnl we have troubles with ancient zlib versions (e.g. 1.0.4 is
1784 dnl known to not work) and although I don't know which is
1785 dnl the minimal required version it's safer to test for 1.1.4 as
1786 dnl it fixes a security problem in 1.1.3 -- and hopefully nobody
1787 dnl has anything more ancient (1.1.3 was released in July 1998)
1788 dnl anyhow
1789 AC_CACHE_CHECK([for zlib.h >= 1.1.4], ac_cv_header_zlib_h,
ef33c576
VZ
1790 [AC_TRY_RUN(
1791 dnl zlib.h defines ZLIB_VERSION="x.y.z"
d775acfa 1792 [
d775acfa
VZ
1793 #include <zlib.h>
1794 #include <stdio.h>
1795
d775acfa
VZ
1796 int main()
1797 {
1798 FILE *f=fopen("conftestval", "w");
1799 if (!f) exit(1);
1800 fprintf(f, "%s",
1801 ZLIB_VERSION[0] == '1' &&
1802 (ZLIB_VERSION[2] > '1' ||
1803 (ZLIB_VERSION[2] == '1' &&
1804 ZLIB_VERSION[4] >= '4')) ? "yes" : "no");
1805 exit(0);
1806 }
d775acfa
VZ
1807 ],
1808 ac_cv_header_zlib_h=`cat conftestval`,
1809 ac_cv_header_zlib_h=no,
d1188635
JS
1810 dnl cross-compiling: don't have an answer, try later
1811 unset ac_cv_header_zlib_h
ef33c576 1812 )]
d643b80e 1813 )
d1188635
JS
1814 dnl If the test above did not come up with a value (e.g. cross
1815 dnl compiling) then this should give a definitive answer
1816 AC_CHECK_HEADER(zlib.h)
d643b80e 1817
d775acfa
VZ
1818 system_zlib_h_ok=$ac_cv_header_zlib_h
1819 fi
1820
1821 if test "$system_zlib_h_ok" = "yes"; then
d643b80e
VZ
1822 AC_CHECK_LIB(z, deflate, ZLIB_LINK=" -lz")
1823 fi
4f14bcd8
GD
1824
1825 if test "x$ZLIB_LINK" = "x" ; then
1826 if test "$wxUSE_ZLIB" = "sys" ; then
d643b80e 1827 AC_MSG_ERROR([zlib library not found or too old! Use --with-zlib=builtin to use built-in version])
4f14bcd8 1828 else
d643b80e 1829 AC_MSG_WARN([zlib library not found or too old, will use built-in instead])
4f14bcd8
GD
1830 wxUSE_ZLIB=builtin
1831 fi
1832 else
1833 dnl we are using the system library
1834 wxUSE_ZLIB=sys
1835 fi
1836 fi
1837
1838 if test "$wxUSE_ZLIB" = "builtin" ; then
1839 ZLIB_INCLUDE="-I\${top_srcdir}/src/zlib"
1840 fi
1841fi
1842
1843dnl ------------------------------------------------------------------------
1844dnl Check for png library
1845dnl ------------------------------------------------------------------------
1846
1847PNG_INCLUDE=
1848PNG_LINK=
1849if test "$wxUSE_LIBPNG" != "no" ; then
1850 AC_DEFINE(wxUSE_LIBPNG)
3bd8fb5f 1851
81809c07
VS
1852 if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBPNG" = "builtin" ; then
1853 AC_MSG_WARN([wxMGL doesn't work with builtin png library, will use MGL one instead])
1854 wxUSE_LIBPNG=sys
1855 fi
4f14bcd8
GD
1856
1857 dnl for the check below to have a chance to succeed, we must already have
81809c07
VS
1858 dnl libz somewhere (don't do this when bulding wxMGL since its libpng
1859 dnl doesn't depend on zlib)
1860 if test "$wxUSE_MGL" != 1 -a "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then
a3df447d 1861 AC_MSG_WARN([system png library doesn't work without system zlib, will use built-in instead])
4f14bcd8
GD
1862 wxUSE_LIBPNG=builtin
1863 fi
1864
81809c07
VS
1865 if test "$wxUSE_MGL" != 1 ; then
1866 dnl Don't check for libpng when building wxMGL, libmgl contains it
1867 if test "$wxUSE_LIBPNG" = "sys" -o "$wxUSE_LIBPNG" = "yes" ; then
5d3f766d
VZ
1868 dnl libpng version 0.9 is known to not work, if an even newer
1869 dnl version is required, just bump it up in the test below
1870 AC_CACHE_CHECK([for png.h > 0.90], ac_cv_header_png_h,
ef33c576
VZ
1871 [AC_TRY_RUN(
1872 dnl png.h defines PNG_LIBPNG_VER=number
5d3f766d 1873 [
5d3f766d
VZ
1874 #include <png.h>
1875 #include <stdio.h>
1876
1877 int main()
1878 {
1879 FILE *f=fopen("conftestval", "w");
1880 if (!f) exit(1);
1881 fprintf(f, "%s",
1882 PNG_LIBPNG_VER > 90 ? "yes" : "no");
1883 exit(0);
1884 }
1885 ],
1886 ac_cv_header_png_h=`cat conftestval`,
1887 ac_cv_header_png_h=no,
d1188635
JS
1888 dnl cross-compiling: test (later) if we have any png.h
1889 unset ac_cv_header_png_h
ef33c576 1890 )]
5d3f766d 1891 )
d1188635 1892 AC_CHECK_HEADER(png.h)
5d3f766d
VZ
1893
1894 if test "$ac_cv_header_png_h" = "yes"; then
1895 AC_CHECK_LIB(png, png_check_sig, PNG_LINK=" -lpng", , [-lz -lm])
1896 fi
81809c07
VS
1897
1898 if test "x$PNG_LINK" = "x" ; then
1899 if test "$wxUSE_LIBPNG" = "sys" ; then
0c98a14e 1900 AC_MSG_ERROR([system png library not found or too old! Use --with-libpng=builtin to use built-in version])
81809c07 1901 else
0c98a14e 1902 AC_MSG_WARN([system png library not found or too old, will use built-in instead])
81809c07
VS
1903 wxUSE_LIBPNG=builtin
1904 fi
4f14bcd8 1905 else
81809c07 1906 dnl we are using the system library
2b5f62a0 1907 wxUSE_LIBPNG=sys
4f14bcd8 1908 fi
4f14bcd8
GD
1909 fi
1910 fi
1911
1912 if test "$wxUSE_LIBPNG" = "builtin" ; then
1913 PNG_INCLUDE="-I\${top_srcdir}/src/png"
1914 fi
1915
1916 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
1917fi
1918
1919dnl ------------------------------------------------------------------------
1920dnl Check for jpeg library
1921dnl ------------------------------------------------------------------------
1922
1923JPEG_INCLUDE=
1924JPEG_LINK=
1925if test "$wxUSE_LIBJPEG" != "no" ; then
1926 AC_DEFINE(wxUSE_LIBJPEG)
1927
81809c07
VS
1928 if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBJPEG" = "builtin" ; then
1929 AC_MSG_WARN([wxMGL doesn't work with builtin jpeg library, will use MGL one instead])
1930 wxUSE_LIBJPEG=sys
1931 fi
1932
1933 if test "$wxUSE_MGL" != 1 ; then
1934 dnl Don't check for libjpeg when building wxMGL, libmgl contains it
1935 if test "$wxUSE_LIBJPEG" = "sys" -o "$wxUSE_LIBJPEG" = "yes" ; then
1936 dnl can't use AC_CHECK_HEADER as jconfig.h defines things like
1937 dnl HAVE_STDLIB_H which are already defined and this provokes
1938 dnl a compiler warning which configure considers as an error...
1939 AC_MSG_CHECKING(for jpeglib.h)
1940 AC_CACHE_VAL(ac_cv_header_jpeglib_h,
1941 AC_TRY_COMPILE(
1942 [
1943 #undef HAVE_STDLIB_H
1944 #include <stdio.h>
1945 #include <jpeglib.h>
1946 ],
1947 [
1948 ],
1949 ac_cv_header_jpeglib_h=yes,
1950 ac_cv_header_jpeglib_h=no
1951 )
4f14bcd8 1952 )
81809c07 1953 AC_MSG_RESULT($ac_cv_header_jpeglib_h)
4f14bcd8 1954
81809c07
VS
1955 if test "$ac_cv_header_jpeglib_h" = "yes"; then
1956 AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK=" -ljpeg")
1957 fi
4f14bcd8 1958
81809c07
VS
1959 if test "x$JPEG_LINK" = "x" ; then
1960 if test "$wxUSE_LIBJPEG" = "sys" ; then
1961 AC_MSG_ERROR([system jpeg library not found! Use --with-libjpeg=builtin to use built-in version])
1962 else
1963 AC_MSG_WARN([system jpeg library not found, will use built-in instead])
1964 wxUSE_LIBJPEG=builtin
1965 fi
4f14bcd8 1966 else
81809c07
VS
1967 dnl we are using the system library
1968 wxUSE_LIBJPEG=sys
4f14bcd8 1969 fi
4f14bcd8
GD
1970 fi
1971 fi
1972
1973 if test "$wxUSE_LIBJPEG" = "builtin" ; then
1974 JPEG_INCLUDE="-I\${top_srcdir}/src/jpeg"
1975 fi
1976fi
1977
1978dnl ------------------------------------------------------------------------
1979dnl Check for tiff library
1980dnl ------------------------------------------------------------------------
1981
1982TIFF_INCLUDE=
1983TIFF_LINK=
2b5f62a0 1984TIFF_PREREQ_LINKS=-lm
4f14bcd8
GD
1985if test "$wxUSE_LIBTIFF" != "no" ; then
1986 AC_DEFINE(wxUSE_LIBTIFF)
1987
1988 if test "$wxUSE_LIBTIFF" = "sys" -o "$wxUSE_LIBTIFF" = "yes" ; then
2b5f62a0
VZ
1989 dnl libtiff may depend on libjpeg and libz so use them in the test
1990 dnl below or it would fail
1991 if test "$wxUSE_LIBJPEG" = "sys"; then
1992 TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $JPEG_LINK"
1993 fi
1994 if test "$wxUSE_ZLIB" = "sys"; then
1995 TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $ZLIB_LINK"
1996 fi
4f14bcd8
GD
1997 AC_CHECK_HEADER(tiffio.h,
1998 AC_CHECK_LIB(tiff, TIFFError,
3d63bc3a 1999 TIFF_LINK=" -ltiff",
4f14bcd8 2000 ,
2b5f62a0 2001 $TIFF_PREREQ_LINKS)
4f14bcd8
GD
2002 )
2003
2004 if test "x$TIFF_LINK" = "x" ; then
2005 if test "$wxUSE_LIBTIFF" = "sys" ; then
2006 AC_MSG_ERROR([system tiff library not found! Use --with-libtiff=builtin to use built-in version])
2007 else
a3df447d 2008 AC_MSG_WARN([system tiff library not found, will use built-in instead])
4f14bcd8
GD
2009 wxUSE_LIBTIFF=builtin
2010 fi
2011 else
2012 dnl we are using the system library
2013 wxUSE_LIBTIFF=sys
2014 fi
2015 fi
2016
2017 if test "$wxUSE_LIBTIFF" = "builtin" ; then
2018 TIFF_INCLUDE="-I\${top_srcdir}/src/tiff"
2019 fi
2020fi
2021
9a98a854
VZ
2022dnl ----------------------------------------------------------------
2023dnl search for toolkit (widget sets)
2024dnl ----------------------------------------------------------------
2025
dad6c0ea 2026AFMINSTALL=
2b5f62a0 2027WIN32INSTALL=
dad6c0ea 2028
3a922bb4
RL
2029TOOLKIT=
2030TOOLKIT_INCLUDE=
2031WIDGET_SET=
e90c1d2a 2032
3a922bb4
RL
2033dnl are we building for a win32 target environment?
2034dnl If so, setup common stuff needed for both GUI and Base libs.
2035if test "$USE_WIN32" = 1 ; then
2036 AC_CHECK_HEADERS(w32api.h)
2037 AC_CHECK_HEADER(windows.h, [],
2038 [
2039 AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
2040 ])
dad6c0ea 2041
ea7682f0
VS
2042 dnl check if can use _WIN32_IE macro
2043 AC_CACHE_CHECK([if w32api has good enough MSIE support], wx_cv_w32api_win32_ie,
3a922bb4
RL
2044 [
2045 AC_TRY_COMPILE([#include <w32api.h>],
2046 [
2047 #define wxCHECK_W32API_VERSION( major, minor ) \
2048 ( defined( __W32API_MAJOR_VERSION ) && defined( __W32API_MINOR_VERSION ) \
2049 && ( ( __W32API_MAJOR_VERSION > (major) ) \
2050 || ( __W32API_MAJOR_VERSION == (major) && __W32API_MINOR_VERSION >= (minor))))
2051
2052 #if !wxCHECK_W32API_VERSION(1,1)
2053 #error You need w32api 1.1 or newer
2054 #endif
2055 ], [
ea7682f0 2056 wx_cv_w32api_win32_ie=yes
3a922bb4 2057 ], [
ea7682f0 2058 wx_cv_w32api_win32_ie=no
3a922bb4
RL
2059 ])
2060 ])
ea7682f0
VS
2061 if test "$wx_cv_w32api_win32_ie" = "yes" ; then
2062 CPPFLAGS="$CPPFLAGS -D_WIN32_IE=0x400"
2063 fi
9a98a854 2064
3a922bb4
RL
2065 dnl --- FIXME: This is still a somewhat random list of libs,
2066 dnl --- some of them should probably be included conditionally.
2067 LIBS="$LIBS -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -ladvapi32 -lwsock32"
9a98a854 2068
77e13408
RL
2069 case "${host}" in
2070 *-*-cygwin* )
2071 dnl Cygwin doesn't include these by default
2072 LIBS="$LIBS -lkernel32 -luser32 -lgdi32 -lcomdlg32"
2073 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WIN95__"
2074 esac
7b7a7637 2075
3a922bb4
RL
2076 dnl add extra odbc libs if we have compiled in odbc
2077 if test "$wxUSE_ODBC" = "yes" ; then
a72a4bfa 2078 LIBS=" -lodbc32 -lole32 -loleaut32 $LIBS"
3a922bb4 2079 fi
9a98a854 2080
3a922bb4
RL
2081 RESFLAGS="--include-dir \$(top_srcdir)/include --include-dir \$(top_srcdir)/\$(program_dir) --define __WIN32__ --define __WIN95__ --define __GNUWIN32__"
2082 RESPROGRAMOBJ="\$(PROGRAM)_resources.o"
2b5f62a0
VZ
2083
2084 dnl install Win32-specific files in "make install"
2085 WIN32INSTALL=win32install
3a922bb4 2086fi
3f0f0161 2087
b2fee376 2088if test "$USE_DARWIN" = 1; then
50bcbd3d
GD
2089 dnl Mac OS X/Darwin GCC uses precompiled headers by default
2090 dnl this can cause problems both when compiling wxMac and wxBase
b2fee376
GD
2091 if test "$wxUSE_PRECOMP" = "yes"; then
2092 CPPFLAGS="$CPPFLAGS -cpp-precomp"
2093 else
2094 CPPFLAGS="$CPPFLAGS -no-cpp-precomp"
2095 fi
2096fi
2097
3a922bb4
RL
2098if test "$wxUSE_GUI" = "yes"; then
2099 USE_GUI=1
a9b5e89f 2100
3a922bb4 2101 GUI_TK_LIBRARY=
32832908 2102
3a922bb4
RL
2103 WXGTK12=
2104 WXGTK127=
2105 WXGTK20=
32832908 2106
77e13408 2107 if test "$wxUSE_MSW" = 1 ; then
1e6feb95
VZ
2108 TOOLKIT=MSW
2109 GUIDIST=MSW_DIST
77e13408
RL
2110
2111 dnl -mwindows causes a heap of other default gui libs to be linked in.
d1188635
JS
2112 dnl All platforms need this, except maybe cygwin
2113 LDFLAGS="$LDFLAGS -Wl,--subsystem,windows -mwindows"
7e99ad86
VZ
2114 fi
2115
1e6feb95 2116 if test "$wxUSE_GTK" = 1; then
8168de4c 2117 AC_MSG_CHECKING([for GTK+ version])
b9fa850d 2118
8168de4c
VZ
2119 gtk_version_cached=1
2120 AC_CACHE_VAL(wx_cv_lib_gtk,
2121 [
2122 dnl stupid GTK+ AM macros produce their own messages, so we
2123 dnl have to pass to the next line
2124 gtk_version_cached=0
d48ad9bd 2125 AC_MSG_RESULT()
8168de4c 2126
3f345b47
VZ
2127 dnl we must link against lgthread unless the user
2128 dnl used --disable-threads
2129 GTK_MODULES=
2130 if test "$wxUSE_THREADS" = "yes"; then
2131 GTK_MODULES=gthread
2132 fi
2133
2b5f62a0
VZ
2134 dnl note that if we fail to find GTK2 we abort and don't fall
2135 dnl back to GTK1.x
8168de4c
VZ
2136 wx_cv_lib_gtk=
2137 if test "x$wxUSE_GTK2" = "xyes"; then
1ae7bd02 2138 AM_PATH_GTK_2_0(2.0.0, wx_cv_lib_gtk=2.0, , $GTK_MODULES)
2b5f62a0 2139 else
3f345b47 2140 AM_PATH_GTK(1.2.7, wx_cv_lib_gtk=1.2.7, , $GTK_MODULES)
8168de4c 2141
2b5f62a0
VZ
2142 if test -z "$wx_cv_lib_gtk"; then
2143 AM_PATH_GTK(1.2.3, wx_cv_lib_gtk=1.2.3, , $GTK_MODULES)
2144 fi
8168de4c
VZ
2145 fi
2146
2147 if test -z "$wx_cv_lib_gtk"; then
2148 dnl looks better in AC_MSG_RESULT
2149 wx_cv_lib_gtk=none
138be253
VZ
2150 else
2151 dnl we need to cache GTK_CFLAGS and GTK_LIBS for the
2152 dnl subsequent runs
2153 wx_cv_cflags_gtk=$GTK_CFLAGS
2154 wx_cv_libs_gtk=$GTK_LIBS
8168de4c
VZ
2155 fi
2156 ]
2157 )
b9fa850d 2158
8168de4c
VZ
2159 dnl if it wasn't cached, the messages from AM_PATH_GTK() above are
2160 dnl enough
2161 if test "$gtk_version_cached" = 1; then
2162 AC_MSG_RESULT($wx_cv_lib_gtk)
2163 fi
b9fa850d 2164
8168de4c
VZ
2165 case "$wx_cv_lib_gtk" in
2166 2.0) WXGTK20=1
2b5f62a0 2167 TOOLKIT_VERSION=2
8168de4c
VZ
2168 ;;
2169 1.2.7) WXGTK127=1
d1a8d972 2170 WXGTK12=1
8168de4c
VZ
2171 ;;
2172 1.2.3) WXGTK12=1
2173 ;;
2174 *) AC_MSG_ERROR([
2175Please check that gtk-config is in path, the directory
2176where GTK+ libraries are installed (returned by
2177'gtk-config --libs' command) is in LD_LIBRARY_PATH or
2178equivalent variable and GTK+ is version 1.2.3 or above.
2179 ])
2180 ;;
2181 esac
c596875e 2182
b13cd66e
VZ
2183 if test "$WXGTK20" = 1; then
2184 if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
2185 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2186 [
2187 CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2188 LIBS="$LIBS $PANGOFT2_LIBS"
2189 ],
2190 [
2191 AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2192 wxUSE_PRINTING_ARCHITECTURE="no"
2193 ]
2194 )
2195 fi
2b5f62a0
VZ
2196 else
2197 if test "$wxUSE_UNICODE" = "yes"; then
2198 AC_MSG_WARN([Unicode configuration not supported with GTK+ 1.x])
2199 wxUSE_UNICODE=no
2200 fi
2201 fi
2202
2203 dnl we need poll() in src/gtk/app.cpp (we know that Darwin doesn't
2204 dnl have it but we do the check for the others)
2205 if test "$USE_DARWIN" != 1; then
2206 AC_CHECK_FUNCS(poll)
f09359cf
VS
2207 fi
2208
138be253 2209 TOOLKIT_INCLUDE="$wx_cv_cflags_gtk"
11dfaa5f 2210 GUI_TK_LIBRARY="$wx_cv_libs_gtk"
7799a2d7 2211
1e6feb95
VZ
2212 AFMINSTALL=afminstall
2213 TOOLKIT=GTK
2214 GUIDIST=GTK_DIST
9a98a854 2215
1e6feb95
VZ
2216 dnl test for XIM support in libgdk
2217 AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM))
5a92d200
RR
2218 fi
2219
1e6feb95 2220 if test "$wxUSE_MGL" = 1; then
63a76696 2221 AC_MSG_CHECKING(for SciTech MGL library)
1e6feb95
VZ
2222 if test "x$MGL_ROOT" = x ; then
2223 AC_MSG_RESULT(not found)
2224 AC_MSG_ERROR([Cannot find MGL library. Make sure MGL_ROOT is set.])
2225 else
2226 AC_MSG_RESULT($MGL_ROOT)
2227 fi
5a92d200 2228
63a76696 2229 AC_MSG_CHECKING(for libmgl location)
f9bc1684
VS
2230 dnl Find MGL library that we want
2231 dnl FIXME_MGL - test for MGL variants for freebsd etc.
2232 case "${host}" in
2233 *-*-linux* )
63a76696
VS
2234 if test "x$wxUSE_SHARED" = xyes ; then
2235 mgl_os_candidates="linux/gcc/glibc.so linux/gcc/glibc"
2236 else
2237 mgl_os_candidates="linux/gcc/glibc linux/gcc/glibc.so"
2238 fi
f9bc1684
VS
2239 ;;
2240 *-pc-msdosdjgpp )
63a76696 2241 mgl_os_candidates="dos32/dj2"
f9bc1684
VS
2242 ;;
2243 *)
2244 AC_MSG_ERROR(This system type ${host} is not yet supported by wxMGL.)
2245 esac
2246
3a922bb4 2247 mgl_lib_type=""
63a76696
VS
2248 mgl_os=""
2249
2250 for mgl_os_i in $mgl_os_candidates ; do
2251 if test "x$mgl_os" = x ; then
2252 if test "$wxUSE_DEBUG_FLAG" = yes ; then
2253 if test -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.a -o \
2254 -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.so; then
2255 mgl_lib_type=debug
2256 mgl_os=$mgl_os_i
2257 fi
2258 fi
2259 if test "x$mgl_lib_type" = x ; then
2260 if test -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.a -o \
2261 -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.so; then
2262 mgl_lib_type=release
2263 mgl_os=$mgl_os_i
2264 fi
2265 fi
1e6feb95 2266 fi
63a76696 2267 done
264de0cc 2268
63a76696
VS
2269 if test "x$mgl_os" = x ; then
2270 AC_MSG_RESULT(not found)
2271 AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.])
2272 fi
2273 AC_MSG_RESULT("$MGL_ROOT/lib/$mgl_lib_type/$mgl_os")
1542ea39 2274
1d1b75ac
VZ
2275 wxUSE_UNIVERSAL="yes"
2276
1e6feb95 2277 TOOLKIT_INCLUDE="-I$MGL_ROOT/include"
3a922bb4 2278 GUI_TK_LIBRARY="-L$MGL_ROOT/lib/$mgl_lib_type/$mgl_os -lmgl -lmglcpp -lpm"
d607e6c3 2279
1e6feb95
VZ
2280 AFMINSTALL=afminstall
2281 TOOLKIT=MGL
2282 GUIDIST=MGL_DIST
d607e6c3 2283 fi
143121c5 2284
1725144d
RR
2285 if test "$wxUSE_MICROWIN" = 1; then
2286 AC_MSG_CHECKING(for MicroWindows)
2287 if test "x$MICROWINDOWS" = x ; then
2288 AC_MSG_RESULT(not found)
2289 AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWINDOWS is set.])
2290 else
2291 AC_MSG_RESULT($MICROWINDOWS)
2292 fi
2293
2294 if test -f $MICROWINDOWS/lib/libmwin.a; then
2295 AC_MSG_RESULT(MicroWindows' libraries found.)
2296 else
2297 AC_MSG_ERROR([Cannot find MicroWindows libraries, make sure they are compiled.])
2298 fi
2299
2300 TOOLKIT_INCLUDE="-I$MICROWINDOWS/include"
2301 GUI_TK_LIBRARY="-L$MICROWINDOWS/lib -lmwin -lmwengine -mwfonts -mwdrivers -mwinlib"
2302
1d1b75ac
VZ
2303 wxUSE_UNIVERSAL="yes"
2304
1725144d
RR
2305 AFMINSTALL=afminstall
2306 TOOLKIT=MICROWIN
2307 GUIDIST=MICROWIN_DIST
1d1b75ac
VZ
2308
2309 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXMSW__ -D__WIN95__ -D__WIN32__ -DMWIN -DMICROWIN_NOCONTROLS -DMICROWIN_TODO=1"
1725144d
RR
2310 fi
2311
7f5c07ab
JS
2312 if test "$wxUSE_X11" = 1; then
2313 dnl use standard macros to check for X headers/libs, this brings support
2314 dnl for the standard configure options --x-includes and --x-libraries
2315 AC_PATH_XTRA
2316
2317 if test "$no_x" = "yes"; then
2318 AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2319 fi
2320
2321 GUI_TK_LIBRARY="$X_LIBS"
2322 TOOLKIT_INCLUDE="$X_CFLAGS"
2323 AFMINSTALL=afminstall
2324 COMPILED_X_PROGRAM=0
2325
256d631a 2326 if test "$wxUSE_NANOX" = "yes"; then
6ec507fd
JS
2327 AC_MSG_CHECKING(for MicroWindows/NanoX distribution)
2328 if test "x$MICROWIN" = x ; then
2329 AC_MSG_RESULT(not found)
2330 AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWIN is set.])
2331 else
2332 AC_MSG_RESULT($MICROWIN)
c79a329d 2333 AC_DEFINE(wxUSE_NANOX)
6ec507fd
JS
2334 fi
2335 fi
2336
7f5c07ab
JS
2337 xpm_link=
2338 AC_MSG_CHECKING(for Xpm library)
2339 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
2340 if test "$ac_find_libraries" != "" ; then
2341 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
2342 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
2343 xpm_link=" -lXpm"
2344 AC_DEFINE(wxHAVE_LIB_XPM)
2345 AC_MSG_RESULT(found at $ac_find_libraries)
2346 else
2347 AC_TRY_COMPILE(
2348 [
2349 #include <X11/xpm.h>
2350 ],
2351 [
2352 int version;
2353 version = XpmLibraryVersion();
2354 ],
2355 [
2356 xpm_link=" -lXpm"
2357 AC_DEFINE(wxHAVE_LIB_XPM)
2358 AC_MSG_RESULT(found in default search path)
2359 COMPILED_X_PROGRAM=0
2360 ],
2361 [
2362 AC_MSG_RESULT(no)
2363 AC_MSG_WARN(library will be compiled without support for images in XPM format)
2364 ]
2365 )
2366 fi
2367
f7f78039
MB
2368 AC_CHECK_LIB([Xext], [XShapeQueryExtension],
2369 [
2370 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXext"
2371 wxHAVE_XEXT_LIB=1
2372 ],
2373 [], [$GUI_TK_LIBRARY -lX11])
2374
2b5f62a0
VZ
2375 if test "$wxUSE_UNICODE" = "yes"; then
2376 PKG_CHECK_MODULES(PANGOX, pangox,
2377 [
2378 CXXFLAGS="$CXXFLAGS $PANGOX_CFLAGS"
2379 LIBS="$LIBS $PANGOX_LIBS"
2380 ],
2381 [
2382 AC_MSG_ERROR([pangox library not found, library cannot be compiled in Unicode mode])
2383 ]
2384 )
2385 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2386 [
2387 CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2388 LIBS="$LIBS $PANGOFT2_LIBS"
2389 ],
2390 [
2391 AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2392 wxUSE_PRINTING_ARCHITECTURE="no"
2393 ]
2394 )
2395 PKG_CHECK_MODULES(PANGOXFT, pangoxft,
2396 [
2397 CXXFLAGS="$CXXFLAGS $PANGOXFT_CFLAGS"
2398 LIBS="$LIBS $PANGOXFT_LIBS"
2399 ],
2400 [
2401 AC_MSG_WARN([pangoxft library not found, library will be compiled without anti-aliasing support])
2402 ]
2403 )
2404 fi
2405
1d1b75ac
VZ
2406 wxUSE_UNIVERSAL="yes"
2407
256d631a 2408 if test "$wxUSE_NANOX" = "yes"; then
4e5a4800 2409 TOOLKIT_INCLUDE="-I\$(top_srcdir)/include/wx/x11/nanox -I\$(MICROWIN)/src/include $TOOLKIT_INCLUDE"
0b5c0e1a 2410 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 -DLINUX=1 -DUNIX=1 -DUSE_EXPOSURE -DSCREEN_HEIGHT=480 -DSCREEN_WIDTH=640 -DSCREEN_DEPTH=4 -DX11=1"
461e93f9 2411 GUI_TK_LIBRARY="$GUI_TK_LIBRARY \$(MICROWIN)/src/lib/libnano-X.a"
6ec507fd 2412 else
0feee163 2413 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lX11$xpm_link"
6ec507fd
JS
2414 fi
2415
3c011993 2416 TOOLKIT_VPATH="\${top_srcdir}/src/x11"
7f5c07ab
JS
2417 TOOLKIT=X11
2418 GUIDIST=X11_DIST
7f5c07ab
JS
2419 fi
2420
1e6feb95 2421 if test "$wxUSE_MOTIF" = 1; then
d714471b
VZ
2422 dnl use standard macros to check for X headers/libs, this brings support
2423 dnl for the standard configure options --x-includes and --x-libraries
2424 AC_PATH_XTRA
2425
1e6feb95
VZ
2426 if test "$no_x" = "yes"; then
2427 AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2428 fi
2429
2b5f62a0
VZ
2430 dnl for some reason AC_PATH_XTRA seems to add -INONE and -LNONE to
2431 dnl X_LIBS and X_CFLAGS respectively -- what for??
2432 GUI_TK_LIBRARY=`echo $X_LIBS | sed 's/ -LNONE//'`
2433 TOOLKIT_INCLUDE=`echo $X_CFLAGS | sed 's/ -INONE//'`
1e6feb95 2434 AFMINSTALL=afminstall
1e6feb95
VZ
2435 COMPILED_X_PROGRAM=0
2436
2437 AC_MSG_CHECKING(for Motif/Lesstif headers)
2438 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
2439 if test "$ac_find_includes" != "" ; then
dd0e4a90
VZ
2440 AC_MSG_RESULT(found in $ac_find_includes)
2441 WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
2442 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE$ac_path_to_include"
cd6d6d5b 2443 else
cd6d6d5b
VZ
2444 AC_TRY_COMPILE(
2445 [
2446 #include <Xm/Xm.h>
2447 ],
2448 [
2449 int version;
cd6d6d5b
VZ
2450 version = xmUseVersion;
2451 ],
2452 [
2453 AC_MSG_RESULT(found in default search path)
2454 COMPILED_X_PROGRAM=1
2455 ],
2456 [
2457 AC_MSG_RESULT(no)
1e6feb95 2458 AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
cd6d6d5b
VZ
2459 ]
2460 )
2461 fi
9a98a854 2462
1e6feb95
VZ
2463 if test "$COMPILED_X_PROGRAM" = 0; then
2464 AC_MSG_CHECKING(for Motif/Lesstif library)
2465 WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
2466 if test "$ac_find_libraries" != "" ; then
dd0e4a90 2467 AC_MSG_RESULT(found at $ac_find_libraries)
1e6feb95 2468
dd0e4a90 2469 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
62d0491b 2470 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
1e6feb95 2471 else
dd0e4a90
VZ
2472 dnl it might happen that we found headers in one of the
2473 dnl standard paths but the libs are elsewhere - we do need to
2474 dnl try to compile a sample program then here
2475 save_CFLAGS=$CFLAGS
2476 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2477
1e6feb95
VZ
2478 AC_TRY_COMPILE(
2479 [
2480 #include <Xm/Xm.h>
2481 ],
2482 [
2483 int version;
1e6feb95
VZ
2484 version = xmUseVersion;
2485 ],
2486 [
2487 AC_MSG_RESULT(found in default search path)
2488 COMPILED_X_PROGRAM=1
2489 ],
2490 [
2491 AC_MSG_RESULT(no)
2492 AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
2493 ]
2494 )
dd0e4a90
VZ
2495
2496 CFLAGS=$save_CFLAGS
1e6feb95
VZ
2497 fi
2498 fi
2499
3d63bc3a 2500 xpm_link=
1e6feb95
VZ
2501 AC_MSG_CHECKING(for Xpm library)
2502 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
2503 if test "$ac_find_libraries" != "" ; then
2504 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
62d0491b 2505 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
dd0e4a90 2506
3d63bc3a 2507 xpm_link=" -lXpm"
f6bcfd97 2508 AC_DEFINE(wxHAVE_LIB_XPM)
1e6feb95
VZ
2509 AC_MSG_RESULT(found at $ac_find_libraries)
2510 else
dd0e4a90
VZ
2511 save_CFLAGS=$CFLAGS
2512 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2513
1e6feb95
VZ
2514 AC_TRY_COMPILE(
2515 [
2516 #include <X11/xpm.h>
2517 ],
2518 [
2519 int version;
1e6feb95
VZ
2520 version = XpmLibraryVersion();
2521 ],
2522 [
3d63bc3a 2523 xpm_link=" -lXpm"
3a922bb4 2524 AC_DEFINE(wxHAVE_LIB_XPM)
1e6feb95
VZ
2525 AC_MSG_RESULT(found in default search path)
2526 COMPILED_X_PROGRAM=0
2527 ],
2528 [
2529 AC_MSG_RESULT(no)
2530 AC_MSG_WARN(library will be compiled without support for images in XPM format)
2531 ]
2532 )
dd0e4a90
VZ
2533
2534 CFLAGS=$save_CFLAGS
1e6feb95 2535 fi
9a98a854 2536
6a30f1c8
MB
2537 AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])
2538 libp_link=""
2539 libsm_ice_link=""
2540 libs_found=0
2541 for libp in "" " -lXp"; do
2542 if test "$libs_found" = "0"; then
2543 for libsm_ice in " -lSM -lICE"; do
e26c13cf 2544 if test "$libs_found" = "0"; then
6a30f1c8
MB
2545 save_LIBS="$LIBS"
2546 LIBS="$GUI_TK_LIBRARY -lXm${xpm_link} ${libp} -lXmu -lXext -lXt${libsm_ice} -lX11"
dd0e4a90
VZ
2547 save_CFLAGS=$CFLAGS
2548 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2549
6a30f1c8
MB
2550 AC_TRY_LINK(
2551 [
2552 #include <Xm/Xm.h>
2553 #include <Xm/List.h>
2554 ],
2555 [
2556 XmString string = NULL;
2557 Widget w = NULL;
2558 int position = 0;
2559 XmListAddItem(w, string, position);
2560 ],
2561 [
2562 libp_link="$libp"
2563 libsm_ice_link="$libsm_ice"
2564 AC_MSG_RESULT(
2565 [need${libp_link}${libsm_ice_link}])
2566 libs_found=1
2567 ], []
2568 )
dd0e4a90 2569
6a30f1c8 2570 LIBS="$save_LIBS"
dd0e4a90 2571 CFLAGS=$save_CFLAGS
6a30f1c8
MB
2572 fi
2573 done
2574 fi
2575 done
2576
2577 if test "$libs_found" = "0"; then
2578 AC_MSG_RESULT([can't find the right libraries])
2579 AC_MSG_ERROR([can't link a simple motif program])
2580 fi
17234b26 2581
da494b40
MB
2582 save_CFLAGS=$CFLAGS
2583 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2584 AC_MSG_CHECKING([for Motif 2])
2585 AC_TRY_COMPILE([
2586 #include <Xm/Xm.h>
2587 ],
2588 [
2589 #if XmVersion < 2000
2590 #error "Not Motif 2"
2591 #endif
2592 ],
2593 [
2594 AC_DEFINE(__WXMOTIF20__,1)
2595 AC_MSG_RESULT([found])
2596 ],
2597 [
2598 AC_DEFINE(__WXMOTIF20__,0)
2599 AC_MSG_RESULT([not found])
2600 ])
2601 CFLAGS=$save_CFLAGS
2602
6a30f1c8 2603 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXm$xpm_link${libp_link} -lXmu -lXext -lXt${libsm_ice_link} -lX11"
69c44812 2604 TOOLKIT_VPATH="\${top_srcdir}/src/motif${PATH_IFS}\${top_srcdir}/src/motif/xmcombo${PATH_IFS}\${top_srcdir}/src/x11"
1e6feb95
VZ
2605 TOOLKIT=MOTIF
2606 GUIDIST=MOTIF_DIST
f7f78039
MB
2607 wxHAVE_XEXT_LIB=1
2608 fi
2609
2610 if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1 &&
2611 test "$wxHAVE_XEXT_LIB" = 1; then
2612 save_CFLAGS="$CFLAGS"
2613 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2614
2615 AC_MSG_CHECKING([for X11/extensions/shape.h])
2616 AC_TRY_COMPILE([
2617 #include <X11/Xlib.h>
2618 #include <X11/extensions/shape.h>
2619 ],
2620 [
2621 int dummy1, dummy2;
2622 XShapeQueryExtension((Display*)NULL,
2623 (int*)NULL, (int*)NULL);
2624 ],
2625 [
2626 AC_DEFINE(HAVE_XSHAPE)
2627 AC_MSG_RESULT([found])
2628 ],
2629 [
2630 AC_MSG_RESULT([not found])
2631 ])
2632 CFLAGS="$save_CFLAGS"
1e6feb95 2633 fi
b4085ce6 2634
1e6feb95 2635 if test "$wxUSE_MAC" = 1; then
0c98a14e 2636 CPPFLAGS="$CPPFLAGS -fpascal-strings -I\${top_srcdir}/src/mac/morefilex -I/Developer/Headers/FlatCarbon"
d08b457b 2637
0c98a14e 2638 TOOLKIT_VPATH="\${top_srcdir}/src/mac${PATH_IFS}\${top_srcdir}/src/mac/morefilex"
1e6feb95 2639 TOOLKIT=MAC
683dccda 2640 dnl we can't call this MAC_DIST or autoconf thinks its a macro
1e6feb95
VZ
2641 GUIDIST=MACX_DIST
2642 fi
e07802fc 2643
ac0c4cc3
DE
2644 if test "$wxUSE_COCOA" = 1; then
2645 TOOLKIT_VPATH="\${top_srcdir}/src/cocoa"
2646 TOOLKIT=COCOA
2647 GUIDIST=COCOA_DIST
2648 fi
2649
1e6feb95
VZ
2650 if test "$wxUSE_PM" = 1; then
2651 TOOLKIT=PM
2652 GUIDIST=GTK_DIST
2fc9385a
JS
2653dnl AC_MSG_WARN([OS/2 PM requires old resource format, re-enabled])
2654dnl wxUSE_PROLOGIO="yes"
2655dnl wxUSE_RESOURCES="yes"
2b5f62a0 2656 AC_MSG_WARN([OS/2 threads are not yet supported... disabled])
f657dbe7 2657 wxUSE_THREADS="no"
1e6feb95
VZ
2658 fi
2659
2660 dnl the name of the directory where the files for this toolkit live
3a922bb4 2661 if test "$TOOLKIT" = "PM" ; then
1e6feb95 2662 TOOLKIT_DIR="os2"
f6bcfd97 2663 else
3a922bb4 2664 TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
1e6feb95 2665 fi
9a98a854 2666
3a922bb4
RL
2667 dnl misc other files depending on the port
2668 PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst"
517a619d 2669
1e6feb95
VZ
2670 if test "$wxUSE_UNIVERSAL" = "yes"; then
2671 ALL_OBJECTS="\$(GUI_LOWLEVEL_OBJS) \${UNIVOBJS}"
9b695262
VZ
2672
2673 dnl ALL_SOURCES and ALL_HEADERS shouldn't include really all sources
2674 dnl and headers as some/most are not needed for wxUniv but I don't
2675 dnl have time to add GUI_LOWLEVEL_SOURCES/HEADERS stuff now (TODO!)
2676 ALL_SOURCES="\$(ALL_SOURCES) \${UNIV_SOURCES}"
2677 ALL_HEADERS="\$(ALL_HEADERS) \${UNIV_HEADERS}"
2678
3a922bb4 2679 PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst"
4175e952
RR
2680 if test "$wxUSE_X11" = 1; then
2681 TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}${PATH_IFS}\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes"
2682 else
2683 TOOLKIT_VPATH="\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes${PATH_IFS}\${top_srcdir}/src/${TOOLKIT_DIR}"
2684 fi
3a922bb4
RL
2685 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__"
2686 WIDGET_SET=univ
1e6feb95
VZ
2687 else
2688 ALL_OBJECTS="\$(GUIOBJS)"
9b695262
VZ
2689 ALL_SOURCES="\$(ALL_SOURCES)"
2690 ALL_HEADERS="\$(ALL_HEADERS)"
1e6feb95
VZ
2691 fi
2692
ba0e650c 2693 ALL_OBJECTS="${ALL_OBJECTS} \$(COMMONOBJS) \$(GENERICOBJS)"
1e6feb95 2694
f9bc1684 2695 if test "$TOOLKIT" != "MSW" -a "$USE_DOS" != 1; then
1e6feb95
VZ
2696 ALL_OBJECTS="${ALL_OBJECTS} \$(UNIXOBJS)"
2697 fi
2698
2699 if test "$wxUSE_HTML" = "yes"; then
2700 ALL_OBJECTS="${ALL_OBJECTS} \$(HTMLOBJS)"
2701 fi
3fcdd07b 2702
4f14bcd8 2703 if test "$wxUSE_LIBJPEG" = "builtin" ; then
2224580a 2704 ALL_OBJECTS="${ALL_OBJECTS} \$(JPEGOBJS)"
d9d8273d 2705 fi
4f14bcd8 2706 if test "$wxUSE_LIBTIFF" = "builtin" ; then
d9d8273d
RR
2707 ALL_OBJECTS="${ALL_OBJECTS} \$(TIFFOBJS)"
2708 fi
4f14bcd8 2709 if test "$wxUSE_LIBPNG" = "builtin" ; then
d9d8273d
RR
2710 ALL_OBJECTS="${ALL_OBJECTS} \$(PNGOBJS)"
2711 fi
2224580a 2712
2224580a
VZ
2713 dnl distribute samples/demos/utils with GUI versions
2714 GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
2715 DISTDIR="wx\$(TOOLKIT)"
e90c1d2a 2716else
dad6c0ea
VZ
2717 USE_GUI=0
2718
3a922bb4
RL
2719 dnl this doesn't quite work right for wxBase, but the places
2720 dnl where it is wrong aren't fatal (yet) though.
07eb77a6 2721 TOOLKIT_DIR="base"
f6bcfd97 2722
e90c1d2a 2723 dnl the sources, their dependenices and the headers
3a922bb4
RL
2724 if test "$USE_WIN32" = 1 ; then
2725 ALL_OBJECTS="\${BASE_OBJS} \${BASE_MSW_OBJS}"
2726 TOOLKIT_VPATH="\${top_srcdir}/src/msw"
e90c1d2a 2727
3a922bb4
RL
2728 dnl yes, the toolkit for wxBase on win32 is actually MSW
2729 dnl wxBase on unix does not need a 'TOOLKIT' defined.
2730 TOOLKIT="MSW"
2731 else
2732 ALL_OBJECTS="\${BASE_OBJS} \${BASE_UNIX_OBJS}"
2733 TOOLKIT_VPATH="\${top_srcdir}/src/unix"
a20b6d3a
VZ
2734 fi
2735
d8356fa3
VZ
2736 ALL_SOURCES="\$(ALL_SOURCES)"
2737 ALL_HEADERS="\$(ALL_HEADERS)"
2738
831b3152 2739 PORT_FILES="\${top_srcdir}/src/files.lst"
2224580a
VZ
2740
2741 dnl distribute only wxBase sources/headers
2742 GUIDIST="BASE_DIST"
2743 DISTDIR="wxBase"
e90c1d2a
VZ
2744fi
2745
4f14bcd8
GD
2746dnl ---------------------------------------------------------------------------
2747dnl Optional libraries included when system library is not used
2748dnl ---------------------------------------------------------------------------
e45387bf
VZ
2749
2750dnl ODBC objects are Unix only
2751if test "$TOOLKIT" != "MSW" -a "$wxUSE_ODBC" = "yes" ; then
2752 ALL_OBJECTS="${ALL_OBJECTS} \$(IODBCOBJS)"
2753fi
2754
4f14bcd8 2755if test "$wxUSE_REGEX" = "builtin" ; then
3a922bb4
RL
2756 ALL_OBJECTS="${ALL_OBJECTS} \$(REGEXOBJS)"
2757fi
4f14bcd8 2758if test "$wxUSE_ZLIB" = "builtin" ; then
3a922bb4
RL
2759 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
2760fi
2761
4f14bcd8
GD
2762dnl ---------------------------------------------------------------------------
2763dnl OpenGL libraries
2764dnl ---------------------------------------------------------------------------
be505a65 2765
3a922bb4 2766if test "$wxUSE_OPENGL" = "yes"; then
ac0c4cc3 2767 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = "1"; then
62d0491b 2768 OPENGL_LIBS="-framework OpenGL -framework AGL"
be505a65
VZ
2769 elif test "$wxUSE_MSW" = 1; then
2770 OPENGL_LIBS="-lopengl32 -lglu32"
62d0491b 2771 else
62d0491b
RL
2772 AC_CHECK_HEADER(GL/gl.h,
2773 [
021fde89
VZ
2774 found_gl=0
2775
1352efdf 2776 AC_MSG_CHECKING([for -lGL])
021fde89 2777 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GL)
62d0491b
RL
2778 if test "$ac_find_libraries" != "" ; then
2779 WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
021fde89
VZ
2780 if test "$ac_path_to_link" != " -L/usr/lib" ; then
2781 LDFLAGS_GL="$ac_path_to_link"
4b6b4dfc 2782 fi
021fde89
VZ
2783
2784 dnl don't suppose that libGL and libGLU are always in the
2785 dnl same directory -- this is not true for some common
2786 dnl distributions
2787 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GLU)
2788 if test "$ac_find_libraries" != "" ; then
2789 WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
2790 if test "$ac_path_to_link" != " -L/usr/lib" -a \
2791 "$ac_path_to_link" != "$LDFLAGS_GL"; then
2792 LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link"
2793 fi
2794
2795 found_gl=1
2796 OPENGL_LIBS="-lGL -lGLU"
2797 AC_MSG_RESULT([yes])
2798 fi
2799 fi
2800
2801 if "$found_gl" != 1; then
1352efdf
RL
2802 AC_MSG_RESULT([no])
2803 AC_MSG_CHECKING([for -lMesaGL])
021fde89 2804 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],MesaGL)
62d0491b
RL
2805 if test "$ac_find_libraries" != "" ; then
2806 WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
2807 LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
2808 OPENGL_LIBS="-lMesaGL -lMesaGLU"
1352efdf
RL
2809 AC_MSG_RESULT([yes])
2810 else
2811 AC_MSG_RESULT([no])
62d0491b
RL
2812 fi
2813 fi
2814 ])
fb56368a 2815
62d0491b
RL
2816 if test "x$OPENGL_LIBS" = "x"; then
2817 dnl it should be an error and not a warning because OpenGL is not on
2818 dnl by default and so if it had been explicitely requested, we
2819 dnl shouldn't just fall back to compiling the library without it
2820 AC_MSG_ERROR(OpenGL libraries not available)
2821 fi
6f754473 2822 fi
6f754473 2823
62d0491b
RL
2824 if test "$wxUSE_OPENGL" = "yes"; then
2825 AC_DEFINE(wxUSE_OPENGL)
2826 AC_DEFINE(wxUSE_GLCANVAS)
2827 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl"
2828 fi
3a922bb4
RL
2829fi
2830
2831if test -z "$TOOLKIT_VPATH" ; then
2832 TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}"
2833fi
2834
2835dnl the symbol which allows conditional compilation for the given toolkit
2836if test -n "$TOOLKIT" ; then
2837 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WX${TOOLKIT}__"
2838fi
2839
f676c7ff
MB
2840lib_unicode_suffix=
2841if test "$wxUSE_UNICODE" = "yes"; then
2842 lib_unicode_suffix=u
2843fi
2844
3a922bb4
RL
2845lib_debug_suffix=
2846if test "$wxUSE_DEBUG_FLAG" = "yes"; then
2847 lib_debug_suffix=d
3a922bb4
RL
2848fi
2849
2b5f62a0
VZ
2850WX_VERSION_TAG=`echo WX${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_${WX_RELEASE} | tr "[[a-z]]" "[[A-Z]]"`
2851
2852TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}-${WX_RELEASE}"
2853TOOLCHAIN_NAME_GL="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_gl-${WX_RELEASE}"
3a922bb4
RL
2854
2855if test "$cross_compiling" = "yes"; then
2856 TOOLCHAIN_NAME="${TOOLCHAIN_NAME}-${host_alias}"
2857 TOOLCHAIN_NAME_GL="${TOOLCHAIN_NAME_GL}-${host_alias}"
2858fi
2859
2860dnl library link name
2861WX_LIBRARY="wx_${TOOLCHAIN_NAME}"
2862WX_LIBRARY_GL="wx_${TOOLCHAIN_NAME_GL}"
2b5f62a0 2863WX_LIBRARY_BASENAME="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}"
3a922bb4 2864
3a922bb4
RL
2865dnl the name of the shared library
2866WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2867WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
b12915c1 2868
3a922bb4
RL
2869dnl the name of the links to the shared library
2870WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}"
2871WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2872WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}"
2873WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
55e80573 2874
978f1259
RL
2875case "${host}" in
2876 *-*-cygwin* | *-*-mingw32* )
2877
2878 dnl If we are cross compiling we want to use the 'full' unix type name for the
2879 dnl lib, but for a native install use the windows style naming convention.
2da4f892 2880 dnl (excepting again that we strip the ELF style version numbers off it).
978f1259
RL
2881
2882 dnl FIXME: is this GL stuff actually even used for wxMSW? should it be??
2883
17234b26 2884 if test "$cross_compiling" != "yes" -a "$TOOLKIT_DIR" = "msw"; then
978f1259
RL
2885 WX_LIBRARY="wxmsw${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2886 WX_LIBRARY_GL="wxmsw_gl${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2887 WX_LIBRARY_NAME_SHARED="${WX_LIBRARY}.${SO_SUFFIX}"
2888 WX_LIBRARY_NAME_SHARED_GL="${WX_LIBRARY_GL}.${SO_SUFFIX}"
2da4f892
RL
2889 else
2890 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}"
2891 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
978f1259 2892 fi
e95edd8d 2893 ;;
978f1259 2894
e95edd8d 2895 *-*-darwin* )
05159a27
GD
2896 dnl Under Mac OS X, the naming conventions for shared libraries
2897 dnl are different: the number precedes the suffix.
1542ea39 2898
05159a27
GD
2899 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2900 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2901
2902 WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${WX_CURRENT}.${SO_SUFFIX}"
2903 WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2904 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${SO_SUFFIX}"
2905 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
2906
e95edd8d
GD
2907 dnl Under Mac OS X, we should build real frameworks instead of simple
2908 dnl dynamic shared libraries (in order to embed the resources)
2909 if test "$wxUSE_MAC" = 1; then
f346733b
GD
2910 dnl base name of the resource file for wxMac must be the same
2911 dnl as library installation base name (-install_name)
2912 WX_RESOURCES_MACOSX_ASCII="lib${WX_LIBRARY}.${WX_CURRENT}.r"
2913 WX_RESOURCES_MACOSX_DATA="lib${WX_LIBRARY}.${WX_CURRENT}.rsrc"
e95edd8d
GD
2914 fi
2915 ;;
978f1259
RL
2916esac
2917
2918dnl the name of the static library
2919WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
2920WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY_GL}.a"
2921
2922dnl define which libs wx-config should link.
2923WXCONFIG_LIBS="-l${WX_LIBRARY}"
885d4bf5 2924WXCONFIG_LIBS_STATIC="lib${WX_LIBRARY}.a"
978f1259
RL
2925
2926if test "$wxUSE_OPENGL" = "yes"; then
885d4bf5
VS
2927 WXCONFIG_LIBS_GL="-l${WX_LIBRARY_GL} ${OPENGL_LIBS}"
2928 WXCONFIG_LIBS_STATIC_GL="lib${WX_LIBRARY_GL}.a ${OPENGL_LIBS}"
978f1259
RL
2929fi
2930
2931
3a922bb4 2932dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
55e80573 2933
4222829b
VS
2934if test "$wxUSE_SHARED" = "yes"; then
2935 case "${host}" in
2936 *-pc-os2_emx | *-pc-os2-emx | \
2937 *-pc-msdosdjgpp )
2938 dnl only static for now
2939 wxUSE_SHARED=no
2940 AC_MSG_WARN([Host system doesn't support shared libraries, disabling])
2941 ;;
2942 esac
2943fi
2944
3a922bb4 2945if test "$wxUSE_SHARED" = "yes"; then
55e80573
VZ
2946
2947 dnl install targets
2948 if test "$wxUSE_OPENGL" = "yes"; then
2949 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
3a922bb4 2950 WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1} \$(build_libdir)/${WX_LIBRARY_LINK1_GL}"
55e80573
VZ
2951 else
2952 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
3a922bb4 2953 WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1}"
55e80573
VZ
2954 fi
2955
2956 dnl the extra compiler flags needed for compilation of shared library
dd4f7467
VZ
2957 if test "$GCC" = "yes"; then
2958 dnl the switch for gcc is the same under all platforms
2959 PIC_FLAG="-fPIC"
2960 fi
55e80573 2961
2b5f62a0
VZ
2962
2963 dnl use versioned symbols if available on the platform
2964 WX_VERSIONED_SYMBOLS([\$(top_builddir)/version-script])
2965
55e80573
VZ
2966 dnl the command to use for creating the shared library
2967 SHARED_LD="${CXX} -shared -o"
2968
2969 case "${host}" in
2970 *-hp-hpux* )
2971 dnl default settings are good for gcc but not for the native HP-UX
ad2622f1 2972 if test "$GCC" = "yes"; then
85d5e282
GD
2973 dnl -o flag must be after PIC flag
2974 SHARED_LD="${CXX} -shared ${PIC_FLAG} -o"
d569ea8d 2975 else
f6bcfd97 2976 dnl no idea why it wants it, but it does
3d63bc3a 2977 LDFLAGS="$LDFLAGS -L/usr/lib"
f6bcfd97 2978
be087207
RR
2979 SHARED_LD="${CXX} -b -o"
2980 PIC_FLAG="+Z"
2981 fi
55e80573 2982
7b7a7637
RL
2983 dnl install shared libs without symlinks
2984 if test "$wxUSE_OPENGL" = "yes"; then
2985 WX_ALL_INSTALLED="preinstall_gl"
2986 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED} \$(build_libdir)/${WX_LIBRARY_NAME_SHARED_GL}"
2987 else
2988 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
2989 fi
de87c353 2990 ;;
b12915c1 2991
de87c353 2992 *-*-linux* )
55e80573
VZ
2993 if test "$GCC" != "yes"; then
2994 AC_CACHE_CHECK([for Intel compiler], wx_cv_prog_icc,
2995 [
2996 AC_TRY_COMPILE([],
2997 [
2998 #ifndef __INTEL_COMPILER
dd4f7467 2999 #error Not icc
55e80573
VZ
3000 #endif
3001 ],
3002 wx_cv_prog_icc=yes,
3003 wx_cv_prog_icc=no
3004 )
3005 ])
55e80573
VZ
3006 if test "$wx_cv_prog_icc" = "yes"; then
3007 PIC_FLAG="-KPIC"
3008 fi
3009 fi
3010
3a922bb4
RL
3011 if test "$wxUSE_SONAME" = "yes" ; then
3012 SONAME_FLAGS="-Wl,-soname,${WX_LIBRARY_LINK1}"
3013 SONAME_FLAGS_GL="-Wl,-soname,${WX_LIBRARY_LINK1_GL}"
f6bcfd97
BP
3014 dnl substitute this in makelib.env for the contrib libs
3015 WX_TARGET_LIBRARY_SONAME="-Wl,-soname,\$(TARGETLIB_LINK1)"
00cf1208 3016 fi
de87c353 3017 ;;
55e80573 3018
de87c353
RR
3019 *-*-solaris2* )
3020 if test "$GCC" = yes ; then
f6bcfd97
BP
3021 dnl newer versions of gcc need -isystem to compile X headers on
3022 dnl Solaris (which use old style C syntax)
3023 CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
de87c353
RR
3024 else
3025 SHARED_LD="${CXX} -G -o"
10f2d63a 3026 PIC_FLAG="-KPIC"
7b7a7637 3027 SONAME_FLAGS="-h ${WX_LIBRARY_NAME_SHARED}"
471944dc 3028 SONAME_FLAGS_GL="-h ${WX_LIBRARY_NAME_SHARED_GL}"
de87c353 3029 fi
de87c353 3030 ;;
55e80573 3031
b4085ce6 3032 *-*-darwin* )
90f3fe56
GD
3033 dnl For Unix to MacOS X porting instructions, see:
3034 dnl http://fink.sourceforge.net/doc/porting/porting.html
b2fee376
GD
3035 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -DWXMAKINGDLL"
3036 CFLAGS="$CFLAGS -fno-common"
3037 CXXFLAGS="$CXXFLAGS -fno-common"
fe0d8518
GD
3038 dnl wxWindows must be fully binded (lazy binding breaks RTTI classinfo)
3039 dnl this can be done either with the exe linker flag -Wl,-bind_at_load
3040 dnl or with a double stage link in order to create a single module
3041 dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
3042 SHARED_LD="\${top_srcdir}/distrib/mac/shared-ld-sh -undefined suppress -flat_namespace -o"
ea5999b9 3043 PIC_FLAG="-dynamic -fPIC"
f346733b
GD
3044 dnl library installation base name and wxMac resources file base name
3045 dnl must be identical in order for the resource file to be found at
3046 dnl run time in src/mac/app.cpp
05159a27
GD
3047 SONAME_FLAGS="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1}"
3048 SONAME_FLAGS_GL="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1_GL}"
de87c353 3049 ;;
55e80573 3050
de87c353 3051 *-*-aix* )
2b5f62a0
VZ
3052 dnl default settings are ok for gcc
3053 if test "$GCC" != "yes"; then
3054 dnl the abs path below used to be hardcoded here so I guess it must
3055 dnl be some sort of standard location under AIX?
3056 AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
3057 makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
321d2b14 3058
2b5f62a0
VZ
3059 SHARED_LD="$(AIX_CXX_LD) -p 0 -o"
3060 fi
de87c353 3061 ;;
55e80573 3062
7b7a7637 3063 *-*-cygwin* | *-*-mingw32* )
2da4f892 3064 WX_LIBRARY_IMPORTLIB="${WX_LIBRARY_NAME_SHARED}.a"
77e13408 3065
77e13408 3066 SHARED_LD="${CXX} -shared -Wl,--out-implib,lib/${WX_LIBRARY_IMPORTLIB} -o"
00c81359 3067 TOOLCHAIN_DLL_DEFS="${TOOLCHAIN_DLL_DEFS} -DWXUSINGDLL=1"
25d0687a
RL
3068
3069 PIC_FLAG="-UWXUSINGDLL -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1"
7b7a7637 3070
f657dbe7
MB
3071 dnl Don't build seperate GL library
3072 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
3073 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
3074
f6bcfd97 3075 if test "$wxUSE_OPENGL" = "yes"; then
f657dbe7 3076 LIBS="${LIBS} ${OPENGL_LIBS}"
f6bcfd97 3077 fi
de87c353 3078 ;;
55e80573 3079
b12915c1
VZ
3080 *-*-beos* )
3081 dnl can't use gcc under BeOS for shared library creation because it
3082 dnl complains about missing 'main'
3083 SHARED_LD="${LD} -shared -o"
b12915c1 3084 ;;
55e80573 3085
2b5f62a0
VZ
3086 *-*-irix* )
3087 dnl default settings are ok for gcc
3088 if test "$GCC" != "yes"; then
3089 PIC_FLAG="-KPIC"
3090 fi
3091 ;;
3092
55e80573
VZ
3093 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \
3094 *-*-sunos4* | \
55e80573
VZ
3095 *-*-osf* | \
3096 *-*-dgux5* | \
3097 *-*-sysv5* )
3098 dnl defaults are ok
3099 ;;
3100
de87c353 3101 *)
7b7a7637 3102 AC_MSG_ERROR(unknown system type $host.)
de87c353 3103 esac
9a98a854 3104
72dd34b5
VZ
3105 dnl set target to shared if not explicitly chose static before
3106 if test "x$WX_TARGET_LIBRARY" = "x"; then
3107 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
bdad4e7e 3108 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
72dd34b5 3109 fi
55e80573 3110
3711412e
RL
3111 dnl do not alter the LIBRARY_TYPE strings "so" and "a", they are magic
3112 WX_TARGET_LIBRARY_TYPE="so"
885d4bf5 3113 INSTALL_LIBRARY='$(INSTALL_PROGRAM)'
3a922bb4 3114fi
f6bcfd97 3115
3a922bb4
RL
3116dnl do not 'else' this, it may be changed in the above conditional.
3117if test "$wxUSE_SHARED" = "no"; then
f6bcfd97 3118
3a922bb4
RL
3119 dnl give static wxBase and wxMSW build a working install target
3120 if test "$wxUSE_GUI" = "no" -o "$USE_WIN32" = 1 ; then
f6bcfd97
BP
3121 dnl we're here because WX_ALL_INSTALLED is empty, but play safe anyway
3122 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3123 fi
3124
ac0c4cc3 3125 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
6fa882bd
RR
3126 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3127 fi
3128
3a922bb4
RL
3129 if test "$wxUSE_OPENGL" = "yes"; then
3130 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_gl"
3131 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC} \$(build_libdir)/${WX_LIBRARY_NAME_STATIC_GL}"
3132 else
3133 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC}"
3134 fi
3135
3136 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
3137 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
3138
3711412e 3139 WX_TARGET_LIBRARY_TYPE="a"
885d4bf5 3140 INSTALL_LIBRARY='$(INSTALL_DATA)'
2bffed64
VZ
3141
3142 dnl wx-config should assume the --static flag by default if we don't have
3143 dnl any shared libs anyhow
3144 STATIC_FLAG="yes"
3145else
3146 STATIC_FLAG="no"
517a619d
RR
3147fi
3148
93fac604
VZ
3149dnl default value is to (silently) do nothing in the makefile
3150MACRESCOMP="@#"
3151MACSETFILE="@#"
36825681 3152MACRESWXCONFIG="#"
d08b457b
GD
3153if test "$wxUSE_MAC" = 1; then
3154 dnl add the resources target for wxMac
336e99e2
GD
3155 LIBWXMACRES="\$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}"
3156 WX_ALL="${WX_ALL} ${LIBWXMACRES}"
e23081de 3157 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_res"
d08b457b 3158 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
9f8148b1 3159 AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
36825681 3160 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
ef7f2189 3161 MACOSX_BUNDLE="bundle"
2b5f62a0
VZ
3162 dnl resources are bundled both with shared library and applications
3163 dnl since the carb resource *must* be included in the application
36825681
GD
3164 MACRESCOMP="\$(RESCOMP) -d __DARWIN__ -t APPL Carbon.r ${LIBWXMACRES} -o"
3165 MACSETFILE="\$(SETFILE)"
3166 MACRESWXCONFIG="${RESCOMP} -d __DARWIN__ -t APPL Carbon.r \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
64440d77
DE
3167elif test "$wxUSE_COCOA" = 1; then
3168 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
3169 AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
3170 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
3171 MACRESCOMP="echo -n | \$(RESCOMP) -d __DARWIN__ -t APPL ${LIBWXMACRES} -o"
3172 MACSETFILE="\$(SETFILE)"
3173 MACRESWXCONFIG="echo -n | ${RESCOMP} -d __DARWIN__ -t APPL \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
590b1a4d
SN
3174else
3175 if test "$wxUSE_PM" = 1; then
36825681 3176 MACRESCOMP="emxbind -ep"
590b1a4d 3177 fi
d08b457b
GD
3178fi
3179
9a98a854
VZ
3180dnl ---------------------------------------------------------------------------
3181dnl Checks for typedefs
3182dnl ---------------------------------------------------------------------------
3183
3184dnl defines mode_t if not already defined
3185AC_TYPE_MODE_T
3186dnl defines off_t if not already defined
3187AC_TYPE_OFF_T
3188dnl defines pid_t if not already defined
3189AC_TYPE_PID_T
3190dnl defines size_t if not already defined
3191AC_TYPE_SIZE_T
3192dnl defines uid_t and gid_t if not already defined
3193AC_TYPE_UID_T
3194
d836ee96 3195dnl check what exactly size_t is on this machine - this is necessary to avoid
ef33c576 3196dnl ambiguous overloads in several places, notably wx/string.h and wx/array.h
19af3b06
VZ
3197AC_LANG_SAVE
3198AC_LANG_CPLUSPLUS
d836ee96
VZ
3199AC_CACHE_CHECK([if size_t is unsigned int],
3200 wx_cv_size_t_is_uint,
ef33c576 3201 [
dd2c8b7c
VZ
3202 dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work
3203 dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate
3204 dnl methods in a local class (i.e. class inside a function) declaration
3205 dnl without any objections!!
3206 dnl
3207 dnl hence the hack below: we must have Foo at global scope!
d836ee96
VZ
3208 AC_TRY_COMPILE([#include <stddef.h>],
3209 [
dd2c8b7c
VZ
3210 return 0; }
3211
d836ee96 3212 struct Foo { void foo(size_t); void foo(unsigned int); };
dd2c8b7c
VZ
3213
3214 int bar() {
d836ee96
VZ
3215 ],
3216 wx_cv_size_t_is_uint=no,
3217 wx_cv_size_t_is_uint=yes
3218 )
ef33c576 3219 ]
d836ee96
VZ
3220)
3221
3222if test "$wx_cv_size_t_is_uint" = "yes"; then
3223 AC_DEFINE(wxSIZE_T_IS_UINT)
3224else
3225 AC_CACHE_CHECK([if size_t is unsigned long],
3226 wx_cv_size_t_is_ulong,
3227 AC_TRY_COMPILE([#include <stddef.h>],
3228 [
dd2c8b7c
VZ
3229 return 0; }
3230
d836ee96 3231 struct Foo { void foo(size_t); void foo(unsigned long); };
dd2c8b7c
VZ
3232
3233 int bar() {
d836ee96
VZ
3234 ],
3235 wx_cv_size_t_is_ulong=no,
3236 wx_cv_size_t_is_ulong=yes
3237 )
3238 )
3239
3240 if test "$wx_cv_size_t_is_ulong" = "yes"; then
3241 AC_DEFINE(wxSIZE_T_IS_ULONG)
3242 fi
3243fi
3244
19af3b06
VZ
3245AC_LANG_RESTORE
3246
9a98a854
VZ
3247dnl ---------------------------------------------------------------------------
3248dnl Checks for structures
3249dnl ---------------------------------------------------------------------------
3250
b12915c1
VZ
3251dnl does passwd struct has the pw_gecos field?
3252AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
3253 [
3254 AC_TRY_COMPILE([#include <pwd.h>],
3255 [
3256 char *p;
3257 struct passwd *pw;
3258 p = pw->pw_gecos;
3259 ],
3260 [
3261 wx_cv_struct_pw_gecos=yes
b12915c1
VZ
3262 ],
3263 [
3264 wx_cv_struct_pw_gecos=no
3265 ]
3266 )
3267 ]
3268)
3269
bd3277fe
VZ
3270if test "$wx_cv_struct_pw_gecos" = "yes"; then
3271 AC_DEFINE(HAVE_PW_GECOS)
3272fi
3273
9a98a854 3274dnl ---------------------------------------------------------------------------
9a98a854
VZ
3275dnl Check for functions
3276dnl ---------------------------------------------------------------------------
3277
d29b553b 3278dnl don't check for wchar_t functions if we haven't got wchar_t itself
d29b553b 3279if test "$wx_cv_sizeof_wchar_t" != "0"; then
d74f4b5a
VZ
3280 AC_DEFINE(wxUSE_WCHAR_T)
3281
3282 dnl check for wcslen in all possible places
3283 WCSLEN_FOUND=0
d29b553b 3284 WCHAR_LINK=
d74f4b5a 3285 AC_CHECK_FUNCS(wcslen, WCSLEN_FOUND=1)
d29b553b 3286
d74f4b5a 3287 if test "$WCSLEN_FOUND" = 0; then
7a30264c 3288 if test "$TOOLKIT" = "MSW"; then
d74f4b5a 3289 AC_CHECK_LIB(msvcrt, wcslen, WCHAR_OK=1)
7a30264c
VZ
3290 else
3291 AC_CHECK_LIB(w, wcslen, [
7a30264c 3292 WCHAR_LINK=" -lw"
d74f4b5a 3293 WCSLEN_FOUND=1
7a30264c
VZ
3294 ])
3295 fi
d29b553b 3296 fi
9a98a854 3297
d74f4b5a
VZ
3298 if test "$WCSLEN_FOUND" = 1; then
3299 AC_DEFINE(HAVE_WCSLEN)
3300 fi
d29b553b 3301
d74f4b5a 3302 dnl try to use wcsrtombs instead of wcstombs which is buggy in old GNU
d29b553b
VZ
3303 dnl libc versions if possible
3304 AC_CHECK_FUNCS(wcsrtombs)
3305else
d74f4b5a 3306 AC_MSG_WARN([Wide character support is unavailable])
d29b553b 3307fi
b3e8d00a 3308
247f5006
VZ
3309dnl *printf() functions sometimes are available in the library but not
3310dnl prototyped -- if this is the case, we can't use them from C++ code, but to
3311dnl detect this we have to use C++ compiler for testing
3312AC_LANG_SAVE
3313AC_LANG_CPLUSPLUS
aea02638 3314
247f5006 3315dnl check for vsnprintf() -- a safe version of vsprintf())
ec0d6da3
VZ
3316dnl
3317dnl the trouble here is that on some systems (notable HP-UX) this function is
3318dnl present in libc but not in the system headers and so AC_CHECK_FUNCS (which,
3319dnl stupidly, provides a dummy function declaration inside its extension)
3320dnl succeeds, even with C++ compiler, but the compilation of wxWindows fails
3321dnl
3322dnl so we first check if the function is in the library
247f5006 3323AC_CHECK_FUNCS(vsnprintf)
9d8deca0 3324
ec0d6da3
VZ
3325if test "$ac_cv_func_vsnprintf" = "yes"; then
3326 dnl yes it is -- now check if it is in the headers
3327 AC_CACHE_CHECK([for vsnprintf declaration], wx_cv_func_vsnprintf_decl,
3328 [
3329 AC_TRY_COMPILE(
3330 [
3331 #include <stdio.h>
3332 #include <stdarg.h>
3333 ],
3334 [
3335 char *buf;
3336 va_list ap;
3337 vsnprintf(buf, 10u, "%s", ap);
3338 ],
3339 wx_cv_func_vsnprintf_decl=yes,
3340 wx_cv_func_vsnprintf_decl=no
3341 )
3342 ]
3343 )
3344
3345 if test "$wx_cv_func_vsnprintf_decl" = "yes"; then
3346 AC_DEFINE(HAVE_VSNPRINTF_DECL)
3347 fi
3348fi
3349
d74f4b5a 3350if test "$wxUSE_UNICODE" = yes; then
247f5006 3351 dnl also look if we have wide char IO functions
5c6fa7d2 3352 AC_CHECK_FUNCS(fputwc wprintf vswprintf)
ec0d6da3 3353
79668cae
MB
3354 dnl MinGW has a vswprintf with a different prototype, and
3355 dnl a _vsnwprintf with the correct prototype, but AC_CHECK_FUNCS
3356 dnl finds it even if it is not declared in some versions...
3357 AC_MSG_CHECKING([for _vsnwprintf])
3358 AC_TRY_COMPILE([#include <wchar.h>],
3359 [&_vsnwprintf;],
3360 [AC_MSG_RESULT([yes])
3361 AC_DEFINE(HAVE__VSNWPRINTF)],
3362 [AC_MSG_RESULT([no])]);
d74f4b5a
VZ
3363fi
3364
247f5006
VZ
3365AC_LANG_RESTORE
3366
3367
3368
f6bcfd97 3369dnl the following tests are for Unix(like) systems only
b089607b 3370if test "$TOOLKIT" != "MSW"; then
a0c79abb 3371
95c8801c
VS
3372dnl check for available version of iconv()
3373
3374AC_LANG_SAVE
3375AC_LANG_CPLUSPLUS
b040e242
VS
3376AM_ICONV
3377LIBS="$LIBICONV $LIBS"
95c8801c 3378AC_LANG_RESTORE
95c8801c 3379
eb4efbdc
VZ
3380dnl check for POSIX signals if we need them
3381if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
3382 AC_CHECK_FUNCS(sigaction)
3383
3384 if test "$ac_cv_func_sigaction" = "no"; then
3385 AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
3386 wxUSE_ON_FATAL_EXCEPTION=no
3387 fi
f6bcfd97
BP
3388
3389 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3390 AC_LANG_SAVE
3391 AC_LANG_CPLUSPLUS
3392
3393 AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
3394 [
3395 AC_TRY_COMPILE([#include <signal.h>],
3396 [
3397 extern void testSigHandler(int);
3398
3399 struct sigaction sa;
3400 sa.sa_handler = testSigHandler;
3401 ], [
3402 wx_cv_type_sa_handler=int
3403 ], [
3404 wx_cv_type_sa_handler=void
3405 ])
3406 ])
3407
3408 AC_LANG_RESTORE
3409
3410 AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
3411 fi
eb4efbdc
VZ
3412fi
3413
ade35f11
VZ
3414dnl check for the function for temp files creation
3415AC_CHECK_FUNCS(mkstemp mktemp, break)
3416
9952adac
VZ
3417dnl get the library function to use for wxGetDiskSpace(): it is statfs() under
3418dnl Linux and *BSD and statvfs() under Solaris
52e8b690
VZ
3419AC_CACHE_CHECK(for statfs, wx_cv_func_statfs,
3420 AC_TRY_COMPILE(
3421 [
9952adac 3422 #if defined(__BSD__)
d08b457b
GD
3423 #include <sys/param.h>
3424 #include <sys/mount.h>
3425 #else
3426 #include <sys/vfs.h>
3427 #endif
52e8b690
VZ
3428 ],
3429 [
3430 long l;
3431 struct statfs fs;
3432 statfs("/", &fs);
3433 l = fs.f_bsize;
3434 l += fs.f_blocks;
3435 l += fs.f_bavail;
3436 ],
3437 [
3438 wx_cv_func_statfs=yes
3439 ],
3440 [
3441 wx_cv_func_statfs=no
3442 ]
3443 )
3444)
3445
3446if test "$wx_cv_func_statfs" = "yes"; then
54ab82b3 3447 wx_cv_type_statvfs_t="struct statfs"
52e8b690
VZ
3448 AC_DEFINE(HAVE_STATFS)
3449else
9952adac
VZ
3450 AC_CACHE_CHECK(for statvfs, wx_cv_func_statvfs,
3451 AC_TRY_COMPILE(
3452 [
54ab82b3
VZ
3453 #include <stddef.h>
3454 #include <sys/statvfs.h>
9952adac
VZ
3455 ],
3456 [
54ab82b3 3457 statvfs("/", NULL);
9952adac 3458 ],
54ab82b3
VZ
3459 wx_cv_func_statvfs=yes,
3460 wx_cv_func_statvfs=no
9952adac 3461 )
af15babd 3462 )
9952adac
VZ
3463
3464 if test "$wx_cv_func_statvfs" = "yes"; then
54ab82b3
VZ
3465 dnl we also have to check whether we should use statvfs_t (works under
3466 dnl Solaris 8, doesn't work under Solaris 7) or "struct statvfs" (vice
3467 dnl versa) as the argument for statvfs in 64 bit off_t mode (in 32 bit
3468 dnl mode both work fine)
3469 dnl
3470 dnl for this check C++ compiler has to be used as passing incompatible
3471 dnl pointers is just a warning and not an error in C
3472 AC_LANG_SAVE
3473 AC_LANG_CPLUSPLUS
3474
3475 AC_CACHE_CHECK(for statvfs argument type, wx_cv_type_statvfs_t,
3476 AC_TRY_COMPILE(
3477 [
3478 #include <sys/statvfs.h>
3479 ],
3480 [
3481 long l;
3482 statvfs_t fs;
3483 statvfs("/", &fs);
3484 l = fs.f_bsize;
3485 l += fs.f_blocks;
3486 l += fs.f_bavail;
3487 ],
3488 wx_cv_type_statvfs_t=statvfs_t,
3489 [
3490 AC_TRY_COMPILE(
3491 [
3492 #include <sys/statvfs.h>
3493 ],
3494 [
3495 long l;
e107213f 3496 struct statvfs fs;
54ab82b3
VZ
3497 statvfs("/", &fs);
3498 l = fs.f_bsize;
3499 l += fs.f_blocks;
3500 l += fs.f_bavail;
3501 ],
3502 wx_cv_type_statvfs_t="struct statvfs",
3503 wx_cv_type_statvfs_t="unknown"
3504 )
3505 ]
3506 )
3507 )
3508
3509 AC_LANG_RESTORE
3510
3511 if test "$wx_cv_type_statvfs_t" != "unknown"; then
3512 AC_DEFINE(HAVE_STATVFS)
3513 fi
9952adac 3514 else
54ab82b3
VZ
3515 dnl set it for the test below
3516 wx_cv_type_statvfs_t="unknown"
9952adac 3517 fi
52e8b690
VZ
3518fi
3519
54ab82b3
VZ
3520if test "$wx_cv_type_statvfs_t" != "unknown"; then
3521 AC_DEFINE_UNQUOTED(WX_STATFS_T, $wx_cv_type_statvfs_t)
3522else
3523 AC_MSG_WARN([wxGetDiskSpace() function won't work without statfs()])
3524fi
3525
4f3c5f06
VZ
3526dnl check for fcntl() or at least flock() needed by Unix implementation of
3527dnl wxSingleInstanceChecker
3528if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
3529 AC_CHECK_FUNCS(fcntl flock, break)
3530
3531 if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then
3532 AC_MSG_WARN(wxSingleInstanceChecker not available)
3533 wxUSE_SNGLINST_CHECKER=no
3534 fi
3535fi
3536
270a909e
VZ
3537dnl check for timegm() used by datetime.cpp
3538AC_CHECK_FUNCS(timegm)
3539
4f3c5f06 3540dnl look for a function to modify the environment
8fd0d89b
VZ
3541AC_CHECK_FUNCS(putenv setenv, break)
3542
b12915c1
VZ
3543HAVE_SOME_SLEEP_FUNC=0
3544if test "$USE_BEOS" = 1; then
3545 dnl BeOS has its own (wonder where did they get it from) sleep() function
3546 dnl in unistd.h
3547 AC_DEFINE(HAVE_SLEEP)
3548 HAVE_SOME_SLEEP_FUNC=1
3549fi
3550
f11bdd03 3551if test "$USE_DARWIN" = 1; then
b2fee376 3552 dnl Mac OS X/Darwin has both nanosleep and usleep
b4085ce6
GD
3553 dnl but only usleep is defined in unistd.h
3554 AC_DEFINE(HAVE_USLEEP)
3555 HAVE_SOME_SLEEP_FUNC=1
3556fi
3557
b12915c1
VZ
3558if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
3559 dnl try nanosleep() in libc and libposix4, if this fails - usleep()
3560 POSIX4_LINK=
3561 AC_CHECK_FUNCS(nanosleep,
3562 AC_DEFINE(HAVE_NANOSLEEP),
3563 [
3564 AC_CHECK_LIB(posix4, nanosleep,
3565 [
3566 AC_DEFINE(HAVE_NANOSLEEP)
3d63bc3a 3567 POSIX4_LINK=" -lposix4"
b12915c1
VZ
3568 ],
3569 [
b4085ce6 3570 AC_CHECK_FUNCS(usleep,
4f3c5f06
VZ
3571 AC_DEFINE(HAVE_USLEEP),
3572 AC_MSG_WARN([wxSleep() function will not work])
3573 )
b12915c1
VZ
3574 ]
3575 )
3576 ]
3577 )
3578fi
9a98a854
VZ
3579
3580dnl check for uname (POSIX) and gethostname (BSD)
3581AC_CHECK_FUNCS(uname gethostname, break)
3582
6098c7f9
VZ
3583dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
3584dnl but not for C++ one - hence change language)
3585AC_LANG_SAVE
3586AC_LANG_CPLUSPLUS
3587
e90c1d2a
VZ
3588AC_CHECK_FUNCS(strtok_r)
3589
6098c7f9
VZ
3590AC_LANG_RESTORE
3591
c63c7106 3592dnl check for inet_addr and inet_aton (these may live either in libc, or in
c6712985 3593dnl libnsl or libresolv or libsocket)
c63c7106
VZ
3594INET_LINK=
3595AC_CHECK_FUNCS(inet_addr,
3596 AC_DEFINE(HAVE_INET_ADDR),
3597 [
3598 AC_CHECK_LIB(nsl, inet_addr,
270a909e 3599 INET_LINK="nsl",
c63c7106 3600 AC_CHECK_LIB(resolv, inet_addr,
c6712985
SN
3601 INET_LINK="resolv",
3602 AC_CHECK_LIB(socket, inet_addr,
3603 INET_LINK="socket"
3604 )
c63c7106
VZ
3605 )
3606 )
3607 ]
3608)
3609
3610AC_CHECK_FUNCS(inet_aton,
3611 AC_DEFINE(HAVE_INET_ATON),
3612 [
3613 dnl only check it in the same lib
3614 AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
3615 ])
3616
3617if test "x$INET_LINK" != "x"; then
3618 AC_DEFINE(HAVE_INET_ADDR)
3d63bc3a 3619 INET_LINK=" -l$INET_LINK"
c63c7106 3620fi
e96ac54e 3621
a0c79abb 3622fi
b089607b 3623dnl if !MSW
a0c79abb 3624
9a98a854
VZ
3625dnl ===========================================================================
3626dnl Now we have all the info we need - use it!
3627dnl ===========================================================================
3628
3629dnl flush the cache
3630AC_CACHE_SAVE
3631
3632dnl ---------------------------------------------------------------------------
a0b9e27f 3633dnl thread support for Unix (for Win32 see past the next matching "else")
9a98a854
VZ
3634dnl ---------------------------------------------------------------------------
3635
a0b9e27f 3636dnl under MSW (except mingw32) we always have thread support
009fead0 3637CPP_MT_FLAG=
b089607b 3638if test "$TOOLKIT" != "MSW"; then
a9b5e89f 3639
7274f1c7 3640 dnl the code below:
009fead0
VZ
3641 dnl
3642 dnl defines THREADS_LINK and THREADS_CFLAGS which are the options
3643 dnl necessary to build the MT programs for the linker and compiler
3644 dnl respectively
3645 dnl
3646 dnl sets wxUSE_THREADS=1 if thread support is activated
7274f1c7
RL
3647
3648 THREADS_LINK=
009fead0 3649 THREADS_CFLAGS=
7274f1c7
RL
3650
3651 if test "$wxUSE_THREADS" = "yes" ; then
d1188635 3652 if test "$USE_BEOS" = 1; then
156b2523 3653 AC_MSG_WARN([BeOS threads are not yet supported... disabled])
7274f1c7
RL
3654 wxUSE_THREADS="no"
3655 fi
77c85c2b 3656 fi
39c9d5ac 3657
7274f1c7
RL
3658 if test "$wxUSE_THREADS" = "yes" ; then
3659 dnl find if POSIX threads are available
009fead0
VZ
3660 dnl
3661 dnl the tests here are based on ACX_PTHREAD macro from autoconf macro
3662 dnl archive from http://ac-archive.sourceforge.net/
3663 dnl
3664 dnl thanks to Steven G. Johnson <stevenj@alum.mit.edu> and Alejandro
3665 dnl Forero Cuervo <bachue@bachue.com> for the original code
3666
3667 dnl TODO: cache the result
3668
3669 dnl define the list of the thread options to try in the loop below
3670 dnl with the convention that anything starting with '-' is a cpp flag
3671 dnl while anything else is a library (i.e. there is an implicit "-l")
3672 THREAD_OPTS="-pthread"
3673 case "${host}" in
3674 *-*-solaris2* | *-*-sunos4* )
3675 if test "x$GCC" = "xyes"; then
126be6b4
VZ
3676 dnl Solaris/gcc combination use this one for some reason
3677 THREAD_OPTS="-pthreads $THREAD_OPTS"
009fead0
VZ
3678 else
3679 THREAD_OPTS="-mt $THREAD_OPTS"
3680 fi
3681 ;;
3682 *-*-freebsd*)
3683 dnl look, in order, for the kernel threads, then Linux threads
3684 dnl and finally the userland threads
3685 THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r"
3686 ;;
17234b26 3687 *-*-darwin* | *-*-cygwin* )
4101db81 3688 dnl Darwin / Mac OS X just uses -lpthread tested below
17234b26 3689 dnl and so does Cygwin
4101db81
GD
3690 THREAD_OPTS=""
3691 ;;
3692 *-*-aix*)
009fead0
VZ
3693 dnl AIX calls the library libpthreads - thanks IBM!
3694 THREAD_OPTS="pthreads"
3695 ;;
4f5a7f74
VZ
3696 *-hp-hpux* )
3697 dnl HP-UX aCC only gives a warning, not an error about
3698 dnl -pthread but it doesn't work and we have to use -lpthread
3699 dnl there
3700 if test "x$GCC" != "xyes"; then
3701 THREAD_OPTS=""
3702 fi
89e3b3e4 3703 ;;
260d6849
VZ
3704
3705 *-*-irix* )
3706 dnl gcc under IRIX doesn't seem to like -pthread, but it
3707 dnl doesn't give an error for it neither, just a warning
3708 dnl message -- but this is still very annoying
3709 if test "x$GCC" = "xyes"; then
3710 THREAD_OPTS=""
3711 fi
3712 ;;
3713
3714 *-*-*UnixWare*)
3715 dnl flying by man pages here: Caldera online docs use this
3716 if test "x$GCC" != "xyes"; then
3717 THREAD_OPTS="-Ethread"
3718 fi
3719 ;;
009fead0 3720 esac
c596875e 3721
595e0e44
VZ
3722 dnl simply linking with libpthread should make the test below work but
3723 dnl it's far from certain that the threaded programs compiled without
3724 dnl any special switches actually work, so try it after all the others
02a1dfba 3725 THREAD_OPTS="$THREAD_OPTS pthread none"
595e0e44 3726
009fead0
VZ
3727 dnl now test for all possibilities
3728 THREADS_OK=no
3729 for flag in $THREAD_OPTS; do
3730 case $flag in
3731 none)
3732 AC_MSG_CHECKING([whether pthreads work without any flags])
3733 ;;
f6bcfd97 3734
009fead0
VZ
3735 -*)
3736 AC_MSG_CHECKING([whether pthreads work with $flag])
3737 THREADS_CFLAGS="$flag"
3738 ;;
9a98a854 3739
009fead0
VZ
3740 *)
3741 AC_MSG_CHECKING([for the pthreads library -l$flag])
3742 THREADS_LINK="-l$flag"
3743 ;;
3744 esac
3745
3746 save_LIBS="$LIBS"
3747 save_CFLAGS="$CFLAGS"
3748 LIBS="$THREADS_LINK $LIBS"
04727afd 3749 CFLAGS="$THREADS_CFLAGS $CFLAGS"
009fead0
VZ
3750
3751 AC_TRY_LINK([#include <pthread.h>],
3752 [pthread_create(0,0,0,0);],
3753 THREADS_OK=yes)
3754
3755 LIBS="$save_LIBS"
3756 CFLAGS="$save_CFLAGS"
3757
3758 AC_MSG_RESULT($THREADS_OK)
3759 if test "x$THREADS_OK" = "xyes"; then
3760 break;
3761 fi
3762
3763 THREADS_LINK=""
3764 THREADS_CFLAGS=""
3765 done
3766
3767 if test "x$THREADS_OK" != "xyes"; then
3768 wxUSE_THREADS=no
3769 AC_MSG_WARN([No thread support on this system... disabled])
3770 else
fe5a9cab
VZ
3771 dnl yes, these special compiler flags should be used with the
3772 dnl linker as well
db82f09e
VZ
3773 LDFLAGS="$THREADS_CFLAGS $LDFLAGS"
3774 LIBS="$THREADS_LINK $LIBS"
fe5a9cab 3775
009fead0
VZ
3776 AC_MSG_CHECKING([if more special flags are required for pthreads])
3777 flag=no
3778 case "${host}" in
2b5f62a0
VZ
3779 *-aix*)
3780 dnl again quoting from
3781 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
3782 dnl
3783 dnl When compiling and linking with -pthread, the library
3784 dnl search path should include -L/usr/lib/threads at the
3785 dnl beginning of the path.
3786 LDFLAGS="-L/usr/lib/threads $LDFLAGS"
3787 flag="-D_THREAD_SAFE"
3788 ;;
3789 *-freebsd*)
009fead0
VZ
3790 flag="-D_THREAD_SAFE"
3791 ;;
06313569
GD
3792 *-hp-hpux* )
3793 flag="-D_REENTRANT"
4f5a7f74
VZ
3794 if test "x$GCC" != "xyes"; then
3795 dnl see http://docs.hp.com/hpux/onlinedocs/2213/threads.htm
3796 flag="$flag -D_RWSTD_MULTI_THREAD"
3797 fi
06313569 3798 ;;
009fead0
VZ
3799 *solaris* | alpha*-osf*)
3800 flag="-D_REENTRANT"
3801 ;;
3802 esac
3803 AC_MSG_RESULT(${flag})
3804 if test "x$flag" != xno; then
04727afd 3805 THREADS_CFLAGS="$THREADS_CFLAGS $flag"
009fead0
VZ
3806 fi
3807
009fead0 3808 if test "x$THREADS_CFLAGS" != "x"; then
fe5a9cab 3809 dnl don't add these options to CPPFLAGS as cpp might not know them
009fead0
VZ
3810 CFLAGS="$CFLAGS $THREADS_CFLAGS"
3811 CXXFLAGS="$CXXFLAGS $THREADS_CFLAGS"
3812 fi
3813 fi
aea02638 3814 fi
9a98a854 3815
7274f1c7
RL
3816 dnl do other tests only if we are using threads
3817 if test "$wxUSE_THREADS" = "yes" ; then
3818 AC_CHECK_FUNCS(thr_setconcurrency)
3819
7274f1c7 3820 AC_CHECK_HEADERS(sched.h)
009fead0
VZ
3821 if test "$ac_cv_header_sched_h" = "yes"; then
3822 AC_CHECK_FUNC(sched_yield,
3823 AC_DEFINE(HAVE_SCHED_YIELD),
3824 [
3825 AC_CHECK_LIB(posix4,
3826 sched_yield,
3827 [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK=" -lposix4"],
3828 AC_MSG_WARN(wxThread::Yield will not work properly)
3829 )
3830 ]
3831 )
3832 fi
9a98a854 3833
7274f1c7
RL
3834 dnl to be able to set the thread priority, we need to have all of the
3835 dnl following functions:
3836 dnl 1. pthread_attr_getschedpolicy
3837 dnl 2. sched_get_priority_min and sched_get_priority_max
3838 dnl (this one can be in either libpthread or libposix4 (under Solaris))
3839 dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam
3840 HAVE_PRIOR_FUNCS=0
009fead0 3841 AC_CHECK_FUNC(pthread_attr_getschedpolicy,
ef33c576
VZ
3842 [AC_CHECK_FUNC(pthread_attr_setschedparam,
3843 [AC_CHECK_FUNC(sched_get_priority_max,
7274f1c7 3844 HAVE_PRIOR_FUNCS=1,
ef33c576 3845 [AC_CHECK_LIB([posix4], sched_get_priority_max,
7274f1c7
RL
3846 [
3847 HAVE_PRIOR_FUNCS=1
3848 POSIX4_LINK=" -lposix4"
3849 ],
ef33c576
VZ
3850 )]
3851 )]
3852 )]
7274f1c7 3853 )
f6bcfd97 3854
7274f1c7
RL
3855 if test "$HAVE_PRIOR_FUNCS" = 1; then
3856 AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
3857 else
3858 AC_MSG_WARN(Setting thread priority will not work)
3859 fi
9a98a854 3860
009fead0
VZ
3861 AC_CHECK_FUNC(pthread_cancel,
3862 AC_DEFINE(HAVE_PTHREAD_CANCEL),
3863 AC_MSG_WARN([wxThread::Kill() will not work properly]))
9a98a854 3864
7274f1c7
RL
3865 AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push,
3866 [
3867 AC_TRY_COMPILE([#include <pthread.h>],
3868 [
3869 pthread_cleanup_push(NULL, NULL);
3870 pthread_cleanup_pop(0);
3871 ], [
3872 wx_cv_func_pthread_cleanup_push=yes
3873 ], [
3874 wx_cv_func_pthread_cleanup_push=no
3875 ])
3876 ])
d9b9876f 3877
7274f1c7
RL
3878 if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then
3879 AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS)
3880 fi
ab252f7b 3881
7274f1c7
RL
3882 dnl mutexattr_t initialization is done in quite different ways on different
3883 dnl platforms, so check for a few things:
3884 dnl
3885 dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
3886 dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
3887 dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
3888 dnl defined, we do it by directly assigned
3889 dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
3890
7274f1c7
RL
3891 AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
3892 [
d9b9876f
VZ
3893 AC_TRY_COMPILE([#include <pthread.h>],
3894 [
7274f1c7
RL
3895 pthread_mutexattr_t attr;
3896 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
d9b9876f 3897 ], [
7274f1c7 3898 wx_cv_type_pthread_mutexattr_t=yes
d9b9876f 3899 ], [
7274f1c7 3900 wx_cv_type_pthread_mutexattr_t=no
d9b9876f
VZ
3901 ]
3902 )
7274f1c7 3903 ])
d9b9876f 3904
7274f1c7
RL
3905 if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
3906 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
3907 else
3908 dnl don't despair, there may be another way to do it
3909 AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
3910 wx_cv_type_pthread_rec_mutex_init,
3911 [
3912 AC_TRY_COMPILE([#include <pthread.h>],
3913 [
3914 pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
3915 ], [
3916 wx_cv_type_pthread_rec_mutex_init=yes
3917 ], [
3918 wx_cv_type_pthread_rec_mutex_init=no
3919 ]
3920 )
3921 ])
3922 if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then
3923 AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
3924 else
3925 dnl this may break code working elsewhere, so at least warn about it
3926 AC_MSG_WARN([wxMutex won't be recursive on this platform])
3927 fi
3928 fi
7274f1c7 3929 fi
9a98a854 3930
b089607b 3931dnl from if !MSW
a0b9e27f
MB
3932else
3933 if test "$wxUSE_THREADS" = "yes" ; then
3934 case "${host}" in
3935 *-*-mingw32* )
ca8e52b3
VZ
3936 dnl check if the compiler accepts -mthreads
3937 AC_CACHE_CHECK([if compiler supports -mthreads],
3938 wx_cv_cflags_mthread,
3939 [
3940 CFLAGS_OLD="$CFLAGS"
3941 CFLAGS="$CFLAGS -mthreads"
3942 AC_TRY_COMPILE([], [],
3943 wx_cv_cflags_mthread=yes,
3944 wx_cv_cflags_mthread=no
3945 )
3946 ]
3947 )
3948
3949 if test "$wx_cv_cflags_mthread" = "yes"; then
3950 dnl it does, use it
3951 CXXFLAGS="$CXXFLAGS -mthreads"
3952 TOOLCHAIN_DEFS="$TOOLCHAIN_DEFS -mthreads"
3953 LDFLAGS="$LDFLAGS -mthreads"
3954 else
3955 dnl it doesn't
3956 CFLAGS="$CFLAGS_OLD"
3957 fi
a0b9e27f
MB
3958 ;;
3959 esac
3960 fi
a9b5e89f
VZ
3961fi
3962
3963if test "$wxUSE_THREADS" = "yes"; then
3964 AC_DEFINE(wxUSE_THREADS)
3965
a9b5e89f 3966 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
d64af447 3967else
b12915c1 3968 dnl on some systems, _REENTRANT should be defined if we want to use any _r()
d64af447
VZ
3969 dnl functions - add tests for other functions here as well
3970 if test "$ac_cv_func_strtok_r" = "yes"; then
ab9b9eab
VZ
3971 AC_MSG_CHECKING(if -D_REENTRANT is needed)
3972 if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
3a922bb4 3973 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D_REENTRANT"
ab9b9eab
VZ
3974 AC_MSG_RESULT(yes)
3975 else
3976 AC_MSG_RESULT(no)
ee31c269 3977 fi
d64af447 3978 fi
a9b5e89f
VZ
3979fi
3980
6f72b082
OK
3981if test "$WXGTK20" = 1 ; then
3982 AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
13111b2a
VZ
3983 WXGTK12=1
3984fi
3985
9a98a854
VZ
3986if test "$WXGTK12" = 1 ; then
3987 AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
3988fi
3989
f6bcfd97
BP
3990if test "$WXGTK127" = 1 ; then
3991 AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
3992fi
3993
9a98a854 3994WXDEBUG=
9a98a854
VZ
3995
3996if test "$wxUSE_DEBUG_INFO" = "yes" ; then
3997 WXDEBUG="-g"
3998 wxUSE_OPTIMISE=no
3999fi
4000
5586805b
RR
4001if test "$wxUSE_DEBUG_GDB" = "yes" ; then
4002 wxUSE_DEBUG_INFO=yes
4003 WXDEBUG="-ggdb"
4004fi
4005
9a98a854 4006if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
77c85c2b
RR
4007 AC_DEFINE(WXDEBUG)
4008 WXDEBUG_DEFINE="-D__WXDEBUG__"
9a98a854 4009else
04338f96
RR
4010 if test "$wxUSE_GTK" = 1 ; then
4011 WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
4012 fi
9a98a854
VZ
4013fi
4014
4015if test "$wxUSE_MEM_TRACING" = "yes" ; then
77c85c2b
RR
4016 AC_DEFINE(wxUSE_MEMORY_TRACING)
4017 AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
47c13eb7 4018 AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
77c85c2b 4019 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
9a98a854
VZ
4020fi
4021
4022if test "$wxUSE_DMALLOC" = "yes" ; then
3d63bc3a 4023 DMALLOC_LIBS="-ldmalloc"
9a98a854
VZ
4024fi
4025
4026PROFILE=
4027if test "$wxUSE_PROFILE" = "yes" ; then
3d63bc3a 4028 PROFILE=" -pg"
9a98a854
VZ
4029fi
4030
009fead0
VZ
4031CODE_GEN_FLAGS=
4032CODE_GEN_FLAGS_CXX=
88e30f2b 4033if test "$GCC" = "yes" ; then
f7bdcdd7 4034 if test "$wxUSE_NO_RTTI" = "yes" ; then
3a922bb4 4035 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-rtti"
f7bdcdd7
RR
4036 fi
4037 if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
3a922bb4 4038 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-exceptions"
f7bdcdd7 4039 fi
5586805b 4040 if test "$wxUSE_PERMISSIVE" = "yes" ; then
d08b457b 4041 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
5586805b 4042 fi
3a922bb4
RL
4043 if test "$USE_WIN32" = 1 ; then
4044 # I'm not even really sure what this was ever added to solve,
4045 # but someone added it for mingw native builds, so I guess
4046 # they had a reason, right??
4047 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fno-pcc-struct-return"
5586805b 4048 fi
1d1b75ac
VZ
4049
4050 dnl Ian Brown <ian.brown@printsoft.de> reports that versions of gcc before
4051 dnl 3.0 overflow the table of contents on rs6000 as they create an entry
4052 dnl for each subroutine by default -- using the switch below only creates
4053 dnl one entry per file instead at the price of minor performance penalty
4054 dnl
2b5f62a0
VZ
4055 dnl As of wx2.4 a bug in the hppa gcc compiler causes a similar problem
4056 dnl without -ffunction-sections. No idea how long we'll need to maintain
4057 dnl this, or even the extent of gcc/wx version combinations affected, but
4058 dnl also as above, this 'fix' does not come without side effects.
4059 dnl
1d1b75ac
VZ
4060 dnl TODO: test for the gcc version here (how?)
4061 case "${host}" in
4062 powerpc*-*-aix* )
4063 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -mminimal-toc"
4064 ;;
2b5f62a0
VZ
4065 *-hppa* )
4066 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -ffunction-sections"
4067 ;;
1d1b75ac 4068 esac
c596875e
RD
4069fi
4070
af7b5345 4071OPTIMISE=
9a98a854 4072if test "$wxUSE_OPTIMISE" = "no" ; then
af7b5345
VZ
4073 if test "$GCC" = yes ; then
4074 dnl use -O0 because compiling with it is faster than compiling with no
4075 dnl optimization options at all (at least with g++ 3.2)
4076 OPTIMISE="-O0"
4077 fi
9a98a854 4078else
77c85c2b 4079 if test "$GCC" = yes ; then
04338f96 4080 OPTIMISE="-O2"
af7b5345
VZ
4081
4082 dnl VZ: does anybody know what does this do??
77c85c2b
RR
4083 case "${host}" in
4084 i586-*-*|i686-*-* )
4085 OPTIMISE="${OPTIMISE} "
4086 ;;
4087 esac
4088 else
4089 OPTIMISE="-O"
4090 fi
9a98a854
VZ
4091fi
4092
677eb52d
VZ
4093dnl ---------------------------------------------------------------------------
4094dnl compatibility level
4095dnl ---------------------------------------------------------------------------
4096
54276ccf
VZ
4097if test "$WXWIN_COMPATIBILITY_2" = "yes"; then
4098 AC_DEFINE(WXWIN_COMPATIBILITY_2)
4099
4100 WXWIN_COMPATIBILITY_2_2="yes"
4101fi
4102
65d8ef1e 4103if test "x$WXWIN_COMPATIBILITY_2_2" = "xyes"; then
54276ccf 4104 AC_DEFINE(WXWIN_COMPATIBILITY_2_2)
677eb52d
VZ
4105
4106 WXWIN_COMPATIBILITY_2_4="yes"
54276ccf
VZ
4107fi
4108
65d8ef1e
VS
4109if test "x$WXWIN_COMPATIBILITY_2_4" != "xno"; then
4110 AC_DEFINE(WXWIN_COMPATIBILITY_2_4)
4111fi
4112
9a98a854
VZ
4113dnl ---------------------------------------------------------------------------
4114dnl the library may be built without GUI classes at all
4115dnl ---------------------------------------------------------------------------
4116
4117if test "$wxUSE_GUI" = "yes"; then
4118 AC_DEFINE(wxUSE_GUI)
4119
4120 dnl the things we always pull in the GUI version of the library:
4121 dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
4122 dnl library really can't be built without those)
4123 dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
4124 dnl almost any program and the first 2 are needed to show a message box
4125 dnl which want to be always able to do)
4126 dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
4127 dnl to compile without them (if the app doesn't do any drawing, it doesn't
4128 dnl need the dcs, pens, brushes, ...), this just can't be done now
4129 dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
4130 dnl 5. misc stuff: timers, settings, message box
9a98a854
VZ
4131else
4132 AC_DEFINE(wxUSE_NOGUI)
4133fi
4134
4135dnl ---------------------------------------------------------------------------
4136dnl Unix/Windows
4137dnl ---------------------------------------------------------------------------
4138
4139if test "$wxUSE_UNIX" = "yes"; then
4140 AC_DEFINE(wxUSE_UNIX)
9a98a854
VZ
4141fi
4142
4143dnl ---------------------------------------------------------------------------
4144dnl Register non-GUI class options for makefiles and setup.h
4145dnl ---------------------------------------------------------------------------
4146
4147if test "$wxUSE_APPLE_IEEE" = "yes"; then
4148 AC_DEFINE(wxUSE_APPLE_IEEE)
9a98a854
VZ
4149fi
4150
1e6feb95
VZ
4151if test "$wxUSE_TIMER" = "yes"; then
4152 AC_DEFINE(wxUSE_TIMER)
4153fi
4154
2749089a
KB
4155if test "$wxUSE_WAVE" = "yes"; then
4156 AC_DEFINE(wxUSE_WAVE)
4157fi
4158
1e6feb95
VZ
4159if test "$wxUSE_CMDLINE_PARSER" = "yes"; then
4160 AC_DEFINE(wxUSE_CMDLINE_PARSER)
4161fi
4162
4163if test "$wxUSE_STOPWATCH" = "yes"; then
4164 AC_DEFINE(wxUSE_STOPWATCH)
4165fi
4166
4167if test "$wxUSE_DATETIME" = "yes"; then
4168 AC_DEFINE(wxUSE_DATETIME)
4169fi
4170
9a98a854
VZ
4171if test "$wxUSE_FILE" = "yes"; then
4172 AC_DEFINE(wxUSE_FILE)
9a98a854
VZ
4173fi
4174
1e6feb95
VZ
4175if test "$wxUSE_FFILE" = "yes"; then
4176 AC_DEFINE(wxUSE_FFILE)
4177fi
4178
24528b0c
VS
4179if test "$wxUSE_FILESYSTEM" = "yes"; then
4180 AC_DEFINE(wxUSE_FILESYSTEM)
4181fi
4182
e3e717ec
VZ
4183if test "$wxUSE_FS_INET" = "yes"; then
4184 AC_DEFINE(wxUSE_FS_INET)
4185fi
4186
4187if test "$wxUSE_FS_ZIP" = "yes"; then
4188 AC_DEFINE(wxUSE_FS_ZIP)
4189fi
4190
d78b3d64
VS
4191if test "$wxUSE_ZIPSTREAM" = "yes"; then
4192 AC_DEFINE(wxUSE_ZIPSTREAM)
4193fi
4194
eb4efbdc
VZ
4195if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
4196 AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
4197fi
4198
4f3c5f06
VZ
4199if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
4200 AC_DEFINE(wxUSE_SNGLINST_CHECKER)
4201fi
4202
d78b3d64
VS
4203if test "$wxUSE_BUSYINFO" = "yes"; then
4204 AC_DEFINE(wxUSE_BUSYINFO)
4205fi
4206
fd15d8f1
RR
4207if test "$wxUSE_STD_IOSTREAM" = "yes"; then
4208 AC_DEFINE(wxUSE_STD_IOSTREAM)
4209fi
4210
a3a584a7
VZ
4211if test "$wxUSE_TEXTBUFFER" = "yes"; then
4212 AC_DEFINE(wxUSE_TEXTBUFFER)
4213fi
4214
9a98a854 4215if test "$wxUSE_TEXTFILE" = "yes"; then
a3a584a7 4216 if test "$wxUSE_FILE" != "yes" -o "$wxUSE_TEXTBUFFER" != "yes" ; then
156b2523 4217 AC_MSG_WARN(wxTextFile requires wxFile and wxTextBuffer... disabled)
9a98a854
VZ
4218 else
4219 AC_DEFINE(wxUSE_TEXTFILE)
9a98a854
VZ
4220 fi
4221fi
4222
4223if test "$wxUSE_CONFIG" = "yes" ; then
4224 if test "$wxUSE_TEXTFILE" != "yes"; then
156b2523 4225 AC_MSG_WARN(wxConfig requires wxTextFile... disabled)
9a98a854
VZ
4226 else
4227 AC_DEFINE(wxUSE_CONFIG)
9a98a854
VZ
4228 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
4229 fi
4230fi
4231
4232if test "$wxUSE_INTL" = "yes" ; then
4233 if test "$wxUSE_FILE" != "yes"; then
156b2523 4234 AC_MSG_WARN(I18n code requires wxFile... disabled)
9a98a854
VZ
4235 else
4236 AC_DEFINE(wxUSE_INTL)
9a98a854 4237 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
f6bcfd97 4238 GUIDIST="$GUIDIST INTL_DIST"
9a98a854
VZ
4239 fi
4240fi
4241
4242if test "$wxUSE_LOG" = "yes"; then
4243 AC_DEFINE(wxUSE_LOG)
d73be714
VZ
4244
4245 if test "$wxUSE_LOGGUI" = "yes"; then
4246 AC_DEFINE(wxUSE_LOGGUI)
4247 fi
4248
4249 if test "$wxUSE_LOGWINDOW" = "yes"; then
4250 AC_DEFINE(wxUSE_LOGWINDOW)
4251 fi
69d27ff7
MB
4252
4253 if test "$wxUSE_LOGDIALOG" = "yes"; then
4254 AC_DEFINE(wxUSE_LOG_DIALOG)
4255 fi
9a98a854
VZ
4256fi
4257
4258if test "$wxUSE_LONGLONG" = "yes"; then
4259 AC_DEFINE(wxUSE_LONGLONG)
9a98a854
VZ
4260fi
4261
e8f65ba6
RR
4262if test "$wxUSE_GEOMETRY" = "yes"; then
4263 AC_DEFINE(wxUSE_GEOMETRY)
4264fi
4265
1c8515f9
KB
4266if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
4267 AC_DEFINE(wxUSE_DIALUP_MANAGER)
70f7a477 4268 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
1c8515f9
KB
4269fi
4270
9a98a854
VZ
4271if test "$wxUSE_STREAMS" = "yes" ; then
4272 AC_DEFINE(wxUSE_STREAMS)
9a98a854
VZ
4273fi
4274
52e8b690 4275dnl ---------------------------------------------------------------------------
afc31813
VZ
4276dnl time/date functions
4277dnl ------------------------------------------------------------------------
4278
1e6feb95 4279if test "$wxUSE_DATETIME" = "yes"; then
83307f33
VZ
4280 dnl check for strptime
4281 AC_CHECK_FUNCS(strptime)
4282
360d6699 4283 dnl check for timezone variable
62cc730f 4284 dnl doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead
360d6699
VZ
4285 AC_CACHE_CHECK(for timezone variable in <time.h>,
4286 wx_cv_var_timezone,
4287 [
4288 AC_TRY_COMPILE(
4289 [
4290 #include <time.h>
4291 ],
4292 [
4293 int tz;
4f11a343 4294 tz = timezone;
360d6699
VZ
4295 ],
4296 [
4f11a343 4297 wx_cv_var_timezone=timezone
360d6699
VZ
4298 ],
4299 [
4300 AC_TRY_COMPILE(
4301 [
4302 #include <time.h>
4303 ],
4304 [
4305 int tz;
4306 tz = _timezone;
4307 ],
4308 [
4309 wx_cv_var_timezone=_timezone
4310 ],
5357c8e8
VZ
4311 [
4312 AC_TRY_COMPILE(
4313 [
4314 #include <time.h>
4315 ],
4316 [
4317 int tz;
4f11a343 4318 tz = __timezone;
5357c8e8
VZ
4319 ],
4320 [
4f11a343 4321 wx_cv_var_timezone=__timezone
5357c8e8 4322 ],
f9bc1684
VS
4323 [
4324 if test "$USE_DOS" = 0 ; then
62cc730f 4325 AC_MSG_WARN(no timezone variable, will use tm_gmtoff instead)
f9bc1684
VS
4326 fi
4327 ]
5357c8e8
VZ
4328 )
4329 ]
360d6699
VZ
4330 )
4331 ]
4332 )
4333 ]
4334 )
4335
4336 dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
f9bc1684
VS
4337 if test "x$wx_cv_var_timezone" != x ; then
4338 AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
4339 fi
360d6699 4340
3fcdd07b
VZ
4341 dnl check for localtime (it's POSIX, but the check can do no harm...)
4342 AC_CHECK_FUNCS(localtime)
afc31813 4343
0470b1e6
VZ
4344 if test "$ac_cv_func_localtime" = "yes"; then
4345 AC_CACHE_CHECK(for tm_gmtoff in struct tm,
4346 wx_cv_struct_tm_has_gmtoff,
4347 [
4348 AC_TRY_COMPILE(
4349 [
4350 #include <time.h>
4351 ],
4352 [
4353 struct tm tm;
4354 tm.tm_gmtoff++;
4355 ],
4356 [
f03a98d8 4357 wx_cv_struct_tm_has_gmtoff=yes
0470b1e6
VZ
4358 ],
4359 wx_cv_struct_tm_has_gmtoff=no
4360 )
4361 ])
3fcdd07b
VZ
4362 fi
4363
6232543b
VS
4364 if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then
4365 AC_DEFINE(WX_GMTOFF_IN_TM)
4366 fi
4367
3fcdd07b
VZ
4368 dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
4369 dnl function to be used for high resolution timers
4370 AC_CHECK_FUNCS(gettimeofday ftime, break)
4371
4372 if test "$ac_cv_func_gettimeofday" = "yes"; then
afc31813
VZ
4373 AC_CACHE_CHECK([whether gettimeofday takes two arguments],
4374 wx_cv_func_gettimeofday_has_2_args,
4375 [
4376 dnl on some _really_ old systems it takes only 1 argument
4377 AC_LANG_SAVE
4378 AC_LANG_CPLUSPLUS
4379
4380 AC_TRY_COMPILE(
4381 [
4382 #include <sys/time.h>
4383 #include <unistd.h>
4384 ],
4385 [
4386 struct timeval tv;
776862b4 4387 gettimeofday(&tv, NULL);
afc31813
VZ
4388 ],
4389 wx_cv_func_gettimeofday_has_2_args=yes,
4390 AC_TRY_COMPILE(
4391 [
4392 #include <sys/time.h>
4393 #include <unistd.h>
4394 ],
4395 [
4396 struct timeval tv;
4397 gettimeofday(&tv);
4398 ],
4399 wx_cv_func_gettimeofday_has_2_args=no,
776862b4
VZ
4400 [
4401 AC_MSG_WARN([failed to determine number of gettimeofday() arguments])
4402 wx_cv_func_gettimeofday_has_2_args=unknown
4403 ]
afc31813
VZ
4404 )
4405 )
4406 AC_LANG_RESTORE
4407 ])
4408
4409 if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
4410 AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
4411 fi
4412 fi
4413
afc31813
VZ
4414 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
4415fi
4416
9a98a854
VZ
4417dnl ------------------------------------------------------------------------
4418dnl wxSocket
4419dnl ------------------------------------------------------------------------
4420
3bce6687 4421dnl VZ: the GUI hooks wxSocket needs are not implemented yet in wxMGL
0feee163 4422if test "$wxUSE_SOCKETS" = "yes"; then
6c657b52
VS
4423 if test "$wxUSE_MGL" = "1"; then
4424 AC_MSG_WARN([wxSocket not yet supported under MGL... disabled])
4425 wxUSE_SOCKETS="no"
4426 fi
0feee163 4427fi
b089607b 4428
0feee163
VZ
4429if test "$wxUSE_SOCKETS" = "yes"; then
4430 dnl under MSW we always have sockets
4431 if test "$TOOLKIT" != "MSW"; then
590b1a4d 4432 dnl under Solaris and OS/2, socket functions live in -lsocket
3a922bb4
RL
4433 AC_CHECK_FUNC(socket,,
4434 AC_CHECK_LIB(socket, socket,
590b1a4d 4435 if test "$INET_LINK" != " -lsocket"; then
e5ee4c90
SN
4436 INET_LINK="$INET_LINK -lsocket"
4437 fi,
3a922bb4
RL
4438 [
4439 AC_MSG_WARN([socket library not found - sockets will be disabled])
4440 wxUSE_SOCKETS=no
4441 ]
4442 )
afc31813 4443 )
3a922bb4 4444 fi
0feee163 4445fi
afc31813 4446
0feee163 4447if test "$wxUSE_SOCKETS" = "yes" ; then
3a922bb4
RL
4448 dnl this test may be appropriate if building under cygwin
4449 dnl right now I'm assuming it also uses the winsock stuff
4450 dnl like mingw does.. -- RL
0feee163 4451 if test "$TOOLKIT" != "MSW"; then
3a922bb4
RL
4452 dnl determine the type of third argument for getsockname
4453 AC_CACHE_CHECK([what is the type of the third argument of getsockname],
4454 wx_cv_type_getsockname3,
4455 [
4456 AC_LANG_SAVE
4457 AC_LANG_CPLUSPLUS
51a9faba 4458
51a9faba
VZ
4459 AC_TRY_COMPILE(
4460 [
4370c5b2 4461 #include <sys/types.h>
51a9faba
VZ
4462 #include <sys/socket.h>
4463 ],
4464 [
3a922bb4 4465 socklen_t len;
51a9faba
VZ
4466 getsockname(0, 0, &len);
4467 ],
3a922bb4 4468 wx_cv_type_getsockname3=socklen_t,
51a9faba
VZ
4469 AC_TRY_COMPILE(
4470 [
4370c5b2 4471 #include <sys/types.h>
51a9faba
VZ
4472 #include <sys/socket.h>
4473 ],
4474 [
3a922bb4 4475 size_t len;
51a9faba
VZ
4476 getsockname(0, 0, &len);
4477 ],
3a922bb4
RL
4478 wx_cv_type_getsockname3=size_t,
4479 AC_TRY_COMPILE(
4480 [
4481 #include <sys/types.h>
4482 #include <sys/socket.h>
4483 ],
4484 [
4485 int len;
4486 getsockname(0, 0, &len);
4487 ],
4488 wx_cv_type_getsockname3=int,
4489 wx_cv_type_getsockname3=unknown
4490 )
51a9faba
VZ
4491 )
4492 )
c63c7106 4493
3a922bb4
RL
4494 AC_LANG_RESTORE
4495 ])
51a9faba 4496
3a922bb4
RL
4497 if test "$wx_cv_type_getsockname3" = "unknown"; then
4498 wxUSE_SOCKETS=no
4499 AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
4500 else
4501 AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
4502 fi
51a9faba
VZ
4503 fi
4504fi
c521c494 4505
51a9faba 4506if test "$wxUSE_SOCKETS" = "yes" ; then
afc31813 4507 AC_DEFINE(wxUSE_SOCKETS)
70f7a477 4508 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
9a98a854
VZ
4509fi
4510
4511dnl ---------------------------------------------------------------------------
4512dnl Joystick support
4513dnl ---------------------------------------------------------------------------
4514
dc3d889d
VZ
4515if test "$wxUSE_GUI" = "yes"; then
4516
ac0c4cc3 4517 if test "$TOOLKIT" = "MAC" -o "$TOOLKIT" = "COCOA"; then
156b2523
GD
4518 AC_MSG_WARN([Joystick not yet supported under Mac OS X... disabled])
4519 wxUSE_JOYSTICK=no
4520 fi
4521 if test "$TOOLKIT" = "MOTIF"; then
4522 AC_MSG_WARN([Joystick not yet supported under Motif... disabled])
4523 wxUSE_JOYSTICK=no
4524 fi
7f5c07ab
JS
4525 if test "$TOOLKIT" = "X11"; then
4526 AC_MSG_WARN([Joystick not yet supported under X11... disabled])
4527 wxUSE_JOYSTICK=no
4528 fi
156b2523 4529
3a922bb4
RL
4530 dnl under MSW we always have joystick support
4531 if test "$TOOLKIT" != "MSW"; then
4532 if test "$wxUSE_JOYSTICK" = "yes"; then
4533 dnl joystick support is only for Linux 2.1.x or greater
4534 AC_CHECK_HEADERS(linux/joystick.h)
4535 if test "$ac_cv_header_linux_joystick_h" != "yes"; then
4536 wxUSE_JOYSTICK=no
156b2523 4537 AC_MSG_WARN(Joystick not supported by this system... disabled)
3a922bb4
RL
4538 fi
4539 fi
4540 fi
9a98a854 4541
3a922bb4
RL
4542 if test "$wxUSE_JOYSTICK" = "yes"; then
4543 AC_DEFINE(wxUSE_JOYSTICK)
4544 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
4545 fi
dc3d889d 4546fi
dc3d889d 4547
9a98a854
VZ
4548dnl ------------------------------------------------------------------------
4549dnl DLL support
4550dnl ------------------------------------------------------------------------
4551
b089607b
VZ
4552dnl under MSW we always have LoadLibrary/GetProcAddress
4553if test "$TOOLKIT" != "MSW"; then
4554
3a922bb4
RL
4555 HAVE_DL_FUNCS=0
4556 HAVE_SHL_FUNCS=0
0b9ab0bd 4557 if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then
3a922bb4
RL
4558 if test "$USE_DARWIN" = 1; then
4559 dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X
37667812 4560 HAVE_DL_FUNCS=1
3a922bb4
RL
4561 else
4562 dnl the test is a bit complicated because we check for dlopen() both with
4563 dnl and without -ldl and we also try to find shl_load() if there is no
4564 dnl dlopen() on this system
4565 AC_CHECK_FUNCS(dlopen,
4566 [
4567 AC_DEFINE(HAVE_DLOPEN)
4568 HAVE_DL_FUNCS=1
4569 ],
4570 [
4571 AC_CHECK_LIB(dl, dlopen,
4572 [
4573 AC_DEFINE(HAVE_DLOPEN)
4574 HAVE_DL_FUNCS=1
3d63bc3a 4575 DL_LINK=" -ldl$DL_LINK"
3a922bb4
RL
4576 ],
4577 [
4578 AC_CHECK_FUNCS(shl_load,
4579 [
4580 AC_DEFINE(HAVE_SHL_LOAD)
4581 HAVE_SHL_FUNCS=1
4582 ],
4583 [
4584 AC_CHECK_LIB(shl_load, dld,
4585 [
4586 HAVE_SHL_FUNCS=1
3d63bc3a 4587 DL_LINK=" -ldld$DL_LINK"
3a922bb4
RL
4588 ])
4589 ])
4590 ])
4591 ])
9a98a854 4592
3a922bb4
RL
4593 dnl check also for dlerror()
4594 if test "$HAVE_DL_FUNCS" = 1; then
4595 AC_CHECK_FUNCS(dlerror,
4596 AC_DEFINE(HAVE_DLERROR),
4597 AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)))
4598 fi
4599 fi
f6bcfd97 4600
3a922bb4
RL
4601 if test "$HAVE_DL_FUNCS" = 0; then
4602 if test "$HAVE_SHL_FUNCS" = 0; then
4603 if test "$USE_UNIX" = 1; then
4604 AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
0b9ab0bd 4605 wxUSE_DYNAMIC_LOADER=no
3a922bb4
RL
4606 wxUSE_DYNLIB_CLASS=no
4607 else
4608 AC_MSG_WARN([Assuming wxLibrary class works on this platform])
4609 fi
4610 fi
e90c1d2a 4611 fi
9a98a854
VZ
4612 fi
4613fi
4614
0b9ab0bd
RL
4615if test "$wxUSE_DYNAMIC_LOADER" = "yes" ; then
4616 AC_DEFINE(wxUSE_DYNAMIC_LOADER)
4617elif test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
b12915c1 4618 AC_DEFINE(wxUSE_DYNLIB_CLASS)
9a98a854
VZ
4619fi
4620
4621dnl ---------------------------------------------------------------------------
ced859c3 4622dnl String stuff
9a98a854
VZ
4623dnl ---------------------------------------------------------------------------
4624
1e6feb95
VZ
4625if test "$wxUSE_FONTMAP" = "yes" ; then
4626 AC_DEFINE(wxUSE_FONTMAP)
4627fi
4628
9a98a854
VZ
4629if test "$wxUSE_UNICODE" = "yes" ; then
4630 AC_DEFINE(wxUSE_UNICODE)
3bd8fb5f 4631
bbc3925a
VS
4632 if test "$wxUSE_MSW" != 1; then
4633 wxUSE_UNICODE_MSLU=no
4634 fi
a72a4bfa
VS
4635
4636 if test "$wxUSE_MSW" = 1 -a "$wxUSE_UNICODE_MSLU" = "yes"; then
4637 AC_CHECK_LIB(unicows,main,
4638 [
4639 AC_DEFINE(wxUSE_UNICODE_MSLU)
4640 ],
4641 [
4642 AC_MSG_WARN([Compiler doesn't support MSLU (libunicows.a), disabled.
4643 Applications will only run on Windows NT/2000/XP!])
4644 wxUSE_UNICODE_MSLU=no
4645 ])
4646 fi
9a98a854
VZ
4647fi
4648
ced859c3
VZ
4649if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
4650 AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
4651fi
4652
b12915c1 4653
9a98a854
VZ
4654dnl ----------------------------------------------------------------
4655dnl iODBC support
4656dnl ----------------------------------------------------------------
4657
4658IODBC_C_SRC=""
4659if test "$wxUSE_ODBC" = "yes" ; then
a0c79abb
VZ
4660 AC_DEFINE(wxUSE_ODBC)
4661 WXODBCFLAG="-D_IODBC_"
4662 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
9a98a854
VZ
4663fi
4664
4665dnl ----------------------------------------------------------------
4666dnl Register PostScript options for makefiles and setup.h
4667dnl ----------------------------------------------------------------
4668
4669if test "$wxUSE_POSTSCRIPT" = "yes" ; then
4670 AC_DEFINE(wxUSE_POSTSCRIPT)
9a98a854
VZ
4671fi
4672
4673AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
4674
4675AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
4676
4677dnl ---------------------------------------------------------------------------
4678dnl big GUI components: MDI, doc/view, printing, help, ...
4679dnl ---------------------------------------------------------------------------
4680
4681if test "$wxUSE_CONSTRAINTS" = "yes"; then
ce4169a4
RR
4682 AC_DEFINE(wxUSE_CONSTRAINTS)
4683 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
9a98a854
VZ
4684fi
4685
4686if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
fc26f4ab 4687
e26c13cf 4688dnl There is now experimental generic MDI support
b9f933ab
JS
4689dnl if test "$wxUSE_UNIVERSAL" = "yes"; then
4690dnl AC_MSG_WARN(MDI not yet supported for wxUniversal... disabled)
4691dnl wxUSE_MDI_ARCHITECTURE=no
4692dnl fi
4693
4694 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4695 AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
4696 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
4697 fi
9a98a854
VZ
4698fi
4699
4700if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
4701 AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
4702 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
4703 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4704 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
4705 fi
9a98a854
VZ
4706fi
4707
4708if test "$wxUSE_HELP" = "yes"; then
ce4169a4
RR
4709 AC_DEFINE(wxUSE_HELP)
4710 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
3379ed37 4711
77e13408 4712 if test "$wxUSE_MSW" = 1; then
031d8228 4713 if test "$wxUSE_MS_HTML_HELP" = "yes"; then
3b7bc64a 4714 AC_DEFINE(wxUSE_MS_HTML_HELP)
29fd3c0c 4715 fi
3379ed37 4716 fi
031d8228
VS
4717
4718 if test "$wxUSE_WXHTML_HELP" = "yes"; then
4719 if test "$wxUSE_HTML" = "yes"; then
4720 AC_DEFINE(wxUSE_WXHTML_HELP)
4721 else
4722 AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled)
4723 wxUSE_WXHTML_HELP=no
4724 fi
4725 fi
9a98a854
VZ
4726fi
4727
4728if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
4729 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4730 AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
4731 else
4732 AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
4733 fi
4734 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
9a98a854
VZ
4735fi
4736
2fc9385a
JS
4737dnl if test "$wxUSE_PROLOGIO" = "yes" ; then
4738dnl AC_DEFINE(wxUSE_PROLOGIO)
4739dnl ALL_OBJECTS="$ALL_OBJECTS parser.o"
4740dnl fi
9a98a854 4741
2fc9385a
JS
4742dnl if test "$wxUSE_RESOURCES" = "yes" ; then
4743dnl if test "$wxUSE_NANOX" = "yes"; then
4744dnl AC_MSG_WARN([Cannot use resource database functions in NanoX])
4745dnl else
4746dnl AC_DEFINE(wxUSE_RESOURCES)
4747dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource"
4748dnl fi
4749dnl if test "$wxUSE_PROLOGIO" != "yes" ; then
4750dnl ALL_OBJECTS="$ALL_OBJECTS parser.o"
4751dnl fi
4752dnl fi
9a98a854
VZ
4753
4754if test "$wxUSE_X_RESOURCES" = "yes"; then
ce4169a4 4755 AC_DEFINE(wxUSE_X_RESOURCES)
9a98a854
VZ
4756fi
4757
4758dnl ---------------------------------------------------------------------------
77c85c2b 4759dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
9a98a854
VZ
4760dnl ---------------------------------------------------------------------------
4761
2b9bdf71
VZ
4762dnl check for ole headers and disable a few features requiring it if not
4763dnl present (earlier versions of mingw32 don't have ole2.h)
77e13408
RL
4764if test "$wxUSE_MSW" = 1 -a \( "$wxUSE_DATAOBJ" = "yes" \
4765 -o "$wxUSE_CLIPBOARD" = "yes" \
3bce6687 4766 -o "$wxUSE_OLE" = "yes" \
77e13408 4767 -o "$wxUSE_DRAG_AND_DROP" = "yes" \) ; then
2b9bdf71
VZ
4768 AC_CHECK_HEADERS(ole2.h)
4769
4770 if test "$ac_cv_header_ole2_h" = "yes" ; then
4771 if test "$GCC" = yes ; then
8284b0c5
MB
4772 AC_LANG_SAVE
4773 AC_LANG_CPLUSPLUS
4774
4775 AC_MSG_CHECKING([if g++ requires -fvtable-thunks])
4776 AC_TRY_COMPILE([#include <windows.h>
4777 #include <ole2.h>],
4778 [],
4779 [AC_MSG_RESULT(no)],
4780 [AC_MSG_RESULT(yes)
4781 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"])
4782 AC_LANG_RESTORE
2b9bdf71 4783 ALL_OBJECTS="$ALL_OBJECTS \$(OLEOBJS)"
3d63bc3a 4784 LIBS=" -lrpcrt4 -loleaut32 -lole32 -luuid$LIBS"
2b9bdf71
VZ
4785 AC_DEFINE(wxUSE_OLE)
4786
4787 fi
4788
4789 dnl for OLE clipboard and dnd
4790 AC_DEFINE(wxUSE_DATAOBJ)
4791 else
4792 AC_MSG_WARN([Some features disabled because OLE headers not found])
4793
4794 wxUSE_CLIPBOARD=no
4795 wxUSE_DRAG_AND_DROP=no
4796 wxUSE_DATAOBJ=no
3bce6687
JS
4797 wxUSE_OLE=no
4798 fi
4799
4800 if test "$wxUSE_METAFILE" = "yes"; then
4801 AC_DEFINE(wxUSE_METAFILE)
4802
4803 dnl this one should probably be made separately configurable
4804 AC_DEFINE(wxUSE_ENH_METAFILE)
4805 fi
4806fi
4807
9a98a854 4808if test "$wxUSE_IPC" = "yes"; then
eb4efbdc 4809 if test "$wxUSE_SOCKETS" != "yes"; then
156b2523 4810 AC_MSG_WARN(wxWindows IPC classes require sockets... disabled)
eb4efbdc
VZ
4811 fi
4812
ce4169a4 4813 AC_DEFINE(wxUSE_IPC)
9a98a854
VZ
4814fi
4815
4816if test "$wxUSE_CLIPBOARD" = "yes"; then
6c657b52
VS
4817 if test "$wxUSE_MGL" = 1; then
4818 AC_MSG_WARN([Clipboard not yet supported under MGL... disabled])
4819 wxUSE_CLIPBOARD=no
4820 fi
178572bb 4821
6c657b52
VS
4822 if test "$wxUSE_CLIPBOARD" = "yes"; then
4823 AC_DEFINE(wxUSE_CLIPBOARD)
4824
4825 dnl required by clipboard code in configuration check
4826 AC_DEFINE(wxUSE_DATAOBJ)
4827 fi
9a98a854
VZ
4828fi
4829
39c9d5ac 4830if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
ce4169a4
RR
4831 if test "$wxUSE_GTK" = 1; then
4832 if test "$WXGTK12" != 1; then
156b2523 4833 AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2... disabled])
e90c1d2a 4834 wxUSE_DRAG_AND_DROP=no
ce4169a4 4835 fi
a9b5e89f 4836 fi
a9b5e89f 4837
ce4169a4 4838 if test "$wxUSE_MOTIF" = 1; then
156b2523 4839 AC_MSG_WARN([Drag and drop not yet supported under Motif... disabled])
e90c1d2a 4840 wxUSE_DRAG_AND_DROP=no
ce4169a4 4841 fi
a9b5e89f 4842
7f5c07ab
JS
4843 if test "$wxUSE_X11" = 1; then
4844 AC_MSG_WARN([Drag and drop not yet supported under X11... disabled])
4845 wxUSE_DRAG_AND_DROP=no
4846 fi
4847
6c657b52
VS
4848 if test "$wxUSE_MGL" = 1; then
4849 AC_MSG_WARN([Drag and drop not yet supported under MGL... disabled])
4850 wxUSE_DRAG_AND_DROP=no
4851 fi
4852
ce4169a4
RR
4853 if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
4854 AC_DEFINE(wxUSE_DRAG_AND_DROP)
4855 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
4856 fi
4882bf1b 4857
9a98a854
VZ
4858fi
4859
4860if test "$wxUSE_SPLINES" = "yes" ; then
4861 AC_DEFINE(wxUSE_SPLINES)
4862fi
4863
4864dnl ---------------------------------------------------------------------------
4865dnl GUI controls
4866dnl ---------------------------------------------------------------------------
4867
1e6feb95
VZ
4868USES_CONTROLS=0
4869if test "$wxUSE_CONTROLS" = "yes"; then
4870 USES_CONTROLS=1
4871fi
4872
9a98a854
VZ
4873if test "$wxUSE_ACCEL" = "yes"; then
4874 AC_DEFINE(wxUSE_ACCEL)
1e6feb95
VZ
4875 USES_CONTROLS=1
4876fi
4877
4878if test "$wxUSE_BUTTON" = "yes"; then
4879 AC_DEFINE(wxUSE_BUTTON)
4880 USES_CONTROLS=1
4881fi
4882
4883if test "$wxUSE_BMPBUTTON" = "yes"; then
4884 AC_DEFINE(wxUSE_BMPBUTTON)
4885 USES_CONTROLS=1
4886fi
4887
4888if test "$wxUSE_CALCTRL" = "yes"; then
4889 AC_DEFINE(wxUSE_CALENDARCTRL)
4890 USES_CONTROLS=1
4891 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
9a98a854
VZ
4892fi
4893
4894if test "$wxUSE_CARET" = "yes"; then
4895 AC_DEFINE(wxUSE_CARET)
1e6feb95 4896 USES_CONTROLS=1
9a98a854
VZ
4897 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
4898fi
4899
4900if test "$wxUSE_COMBOBOX" = "yes"; then
4901 AC_DEFINE(wxUSE_COMBOBOX)
1e6feb95 4902 USES_CONTROLS=1
9a98a854
VZ
4903fi
4904
ce4169a4
RR
4905if test "$wxUSE_CHOICE" = "yes"; then
4906 AC_DEFINE(wxUSE_CHOICE)
1e6feb95 4907 USES_CONTROLS=1
9a98a854
VZ
4908fi
4909
4910if test "$wxUSE_CHECKBOX" = "yes"; then
4911 AC_DEFINE(wxUSE_CHECKBOX)
1e6feb95 4912 USES_CONTROLS=1
9a98a854
VZ
4913fi
4914
4915if test "$wxUSE_CHECKLST" = "yes"; then
4916 AC_DEFINE(wxUSE_CHECKLISTBOX)
1e6feb95 4917 USES_CONTROLS=1
9a98a854
VZ
4918 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
4919fi
4920
ddb4769e
VZ
4921if test "$wxUSE_DISPLAY" = "yes"; then
4922 AC_DEFINE(wxUSE_DISPLAY)
4923 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display"
4924fi
4925
9a98a854
VZ
4926if test "$wxUSE_GAUGE" = "yes"; then
4927 AC_DEFINE(wxUSE_GAUGE)
1e6feb95 4928 USES_CONTROLS=1
9a98a854
VZ
4929fi
4930
d6a55c4b
VZ
4931if test "$wxUSE_GRID" = "yes"; then
4932 AC_DEFINE(wxUSE_GRID)
1e6feb95 4933 USES_CONTROLS=1
d6a55c4b
VZ
4934 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
4935fi
4936
9a98a854 4937if test "$wxUSE_IMAGLIST" = "yes"; then
ce4169a4 4938 AC_DEFINE(wxUSE_IMAGLIST)
9a98a854
VZ
4939fi
4940
4941if test "$wxUSE_LISTBOX" = "yes"; then
ce4169a4 4942 AC_DEFINE(wxUSE_LISTBOX)
1e6feb95 4943 USES_CONTROLS=1
9a98a854
VZ
4944fi
4945
4946if test "$wxUSE_LISTCTRL" = "yes"; then
ce4169a4
RR
4947 if test "$wxUSE_IMAGLIST" = "yes"; then
4948 AC_DEFINE(wxUSE_LISTCTRL)
1e6feb95 4949 USES_CONTROLS=1
ce4169a4
RR
4950 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
4951 else
4952 AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
4953 fi
9a98a854
VZ
4954fi
4955
4956if test "$wxUSE_NOTEBOOK" = "yes"; then
ce4169a4 4957 AC_DEFINE(wxUSE_NOTEBOOK)
1e6feb95 4958 USES_CONTROLS=1
ce4169a4 4959 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
9a98a854
VZ
4960fi
4961
2fc9385a
JS
4962dnl if test "$wxUSE_PROPSHEET" = "yes"; then
4963dnl AC_DEFINE(wxUSE_PROPSHEET)
4964dnl USES_CONTROLS=1
4965dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist"
4966dnl fi
24176f2c 4967
9a98a854 4968if test "$wxUSE_RADIOBOX" = "yes"; then
ce4169a4 4969 AC_DEFINE(wxUSE_RADIOBOX)
1e6feb95 4970 USES_CONTROLS=1
9a98a854
VZ
4971fi
4972
4973if test "$wxUSE_RADIOBTN" = "yes"; then
ce4169a4 4974 AC_DEFINE(wxUSE_RADIOBTN)
1e6feb95 4975 USES_CONTROLS=1
9a98a854
VZ
4976fi
4977
79b00c62 4978if test "$wxUSE_SASH" = "yes"; then
ce4169a4
RR
4979 AC_DEFINE(wxUSE_SASH)
4980 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
9a98a854
VZ
4981fi
4982
4983if test "$wxUSE_SCROLLBAR" = "yes"; then
ce4169a4 4984 AC_DEFINE(wxUSE_SCROLLBAR)
1e6feb95 4985 USES_CONTROLS=1
678b92a9 4986 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
9a98a854
VZ
4987fi
4988
4989if test "$wxUSE_SLIDER" = "yes"; then
ce4169a4 4990 AC_DEFINE(wxUSE_SLIDER)
1e6feb95 4991 USES_CONTROLS=1
9a98a854
VZ
4992fi
4993
4994if test "$wxUSE_SPINBTN" = "yes"; then
ce4169a4 4995 AC_DEFINE(wxUSE_SPINBTN)
1e6feb95 4996 USES_CONTROLS=1
9a98a854
VZ
4997fi
4998
66f38406
RR
4999if test "$wxUSE_SPINCTRL" = "yes"; then
5000 AC_DEFINE(wxUSE_SPINCTRL)
1e6feb95 5001 USES_CONTROLS=1
66f38406
RR
5002fi
5003
9a98a854 5004if test "$wxUSE_SPLITTER" = "yes"; then
ce4169a4
RR
5005 AC_DEFINE(wxUSE_SPLITTER)
5006 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
9a98a854
VZ
5007fi
5008
5009if test "$wxUSE_STATBMP" = "yes"; then
ce4169a4 5010 AC_DEFINE(wxUSE_STATBMP)
1e6feb95 5011 USES_CONTROLS=1
9a98a854
VZ
5012fi
5013
5014if test "$wxUSE_STATBOX" = "yes"; then
ce4169a4 5015 AC_DEFINE(wxUSE_STATBOX)
1e6feb95
VZ
5016 USES_CONTROLS=1
5017fi
5018
5019if test "$wxUSE_STATTEXT" = "yes"; then
5020 AC_DEFINE(wxUSE_STATTEXT)
5021 USES_CONTROLS=1
9a98a854
VZ
5022fi
5023
5024if test "$wxUSE_STATLINE" = "yes"; then
d1188635
JS
5025 AC_DEFINE(wxUSE_STATLINE)
5026 USES_CONTROLS=1
9a98a854
VZ
5027fi
5028
5029if test "$wxUSE_STATUSBAR" = "yes"; then
ce4169a4 5030 AC_DEFINE(wxUSE_STATUSBAR)
1e6feb95 5031 USES_CONTROLS=1
2286341c
VZ
5032
5033 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
9a98a854
VZ
5034fi
5035
5036if test "$wxUSE_TABDIALOG" = "yes"; then
ce4169a4
RR
5037 AC_DEFINE(wxUSE_TAB_DIALOG)
5038 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
9a98a854
VZ
5039fi
5040
1e6feb95
VZ
5041if test "$wxUSE_TEXTCTRL" = "yes"; then
5042 AC_DEFINE(wxUSE_TEXTCTRL)
5043 USES_CONTROLS=1
5044 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
5045fi
5046
1db8dc4a 5047if test "$wxUSE_TOGGLEBTN" = "yes"; then
ac0c4cc3 5048 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
156b2523
GD
5049 AC_MSG_WARN([Toggle button not yet supported under Mac OS X... disabled])
5050 wxUSE_TOGGLEBTN=no
5051 fi
5052 if test "$wxUSE_UNIVERSAL" = "yes"; then
3c011993 5053 AC_MSG_WARN([Toggle button not yet supported under wxUniversal... disabled])
a45d7ab7
GD
5054 wxUSE_TOGGLEBTN=no
5055 fi
5056
5057 if test "$wxUSE_TOGGLEBTN" = "yes"; then
5058 AC_DEFINE(wxUSE_TOGGLEBTN)
1e6feb95 5059 USES_CONTROLS=1
a45d7ab7 5060 fi
1db8dc4a
VZ
5061fi
5062
360d6699
VZ
5063if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
5064 AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
5065 wxUSE_TOOLBAR="yes"
1e6feb95 5066 USES_CONTROLS=1
360d6699
VZ
5067fi
5068
9a98a854 5069if test "$wxUSE_TOOLBAR" = "yes"; then
ce4169a4 5070 AC_DEFINE(wxUSE_TOOLBAR)
1e6feb95 5071 USES_CONTROLS=1
360d6699
VZ
5072
5073 dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
5074 if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
5075 wxUSE_TOOLBAR_NATIVE="yes"
5076 fi
5077
1e6feb95
VZ
5078 if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
5079 AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
5080 USES_CONTROLS=1
5081 fi
9a98a854 5082
1e6feb95 5083 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
360d6699
VZ
5084fi
5085
39c9d5ac 5086if test "$wxUSE_TOOLTIPS" = "yes"; then
ced859c3 5087 if test "$wxUSE_MOTIF" = 1; then
156b2523 5088 AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled])
9a98a854 5089 else
d1188635
JS
5090 if test "$wxUSE_UNIVERSAL" = "yes"; then
5091 AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled])
ce4169a4 5092 else
d1188635 5093 AC_DEFINE(wxUSE_TOOLTIPS)
ce4169a4 5094 fi
9a98a854
VZ
5095 fi
5096fi
5097
5098if test "$wxUSE_TREECTRL" = "yes"; then
ce4169a4
RR
5099 if test "$wxUSE_IMAGLIST" = "yes"; then
5100 AC_DEFINE(wxUSE_TREECTRL)
1e6feb95 5101 USES_CONTROLS=1
ce4169a4
RR
5102 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
5103 else
5104 AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
5105 fi
9a98a854
VZ
5106fi
5107
9f41d601 5108if test "$wxUSE_POPUPWIN" = "yes"; then
ac0c4cc3 5109 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
156b2523 5110 AC_MSG_WARN([Popup window not yet supported under Mac OS X... disabled])
6abe4b65 5111 else
485cf710
VZ
5112 if test "$wxUSE_MOTIF" = 1; then
5113 AC_MSG_WARN([wxPopupWindow not yet supported under Motif... disabled])
5114 else
c6712985
SN
5115 if test "$wxUSE_PM" = 1; then
5116 AC_MSG_WARN([wxPopupWindow not yet supported under PM... disabled])
3bd8fb5f 5117 else
c6712985 5118 AC_DEFINE(wxUSE_POPUPWIN)
0b01706f 5119
c6712985
SN
5120 USES_CONTROLS=1
5121 fi
485cf710 5122 fi
6abe4b65 5123 fi
9f41d601
RR
5124fi
5125
dd964dcc 5126if test "$wxUSE_TIPWINDOW" = "yes"; then
c6712985
SN
5127 if test "$wxUSE_PM" = 1; then
5128 AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled])
3bd8fb5f 5129 else
c6712985
SN
5130 AC_DEFINE(wxUSE_TIPWINDOW)
5131 fi
dd964dcc
VZ
5132fi
5133
1e6feb95
VZ
5134if test "$USES_CONTROLS" = 1; then
5135 AC_DEFINE(wxUSE_CONTROLS)
5136fi
5137
9a98a854
VZ
5138dnl ---------------------------------------------------------------------------
5139dnl misc options
5140dnl ---------------------------------------------------------------------------
5141
2fc9385a
JS
5142dnl if test "$wxUSE_TREELAYOUT" = "yes"; then
5143dnl AC_DEFINE(wxUSE_TREELAYOUT)
5144dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treelay"
5145dnl fi
9a98a854 5146
24fd6d87
VZ
5147if test "$wxUSE_DRAGIMAGE" = "yes"; then
5148 AC_DEFINE(wxUSE_DRAGIMAGE)
5149 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
5150fi
5151
1e6feb95
VZ
5152if test "$wxUSE_MENUS" = "yes"; then
5153 AC_DEFINE(wxUSE_MENUS)
5154 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
ce4169a4 5155fi
9a98a854 5156
1e6feb95
VZ
5157if test "$wxUSE_METAFILE" = "yes"; then
5158 AC_DEFINE(wxUSE_METAFILE)
c11584af
RR
5159fi
5160
1e6feb95
VZ
5161if test "$wxUSE_MIMETYPE" = "yes"; then
5162 AC_DEFINE(wxUSE_MIMETYPE)
9a98a854
VZ
5163fi
5164
0cbff120
JS
5165if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
5166 AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
b2261c5b
JS
5167if test "$TOOLKIT" = "MSW"; then
5168 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar"
5169fi
5170
0cbff120
JS
5171fi
5172
4cdb0ab0 5173if test "$wxUSE_PROTOCOL" = "yes"; then
3954f9ca
VS
5174 if test "$wxUSE_SOCKETS" != "yes"; then
5175 AC_MSG_WARN(Protocol classes require sockets... disabled)
5176 wxUSE_PROTOCOL=no
5177 fi
5178
5179 if test "$wxUSE_PROTOCOL" = "yes"; then
5180 AC_DEFINE(wxUSE_PROTOCOL)
4cdb0ab0 5181
3954f9ca
VS
5182 if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then
5183 AC_DEFINE(wxUSE_PROTOCOL_HTTP)
5184 fi
5185 if test "$wxUSE_PROTOCOL_FTP" = "yes"; then
5186 AC_DEFINE(wxUSE_PROTOCOL_FTP)
5187 fi
5188 if test "$wxUSE_PROTOCOL_FILE" = "yes"; then
5189 AC_DEFINE(wxUSE_PROTOCOL_FILE)
5190 fi
4cdb0ab0 5191 fi
3954f9ca
VS
5192fi
5193
5194if test "$wxUSE_URL" = "yes"; then
5195 if test "$wxUSE_PROTOCOL" != "yes"; then
5196 AC_MSG_WARN(wxURL class requires wxProtocol... disabled)
5197 wxUSE_URL=no
4cdb0ab0 5198 fi
3954f9ca
VS
5199 if test "$wxUSE_URL" = "yes"; then
5200 AC_DEFINE(wxUSE_URL)
4cdb0ab0
VS
5201 fi
5202fi
5203
9a98a854 5204if test "$wxUSE_MINIFRAME" = "yes"; then
ce4169a4
RR
5205 AC_DEFINE(wxUSE_MINIFRAME)
5206 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
9a98a854
VZ
5207fi
5208
5526e819
VS
5209if test "$wxUSE_HTML" = "yes"; then
5210 AC_DEFINE(wxUSE_HTML)
5211 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html"
5212fi
5213
9a98a854 5214if test "$wxUSE_VALIDATORS" = "yes"; then
ce4169a4
RR
5215 AC_DEFINE(wxUSE_VALIDATORS)
5216 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
9a98a854
VZ
5217fi
5218
d275c7eb
VZ
5219if test "$wxUSE_PALETTE" = "yes" ; then
5220 AC_DEFINE(wxUSE_PALETTE)
5221fi
5222
0046ff7c
VS
5223if test "$wxUSE_IMAGE" = "yes" ; then
5224 AC_DEFINE(wxUSE_IMAGE)
5225fi
5226
0940bcf7
HH
5227if test "$wxUSE_GIF" = "yes" ; then
5228 AC_DEFINE(wxUSE_GIF)
5229fi
5230
5231if test "$wxUSE_PCX" = "yes" ; then
5232 AC_DEFINE(wxUSE_PCX)
5233fi
5234
4b6b4dfc
RR
5235if test "$wxUSE_IFF" = "yes" ; then
5236 AC_DEFINE(wxUSE_IFF)
5237fi
5238
0940bcf7
HH
5239if test "$wxUSE_PNM" = "yes" ; then
5240 AC_DEFINE(wxUSE_PNM)
5241fi
5242
0046ff7c
VS
5243if test "$wxUSE_XPM" = "yes" ; then
5244 AC_DEFINE(wxUSE_XPM)
5245fi
5246
658974ae
VS
5247if test "$wxUSE_ICO_CUR" = "yes" ; then
5248 AC_DEFINE(wxUSE_ICO_CUR)
5249fi
5250
a72a4bfa
VS
5251if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then
5252 dnl Must be done this late because -lunicows must be before all the other libs
5253 LIBS=" -lunicows $LIBS"
5254fi
5255
1e6feb95
VZ
5256dnl ---------------------------------------------------------------------------
5257dnl common dialog
5258dnl ---------------------------------------------------------------------------
5259
5260if test "$wxUSE_CHOICEDLG" = "yes"; then
5261 AC_DEFINE(wxUSE_CHOICEDLG)
5262fi
5263
5264if test "$wxUSE_COLOURDLG" = "yes"; then
5265 AC_DEFINE(wxUSE_COLOURDLG)
5266fi
5267
5268if test "$wxUSE_FILEDLG" = "yes"; then
5269 AC_DEFINE(wxUSE_FILEDLG)
5270fi
5271
8db37e06
VZ
5272if test "$wxUSE_FINDREPLDLG" = "yes"; then
5273 AC_DEFINE(wxUSE_FINDREPLDLG)
5274fi
5275
1e6feb95
VZ
5276if test "$wxUSE_FONTDLG" = "yes"; then
5277 AC_DEFINE(wxUSE_FONTDLG)
5278fi
5279
5280if test "$wxUSE_DIRDLG" = "yes"; then
ae1daed0
JS
5281 if test "$wxUSE_TREECTRL" != "yes"; then
5282 AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
1e6feb95 5283 else
ae1daed0 5284 AC_DEFINE(wxUSE_DIRDLG)
1e6feb95
VZ
5285 fi
5286fi
5287
5288if test "$wxUSE_MSGDLG" = "yes"; then
5289 AC_DEFINE(wxUSE_MSGDLG)
5290fi
5291
5292if test "$wxUSE_NUMBERDLG" = "yes"; then
5293 AC_DEFINE(wxUSE_NUMBERDLG)
5294fi
5295
5296if test "$wxUSE_PROGRESSDLG" = "yes"; then
5297 if test "$wxUSE_CONSTRAINTS" != "yes"; then
5298 AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
5299 else
5300 AC_DEFINE(wxUSE_PROGRESSDLG)
5301 fi
5302fi
5303
cbca9943
VZ
5304if test "$wxUSE_SPLASH" = "yes"; then
5305 AC_DEFINE(wxUSE_SPLASH)
5306fi
5307
1e6feb95
VZ
5308if test "$wxUSE_STARTUP_TIPS" = "yes"; then
5309 if test "$wxUSE_CONSTRAINTS" != "yes"; then
5310 AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
5311 else
5312 AC_DEFINE(wxUSE_STARTUP_TIPS)
5313 fi
5314fi
5315
5316if test "$wxUSE_TEXTDLG" = "yes"; then
5317 AC_DEFINE(wxUSE_TEXTDLG)
5318fi
5319
b1f5d087
VZ
5320if test "$wxUSE_WIZARDDLG" = "yes"; then
5321 AC_DEFINE(wxUSE_WIZARDDLG)
5322 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard"
5323fi
5324
bdc72a22
VZ
5325dnl ---------------------------------------------------------------------------
5326dnl get the string with OS info - used by wxGetOsDescription()
5327dnl ---------------------------------------------------------------------------
5328
32832908
VZ
5329if test "$cross_compiling" = "yes"; then
5330 dnl Use best guess from host as we can't use uname when cross compiling
5331 OSINFO="\"$host\""
5332else
5333 dnl attualy work out OS version
5334 OSINFO=`uname -s -r -m`
5335 OSINFO="\"$OSINFO\""
5336fi
5337
bdc72a22
VZ
5338AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
5339
7e67ed0d
VZ
5340dnl ---------------------------------------------------------------------------
5341dnl define the variable containing the installation prefix (used in dcpsg.cpp)
5342dnl ---------------------------------------------------------------------------
5343
06dda230
VZ
5344if test "x$prefix" != "xNONE"; then
5345 wxPREFIX=$prefix
5346else
5347 wxPREFIX=$ac_default_prefix
5348fi
5349
5350AC_DEFINE_UNQUOTED(wxINSTALL_PREFIX, "$wxPREFIX")
7e67ed0d 5351
52c71b80
VZ
5352dnl define the variables used in wx-config
5353top_builddir=`pwd`
5354
9a98a854
VZ
5355dnl ---------------------------------------------------------------------------
5356dnl Output the makefiles and such from the results found above
5357dnl ---------------------------------------------------------------------------
5358
9a98a854 5359dnl all additional libraries (except wxWindows itself) we link with
3d63bc3a 5360
b4085ce6
GD
5361dnl note that we always link with -lm except for Mac OS X
5362dnl extended.c uses floor() and is always linked in
3a922bb4 5363
f11bdd03 5364if test "$wxUSE_MAC" = 1 ; then
3d63bc3a 5365 LDFLAGS="$LDFLAGS -framework Carbon -framework System"
b4085ce6 5366fi
ac0c4cc3
DE
5367if test "$wxUSE_COCOA" = 1 ; then
5368 LDFLAGS="$LDFLAGS -framework Cocoa -framework System"
5369fi
3a922bb4 5370
3d63bc3a
RL
5371dnl FIXME: should this be covered by the conditional above
5372dnl given the -lm comment there? Or should that comment (and
5373dnl this one) be removed.. [ 7 Nov 2001 ]
5374
2b5f62a0
VZ
5375LIBS="$ZLIB_LINK $POSIX4_LINK $INET_LINK $WCHAR_LINK $DL_LINK $LIBS"
5376
5377dnl Only add the -lm library if floating point functions cannot be used
5378dnl without it. This check is important on cygwin because of the bizarre
5379dnl way that they have organized functions into libraries. On cygwin, both
5380dnl libc.a and libm.a are symbolic links to a single lib libcygwin.a. This
5381dnl means that
5382dnl 1) linking with -lm is not necessary, and
5383dnl 2) linking with -lm is dangerous if the order of libraries is wrong
5384dnl In particular, if you compile any program with -mno-cygwin and link with
5385dnl -lm, it will crash instantly when it is run. This happens because the
5386dnl linker incorrectly links the Cygwin libm.a (==libcygwin.a), which replaces
5387dnl the ___main function instead of allowing it to be defined by
5388dnl /usr/lib/mingw/libmingw32.a as it should be.
5389dnl
5390dnl On MacOS X, this test will find that -lm is unnecessary and leave it out.
5391dnl
5392dnl Just check a few floating point functions. If they are all found without
5393dnl -lm, then we must not need -lm.
5394have_cos=0
5395have_floor=0
5396AC_CHECK_FUNCS(cos, have_cos=1)
5397AC_CHECK_FUNCS(floor, have_floor=1)
5398AC_MSG_CHECKING(if floating point functions link without -lm)
5399if test "$have_cos" = 1 -a "$have_floor" = 1; then
5400 AC_MSG_RESULT(yes)
5401else
5402 AC_MSG_RESULT(no)
5403 LIBS="$LIBS -lm"
5404 # use different functions to avoid configure caching
5405 have_sin=0
5406 have_ceil=0
5407 AC_CHECK_FUNCS(sin, have_sin=1)
5408 AC_CHECK_FUNCS(ceil, have_ceil=1)
5409 AC_MSG_CHECKING(if floating point functions link with -lm)
5410 if test "$have_sin" = 1 -a "$have_ceil" = 1; then
5411 AC_MSG_RESULT(yes)
5412 else
5413 AC_MSG_RESULT(no)
5414 # not sure we should warn the user, crash, etc.
5415 fi
5416fi
3d63bc3a 5417
e90c1d2a 5418if test "$wxUSE_GUI" = "yes"; then
3d63bc3a 5419
cb61c62d 5420 LIBS="$GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $LIBS"
3a922bb4
RL
5421
5422 dnl TODO add checks that these samples will really compile (i.e. all the
5423 dnl library features they need are present)
5424
5425 dnl TODO some samples are never built so far:
5426 dnl ipc, mfc, nativdlg, oleauto, ownerdrw
867a54b6 5427 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS artprov controls dialogs \
3a922bb4 5428 drawing dynamic erase event exec font image \
1542ea39 5429 minimal propsize rotate shaped widgets"
3a922bb4 5430
3a922bb4
RL
5431 dnl this is needed to be able to find AFM files
5432 CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"
5433else
5434 SAMPLES_SUBDIRS="console"
e90c1d2a 5435fi
9a98a854 5436
8e877c19 5437
9a98a854 5438dnl all -I options we must pass to the compiler
44a5856d
VZ
5439dnl
5440dnl note that the order is somewhat important, in particular the ZLIB_INCLUDE
5441dnl and other stuff for the built in libraries should come first to avoid
5442dnl including the system headers with the same name (it is particularly
5443dnl important for zlib because XFree 4.2.0 has its own, horribly old and
5444dnl incompatible, zlib.h) and the wxWindows headers should come first anyhow
5445INCLUDES="-I\${top_builddir}/lib/wx/include/${TOOLCHAIN_NAME} \
5446-I\${top_srcdir}/include \
5447$REGEX_INCLUDE $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TIFF_INCLUDE \
5448$TOOLKIT_INCLUDE"
9a98a854 5449
f6bcfd97 5450dnl wxGTK does not need TOOLKIT includes in wx-config
63e7762e 5451if test "$wxUSE_GTK" = 1; then
3d63bc3a 5452 WXCONFIG_INCLUDE=
f6bcfd97
BP
5453else
5454 WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
5455fi
5456
9a98a854 5457dnl C/C++ compiler options used to compile wxWindows
bea74fbb 5458if test "$GXX" = yes ; then
ce4169a4
RR
5459 dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
5460 CXXWARNINGS="-Wall"
d6a55c4b 5461 dnl should enable this one day...
ce4169a4 5462 dnl CXXWARNINGS="-Wall -Werror"
88e30f2b
RL
5463
5464 dnl Add this *after* all compile tests, we don't need or want generated
5465 dnl depfiles until actually building the lib
5466 if test "$wxUSE_NO_DEPS" = "no" ; then
5467 CFLAGS="-MMD $CFLAGS"
5468 CXXFLAGS="-MMD $CXXFLAGS"
5469 fi
9a98a854 5470fi
88e30f2b 5471
b2fee376 5472EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE"
9a98a854 5473
fe5a9cab 5474dnl remove the extra white space from the cc/c++/ld options
b2fee376 5475CPPFLAGS=`echo $INCLUDES $CPPFLAGS | sed 's/ \\+/ /g'`
7b4a847f
RR
5476CFLAGS=`echo $EXTRA_CFLAGS $CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
5477CXXFLAGS=`echo $EXTRA_CFLAGS $CXXFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
fe5a9cab 5478LIBS=`echo $LIBS | sed 's/ \+/ /g'`
9a98a854 5479
fe5a9cab 5480LDFLAGS="$LDFLAGS $PROFILE"
e694c22c 5481
70d1b3cf
VZ
5482dnl for convenience, sort the samples in alphabetical order
5483dnl
5484dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
5485dnl in this list - hence uniq. But normally, this shouldn't be needed!
d6a55c4b
VZ
5486dnl
5487dnl Unfortunately, there is a bug in OS/2's tr, such that
d51e8205
SN
5488dnl tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
5489dnl only removes the Unix-like part of the introduced line break.
5490SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
5491
5492dnl makefile variables
5493AC_SUBST(LEX_STEM)
5494AC_SUBST(PATH_IFS)
70d1b3cf 5495
9a98a854
VZ
5496dnl global options
5497AC_SUBST(WX_MAJOR_VERSION_NUMBER)
5498AC_SUBST(WX_MINOR_VERSION_NUMBER)
5499AC_SUBST(WX_RELEASE_NUMBER)
48b1d0ff
RR
5500AC_SUBST(WX_LIBRARY_NAME_STATIC)
5501AC_SUBST(WX_LIBRARY_NAME_SHARED)
2b5f62a0 5502AC_SUBST(WX_LIBRARY_BASENAME)
77e13408 5503AC_SUBST(WX_LIBRARY_IMPORTLIB)
48b1d0ff
RR
5504AC_SUBST(WX_TARGET_LIBRARY)
5505AC_SUBST(WX_LIBRARY_LINK1)
5506AC_SUBST(WX_LIBRARY_LINK2)
80d895cd 5507AC_SUBST(PROGRAM_EXT)
48b1d0ff 5508
bdad4e7e 5509dnl global gl options
bdad4e7e
RR
5510AC_SUBST(WX_LIBRARY_NAME_STATIC_GL)
5511AC_SUBST(WX_LIBRARY_NAME_SHARED_GL)
bdad4e7e
RR
5512AC_SUBST(WX_TARGET_LIBRARY_GL)
5513AC_SUBST(WX_LIBRARY_LINK1_GL)
5514AC_SUBST(WX_LIBRARY_LINK2_GL)
bdad4e7e 5515
48b1d0ff 5516dnl are we supposed to create the links?
de87c353
RR
5517AC_SUBST(WX_ALL)
5518AC_SUBST(WX_ALL_INSTALLED)
9a98a854 5519
48b1d0ff
RR
5520AC_SUBST(SHARED_LD)
5521AC_SUBST(PIC_FLAG)
caa2c79b 5522AC_SUBST(CODE_GEN_FLAGS)
0f3f1cbc 5523AC_SUBST(CODE_GEN_FLAGS_CXX)
3a922bb4
RL
5524
5525AC_SUBST(SONAME_FLAGS)
5526AC_SUBST(SONAME_FLAGS_GL)
f6bcfd97 5527AC_SUBST(WX_TARGET_LIBRARY_SONAME)
3711412e 5528AC_SUBST(WX_TARGET_LIBRARY_TYPE)
48b1d0ff 5529
2bffed64
VZ
5530AC_SUBST(STATIC_FLAG)
5531
9a98a854
VZ
5532dnl debugging options
5533AC_SUBST(WXDEBUG_DEFINE)
5534
5535dnl toolkit options
dad6c0ea
VZ
5536AC_SUBST(USE_GUI)
5537AC_SUBST(AFMINSTALL)
2b5f62a0 5538AC_SUBST(WIN32INSTALL)
9a98a854 5539AC_SUBST(TOOLKIT)
9a98a854 5540AC_SUBST(TOOLKIT_DIR)
1e6feb95 5541AC_SUBST(TOOLKIT_VPATH)
3a922bb4
RL
5542AC_SUBST(TOOLCHAIN_NAME)
5543AC_SUBST(TOOLCHAIN_DEFS)
00c81359 5544AC_SUBST(TOOLCHAIN_DLL_DEFS)
3a922bb4
RL
5545
5546dnl wx-config options
52c71b80 5547AC_SUBST(top_builddir)
77e13408 5548AC_SUBST(host_alias)
3a922bb4
RL
5549AC_SUBST(cross_compiling)
5550AC_SUBST(WXCONFIG_LIBS)
5551AC_SUBST(WXCONFIG_LIBS_GL)
885d4bf5
VS
5552AC_SUBST(WXCONFIG_LIBS_STATIC)
5553AC_SUBST(WXCONFIG_LIBS_STATIC_GL)
f6bcfd97 5554AC_SUBST(WXCONFIG_INCLUDE)
3bd8fb5f 5555AC_SUBST(WXCONFIG_RPATH)
e26c13cf 5556AC_SUBST(WX_LARGEFILE_FLAGS)
9a98a854 5557
9b695262 5558dnl the list of files to compile/install
e90c1d2a 5559AC_SUBST(ALL_OBJECTS)
9b695262
VZ
5560AC_SUBST(ALL_HEADERS)
5561AC_SUBST(ALL_SOURCES)
2224580a
VZ
5562
5563dnl distribution vars
a4aad961 5564AC_SUBST(GUIDIST)
2224580a
VZ
5565AC_SUBST(PORT_FILES)
5566AC_SUBST(DISTDIR)
073478b3 5567
9a98a854 5568dnl additional subdirectories where we will build
9a98a854 5569AC_SUBST(SAMPLES_SUBDIRS)
9a98a854 5570
e694c22c
VZ
5571dnl additional libraries and linker settings
5572AC_SUBST(LDFLAGS)
62d0491b 5573AC_SUBST(LDFLAGS_GL)
2b5f62a0 5574AC_SUBST(LDFLAGS_VERSIONING)
40f7145c 5575AC_SUBST(LDFLAGS_EXE)
f6bcfd97 5576AC_SUBST(OPENGL_LIBS)
3d63bc3a 5577AC_SUBST(DMALLOC_LIBS)
b12915c1 5578AC_SUBST(EXTRADEFS)
2b5f62a0 5579AC_SUBST(WX_VERSION_TAG)
9a98a854 5580
32832908 5581dnl additional resurces settings
32832908
VZ
5582AC_SUBST(RESCOMP)
5583AC_SUBST(RESFLAGS)
3a922bb4 5584AC_SUBST(RESPROGRAMOBJ)
e95edd8d
GD
5585AC_SUBST(WX_RESOURCES_MACOSX_ASCII)
5586AC_SUBST(WX_RESOURCES_MACOSX_DATA)
3a922bb4 5587
2f51a9ec 5588dnl additional for Mac OS X
2f51a9ec 5589AC_SUBST(DEREZ)
ef7f2189 5590AC_SUBST(MACOSX_BUNDLE)
2f51a9ec 5591AC_SUBST(LIBWXMACRES)
36825681
GD
5592AC_SUBST(MACRESCOMP)
5593AC_SUBST(MACSETFILE)
5594AC_SUBST(MACRESWXCONFIG)
32832908 5595
2b5f62a0
VZ
5596dnl other tools
5597AC_SUBST(GCC)
32832908
VZ
5598AC_SUBST(DLLTOOL)
5599AC_SUBST(AS)
5600AC_SUBST(NM)
5601AC_SUBST(LD)
5602AC_SUBST(MAKEINFO)
885d4bf5 5603AC_SUBST(INSTALL_LIBRARY)
4f5a7f74 5604AC_SUBST(INSTALL_DIR)
885d4bf5 5605
9a98a854 5606dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
156b2523 5607dnl itself (this macro is required if SUBDIRS variable is used in Makefile.am
9a98a854
VZ
5608dnl - and we do use it)
5609AC_PROG_MAKE_SET
5610
00cf1208 5611dnl move setup.h back if available
3a922bb4
RL
5612if test -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h; then
5613 mv -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h setup.h
00cf1208 5614fi
014e19de 5615
2aa88730
RR
5616AC_CONFIG_HEADER(setup.h:setup.h.in)
5617
57973b9c
VZ
5618dnl we need to pass SAMPLES_SUBDIRS (and some other) to the configure in
5619dnl samples and the only way to do it is to use the environment (another
5620dnl idea could have been to use the cache but this wouldn't work when
5621dnl configure doesn't use cache at all which is the default with autoconf 2.50)
5622wx_cv_path_samplesubdirs=$SAMPLES_SUBDIRS
5623wx_cv_if_gnu_make=$IF_GNU_MAKE
5624wx_cv_path_ifs=$PATH_IFS
5625wx_cv_program_ext=$PROGRAM_EXT
5626wx_cv_target_library=$WX_TARGET_LIBRARY
5627wx_cv_target_library_gl=$WX_TARGET_LIBRARY_GL
5628wx_cv_target_libtype=$WX_TARGET_LIBRARY_TYPE
2b5f62a0
VZ
5629wx_cv_library_basename=${WX_LIBRARY_BASENAME}
5630wx_cv_release=${WX_RELEASE}
5631wx_cv_current=${WX_CURRENT}
5632wx_cv_revision=${WX_REVISION}
5633wx_cv_age=${WX_AGE}
27635a90 5634wx_cv_use_gui=${USE_GUI}
5e66eee1 5635wx_cv_use_resources=${wxUSE_RESOURCES}
57973b9c
VZ
5636export wx_cv_path_samplesubdirs wx_cv_if_gnu_make \
5637 wx_cv_path_ifs wx_cv_program_ext \
2b5f62a0 5638 wx_cv_target_library wx_cv_target_library_gl wx_cv_target_libtype \
27635a90 5639 wx_cv_library_basename wx_cv_release wx_cv_current wx_cv_revision wx_cv_age \
5e66eee1 5640 wx_cv_use_gui wx_cv_use_resources
57973b9c
VZ
5641
5642AC_CONFIG_SUBDIRS(demos samples utils contrib)
2aa88730 5643
9a98a854
VZ
5644dnl create each of the files in the space separated list from the file.in
5645dnl (the original file name may be overriden by appending another name after a
5646dnl colon)
5647AC_OUTPUT([
ff684c98 5648 wx-config
2b5f62a0 5649 version-script
e90c1d2a
VZ
5650 src/make.env
5651 src/makeprog.env
5652 src/makelib.env
bcd2b961 5653 Makefile
9a98a854 5654 ],
a2cddd63 5655 [
3a922bb4
RL
5656 dnl This test is required to make the following idempotent.
5657 dnl Otherwise running config.status or rerunning configure
5658 dnl would stomp the wx-config link or try to move it onto
5659 dnl itself.
652d930d
GD
5660 dnl Use -h instead of -L to test for link (GD)
5661 dnl -h is documented as obsolete under Mac OS X but works
5662 dnl -L is obsolete under Solaris8
5663 if test ! -h wx-config; then
991a5759 5664 chmod +x wx-config
3a922bb4
RL
5665 mv wx-config wx${TOOLCHAIN_NAME}-config
5666 ${LN_S} wx${TOOLCHAIN_NAME}-config wx-config
991a5759 5667 fi
014e19de 5668
00cf1208
RR
5669 if test ! -d lib; then
5670 mkdir lib
5671 fi
5672 if test ! -d lib/wx; then
5673 mkdir lib/wx
5674 fi
5675 if test ! -d lib/wx/include; then
5676 mkdir lib/wx/include
5677 fi
3a922bb4
RL
5678 if test ! -d lib/wx/include/${TOOLCHAIN_NAME}; then
5679 mkdir lib/wx/include/${TOOLCHAIN_NAME}
e90c1d2a 5680 fi
3a922bb4
RL
5681 if test ! -d lib/wx/include/${TOOLCHAIN_NAME}/wx; then
5682 mkdir lib/wx/include/${TOOLCHAIN_NAME}/wx
e90c1d2a 5683 fi
afc31813 5684 if test -f setup.h; then
3a922bb4 5685 mv -f setup.h lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h
afc31813 5686 fi
a2cddd63
VZ
5687 ],
5688 [
3a922bb4 5689 TOOLCHAIN_NAME="${TOOLCHAIN_NAME}"
07eb77a6 5690 LN_S="${LN_S}"
a2cddd63
VZ
5691 ]
5692 )
9a98a854 5693
2b5f62a0
VZ
5694dnl report on what we decided to do
5695echo
5696echo "Configured wxWindows ${WX_VERSION} for \`${host}'"
5697echo ""
5698echo " Which GUI toolkit should wxWindows use? ${TOOLKIT:-base only}"
5699
5700echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG:-no}"
5701echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED:-no}"
5702echo " Should wxWindows be compiled in Unicode mode? ${wxUSE_UNICODE:-no}"
5703
0c98a14e
GD
5704echo " What level of wxWindows compatibility should be enabled?"
5705echo " wxWindows 2.0 ${WXWIN_COMPATIBILITY_2:-no}"
65d8ef1e
VS
5706echo " wxWindows 2.2 ${WXWIN_COMPATIBILITY_2_2:-no}"
5707echo " wxWindows 2.4 ${WXWIN_COMPATIBILITY_2_4:-yes}"
0c98a14e 5708
2b5f62a0
VZ
5709echo " Which libraries should wxWindows use?"
5710echo " jpeg ${wxUSE_LIBJPEG-none}"
5711echo " png ${wxUSE_LIBPNG-none}"
5712echo " regex ${wxUSE_REGEX}"
5713echo " tiff ${wxUSE_LIBTIFF-none}"
5714echo " zlib ${wxUSE_ZLIB}"
5715
5716echo ""
5717
5718dnl vi: set et sts=4 sw=4 com=\:dnl: