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