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