]> git.saurik.com Git - wxWidgets.git/blame - configure.in
added missing default argument value
[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
2b5f62a0
VZ
2362 if test "$wxUSE_UNICODE" = "yes"; then
2363 PKG_CHECK_MODULES(PANGOX, pangox,
2364 [
2365 CXXFLAGS="$CXXFLAGS $PANGOX_CFLAGS"
2366 LIBS="$LIBS $PANGOX_LIBS"
2367 ],
2368 [
2369 AC_MSG_ERROR([pangox library not found, library cannot be compiled in Unicode mode])
2370 ]
2371 )
2372 PKG_CHECK_MODULES(PANGOFT2, pangoft2,
2373 [
2374 CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS"
2375 LIBS="$LIBS $PANGOFT2_LIBS"
2376 ],
2377 [
2378 AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support])
2379 wxUSE_PRINTING_ARCHITECTURE="no"
2380 ]
2381 )
2382 PKG_CHECK_MODULES(PANGOXFT, pangoxft,
2383 [
2384 CXXFLAGS="$CXXFLAGS $PANGOXFT_CFLAGS"
2385 LIBS="$LIBS $PANGOXFT_LIBS"
2386 ],
2387 [
2388 AC_MSG_WARN([pangoxft library not found, library will be compiled without anti-aliasing support])
2389 ]
2390 )
2391 fi
2392
1d1b75ac
VZ
2393 wxUSE_UNIVERSAL="yes"
2394
256d631a 2395 if test "$wxUSE_NANOX" = "yes"; then
4e5a4800 2396 TOOLKIT_INCLUDE="-I\$(top_srcdir)/include/wx/x11/nanox -I\$(MICROWIN)/src/include $TOOLKIT_INCLUDE"
0b5c0e1a 2397 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 2398 GUI_TK_LIBRARY="$GUI_TK_LIBRARY \$(MICROWIN)/src/lib/libnano-X.a"
6ec507fd 2399 else
0feee163 2400 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lX11$xpm_link"
6ec507fd
JS
2401 fi
2402
3c011993 2403 TOOLKIT_VPATH="\${top_srcdir}/src/x11"
7f5c07ab
JS
2404 TOOLKIT=X11
2405 GUIDIST=X11_DIST
7f5c07ab
JS
2406 fi
2407
1e6feb95 2408 if test "$wxUSE_MOTIF" = 1; then
d714471b
VZ
2409 dnl use standard macros to check for X headers/libs, this brings support
2410 dnl for the standard configure options --x-includes and --x-libraries
2411 AC_PATH_XTRA
2412
1e6feb95
VZ
2413 if test "$no_x" = "yes"; then
2414 AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
2415 fi
2416
2b5f62a0
VZ
2417 dnl for some reason AC_PATH_XTRA seems to add -INONE and -LNONE to
2418 dnl X_LIBS and X_CFLAGS respectively -- what for??
2419 GUI_TK_LIBRARY=`echo $X_LIBS | sed 's/ -LNONE//'`
2420 TOOLKIT_INCLUDE=`echo $X_CFLAGS | sed 's/ -INONE//'`
1e6feb95 2421 AFMINSTALL=afminstall
1e6feb95
VZ
2422 COMPILED_X_PROGRAM=0
2423
2424 AC_MSG_CHECKING(for Motif/Lesstif headers)
2425 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
2426 if test "$ac_find_includes" != "" ; then
dd0e4a90
VZ
2427 AC_MSG_RESULT(found in $ac_find_includes)
2428 WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
2429 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE$ac_path_to_include"
cd6d6d5b 2430 else
cd6d6d5b
VZ
2431 AC_TRY_COMPILE(
2432 [
2433 #include <Xm/Xm.h>
2434 ],
2435 [
2436 int version;
cd6d6d5b
VZ
2437 version = xmUseVersion;
2438 ],
2439 [
2440 AC_MSG_RESULT(found in default search path)
2441 COMPILED_X_PROGRAM=1
2442 ],
2443 [
2444 AC_MSG_RESULT(no)
1e6feb95 2445 AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
cd6d6d5b
VZ
2446 ]
2447 )
2448 fi
9a98a854 2449
1e6feb95
VZ
2450 if test "$COMPILED_X_PROGRAM" = 0; then
2451 AC_MSG_CHECKING(for Motif/Lesstif library)
2452 WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
2453 if test "$ac_find_libraries" != "" ; then
dd0e4a90 2454 AC_MSG_RESULT(found at $ac_find_libraries)
1e6feb95 2455
dd0e4a90 2456 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
62d0491b 2457 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
1e6feb95 2458 else
dd0e4a90
VZ
2459 dnl it might happen that we found headers in one of the
2460 dnl standard paths but the libs are elsewhere - we do need to
2461 dnl try to compile a sample program then here
2462 save_CFLAGS=$CFLAGS
2463 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2464
1e6feb95
VZ
2465 AC_TRY_COMPILE(
2466 [
2467 #include <Xm/Xm.h>
2468 ],
2469 [
2470 int version;
1e6feb95
VZ
2471 version = xmUseVersion;
2472 ],
2473 [
2474 AC_MSG_RESULT(found in default search path)
2475 COMPILED_X_PROGRAM=1
2476 ],
2477 [
2478 AC_MSG_RESULT(no)
2479 AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
2480 ]
2481 )
dd0e4a90
VZ
2482
2483 CFLAGS=$save_CFLAGS
1e6feb95
VZ
2484 fi
2485 fi
2486
3d63bc3a 2487 xpm_link=
1e6feb95
VZ
2488 AC_MSG_CHECKING(for Xpm library)
2489 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
2490 if test "$ac_find_libraries" != "" ; then
2491 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
62d0491b 2492 GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link"
dd0e4a90 2493
3d63bc3a 2494 xpm_link=" -lXpm"
f6bcfd97 2495 AC_DEFINE(wxHAVE_LIB_XPM)
1e6feb95
VZ
2496 AC_MSG_RESULT(found at $ac_find_libraries)
2497 else
dd0e4a90
VZ
2498 save_CFLAGS=$CFLAGS
2499 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2500
1e6feb95
VZ
2501 AC_TRY_COMPILE(
2502 [
2503 #include <X11/xpm.h>
2504 ],
2505 [
2506 int version;
1e6feb95
VZ
2507 version = XpmLibraryVersion();
2508 ],
2509 [
3d63bc3a 2510 xpm_link=" -lXpm"
3a922bb4 2511 AC_DEFINE(wxHAVE_LIB_XPM)
1e6feb95
VZ
2512 AC_MSG_RESULT(found in default search path)
2513 COMPILED_X_PROGRAM=0
2514 ],
2515 [
2516 AC_MSG_RESULT(no)
2517 AC_MSG_WARN(library will be compiled without support for images in XPM format)
2518 ]
2519 )
dd0e4a90
VZ
2520
2521 CFLAGS=$save_CFLAGS
1e6feb95 2522 fi
9a98a854 2523
6a30f1c8
MB
2524 AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])
2525 libp_link=""
2526 libsm_ice_link=""
2527 libs_found=0
2528 for libp in "" " -lXp"; do
2529 if test "$libs_found" = "0"; then
2530 for libsm_ice in " -lSM -lICE"; do
e26c13cf 2531 if test "$libs_found" = "0"; then
6a30f1c8
MB
2532 save_LIBS="$LIBS"
2533 LIBS="$GUI_TK_LIBRARY -lXm${xpm_link} ${libp} -lXmu -lXext -lXt${libsm_ice} -lX11"
dd0e4a90
VZ
2534 save_CFLAGS=$CFLAGS
2535 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2536
6a30f1c8
MB
2537 AC_TRY_LINK(
2538 [
2539 #include <Xm/Xm.h>
2540 #include <Xm/List.h>
2541 ],
2542 [
2543 XmString string = NULL;
2544 Widget w = NULL;
2545 int position = 0;
2546 XmListAddItem(w, string, position);
2547 ],
2548 [
2549 libp_link="$libp"
2550 libsm_ice_link="$libsm_ice"
2551 AC_MSG_RESULT(
2552 [need${libp_link}${libsm_ice_link}])
2553 libs_found=1
2554 ], []
2555 )
dd0e4a90 2556
6a30f1c8 2557 LIBS="$save_LIBS"
dd0e4a90 2558 CFLAGS=$save_CFLAGS
6a30f1c8
MB
2559 fi
2560 done
2561 fi
2562 done
2563
2564 if test "$libs_found" = "0"; then
2565 AC_MSG_RESULT([can't find the right libraries])
2566 AC_MSG_ERROR([can't link a simple motif program])
2567 fi
17234b26 2568
da494b40
MB
2569 save_CFLAGS=$CFLAGS
2570 CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
2571 AC_MSG_CHECKING([for Motif 2])
2572 AC_TRY_COMPILE([
2573 #include <Xm/Xm.h>
2574 ],
2575 [
2576 #if XmVersion < 2000
2577 #error "Not Motif 2"
2578 #endif
2579 ],
2580 [
2581 AC_DEFINE(__WXMOTIF20__,1)
2582 AC_MSG_RESULT([found])
2583 ],
2584 [
2585 AC_DEFINE(__WXMOTIF20__,0)
2586 AC_MSG_RESULT([not found])
2587 ])
2588 CFLAGS=$save_CFLAGS
2589
6a30f1c8 2590 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXm$xpm_link${libp_link} -lXmu -lXext -lXt${libsm_ice_link} -lX11"
69c44812 2591 TOOLKIT_VPATH="\${top_srcdir}/src/motif${PATH_IFS}\${top_srcdir}/src/motif/xmcombo${PATH_IFS}\${top_srcdir}/src/x11"
1e6feb95
VZ
2592 TOOLKIT=MOTIF
2593 GUIDIST=MOTIF_DIST
2594 fi
b4085ce6 2595
1e6feb95 2596 if test "$wxUSE_MAC" = 1; then
0c98a14e 2597 CPPFLAGS="$CPPFLAGS -fpascal-strings -I\${top_srcdir}/src/mac/morefilex -I/Developer/Headers/FlatCarbon"
d08b457b 2598
0c98a14e 2599 TOOLKIT_VPATH="\${top_srcdir}/src/mac${PATH_IFS}\${top_srcdir}/src/mac/morefilex"
1e6feb95 2600 TOOLKIT=MAC
683dccda 2601 dnl we can't call this MAC_DIST or autoconf thinks its a macro
1e6feb95
VZ
2602 GUIDIST=MACX_DIST
2603 fi
e07802fc 2604
ac0c4cc3
DE
2605 if test "$wxUSE_COCOA" = 1; then
2606 TOOLKIT_VPATH="\${top_srcdir}/src/cocoa"
2607 TOOLKIT=COCOA
2608 GUIDIST=COCOA_DIST
2609 fi
2610
1e6feb95
VZ
2611 if test "$wxUSE_PM" = 1; then
2612 TOOLKIT=PM
2613 GUIDIST=GTK_DIST
2fc9385a
JS
2614dnl AC_MSG_WARN([OS/2 PM requires old resource format, re-enabled])
2615dnl wxUSE_PROLOGIO="yes"
2616dnl wxUSE_RESOURCES="yes"
2b5f62a0 2617 AC_MSG_WARN([OS/2 threads are not yet supported... disabled])
f657dbe7 2618 wxUSE_THREADS="no"
1e6feb95
VZ
2619 fi
2620
2621 dnl the name of the directory where the files for this toolkit live
3a922bb4 2622 if test "$TOOLKIT" = "PM" ; then
1e6feb95 2623 TOOLKIT_DIR="os2"
f6bcfd97 2624 else
3a922bb4 2625 TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
1e6feb95 2626 fi
9a98a854 2627
3a922bb4
RL
2628 dnl misc other files depending on the port
2629 PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst"
517a619d 2630
1e6feb95
VZ
2631 if test "$wxUSE_UNIVERSAL" = "yes"; then
2632 ALL_OBJECTS="\$(GUI_LOWLEVEL_OBJS) \${UNIVOBJS}"
9b695262
VZ
2633
2634 dnl ALL_SOURCES and ALL_HEADERS shouldn't include really all sources
2635 dnl and headers as some/most are not needed for wxUniv but I don't
2636 dnl have time to add GUI_LOWLEVEL_SOURCES/HEADERS stuff now (TODO!)
2637 ALL_SOURCES="\$(ALL_SOURCES) \${UNIV_SOURCES}"
2638 ALL_HEADERS="\$(ALL_HEADERS) \${UNIV_HEADERS}"
2639
3a922bb4 2640 PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst"
4175e952
RR
2641 if test "$wxUSE_X11" = 1; then
2642 TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}${PATH_IFS}\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes"
2643 else
2644 TOOLKIT_VPATH="\${top_srcdir}/src/univ${PATH_IFS}\${top_srcdir}/src/univ/themes${PATH_IFS}\${top_srcdir}/src/${TOOLKIT_DIR}"
2645 fi
3a922bb4
RL
2646 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__"
2647 WIDGET_SET=univ
1e6feb95
VZ
2648 else
2649 ALL_OBJECTS="\$(GUIOBJS)"
9b695262
VZ
2650 ALL_SOURCES="\$(ALL_SOURCES)"
2651 ALL_HEADERS="\$(ALL_HEADERS)"
1e6feb95
VZ
2652 fi
2653
ba0e650c 2654 ALL_OBJECTS="${ALL_OBJECTS} \$(COMMONOBJS) \$(GENERICOBJS)"
1e6feb95 2655
f9bc1684 2656 if test "$TOOLKIT" != "MSW" -a "$USE_DOS" != 1; then
1e6feb95
VZ
2657 ALL_OBJECTS="${ALL_OBJECTS} \$(UNIXOBJS)"
2658 fi
2659
2660 if test "$wxUSE_HTML" = "yes"; then
2661 ALL_OBJECTS="${ALL_OBJECTS} \$(HTMLOBJS)"
2662 fi
3fcdd07b 2663
4f14bcd8 2664 if test "$wxUSE_LIBJPEG" = "builtin" ; then
2224580a 2665 ALL_OBJECTS="${ALL_OBJECTS} \$(JPEGOBJS)"
d9d8273d 2666 fi
4f14bcd8 2667 if test "$wxUSE_LIBTIFF" = "builtin" ; then
d9d8273d
RR
2668 ALL_OBJECTS="${ALL_OBJECTS} \$(TIFFOBJS)"
2669 fi
4f14bcd8 2670 if test "$wxUSE_LIBPNG" = "builtin" ; then
d9d8273d
RR
2671 ALL_OBJECTS="${ALL_OBJECTS} \$(PNGOBJS)"
2672 fi
2224580a 2673
2224580a
VZ
2674 dnl distribute samples/demos/utils with GUI versions
2675 GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
2676 DISTDIR="wx\$(TOOLKIT)"
e90c1d2a 2677else
dad6c0ea
VZ
2678 USE_GUI=0
2679
3a922bb4
RL
2680 dnl this doesn't quite work right for wxBase, but the places
2681 dnl where it is wrong aren't fatal (yet) though.
07eb77a6 2682 TOOLKIT_DIR="base"
f6bcfd97 2683
e90c1d2a 2684 dnl the sources, their dependenices and the headers
3a922bb4
RL
2685 if test "$USE_WIN32" = 1 ; then
2686 ALL_OBJECTS="\${BASE_OBJS} \${BASE_MSW_OBJS}"
2687 TOOLKIT_VPATH="\${top_srcdir}/src/msw"
e90c1d2a 2688
3a922bb4
RL
2689 dnl yes, the toolkit for wxBase on win32 is actually MSW
2690 dnl wxBase on unix does not need a 'TOOLKIT' defined.
2691 TOOLKIT="MSW"
2692 else
2693 ALL_OBJECTS="\${BASE_OBJS} \${BASE_UNIX_OBJS}"
2694 TOOLKIT_VPATH="\${top_srcdir}/src/unix"
a20b6d3a
VZ
2695 fi
2696
d8356fa3
VZ
2697 ALL_SOURCES="\$(ALL_SOURCES)"
2698 ALL_HEADERS="\$(ALL_HEADERS)"
2699
831b3152 2700 PORT_FILES="\${top_srcdir}/src/files.lst"
2224580a
VZ
2701
2702 dnl distribute only wxBase sources/headers
2703 GUIDIST="BASE_DIST"
2704 DISTDIR="wxBase"
e90c1d2a
VZ
2705fi
2706
4f14bcd8
GD
2707dnl ---------------------------------------------------------------------------
2708dnl Optional libraries included when system library is not used
2709dnl ---------------------------------------------------------------------------
e45387bf
VZ
2710
2711dnl ODBC objects are Unix only
2712if test "$TOOLKIT" != "MSW" -a "$wxUSE_ODBC" = "yes" ; then
2713 ALL_OBJECTS="${ALL_OBJECTS} \$(IODBCOBJS)"
2714fi
2715
4f14bcd8 2716if test "$wxUSE_REGEX" = "builtin" ; then
3a922bb4
RL
2717 ALL_OBJECTS="${ALL_OBJECTS} \$(REGEXOBJS)"
2718fi
4f14bcd8 2719if test "$wxUSE_ZLIB" = "builtin" ; then
3a922bb4
RL
2720 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
2721fi
2722
4f14bcd8
GD
2723dnl ---------------------------------------------------------------------------
2724dnl OpenGL libraries
2725dnl ---------------------------------------------------------------------------
be505a65 2726
3a922bb4 2727if test "$wxUSE_OPENGL" = "yes"; then
ac0c4cc3 2728 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = "1"; then
62d0491b 2729 OPENGL_LIBS="-framework OpenGL -framework AGL"
be505a65
VZ
2730 elif test "$wxUSE_MSW" = 1; then
2731 OPENGL_LIBS="-lopengl32 -lglu32"
62d0491b 2732 else
62d0491b
RL
2733 AC_CHECK_HEADER(GL/gl.h,
2734 [
1352efdf 2735 AC_MSG_CHECKING([for -lGL])
62d0491b
RL
2736 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],[GL])
2737 if test "$ac_find_libraries" != "" ; then
2738 WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
4b6b4dfc
RR
2739 if test "$ac_path_to_link" = " -L/usr/lib" ; then
2740 LDFLAGS_GL="$LDFLAGS"
2741 else
2742 LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
2743 fi
62d0491b 2744 OPENGL_LIBS="-lGL -lGLU"
1352efdf 2745 AC_MSG_RESULT([yes])
62d0491b 2746 else
1352efdf
RL
2747 AC_MSG_RESULT([no])
2748 AC_MSG_CHECKING([for -lMesaGL])
62d0491b
RL
2749 WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],[MesaGL])
2750 if test "$ac_find_libraries" != "" ; then
2751 WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS])
2752 LDFLAGS_GL="$LDFLAGS$ac_path_to_link"
2753 OPENGL_LIBS="-lMesaGL -lMesaGLU"
1352efdf
RL
2754 AC_MSG_RESULT([yes])
2755 else
2756 AC_MSG_RESULT([no])
62d0491b
RL
2757 fi
2758 fi
2759 ])
fb56368a 2760
62d0491b
RL
2761 if test "x$OPENGL_LIBS" = "x"; then
2762 dnl it should be an error and not a warning because OpenGL is not on
2763 dnl by default and so if it had been explicitely requested, we
2764 dnl shouldn't just fall back to compiling the library without it
2765 AC_MSG_ERROR(OpenGL libraries not available)
2766 fi
6f754473 2767 fi
6f754473 2768
62d0491b
RL
2769 if test "$wxUSE_OPENGL" = "yes"; then
2770 AC_DEFINE(wxUSE_OPENGL)
2771 AC_DEFINE(wxUSE_GLCANVAS)
2772 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl"
2773 fi
3a922bb4
RL
2774fi
2775
2776if test -z "$TOOLKIT_VPATH" ; then
2777 TOOLKIT_VPATH="\${top_srcdir}/src/${TOOLKIT_DIR}"
2778fi
2779
2780dnl the symbol which allows conditional compilation for the given toolkit
2781if test -n "$TOOLKIT" ; then
2782 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WX${TOOLKIT}__"
2783fi
2784
f676c7ff
MB
2785lib_unicode_suffix=
2786if test "$wxUSE_UNICODE" = "yes"; then
2787 lib_unicode_suffix=u
2788fi
2789
3a922bb4
RL
2790lib_debug_suffix=
2791if test "$wxUSE_DEBUG_FLAG" = "yes"; then
2792 lib_debug_suffix=d
3a922bb4
RL
2793fi
2794
2b5f62a0
VZ
2795WX_VERSION_TAG=`echo WX${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_${WX_RELEASE} | tr "[[a-z]]" "[[A-Z]]"`
2796
2797TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}-${WX_RELEASE}"
2798TOOLCHAIN_NAME_GL="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}_gl-${WX_RELEASE}"
3a922bb4
RL
2799
2800if test "$cross_compiling" = "yes"; then
2801 TOOLCHAIN_NAME="${TOOLCHAIN_NAME}-${host_alias}"
2802 TOOLCHAIN_NAME_GL="${TOOLCHAIN_NAME_GL}-${host_alias}"
2803fi
2804
2805dnl library link name
2806WX_LIBRARY="wx_${TOOLCHAIN_NAME}"
2807WX_LIBRARY_GL="wx_${TOOLCHAIN_NAME_GL}"
2b5f62a0 2808WX_LIBRARY_BASENAME="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}"
3a922bb4 2809
3a922bb4
RL
2810dnl the name of the shared library
2811WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
2812WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
b12915c1 2813
3a922bb4
RL
2814dnl the name of the links to the shared library
2815WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${SO_SUFFIX}.${WX_CURRENT}"
2816WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2817WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}.${WX_CURRENT}"
2818WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
55e80573 2819
978f1259
RL
2820case "${host}" in
2821 *-*-cygwin* | *-*-mingw32* )
2822
2823 dnl If we are cross compiling we want to use the 'full' unix type name for the
2824 dnl lib, but for a native install use the windows style naming convention.
2da4f892 2825 dnl (excepting again that we strip the ELF style version numbers off it).
978f1259
RL
2826
2827 dnl FIXME: is this GL stuff actually even used for wxMSW? should it be??
2828
17234b26 2829 if test "$cross_compiling" != "yes" -a "$TOOLKIT_DIR" = "msw"; then
978f1259
RL
2830 WX_LIBRARY="wxmsw${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2831 WX_LIBRARY_GL="wxmsw_gl${WX_MSW_VERSION}${lib_unicode_suffix}${lib_debug_suffix}"
2832 WX_LIBRARY_NAME_SHARED="${WX_LIBRARY}.${SO_SUFFIX}"
2833 WX_LIBRARY_NAME_SHARED_GL="${WX_LIBRARY_GL}.${SO_SUFFIX}"
2da4f892
RL
2834 else
2835 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${SO_SUFFIX}"
2836 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
978f1259 2837 fi
e95edd8d 2838 ;;
978f1259 2839
e95edd8d 2840 *-*-darwin* )
05159a27
GD
2841 dnl Under Mac OS X, the naming conventions for shared libraries
2842 dnl are different: the number precedes the suffix.
1542ea39 2843
05159a27
GD
2844 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2845 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.${SO_SUFFIX}"
2846
2847 WX_LIBRARY_LINK1="lib${WX_LIBRARY}.${WX_CURRENT}.${SO_SUFFIX}"
2848 WX_LIBRARY_LINK2="lib${WX_LIBRARY}.${SO_SUFFIX}"
2849 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY_GL}.${WX_CURRENT}.${SO_SUFFIX}"
2850 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY_GL}.${SO_SUFFIX}"
2851
e95edd8d
GD
2852 dnl Under Mac OS X, we should build real frameworks instead of simple
2853 dnl dynamic shared libraries (in order to embed the resources)
2854 if test "$wxUSE_MAC" = 1; then
f346733b
GD
2855 dnl base name of the resource file for wxMac must be the same
2856 dnl as library installation base name (-install_name)
2857 WX_RESOURCES_MACOSX_ASCII="lib${WX_LIBRARY}.${WX_CURRENT}.r"
2858 WX_RESOURCES_MACOSX_DATA="lib${WX_LIBRARY}.${WX_CURRENT}.rsrc"
e95edd8d
GD
2859 fi
2860 ;;
978f1259
RL
2861esac
2862
2863dnl the name of the static library
2864WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
2865WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY_GL}.a"
2866
2867dnl define which libs wx-config should link.
2868WXCONFIG_LIBS="-l${WX_LIBRARY}"
885d4bf5 2869WXCONFIG_LIBS_STATIC="lib${WX_LIBRARY}.a"
978f1259
RL
2870
2871if test "$wxUSE_OPENGL" = "yes"; then
885d4bf5
VS
2872 WXCONFIG_LIBS_GL="-l${WX_LIBRARY_GL} ${OPENGL_LIBS}"
2873 WXCONFIG_LIBS_STATIC_GL="lib${WX_LIBRARY_GL}.a ${OPENGL_LIBS}"
978f1259
RL
2874fi
2875
2876
3a922bb4 2877dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
55e80573 2878
4222829b
VS
2879if test "$wxUSE_SHARED" = "yes"; then
2880 case "${host}" in
2881 *-pc-os2_emx | *-pc-os2-emx | \
2882 *-pc-msdosdjgpp )
2883 dnl only static for now
2884 wxUSE_SHARED=no
2885 AC_MSG_WARN([Host system doesn't support shared libraries, disabling])
2886 ;;
2887 esac
2888fi
2889
3a922bb4 2890if test "$wxUSE_SHARED" = "yes"; then
55e80573
VZ
2891
2892 dnl install targets
2893 if test "$wxUSE_OPENGL" = "yes"; then
2894 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
3a922bb4 2895 WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1} \$(build_libdir)/${WX_LIBRARY_LINK1_GL}"
55e80573
VZ
2896 else
2897 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
3a922bb4 2898 WX_ALL="\$(build_libdir)/${WX_LIBRARY_LINK1}"
55e80573
VZ
2899 fi
2900
2901 dnl the extra compiler flags needed for compilation of shared library
dd4f7467
VZ
2902 if test "$GCC" = "yes"; then
2903 dnl the switch for gcc is the same under all platforms
2904 PIC_FLAG="-fPIC"
2905 fi
55e80573 2906
2b5f62a0
VZ
2907
2908 dnl use versioned symbols if available on the platform
2909 WX_VERSIONED_SYMBOLS([\$(top_builddir)/version-script])
2910
55e80573
VZ
2911 dnl the command to use for creating the shared library
2912 SHARED_LD="${CXX} -shared -o"
2913
2914 case "${host}" in
2915 *-hp-hpux* )
2916 dnl default settings are good for gcc but not for the native HP-UX
ad2622f1 2917 if test "$GCC" = "yes"; then
85d5e282
GD
2918 dnl -o flag must be after PIC flag
2919 SHARED_LD="${CXX} -shared ${PIC_FLAG} -o"
d569ea8d 2920 else
f6bcfd97 2921 dnl no idea why it wants it, but it does
3d63bc3a 2922 LDFLAGS="$LDFLAGS -L/usr/lib"
f6bcfd97 2923
be087207
RR
2924 SHARED_LD="${CXX} -b -o"
2925 PIC_FLAG="+Z"
2926 fi
55e80573 2927
7b7a7637
RL
2928 dnl install shared libs without symlinks
2929 if test "$wxUSE_OPENGL" = "yes"; then
2930 WX_ALL_INSTALLED="preinstall_gl"
2931 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED} \$(build_libdir)/${WX_LIBRARY_NAME_SHARED_GL}"
2932 else
2933 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
2934 fi
de87c353 2935 ;;
b12915c1 2936
de87c353 2937 *-*-linux* )
55e80573
VZ
2938 if test "$GCC" != "yes"; then
2939 AC_CACHE_CHECK([for Intel compiler], wx_cv_prog_icc,
2940 [
2941 AC_TRY_COMPILE([],
2942 [
2943 #ifndef __INTEL_COMPILER
dd4f7467 2944 #error Not icc
55e80573
VZ
2945 #endif
2946 ],
2947 wx_cv_prog_icc=yes,
2948 wx_cv_prog_icc=no
2949 )
2950 ])
55e80573
VZ
2951 if test "$wx_cv_prog_icc" = "yes"; then
2952 PIC_FLAG="-KPIC"
2953 fi
2954 fi
2955
3a922bb4
RL
2956 if test "$wxUSE_SONAME" = "yes" ; then
2957 SONAME_FLAGS="-Wl,-soname,${WX_LIBRARY_LINK1}"
2958 SONAME_FLAGS_GL="-Wl,-soname,${WX_LIBRARY_LINK1_GL}"
f6bcfd97
BP
2959 dnl substitute this in makelib.env for the contrib libs
2960 WX_TARGET_LIBRARY_SONAME="-Wl,-soname,\$(TARGETLIB_LINK1)"
00cf1208 2961 fi
de87c353 2962 ;;
55e80573 2963
de87c353
RR
2964 *-*-solaris2* )
2965 if test "$GCC" = yes ; then
f6bcfd97
BP
2966 dnl newer versions of gcc need -isystem to compile X headers on
2967 dnl Solaris (which use old style C syntax)
2968 CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
de87c353
RR
2969 else
2970 SHARED_LD="${CXX} -G -o"
10f2d63a 2971 PIC_FLAG="-KPIC"
7b7a7637 2972 SONAME_FLAGS="-h ${WX_LIBRARY_NAME_SHARED}"
471944dc 2973 SONAME_FLAGS_GL="-h ${WX_LIBRARY_NAME_SHARED_GL}"
de87c353 2974 fi
de87c353 2975 ;;
55e80573 2976
b4085ce6 2977 *-*-darwin* )
90f3fe56
GD
2978 dnl For Unix to MacOS X porting instructions, see:
2979 dnl http://fink.sourceforge.net/doc/porting/porting.html
b2fee376
GD
2980 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -DWXMAKINGDLL"
2981 CFLAGS="$CFLAGS -fno-common"
2982 CXXFLAGS="$CXXFLAGS -fno-common"
fe0d8518
GD
2983 dnl wxWindows must be fully binded (lazy binding breaks RTTI classinfo)
2984 dnl this can be done either with the exe linker flag -Wl,-bind_at_load
2985 dnl or with a double stage link in order to create a single module
2986 dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
2987 SHARED_LD="\${top_srcdir}/distrib/mac/shared-ld-sh -undefined suppress -flat_namespace -o"
ea5999b9 2988 PIC_FLAG="-dynamic -fPIC"
f346733b
GD
2989 dnl library installation base name and wxMac resources file base name
2990 dnl must be identical in order for the resource file to be found at
2991 dnl run time in src/mac/app.cpp
05159a27
GD
2992 SONAME_FLAGS="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1}"
2993 SONAME_FLAGS_GL="-compatibility_version ${WX_RELEASE} -current_version ${WX_VERSION} -install_name \$(libdir)/${WX_LIBRARY_LINK1_GL}"
de87c353 2994 ;;
55e80573 2995
de87c353 2996 *-*-aix* )
2b5f62a0
VZ
2997 dnl default settings are ok for gcc
2998 if test "$GCC" != "yes"; then
2999 dnl the abs path below used to be hardcoded here so I guess it must
3000 dnl be some sort of standard location under AIX?
3001 AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
3002 makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
321d2b14 3003
2b5f62a0
VZ
3004 SHARED_LD="$(AIX_CXX_LD) -p 0 -o"
3005 fi
de87c353 3006 ;;
55e80573 3007
7b7a7637 3008 *-*-cygwin* | *-*-mingw32* )
2da4f892 3009 WX_LIBRARY_IMPORTLIB="${WX_LIBRARY_NAME_SHARED}.a"
77e13408 3010
77e13408 3011 SHARED_LD="${CXX} -shared -Wl,--out-implib,lib/${WX_LIBRARY_IMPORTLIB} -o"
00c81359 3012 TOOLCHAIN_DLL_DEFS="${TOOLCHAIN_DLL_DEFS} -DWXUSINGDLL=1"
25d0687a
RL
3013
3014 PIC_FLAG="-UWXUSINGDLL -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1"
7b7a7637 3015
f657dbe7
MB
3016 dnl Don't build seperate GL library
3017 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_SHARED}"
3018 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
3019
f6bcfd97 3020 if test "$wxUSE_OPENGL" = "yes"; then
f657dbe7 3021 LIBS="${LIBS} ${OPENGL_LIBS}"
f6bcfd97 3022 fi
de87c353 3023 ;;
55e80573 3024
b12915c1
VZ
3025 *-*-beos* )
3026 dnl can't use gcc under BeOS for shared library creation because it
3027 dnl complains about missing 'main'
3028 SHARED_LD="${LD} -shared -o"
b12915c1 3029 ;;
55e80573 3030
2b5f62a0
VZ
3031 *-*-irix* )
3032 dnl default settings are ok for gcc
3033 if test "$GCC" != "yes"; then
3034 PIC_FLAG="-KPIC"
3035 fi
3036 ;;
3037
55e80573
VZ
3038 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \
3039 *-*-sunos4* | \
55e80573
VZ
3040 *-*-osf* | \
3041 *-*-dgux5* | \
3042 *-*-sysv5* )
3043 dnl defaults are ok
3044 ;;
3045
de87c353 3046 *)
7b7a7637 3047 AC_MSG_ERROR(unknown system type $host.)
de87c353 3048 esac
9a98a854 3049
72dd34b5
VZ
3050 dnl set target to shared if not explicitly chose static before
3051 if test "x$WX_TARGET_LIBRARY" = "x"; then
3052 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
bdad4e7e 3053 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
72dd34b5 3054 fi
55e80573 3055
3711412e
RL
3056 dnl do not alter the LIBRARY_TYPE strings "so" and "a", they are magic
3057 WX_TARGET_LIBRARY_TYPE="so"
885d4bf5 3058 INSTALL_LIBRARY='$(INSTALL_PROGRAM)'
3a922bb4 3059fi
f6bcfd97 3060
3a922bb4
RL
3061dnl do not 'else' this, it may be changed in the above conditional.
3062if test "$wxUSE_SHARED" = "no"; then
f6bcfd97 3063
3a922bb4
RL
3064 dnl give static wxBase and wxMSW build a working install target
3065 if test "$wxUSE_GUI" = "no" -o "$USE_WIN32" = 1 ; then
f6bcfd97
BP
3066 dnl we're here because WX_ALL_INSTALLED is empty, but play safe anyway
3067 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3068 fi
3069
ac0c4cc3 3070 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
6fa882bd
RR
3071 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
3072 fi
3073
3a922bb4
RL
3074 if test "$wxUSE_OPENGL" = "yes"; then
3075 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_gl"
3076 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC} \$(build_libdir)/${WX_LIBRARY_NAME_STATIC_GL}"
3077 else
3078 WX_ALL="\$(build_libdir)/${WX_LIBRARY_NAME_STATIC}"
3079 fi
3080
3081 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
3082 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
3083
3711412e 3084 WX_TARGET_LIBRARY_TYPE="a"
885d4bf5 3085 INSTALL_LIBRARY='$(INSTALL_DATA)'
2bffed64
VZ
3086
3087 dnl wx-config should assume the --static flag by default if we don't have
3088 dnl any shared libs anyhow
3089 STATIC_FLAG="yes"
3090else
3091 STATIC_FLAG="no"
517a619d
RR
3092fi
3093
93fac604
VZ
3094dnl default value is to (silently) do nothing in the makefile
3095MACRESCOMP="@#"
3096MACSETFILE="@#"
36825681 3097MACRESWXCONFIG="#"
d08b457b
GD
3098if test "$wxUSE_MAC" = 1; then
3099 dnl add the resources target for wxMac
336e99e2
GD
3100 LIBWXMACRES="\$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}"
3101 WX_ALL="${WX_ALL} ${LIBWXMACRES}"
e23081de 3102 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall_res"
d08b457b 3103 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
9f8148b1 3104 AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
36825681 3105 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
ef7f2189 3106 MACOSX_BUNDLE="bundle"
2b5f62a0
VZ
3107 dnl resources are bundled both with shared library and applications
3108 dnl since the carb resource *must* be included in the application
36825681
GD
3109 MACRESCOMP="\$(RESCOMP) -d __DARWIN__ -t APPL Carbon.r ${LIBWXMACRES} -o"
3110 MACSETFILE="\$(SETFILE)"
3111 MACRESWXCONFIG="${RESCOMP} -d __DARWIN__ -t APPL Carbon.r \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
64440d77
DE
3112elif test "$wxUSE_COCOA" = 1; then
3113 AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez)
3114 AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez)
3115 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
3116 MACRESCOMP="echo -n | \$(RESCOMP) -d __DARWIN__ -t APPL ${LIBWXMACRES} -o"
3117 MACSETFILE="\$(SETFILE)"
3118 MACRESWXCONFIG="echo -n | ${RESCOMP} -d __DARWIN__ -t APPL \$(top_builddir)/lib/${WX_RESOURCES_MACOSX_ASCII}} -o"
590b1a4d
SN
3119else
3120 if test "$wxUSE_PM" = 1; then
36825681 3121 MACRESCOMP="emxbind -ep"
590b1a4d 3122 fi
d08b457b
GD
3123fi
3124
9a98a854
VZ
3125dnl ---------------------------------------------------------------------------
3126dnl Checks for typedefs
3127dnl ---------------------------------------------------------------------------
3128
3129dnl defines mode_t if not already defined
3130AC_TYPE_MODE_T
3131dnl defines off_t if not already defined
3132AC_TYPE_OFF_T
3133dnl defines pid_t if not already defined
3134AC_TYPE_PID_T
3135dnl defines size_t if not already defined
3136AC_TYPE_SIZE_T
3137dnl defines uid_t and gid_t if not already defined
3138AC_TYPE_UID_T
3139
d836ee96
VZ
3140dnl check what exactly size_t is on this machine - this is necessary to avoid
3141dnl ambiguos overloads in several places, notably wx/string.h and wx/array.h
19af3b06
VZ
3142AC_LANG_SAVE
3143AC_LANG_CPLUSPLUS
d836ee96
VZ
3144AC_CACHE_CHECK([if size_t is unsigned int],
3145 wx_cv_size_t_is_uint,
dd2c8b7c
VZ
3146 dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work
3147 dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate
3148 dnl methods in a local class (i.e. class inside a function) declaration
3149 dnl without any objections!!
3150 dnl
3151 dnl hence the hack below: we must have Foo at global scope!
d836ee96
VZ
3152 AC_TRY_COMPILE([#include <stddef.h>],
3153 [
dd2c8b7c
VZ
3154 return 0; }
3155
d836ee96 3156 struct Foo { void foo(size_t); void foo(unsigned int); };
dd2c8b7c
VZ
3157
3158 int bar() {
d836ee96
VZ
3159 ],
3160 wx_cv_size_t_is_uint=no,
3161 wx_cv_size_t_is_uint=yes
3162 )
3163)
3164
3165if test "$wx_cv_size_t_is_uint" = "yes"; then
3166 AC_DEFINE(wxSIZE_T_IS_UINT)
3167else
3168 AC_CACHE_CHECK([if size_t is unsigned long],
3169 wx_cv_size_t_is_ulong,
3170 AC_TRY_COMPILE([#include <stddef.h>],
3171 [
dd2c8b7c
VZ
3172 return 0; }
3173
d836ee96 3174 struct Foo { void foo(size_t); void foo(unsigned long); };
dd2c8b7c
VZ
3175
3176 int bar() {
d836ee96
VZ
3177 ],
3178 wx_cv_size_t_is_ulong=no,
3179 wx_cv_size_t_is_ulong=yes
3180 )
3181 )
3182
3183 if test "$wx_cv_size_t_is_ulong" = "yes"; then
3184 AC_DEFINE(wxSIZE_T_IS_ULONG)
3185 fi
3186fi
3187
19af3b06
VZ
3188AC_LANG_RESTORE
3189
9a98a854
VZ
3190dnl ---------------------------------------------------------------------------
3191dnl Checks for structures
3192dnl ---------------------------------------------------------------------------
3193
b12915c1
VZ
3194dnl does passwd struct has the pw_gecos field?
3195AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
3196 [
3197 AC_TRY_COMPILE([#include <pwd.h>],
3198 [
3199 char *p;
3200 struct passwd *pw;
3201 p = pw->pw_gecos;
3202 ],
3203 [
3204 wx_cv_struct_pw_gecos=yes
b12915c1
VZ
3205 ],
3206 [
3207 wx_cv_struct_pw_gecos=no
3208 ]
3209 )
3210 ]
3211)
3212
bd3277fe
VZ
3213if test "$wx_cv_struct_pw_gecos" = "yes"; then
3214 AC_DEFINE(HAVE_PW_GECOS)
3215fi
3216
9a98a854 3217dnl ---------------------------------------------------------------------------
9a98a854
VZ
3218dnl Check for functions
3219dnl ---------------------------------------------------------------------------
3220
d29b553b 3221dnl don't check for wchar_t functions if we haven't got wchar_t itself
d29b553b 3222if test "$wx_cv_sizeof_wchar_t" != "0"; then
d74f4b5a
VZ
3223 AC_DEFINE(wxUSE_WCHAR_T)
3224
3225 dnl check for wcslen in all possible places
3226 WCSLEN_FOUND=0
d29b553b 3227 WCHAR_LINK=
d74f4b5a 3228 AC_CHECK_FUNCS(wcslen, WCSLEN_FOUND=1)
d29b553b 3229
d74f4b5a 3230 if test "$WCSLEN_FOUND" = 0; then
7a30264c 3231 if test "$TOOLKIT" = "MSW"; then
d74f4b5a 3232 AC_CHECK_LIB(msvcrt, wcslen, WCHAR_OK=1)
7a30264c
VZ
3233 else
3234 AC_CHECK_LIB(w, wcslen, [
7a30264c 3235 WCHAR_LINK=" -lw"
d74f4b5a 3236 WCSLEN_FOUND=1
7a30264c
VZ
3237 ])
3238 fi
d29b553b 3239 fi
9a98a854 3240
d74f4b5a
VZ
3241 if test "$WCSLEN_FOUND" = 1; then
3242 AC_DEFINE(HAVE_WCSLEN)
3243 fi
d29b553b 3244
d74f4b5a 3245 dnl try to use wcsrtombs instead of wcstombs which is buggy in old GNU
d29b553b
VZ
3246 dnl libc versions if possible
3247 AC_CHECK_FUNCS(wcsrtombs)
3248else
d74f4b5a 3249 AC_MSG_WARN([Wide character support is unavailable])
d29b553b 3250fi
b3e8d00a 3251
247f5006
VZ
3252dnl *printf() functions sometimes are available in the library but not
3253dnl prototyped -- if this is the case, we can't use them from C++ code, but to
3254dnl detect this we have to use C++ compiler for testing
3255AC_LANG_SAVE
3256AC_LANG_CPLUSPLUS
aea02638 3257
247f5006 3258dnl check for vsnprintf() -- a safe version of vsprintf())
ec0d6da3
VZ
3259dnl
3260dnl the trouble here is that on some systems (notable HP-UX) this function is
3261dnl present in libc but not in the system headers and so AC_CHECK_FUNCS (which,
3262dnl stupidly, provides a dummy function declaration inside its extension)
3263dnl succeeds, even with C++ compiler, but the compilation of wxWindows fails
3264dnl
3265dnl so we first check if the function is in the library
247f5006 3266AC_CHECK_FUNCS(vsnprintf)
9d8deca0 3267
ec0d6da3
VZ
3268if test "$ac_cv_func_vsnprintf" = "yes"; then
3269 dnl yes it is -- now check if it is in the headers
3270 AC_CACHE_CHECK([for vsnprintf declaration], wx_cv_func_vsnprintf_decl,
3271 [
3272 AC_TRY_COMPILE(
3273 [
3274 #include <stdio.h>
3275 #include <stdarg.h>
3276 ],
3277 [
3278 char *buf;
3279 va_list ap;
3280 vsnprintf(buf, 10u, "%s", ap);
3281 ],
3282 wx_cv_func_vsnprintf_decl=yes,
3283 wx_cv_func_vsnprintf_decl=no
3284 )
3285 ]
3286 )
3287
3288 if test "$wx_cv_func_vsnprintf_decl" = "yes"; then
3289 AC_DEFINE(HAVE_VSNPRINTF_DECL)
3290 fi
3291fi
3292
d74f4b5a 3293if test "$wxUSE_UNICODE" = yes; then
247f5006 3294 dnl also look if we have wide char IO functions
5c6fa7d2 3295 AC_CHECK_FUNCS(fputwc wprintf vswprintf)
ec0d6da3 3296
79668cae
MB
3297 dnl MinGW has a vswprintf with a different prototype, and
3298 dnl a _vsnwprintf with the correct prototype, but AC_CHECK_FUNCS
3299 dnl finds it even if it is not declared in some versions...
3300 AC_MSG_CHECKING([for _vsnwprintf])
3301 AC_TRY_COMPILE([#include <wchar.h>],
3302 [&_vsnwprintf;],
3303 [AC_MSG_RESULT([yes])
3304 AC_DEFINE(HAVE__VSNWPRINTF)],
3305 [AC_MSG_RESULT([no])]);
d74f4b5a
VZ
3306fi
3307
247f5006
VZ
3308AC_LANG_RESTORE
3309
3310
3311
f6bcfd97 3312dnl the following tests are for Unix(like) systems only
b089607b 3313if test "$TOOLKIT" != "MSW"; then
a0c79abb 3314
95c8801c
VS
3315dnl check for available version of iconv()
3316
3317AC_LANG_SAVE
3318AC_LANG_CPLUSPLUS
b040e242
VS
3319AM_ICONV
3320LIBS="$LIBICONV $LIBS"
95c8801c 3321AC_LANG_RESTORE
95c8801c 3322
eb4efbdc
VZ
3323dnl check for POSIX signals if we need them
3324if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
3325 AC_CHECK_FUNCS(sigaction)
3326
3327 if test "$ac_cv_func_sigaction" = "no"; then
3328 AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
3329 wxUSE_ON_FATAL_EXCEPTION=no
3330 fi
f6bcfd97
BP
3331
3332 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3333 AC_LANG_SAVE
3334 AC_LANG_CPLUSPLUS
3335
3336 AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
3337 [
3338 AC_TRY_COMPILE([#include <signal.h>],
3339 [
3340 extern void testSigHandler(int);
3341
3342 struct sigaction sa;
3343 sa.sa_handler = testSigHandler;
3344 ], [
3345 wx_cv_type_sa_handler=int
3346 ], [
3347 wx_cv_type_sa_handler=void
3348 ])
3349 ])
3350
3351 AC_LANG_RESTORE
3352
3353 AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
3354 fi
eb4efbdc
VZ
3355fi
3356
ade35f11
VZ
3357dnl check for the function for temp files creation
3358AC_CHECK_FUNCS(mkstemp mktemp, break)
3359
9952adac
VZ
3360dnl get the library function to use for wxGetDiskSpace(): it is statfs() under
3361dnl Linux and *BSD and statvfs() under Solaris
52e8b690
VZ
3362AC_CACHE_CHECK(for statfs, wx_cv_func_statfs,
3363 AC_TRY_COMPILE(
3364 [
9952adac 3365 #if defined(__BSD__)
d08b457b
GD
3366 #include <sys/param.h>
3367 #include <sys/mount.h>
3368 #else
3369 #include <sys/vfs.h>
3370 #endif
52e8b690
VZ
3371 ],
3372 [
3373 long l;
3374 struct statfs fs;
3375 statfs("/", &fs);
3376 l = fs.f_bsize;
3377 l += fs.f_blocks;
3378 l += fs.f_bavail;
3379 ],
3380 [
3381 wx_cv_func_statfs=yes
3382 ],
3383 [
3384 wx_cv_func_statfs=no
3385 ]
3386 )
3387)
3388
3389if test "$wx_cv_func_statfs" = "yes"; then
54ab82b3 3390 wx_cv_type_statvfs_t="struct statfs"
52e8b690
VZ
3391 AC_DEFINE(HAVE_STATFS)
3392else
9952adac
VZ
3393 AC_CACHE_CHECK(for statvfs, wx_cv_func_statvfs,
3394 AC_TRY_COMPILE(
3395 [
54ab82b3
VZ
3396 #include <stddef.h>
3397 #include <sys/statvfs.h>
9952adac
VZ
3398 ],
3399 [
54ab82b3 3400 statvfs("/", NULL);
9952adac 3401 ],
54ab82b3
VZ
3402 wx_cv_func_statvfs=yes,
3403 wx_cv_func_statvfs=no
9952adac 3404 )
af15babd 3405 )
9952adac
VZ
3406
3407 if test "$wx_cv_func_statvfs" = "yes"; then
54ab82b3
VZ
3408 dnl we also have to check whether we should use statvfs_t (works under
3409 dnl Solaris 8, doesn't work under Solaris 7) or "struct statvfs" (vice
3410 dnl versa) as the argument for statvfs in 64 bit off_t mode (in 32 bit
3411 dnl mode both work fine)
3412 dnl
3413 dnl for this check C++ compiler has to be used as passing incompatible
3414 dnl pointers is just a warning and not an error in C
3415 AC_LANG_SAVE
3416 AC_LANG_CPLUSPLUS
3417
3418 AC_CACHE_CHECK(for statvfs argument type, wx_cv_type_statvfs_t,
3419 AC_TRY_COMPILE(
3420 [
3421 #include <sys/statvfs.h>
3422 ],
3423 [
3424 long l;
3425 statvfs_t fs;
3426 statvfs("/", &fs);
3427 l = fs.f_bsize;
3428 l += fs.f_blocks;
3429 l += fs.f_bavail;
3430 ],
3431 wx_cv_type_statvfs_t=statvfs_t,
3432 [
3433 AC_TRY_COMPILE(
3434 [
3435 #include <sys/statvfs.h>
3436 ],
3437 [
3438 long l;
e107213f 3439 struct statvfs fs;
54ab82b3
VZ
3440 statvfs("/", &fs);
3441 l = fs.f_bsize;
3442 l += fs.f_blocks;
3443 l += fs.f_bavail;
3444 ],
3445 wx_cv_type_statvfs_t="struct statvfs",
3446 wx_cv_type_statvfs_t="unknown"
3447 )
3448 ]
3449 )
3450 )
3451
3452 AC_LANG_RESTORE
3453
3454 if test "$wx_cv_type_statvfs_t" != "unknown"; then
3455 AC_DEFINE(HAVE_STATVFS)
3456 fi
9952adac 3457 else
54ab82b3
VZ
3458 dnl set it for the test below
3459 wx_cv_type_statvfs_t="unknown"
9952adac 3460 fi
52e8b690
VZ
3461fi
3462
54ab82b3
VZ
3463if test "$wx_cv_type_statvfs_t" != "unknown"; then
3464 AC_DEFINE_UNQUOTED(WX_STATFS_T, $wx_cv_type_statvfs_t)
3465else
3466 AC_MSG_WARN([wxGetDiskSpace() function won't work without statfs()])
3467fi
3468
4f3c5f06
VZ
3469dnl check for fcntl() or at least flock() needed by Unix implementation of
3470dnl wxSingleInstanceChecker
3471if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
3472 AC_CHECK_FUNCS(fcntl flock, break)
3473
3474 if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then
3475 AC_MSG_WARN(wxSingleInstanceChecker not available)
3476 wxUSE_SNGLINST_CHECKER=no
3477 fi
3478fi
3479
270a909e
VZ
3480dnl check for timegm() used by datetime.cpp
3481AC_CHECK_FUNCS(timegm)
3482
4f3c5f06 3483dnl look for a function to modify the environment
8fd0d89b
VZ
3484AC_CHECK_FUNCS(putenv setenv, break)
3485
b12915c1
VZ
3486HAVE_SOME_SLEEP_FUNC=0
3487if test "$USE_BEOS" = 1; then
3488 dnl BeOS has its own (wonder where did they get it from) sleep() function
3489 dnl in unistd.h
3490 AC_DEFINE(HAVE_SLEEP)
3491 HAVE_SOME_SLEEP_FUNC=1
3492fi
3493
f11bdd03 3494if test "$USE_DARWIN" = 1; then
b2fee376 3495 dnl Mac OS X/Darwin has both nanosleep and usleep
b4085ce6
GD
3496 dnl but only usleep is defined in unistd.h
3497 AC_DEFINE(HAVE_USLEEP)
3498 HAVE_SOME_SLEEP_FUNC=1
3499fi
3500
b12915c1
VZ
3501if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
3502 dnl try nanosleep() in libc and libposix4, if this fails - usleep()
3503 POSIX4_LINK=
3504 AC_CHECK_FUNCS(nanosleep,
3505 AC_DEFINE(HAVE_NANOSLEEP),
3506 [
3507 AC_CHECK_LIB(posix4, nanosleep,
3508 [
3509 AC_DEFINE(HAVE_NANOSLEEP)
3d63bc3a 3510 POSIX4_LINK=" -lposix4"
b12915c1
VZ
3511 ],
3512 [
b4085ce6 3513 AC_CHECK_FUNCS(usleep,
4f3c5f06
VZ
3514 AC_DEFINE(HAVE_USLEEP),
3515 AC_MSG_WARN([wxSleep() function will not work])
3516 )
b12915c1
VZ
3517 ]
3518 )
3519 ]
3520 )
3521fi
9a98a854
VZ
3522
3523dnl check for uname (POSIX) and gethostname (BSD)
3524AC_CHECK_FUNCS(uname gethostname, break)
3525
6098c7f9
VZ
3526dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
3527dnl but not for C++ one - hence change language)
3528AC_LANG_SAVE
3529AC_LANG_CPLUSPLUS
3530
e90c1d2a
VZ
3531AC_CHECK_FUNCS(strtok_r)
3532
6098c7f9
VZ
3533AC_LANG_RESTORE
3534
c63c7106 3535dnl check for inet_addr and inet_aton (these may live either in libc, or in
c6712985 3536dnl libnsl or libresolv or libsocket)
c63c7106
VZ
3537INET_LINK=
3538AC_CHECK_FUNCS(inet_addr,
3539 AC_DEFINE(HAVE_INET_ADDR),
3540 [
3541 AC_CHECK_LIB(nsl, inet_addr,
270a909e 3542 INET_LINK="nsl",
c63c7106 3543 AC_CHECK_LIB(resolv, inet_addr,
c6712985
SN
3544 INET_LINK="resolv",
3545 AC_CHECK_LIB(socket, inet_addr,
3546 INET_LINK="socket"
3547 )
c63c7106
VZ
3548 )
3549 )
3550 ]
3551)
3552
3553AC_CHECK_FUNCS(inet_aton,
3554 AC_DEFINE(HAVE_INET_ATON),
3555 [
3556 dnl only check it in the same lib
3557 AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
3558 ])
3559
3560if test "x$INET_LINK" != "x"; then
3561 AC_DEFINE(HAVE_INET_ADDR)
3d63bc3a 3562 INET_LINK=" -l$INET_LINK"
c63c7106 3563fi
e96ac54e 3564
a0c79abb 3565fi
b089607b 3566dnl if !MSW
a0c79abb 3567
9a98a854
VZ
3568dnl ===========================================================================
3569dnl Now we have all the info we need - use it!
3570dnl ===========================================================================
3571
3572dnl flush the cache
3573AC_CACHE_SAVE
3574
3575dnl ---------------------------------------------------------------------------
a0b9e27f 3576dnl thread support for Unix (for Win32 see past the next matching "else")
9a98a854
VZ
3577dnl ---------------------------------------------------------------------------
3578
a0b9e27f 3579dnl under MSW (except mingw32) we always have thread support
009fead0 3580CPP_MT_FLAG=
b089607b 3581if test "$TOOLKIT" != "MSW"; then
a9b5e89f 3582
7274f1c7 3583 dnl the code below:
009fead0
VZ
3584 dnl
3585 dnl defines THREADS_LINK and THREADS_CFLAGS which are the options
3586 dnl necessary to build the MT programs for the linker and compiler
3587 dnl respectively
3588 dnl
3589 dnl sets wxUSE_THREADS=1 if thread support is activated
7274f1c7
RL
3590
3591 THREADS_LINK=
009fead0 3592 THREADS_CFLAGS=
7274f1c7
RL
3593
3594 if test "$wxUSE_THREADS" = "yes" ; then
d1188635 3595 if test "$USE_BEOS" = 1; then
156b2523 3596 AC_MSG_WARN([BeOS threads are not yet supported... disabled])
7274f1c7
RL
3597 wxUSE_THREADS="no"
3598 fi
77c85c2b 3599 fi
39c9d5ac 3600
7274f1c7
RL
3601 if test "$wxUSE_THREADS" = "yes" ; then
3602 dnl find if POSIX threads are available
009fead0
VZ
3603 dnl
3604 dnl the tests here are based on ACX_PTHREAD macro from autoconf macro
3605 dnl archive from http://ac-archive.sourceforge.net/
3606 dnl
3607 dnl thanks to Steven G. Johnson <stevenj@alum.mit.edu> and Alejandro
3608 dnl Forero Cuervo <bachue@bachue.com> for the original code
3609
3610 dnl TODO: cache the result
3611
3612 dnl define the list of the thread options to try in the loop below
3613 dnl with the convention that anything starting with '-' is a cpp flag
3614 dnl while anything else is a library (i.e. there is an implicit "-l")
3615 THREAD_OPTS="-pthread"
3616 case "${host}" in
3617 *-*-solaris2* | *-*-sunos4* )
3618 if test "x$GCC" = "xyes"; then
126be6b4
VZ
3619 dnl Solaris/gcc combination use this one for some reason
3620 THREAD_OPTS="-pthreads $THREAD_OPTS"
009fead0
VZ
3621 else
3622 THREAD_OPTS="-mt $THREAD_OPTS"
3623 fi
3624 ;;
3625 *-*-freebsd*)
3626 dnl look, in order, for the kernel threads, then Linux threads
3627 dnl and finally the userland threads
3628 THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r"
3629 ;;
17234b26 3630 *-*-darwin* | *-*-cygwin* )
4101db81 3631 dnl Darwin / Mac OS X just uses -lpthread tested below
17234b26 3632 dnl and so does Cygwin
4101db81
GD
3633 THREAD_OPTS=""
3634 ;;
3635 *-*-aix*)
009fead0
VZ
3636 dnl AIX calls the library libpthreads - thanks IBM!
3637 THREAD_OPTS="pthreads"
3638 ;;
4f5a7f74
VZ
3639 *-hp-hpux* )
3640 dnl HP-UX aCC only gives a warning, not an error about
3641 dnl -pthread but it doesn't work and we have to use -lpthread
3642 dnl there
3643 if test "x$GCC" != "xyes"; then
3644 THREAD_OPTS=""
3645 fi
009fead0 3646 esac
c596875e 3647
595e0e44
VZ
3648 dnl simply linking with libpthread should make the test below work but
3649 dnl it's far from certain that the threaded programs compiled without
3650 dnl any special switches actually work, so try it after all the others
02a1dfba 3651 THREAD_OPTS="$THREAD_OPTS pthread none"
595e0e44 3652
009fead0
VZ
3653 dnl now test for all possibilities
3654 THREADS_OK=no
3655 for flag in $THREAD_OPTS; do
3656 case $flag in
3657 none)
3658 AC_MSG_CHECKING([whether pthreads work without any flags])
3659 ;;
f6bcfd97 3660
009fead0
VZ
3661 -*)
3662 AC_MSG_CHECKING([whether pthreads work with $flag])
3663 THREADS_CFLAGS="$flag"
3664 ;;
9a98a854 3665
009fead0
VZ
3666 *)
3667 AC_MSG_CHECKING([for the pthreads library -l$flag])
3668 THREADS_LINK="-l$flag"
3669 ;;
3670 esac
3671
3672 save_LIBS="$LIBS"
3673 save_CFLAGS="$CFLAGS"
3674 LIBS="$THREADS_LINK $LIBS"
04727afd 3675 CFLAGS="$THREADS_CFLAGS $CFLAGS"
009fead0
VZ
3676
3677 AC_TRY_LINK([#include <pthread.h>],
3678 [pthread_create(0,0,0,0);],
3679 THREADS_OK=yes)
3680
3681 LIBS="$save_LIBS"
3682 CFLAGS="$save_CFLAGS"
3683
3684 AC_MSG_RESULT($THREADS_OK)
3685 if test "x$THREADS_OK" = "xyes"; then
3686 break;
3687 fi
3688
3689 THREADS_LINK=""
3690 THREADS_CFLAGS=""
3691 done
3692
3693 if test "x$THREADS_OK" != "xyes"; then
3694 wxUSE_THREADS=no
3695 AC_MSG_WARN([No thread support on this system... disabled])
3696 else
fe5a9cab
VZ
3697 dnl yes, these special compiler flags should be used with the
3698 dnl linker as well
db82f09e
VZ
3699 LDFLAGS="$THREADS_CFLAGS $LDFLAGS"
3700 LIBS="$THREADS_LINK $LIBS"
fe5a9cab 3701
009fead0
VZ
3702 AC_MSG_CHECKING([if more special flags are required for pthreads])
3703 flag=no
3704 case "${host}" in
2b5f62a0
VZ
3705 *-aix*)
3706 dnl again quoting from
3707 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
3708 dnl
3709 dnl When compiling and linking with -pthread, the library
3710 dnl search path should include -L/usr/lib/threads at the
3711 dnl beginning of the path.
3712 LDFLAGS="-L/usr/lib/threads $LDFLAGS"
3713 flag="-D_THREAD_SAFE"
3714 ;;
3715 *-freebsd*)
009fead0
VZ
3716 flag="-D_THREAD_SAFE"
3717 ;;
06313569
GD
3718 *-hp-hpux* )
3719 flag="-D_REENTRANT"
4f5a7f74
VZ
3720 if test "x$GCC" != "xyes"; then
3721 dnl see http://docs.hp.com/hpux/onlinedocs/2213/threads.htm
3722 flag="$flag -D_RWSTD_MULTI_THREAD"
3723 fi
06313569 3724 ;;
009fead0
VZ
3725 *solaris* | alpha*-osf*)
3726 flag="-D_REENTRANT"
3727 ;;
3728 esac
3729 AC_MSG_RESULT(${flag})
3730 if test "x$flag" != xno; then
04727afd 3731 THREADS_CFLAGS="$THREADS_CFLAGS $flag"
009fead0
VZ
3732 fi
3733
009fead0 3734 if test "x$THREADS_CFLAGS" != "x"; then
fe5a9cab 3735 dnl don't add these options to CPPFLAGS as cpp might not know them
009fead0
VZ
3736 CFLAGS="$CFLAGS $THREADS_CFLAGS"
3737 CXXFLAGS="$CXXFLAGS $THREADS_CFLAGS"
3738 fi
3739 fi
aea02638 3740 fi
9a98a854 3741
7274f1c7
RL
3742 dnl do other tests only if we are using threads
3743 if test "$wxUSE_THREADS" = "yes" ; then
3744 AC_CHECK_FUNCS(thr_setconcurrency)
3745
7274f1c7 3746 AC_CHECK_HEADERS(sched.h)
009fead0
VZ
3747 if test "$ac_cv_header_sched_h" = "yes"; then
3748 AC_CHECK_FUNC(sched_yield,
3749 AC_DEFINE(HAVE_SCHED_YIELD),
3750 [
3751 AC_CHECK_LIB(posix4,
3752 sched_yield,
3753 [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK=" -lposix4"],
3754 AC_MSG_WARN(wxThread::Yield will not work properly)
3755 )
3756 ]
3757 )
3758 fi
9a98a854 3759
7274f1c7
RL
3760 dnl to be able to set the thread priority, we need to have all of the
3761 dnl following functions:
3762 dnl 1. pthread_attr_getschedpolicy
3763 dnl 2. sched_get_priority_min and sched_get_priority_max
3764 dnl (this one can be in either libpthread or libposix4 (under Solaris))
3765 dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam
3766 HAVE_PRIOR_FUNCS=0
009fead0
VZ
3767 AC_CHECK_FUNC(pthread_attr_getschedpolicy,
3768 AC_CHECK_FUNC(pthread_attr_setschedparam,
3769 AC_CHECK_FUNC(sched_get_priority_max,
7274f1c7
RL
3770 HAVE_PRIOR_FUNCS=1,
3771 AC_CHECK_LIB([posix4], sched_get_priority_max,
3772 [
3773 HAVE_PRIOR_FUNCS=1
3774 POSIX4_LINK=" -lposix4"
3775 ],
3776 )
3777 )
3778 )
3779 )
f6bcfd97 3780
7274f1c7
RL
3781 if test "$HAVE_PRIOR_FUNCS" = 1; then
3782 AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
3783 else
3784 AC_MSG_WARN(Setting thread priority will not work)
3785 fi
9a98a854 3786
009fead0
VZ
3787 AC_CHECK_FUNC(pthread_cancel,
3788 AC_DEFINE(HAVE_PTHREAD_CANCEL),
3789 AC_MSG_WARN([wxThread::Kill() will not work properly]))
9a98a854 3790
7274f1c7
RL
3791 AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push,
3792 [
3793 AC_TRY_COMPILE([#include <pthread.h>],
3794 [
3795 pthread_cleanup_push(NULL, NULL);
3796 pthread_cleanup_pop(0);
3797 ], [
3798 wx_cv_func_pthread_cleanup_push=yes
3799 ], [
3800 wx_cv_func_pthread_cleanup_push=no
3801 ])
3802 ])
d9b9876f 3803
7274f1c7
RL
3804 if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then
3805 AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS)
3806 fi
ab252f7b 3807
7274f1c7
RL
3808 dnl mutexattr_t initialization is done in quite different ways on different
3809 dnl platforms, so check for a few things:
3810 dnl
3811 dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
3812 dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
3813 dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
3814 dnl defined, we do it by directly assigned
3815 dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
3816
7274f1c7
RL
3817 AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
3818 [
d9b9876f
VZ
3819 AC_TRY_COMPILE([#include <pthread.h>],
3820 [
7274f1c7
RL
3821 pthread_mutexattr_t attr;
3822 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
d9b9876f 3823 ], [
7274f1c7 3824 wx_cv_type_pthread_mutexattr_t=yes
d9b9876f 3825 ], [
7274f1c7 3826 wx_cv_type_pthread_mutexattr_t=no
d9b9876f
VZ
3827 ]
3828 )
7274f1c7 3829 ])
d9b9876f 3830
7274f1c7
RL
3831 if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
3832 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
3833 else
3834 dnl don't despair, there may be another way to do it
3835 AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
3836 wx_cv_type_pthread_rec_mutex_init,
3837 [
3838 AC_TRY_COMPILE([#include <pthread.h>],
3839 [
3840 pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
3841 ], [
3842 wx_cv_type_pthread_rec_mutex_init=yes
3843 ], [
3844 wx_cv_type_pthread_rec_mutex_init=no
3845 ]
3846 )
3847 ])
3848 if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then
3849 AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
3850 else
3851 dnl this may break code working elsewhere, so at least warn about it
3852 AC_MSG_WARN([wxMutex won't be recursive on this platform])
3853 fi
3854 fi
7274f1c7 3855 fi
9a98a854 3856
b089607b 3857dnl from if !MSW
a0b9e27f
MB
3858else
3859 if test "$wxUSE_THREADS" = "yes" ; then
3860 case "${host}" in
3861 *-*-mingw32* )
ca8e52b3
VZ
3862 dnl check if the compiler accepts -mthreads
3863 AC_CACHE_CHECK([if compiler supports -mthreads],
3864 wx_cv_cflags_mthread,
3865 [
3866 CFLAGS_OLD="$CFLAGS"
3867 CFLAGS="$CFLAGS -mthreads"
3868 AC_TRY_COMPILE([], [],
3869 wx_cv_cflags_mthread=yes,
3870 wx_cv_cflags_mthread=no
3871 )
3872 ]
3873 )
3874
3875 if test "$wx_cv_cflags_mthread" = "yes"; then
3876 dnl it does, use it
3877 CXXFLAGS="$CXXFLAGS -mthreads"
3878 TOOLCHAIN_DEFS="$TOOLCHAIN_DEFS -mthreads"
3879 LDFLAGS="$LDFLAGS -mthreads"
3880 else
3881 dnl it doesn't
3882 CFLAGS="$CFLAGS_OLD"
3883 fi
a0b9e27f
MB
3884 ;;
3885 esac
3886 fi
a9b5e89f
VZ
3887fi
3888
3889if test "$wxUSE_THREADS" = "yes"; then
3890 AC_DEFINE(wxUSE_THREADS)
3891
a9b5e89f 3892 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
d64af447 3893else
b12915c1 3894 dnl on some systems, _REENTRANT should be defined if we want to use any _r()
d64af447
VZ
3895 dnl functions - add tests for other functions here as well
3896 if test "$ac_cv_func_strtok_r" = "yes"; then
ab9b9eab
VZ
3897 AC_MSG_CHECKING(if -D_REENTRANT is needed)
3898 if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
3a922bb4 3899 TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D_REENTRANT"
ab9b9eab
VZ
3900 AC_MSG_RESULT(yes)
3901 else
3902 AC_MSG_RESULT(no)
ee31c269 3903 fi
d64af447 3904 fi
a9b5e89f
VZ
3905fi
3906
6f72b082
OK
3907if test "$WXGTK20" = 1 ; then
3908 AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
13111b2a
VZ
3909 WXGTK12=1
3910fi
3911
9a98a854
VZ
3912if test "$WXGTK12" = 1 ; then
3913 AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
3914fi
3915
f6bcfd97
BP
3916if test "$WXGTK127" = 1 ; then
3917 AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
3918fi
3919
9a98a854 3920WXDEBUG=
9a98a854
VZ
3921
3922if test "$wxUSE_DEBUG_INFO" = "yes" ; then
3923 WXDEBUG="-g"
3924 wxUSE_OPTIMISE=no
3925fi
3926
5586805b
RR
3927if test "$wxUSE_DEBUG_GDB" = "yes" ; then
3928 wxUSE_DEBUG_INFO=yes
3929 WXDEBUG="-ggdb"
3930fi
3931
9a98a854 3932if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
77c85c2b
RR
3933 AC_DEFINE(WXDEBUG)
3934 WXDEBUG_DEFINE="-D__WXDEBUG__"
9a98a854 3935else
04338f96
RR
3936 if test "$wxUSE_GTK" = 1 ; then
3937 WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
3938 fi
9a98a854
VZ
3939fi
3940
3941if test "$wxUSE_MEM_TRACING" = "yes" ; then
77c85c2b
RR
3942 AC_DEFINE(wxUSE_MEMORY_TRACING)
3943 AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
47c13eb7 3944 AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
77c85c2b 3945 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
9a98a854
VZ
3946fi
3947
3948if test "$wxUSE_DMALLOC" = "yes" ; then
3d63bc3a 3949 DMALLOC_LIBS="-ldmalloc"
9a98a854
VZ
3950fi
3951
3952PROFILE=
3953if test "$wxUSE_PROFILE" = "yes" ; then
3d63bc3a 3954 PROFILE=" -pg"
9a98a854
VZ
3955fi
3956
009fead0
VZ
3957CODE_GEN_FLAGS=
3958CODE_GEN_FLAGS_CXX=
88e30f2b 3959if test "$GCC" = "yes" ; then
f7bdcdd7 3960 if test "$wxUSE_NO_RTTI" = "yes" ; then
3a922bb4 3961 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-rtti"
f7bdcdd7
RR
3962 fi
3963 if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
3a922bb4 3964 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-exceptions"
f7bdcdd7 3965 fi
5586805b 3966 if test "$wxUSE_PERMISSIVE" = "yes" ; then
d08b457b 3967 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
5586805b 3968 fi
3a922bb4
RL
3969 if test "$USE_WIN32" = 1 ; then
3970 # I'm not even really sure what this was ever added to solve,
3971 # but someone added it for mingw native builds, so I guess
3972 # they had a reason, right??
3973 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fno-pcc-struct-return"
5586805b 3974 fi
1d1b75ac
VZ
3975
3976 dnl Ian Brown <ian.brown@printsoft.de> reports that versions of gcc before
3977 dnl 3.0 overflow the table of contents on rs6000 as they create an entry
3978 dnl for each subroutine by default -- using the switch below only creates
3979 dnl one entry per file instead at the price of minor performance penalty
3980 dnl
2b5f62a0
VZ
3981 dnl As of wx2.4 a bug in the hppa gcc compiler causes a similar problem
3982 dnl without -ffunction-sections. No idea how long we'll need to maintain
3983 dnl this, or even the extent of gcc/wx version combinations affected, but
3984 dnl also as above, this 'fix' does not come without side effects.
3985 dnl
1d1b75ac
VZ
3986 dnl TODO: test for the gcc version here (how?)
3987 case "${host}" in
3988 powerpc*-*-aix* )
3989 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -mminimal-toc"
3990 ;;
2b5f62a0
VZ
3991 *-hppa* )
3992 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -ffunction-sections"
3993 ;;
1d1b75ac 3994 esac
c596875e
RD
3995fi
3996
af7b5345 3997OPTIMISE=
9a98a854 3998if test "$wxUSE_OPTIMISE" = "no" ; then
af7b5345
VZ
3999 if test "$GCC" = yes ; then
4000 dnl use -O0 because compiling with it is faster than compiling with no
4001 dnl optimization options at all (at least with g++ 3.2)
4002 OPTIMISE="-O0"
4003 fi
9a98a854 4004else
77c85c2b 4005 if test "$GCC" = yes ; then
04338f96 4006 OPTIMISE="-O2"
af7b5345
VZ
4007
4008 dnl VZ: does anybody know what does this do??
77c85c2b
RR
4009 case "${host}" in
4010 i586-*-*|i686-*-* )
4011 OPTIMISE="${OPTIMISE} "
4012 ;;
4013 esac
4014 else
4015 OPTIMISE="-O"
4016 fi
9a98a854
VZ
4017fi
4018
677eb52d
VZ
4019dnl ---------------------------------------------------------------------------
4020dnl compatibility level
4021dnl ---------------------------------------------------------------------------
4022
54276ccf
VZ
4023if test "$WXWIN_COMPATIBILITY_2" = "yes"; then
4024 AC_DEFINE(WXWIN_COMPATIBILITY_2)
4025
4026 WXWIN_COMPATIBILITY_2_2="yes"
4027fi
4028
65d8ef1e 4029if test "x$WXWIN_COMPATIBILITY_2_2" = "xyes"; then
54276ccf 4030 AC_DEFINE(WXWIN_COMPATIBILITY_2_2)
677eb52d
VZ
4031
4032 WXWIN_COMPATIBILITY_2_4="yes"
54276ccf
VZ
4033fi
4034
65d8ef1e
VS
4035if test "x$WXWIN_COMPATIBILITY_2_4" != "xno"; then
4036 AC_DEFINE(WXWIN_COMPATIBILITY_2_4)
4037fi
4038
9a98a854
VZ
4039dnl ---------------------------------------------------------------------------
4040dnl the library may be built without GUI classes at all
4041dnl ---------------------------------------------------------------------------
4042
4043if test "$wxUSE_GUI" = "yes"; then
4044 AC_DEFINE(wxUSE_GUI)
4045
4046 dnl the things we always pull in the GUI version of the library:
4047 dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
4048 dnl library really can't be built without those)
4049 dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
4050 dnl almost any program and the first 2 are needed to show a message box
4051 dnl which want to be always able to do)
4052 dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
4053 dnl to compile without them (if the app doesn't do any drawing, it doesn't
4054 dnl need the dcs, pens, brushes, ...), this just can't be done now
4055 dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
4056 dnl 5. misc stuff: timers, settings, message box
9a98a854
VZ
4057else
4058 AC_DEFINE(wxUSE_NOGUI)
4059fi
4060
4061dnl ---------------------------------------------------------------------------
4062dnl Unix/Windows
4063dnl ---------------------------------------------------------------------------
4064
4065if test "$wxUSE_UNIX" = "yes"; then
4066 AC_DEFINE(wxUSE_UNIX)
9a98a854
VZ
4067fi
4068
4069dnl ---------------------------------------------------------------------------
4070dnl Register non-GUI class options for makefiles and setup.h
4071dnl ---------------------------------------------------------------------------
4072
4073if test "$wxUSE_APPLE_IEEE" = "yes"; then
4074 AC_DEFINE(wxUSE_APPLE_IEEE)
9a98a854
VZ
4075fi
4076
1e6feb95
VZ
4077if test "$wxUSE_TIMER" = "yes"; then
4078 AC_DEFINE(wxUSE_TIMER)
4079fi
4080
2749089a
KB
4081if test "$wxUSE_WAVE" = "yes"; then
4082 AC_DEFINE(wxUSE_WAVE)
4083fi
4084
1e6feb95
VZ
4085if test "$wxUSE_CMDLINE_PARSER" = "yes"; then
4086 AC_DEFINE(wxUSE_CMDLINE_PARSER)
4087fi
4088
4089if test "$wxUSE_STOPWATCH" = "yes"; then
4090 AC_DEFINE(wxUSE_STOPWATCH)
4091fi
4092
4093if test "$wxUSE_DATETIME" = "yes"; then
4094 AC_DEFINE(wxUSE_DATETIME)
4095fi
4096
9a98a854
VZ
4097if test "$wxUSE_FILE" = "yes"; then
4098 AC_DEFINE(wxUSE_FILE)
9a98a854
VZ
4099fi
4100
1e6feb95
VZ
4101if test "$wxUSE_FFILE" = "yes"; then
4102 AC_DEFINE(wxUSE_FFILE)
4103fi
4104
24528b0c
VS
4105if test "$wxUSE_FILESYSTEM" = "yes"; then
4106 AC_DEFINE(wxUSE_FILESYSTEM)
4107fi
4108
e3e717ec
VZ
4109if test "$wxUSE_FS_INET" = "yes"; then
4110 AC_DEFINE(wxUSE_FS_INET)
4111fi
4112
4113if test "$wxUSE_FS_ZIP" = "yes"; then
4114 AC_DEFINE(wxUSE_FS_ZIP)
4115fi
4116
d78b3d64
VS
4117if test "$wxUSE_ZIPSTREAM" = "yes"; then
4118 AC_DEFINE(wxUSE_ZIPSTREAM)
4119fi
4120
eb4efbdc
VZ
4121if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
4122 AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
4123fi
4124
4f3c5f06
VZ
4125if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then
4126 AC_DEFINE(wxUSE_SNGLINST_CHECKER)
4127fi
4128
d78b3d64
VS
4129if test "$wxUSE_BUSYINFO" = "yes"; then
4130 AC_DEFINE(wxUSE_BUSYINFO)
4131fi
4132
fd15d8f1
RR
4133if test "$wxUSE_STD_IOSTREAM" = "yes"; then
4134 AC_DEFINE(wxUSE_STD_IOSTREAM)
4135fi
4136
a3a584a7
VZ
4137if test "$wxUSE_TEXTBUFFER" = "yes"; then
4138 AC_DEFINE(wxUSE_TEXTBUFFER)
4139fi
4140
9a98a854 4141if test "$wxUSE_TEXTFILE" = "yes"; then
a3a584a7 4142 if test "$wxUSE_FILE" != "yes" -o "$wxUSE_TEXTBUFFER" != "yes" ; then
156b2523 4143 AC_MSG_WARN(wxTextFile requires wxFile and wxTextBuffer... disabled)
9a98a854
VZ
4144 else
4145 AC_DEFINE(wxUSE_TEXTFILE)
9a98a854
VZ
4146 fi
4147fi
4148
4149if test "$wxUSE_CONFIG" = "yes" ; then
4150 if test "$wxUSE_TEXTFILE" != "yes"; then
156b2523 4151 AC_MSG_WARN(wxConfig requires wxTextFile... disabled)
9a98a854
VZ
4152 else
4153 AC_DEFINE(wxUSE_CONFIG)
9a98a854
VZ
4154 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
4155 fi
4156fi
4157
4158if test "$wxUSE_INTL" = "yes" ; then
4159 if test "$wxUSE_FILE" != "yes"; then
156b2523 4160 AC_MSG_WARN(I18n code requires wxFile... disabled)
9a98a854
VZ
4161 else
4162 AC_DEFINE(wxUSE_INTL)
9a98a854 4163 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
f6bcfd97 4164 GUIDIST="$GUIDIST INTL_DIST"
9a98a854
VZ
4165 fi
4166fi
4167
4168if test "$wxUSE_LOG" = "yes"; then
4169 AC_DEFINE(wxUSE_LOG)
d73be714
VZ
4170
4171 if test "$wxUSE_LOGGUI" = "yes"; then
4172 AC_DEFINE(wxUSE_LOGGUI)
4173 fi
4174
4175 if test "$wxUSE_LOGWINDOW" = "yes"; then
4176 AC_DEFINE(wxUSE_LOGWINDOW)
4177 fi
69d27ff7
MB
4178
4179 if test "$wxUSE_LOGDIALOG" = "yes"; then
4180 AC_DEFINE(wxUSE_LOG_DIALOG)
4181 fi
9a98a854
VZ
4182fi
4183
4184if test "$wxUSE_LONGLONG" = "yes"; then
4185 AC_DEFINE(wxUSE_LONGLONG)
9a98a854
VZ
4186fi
4187
e8f65ba6
RR
4188if test "$wxUSE_GEOMETRY" = "yes"; then
4189 AC_DEFINE(wxUSE_GEOMETRY)
4190fi
4191
1c8515f9
KB
4192if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
4193 AC_DEFINE(wxUSE_DIALUP_MANAGER)
70f7a477 4194 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
1c8515f9
KB
4195fi
4196
9a98a854
VZ
4197if test "$wxUSE_STREAMS" = "yes" ; then
4198 AC_DEFINE(wxUSE_STREAMS)
9a98a854
VZ
4199fi
4200
52e8b690 4201dnl ---------------------------------------------------------------------------
afc31813
VZ
4202dnl time/date functions
4203dnl ------------------------------------------------------------------------
4204
1e6feb95 4205if test "$wxUSE_DATETIME" = "yes"; then
83307f33
VZ
4206 dnl check for strptime
4207 AC_CHECK_FUNCS(strptime)
4208
360d6699 4209 dnl check for timezone variable
62cc730f 4210 dnl doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead
360d6699
VZ
4211 AC_CACHE_CHECK(for timezone variable in <time.h>,
4212 wx_cv_var_timezone,
4213 [
4214 AC_TRY_COMPILE(
4215 [
4216 #include <time.h>
4217 ],
4218 [
4219 int tz;
4f11a343 4220 tz = timezone;
360d6699
VZ
4221 ],
4222 [
4f11a343 4223 wx_cv_var_timezone=timezone
360d6699
VZ
4224 ],
4225 [
4226 AC_TRY_COMPILE(
4227 [
4228 #include <time.h>
4229 ],
4230 [
4231 int tz;
4232 tz = _timezone;
4233 ],
4234 [
4235 wx_cv_var_timezone=_timezone
4236 ],
5357c8e8
VZ
4237 [
4238 AC_TRY_COMPILE(
4239 [
4240 #include <time.h>
4241 ],
4242 [
4243 int tz;
4f11a343 4244 tz = __timezone;
5357c8e8
VZ
4245 ],
4246 [
4f11a343 4247 wx_cv_var_timezone=__timezone
5357c8e8 4248 ],
f9bc1684
VS
4249 [
4250 if test "$USE_DOS" = 0 ; then
62cc730f 4251 AC_MSG_WARN(no timezone variable, will use tm_gmtoff instead)
f9bc1684
VS
4252 fi
4253 ]
5357c8e8
VZ
4254 )
4255 ]
360d6699
VZ
4256 )
4257 ]
4258 )
4259 ]
4260 )
4261
4262 dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
f9bc1684
VS
4263 if test "x$wx_cv_var_timezone" != x ; then
4264 AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
4265 fi
360d6699 4266
3fcdd07b
VZ
4267 dnl check for localtime (it's POSIX, but the check can do no harm...)
4268 AC_CHECK_FUNCS(localtime)
afc31813 4269
0470b1e6
VZ
4270 if test "$ac_cv_func_localtime" = "yes"; then
4271 AC_CACHE_CHECK(for tm_gmtoff in struct tm,
4272 wx_cv_struct_tm_has_gmtoff,
4273 [
4274 AC_TRY_COMPILE(
4275 [
4276 #include <time.h>
4277 ],
4278 [
4279 struct tm tm;
4280 tm.tm_gmtoff++;
4281 ],
4282 [
f03a98d8 4283 wx_cv_struct_tm_has_gmtoff=yes
0470b1e6
VZ
4284 ],
4285 wx_cv_struct_tm_has_gmtoff=no
4286 )
4287 ])
3fcdd07b
VZ
4288 fi
4289
6232543b
VS
4290 if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then
4291 AC_DEFINE(WX_GMTOFF_IN_TM)
4292 fi
4293
3fcdd07b
VZ
4294 dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
4295 dnl function to be used for high resolution timers
4296 AC_CHECK_FUNCS(gettimeofday ftime, break)
4297
4298 if test "$ac_cv_func_gettimeofday" = "yes"; then
afc31813
VZ
4299 AC_CACHE_CHECK([whether gettimeofday takes two arguments],
4300 wx_cv_func_gettimeofday_has_2_args,
4301 [
4302 dnl on some _really_ old systems it takes only 1 argument
4303 AC_LANG_SAVE
4304 AC_LANG_CPLUSPLUS
4305
4306 AC_TRY_COMPILE(
4307 [
4308 #include <sys/time.h>
4309 #include <unistd.h>
4310 ],
4311 [
4312 struct timeval tv;
776862b4 4313 gettimeofday(&tv, NULL);
afc31813
VZ
4314 ],
4315 wx_cv_func_gettimeofday_has_2_args=yes,
4316 AC_TRY_COMPILE(
4317 [
4318 #include <sys/time.h>
4319 #include <unistd.h>
4320 ],
4321 [
4322 struct timeval tv;
4323 gettimeofday(&tv);
4324 ],
4325 wx_cv_func_gettimeofday_has_2_args=no,
776862b4
VZ
4326 [
4327 AC_MSG_WARN([failed to determine number of gettimeofday() arguments])
4328 wx_cv_func_gettimeofday_has_2_args=unknown
4329 ]
afc31813
VZ
4330 )
4331 )
4332 AC_LANG_RESTORE
4333 ])
4334
4335 if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
4336 AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
4337 fi
4338 fi
4339
afc31813
VZ
4340 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
4341fi
4342
9a98a854
VZ
4343dnl ------------------------------------------------------------------------
4344dnl wxSocket
4345dnl ------------------------------------------------------------------------
4346
3bce6687 4347dnl VZ: the GUI hooks wxSocket needs are not implemented yet in wxMGL
0feee163 4348if test "$wxUSE_SOCKETS" = "yes"; then
6c657b52
VS
4349 if test "$wxUSE_MGL" = "1"; then
4350 AC_MSG_WARN([wxSocket not yet supported under MGL... disabled])
4351 wxUSE_SOCKETS="no"
4352 fi
0feee163 4353fi
b089607b 4354
0feee163
VZ
4355if test "$wxUSE_SOCKETS" = "yes"; then
4356 dnl under MSW we always have sockets
4357 if test "$TOOLKIT" != "MSW"; then
590b1a4d 4358 dnl under Solaris and OS/2, socket functions live in -lsocket
3a922bb4
RL
4359 AC_CHECK_FUNC(socket,,
4360 AC_CHECK_LIB(socket, socket,
590b1a4d 4361 if test "$INET_LINK" != " -lsocket"; then
e5ee4c90
SN
4362 INET_LINK="$INET_LINK -lsocket"
4363 fi,
3a922bb4
RL
4364 [
4365 AC_MSG_WARN([socket library not found - sockets will be disabled])
4366 wxUSE_SOCKETS=no
4367 ]
4368 )
afc31813 4369 )
3a922bb4 4370 fi
0feee163 4371fi
afc31813 4372
0feee163 4373if test "$wxUSE_SOCKETS" = "yes" ; then
3a922bb4
RL
4374 dnl this test may be appropriate if building under cygwin
4375 dnl right now I'm assuming it also uses the winsock stuff
4376 dnl like mingw does.. -- RL
0feee163 4377 if test "$TOOLKIT" != "MSW"; then
3a922bb4
RL
4378 dnl determine the type of third argument for getsockname
4379 AC_CACHE_CHECK([what is the type of the third argument of getsockname],
4380 wx_cv_type_getsockname3,
4381 [
4382 AC_LANG_SAVE
4383 AC_LANG_CPLUSPLUS
51a9faba 4384
51a9faba
VZ
4385 AC_TRY_COMPILE(
4386 [
4370c5b2 4387 #include <sys/types.h>
51a9faba
VZ
4388 #include <sys/socket.h>
4389 ],
4390 [
3a922bb4 4391 socklen_t len;
51a9faba
VZ
4392 getsockname(0, 0, &len);
4393 ],
3a922bb4 4394 wx_cv_type_getsockname3=socklen_t,
51a9faba
VZ
4395 AC_TRY_COMPILE(
4396 [
4370c5b2 4397 #include <sys/types.h>
51a9faba
VZ
4398 #include <sys/socket.h>
4399 ],
4400 [
3a922bb4 4401 size_t len;
51a9faba
VZ
4402 getsockname(0, 0, &len);
4403 ],
3a922bb4
RL
4404 wx_cv_type_getsockname3=size_t,
4405 AC_TRY_COMPILE(
4406 [
4407 #include <sys/types.h>
4408 #include <sys/socket.h>
4409 ],
4410 [
4411 int len;
4412 getsockname(0, 0, &len);
4413 ],
4414 wx_cv_type_getsockname3=int,
4415 wx_cv_type_getsockname3=unknown
4416 )
51a9faba
VZ
4417 )
4418 )
c63c7106 4419
3a922bb4
RL
4420 AC_LANG_RESTORE
4421 ])
51a9faba 4422
3a922bb4
RL
4423 if test "$wx_cv_type_getsockname3" = "unknown"; then
4424 wxUSE_SOCKETS=no
4425 AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
4426 else
4427 AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
4428 fi
51a9faba
VZ
4429 fi
4430fi
c521c494 4431
51a9faba 4432if test "$wxUSE_SOCKETS" = "yes" ; then
afc31813 4433 AC_DEFINE(wxUSE_SOCKETS)
70f7a477 4434 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
9a98a854
VZ
4435fi
4436
4437dnl ---------------------------------------------------------------------------
4438dnl Joystick support
4439dnl ---------------------------------------------------------------------------
4440
dc3d889d
VZ
4441if test "$wxUSE_GUI" = "yes"; then
4442
ac0c4cc3 4443 if test "$TOOLKIT" = "MAC" -o "$TOOLKIT" = "COCOA"; then
156b2523
GD
4444 AC_MSG_WARN([Joystick not yet supported under Mac OS X... disabled])
4445 wxUSE_JOYSTICK=no
4446 fi
4447 if test "$TOOLKIT" = "MOTIF"; then
4448 AC_MSG_WARN([Joystick not yet supported under Motif... disabled])
4449 wxUSE_JOYSTICK=no
4450 fi
7f5c07ab
JS
4451 if test "$TOOLKIT" = "X11"; then
4452 AC_MSG_WARN([Joystick not yet supported under X11... disabled])
4453 wxUSE_JOYSTICK=no
4454 fi
156b2523 4455
3a922bb4
RL
4456 dnl under MSW we always have joystick support
4457 if test "$TOOLKIT" != "MSW"; then
4458 if test "$wxUSE_JOYSTICK" = "yes"; then
4459 dnl joystick support is only for Linux 2.1.x or greater
4460 AC_CHECK_HEADERS(linux/joystick.h)
4461 if test "$ac_cv_header_linux_joystick_h" != "yes"; then
4462 wxUSE_JOYSTICK=no
156b2523 4463 AC_MSG_WARN(Joystick not supported by this system... disabled)
3a922bb4
RL
4464 fi
4465 fi
4466 fi
9a98a854 4467
3a922bb4
RL
4468 if test "$wxUSE_JOYSTICK" = "yes"; then
4469 AC_DEFINE(wxUSE_JOYSTICK)
4470 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
4471 fi
dc3d889d 4472fi
dc3d889d 4473
9a98a854
VZ
4474dnl ------------------------------------------------------------------------
4475dnl DLL support
4476dnl ------------------------------------------------------------------------
4477
b089607b
VZ
4478dnl under MSW we always have LoadLibrary/GetProcAddress
4479if test "$TOOLKIT" != "MSW"; then
4480
3a922bb4
RL
4481 HAVE_DL_FUNCS=0
4482 HAVE_SHL_FUNCS=0
0b9ab0bd 4483 if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then
3a922bb4
RL
4484 if test "$USE_DARWIN" = 1; then
4485 dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X
37667812 4486 HAVE_DL_FUNCS=1
3a922bb4
RL
4487 else
4488 dnl the test is a bit complicated because we check for dlopen() both with
4489 dnl and without -ldl and we also try to find shl_load() if there is no
4490 dnl dlopen() on this system
4491 AC_CHECK_FUNCS(dlopen,
4492 [
4493 AC_DEFINE(HAVE_DLOPEN)
4494 HAVE_DL_FUNCS=1
4495 ],
4496 [
4497 AC_CHECK_LIB(dl, dlopen,
4498 [
4499 AC_DEFINE(HAVE_DLOPEN)
4500 HAVE_DL_FUNCS=1
3d63bc3a 4501 DL_LINK=" -ldl$DL_LINK"
3a922bb4
RL
4502 ],
4503 [
4504 AC_CHECK_FUNCS(shl_load,
4505 [
4506 AC_DEFINE(HAVE_SHL_LOAD)
4507 HAVE_SHL_FUNCS=1
4508 ],
4509 [
4510 AC_CHECK_LIB(shl_load, dld,
4511 [
4512 HAVE_SHL_FUNCS=1
3d63bc3a 4513 DL_LINK=" -ldld$DL_LINK"
3a922bb4
RL
4514 ])
4515 ])
4516 ])
4517 ])
9a98a854 4518
3a922bb4
RL
4519 dnl check also for dlerror()
4520 if test "$HAVE_DL_FUNCS" = 1; then
4521 AC_CHECK_FUNCS(dlerror,
4522 AC_DEFINE(HAVE_DLERROR),
4523 AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)))
4524 fi
4525 fi
f6bcfd97 4526
3a922bb4
RL
4527 if test "$HAVE_DL_FUNCS" = 0; then
4528 if test "$HAVE_SHL_FUNCS" = 0; then
4529 if test "$USE_UNIX" = 1; then
4530 AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
0b9ab0bd 4531 wxUSE_DYNAMIC_LOADER=no
3a922bb4
RL
4532 wxUSE_DYNLIB_CLASS=no
4533 else
4534 AC_MSG_WARN([Assuming wxLibrary class works on this platform])
4535 fi
4536 fi
e90c1d2a 4537 fi
9a98a854
VZ
4538 fi
4539fi
4540
0b9ab0bd
RL
4541if test "$wxUSE_DYNAMIC_LOADER" = "yes" ; then
4542 AC_DEFINE(wxUSE_DYNAMIC_LOADER)
4543elif test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
b12915c1 4544 AC_DEFINE(wxUSE_DYNLIB_CLASS)
9a98a854
VZ
4545fi
4546
4547dnl ---------------------------------------------------------------------------
ced859c3 4548dnl String stuff
9a98a854
VZ
4549dnl ---------------------------------------------------------------------------
4550
1e6feb95
VZ
4551if test "$wxUSE_FONTMAP" = "yes" ; then
4552 AC_DEFINE(wxUSE_FONTMAP)
4553fi
4554
9a98a854
VZ
4555if test "$wxUSE_UNICODE" = "yes" ; then
4556 AC_DEFINE(wxUSE_UNICODE)
3bd8fb5f 4557
bbc3925a
VS
4558 if test "$wxUSE_MSW" != 1; then
4559 wxUSE_UNICODE_MSLU=no
4560 fi
a72a4bfa
VS
4561
4562 if test "$wxUSE_MSW" = 1 -a "$wxUSE_UNICODE_MSLU" = "yes"; then
4563 AC_CHECK_LIB(unicows,main,
4564 [
4565 AC_DEFINE(wxUSE_UNICODE_MSLU)
4566 ],
4567 [
4568 AC_MSG_WARN([Compiler doesn't support MSLU (libunicows.a), disabled.
4569 Applications will only run on Windows NT/2000/XP!])
4570 wxUSE_UNICODE_MSLU=no
4571 ])
4572 fi
9a98a854
VZ
4573fi
4574
ced859c3
VZ
4575if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
4576 AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
4577fi
4578
b12915c1 4579
9a98a854
VZ
4580dnl ----------------------------------------------------------------
4581dnl iODBC support
4582dnl ----------------------------------------------------------------
4583
4584IODBC_C_SRC=""
4585if test "$wxUSE_ODBC" = "yes" ; then
a0c79abb
VZ
4586 AC_DEFINE(wxUSE_ODBC)
4587 WXODBCFLAG="-D_IODBC_"
4588 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
9a98a854
VZ
4589fi
4590
4591dnl ----------------------------------------------------------------
4592dnl Register PostScript options for makefiles and setup.h
4593dnl ----------------------------------------------------------------
4594
4595if test "$wxUSE_POSTSCRIPT" = "yes" ; then
4596 AC_DEFINE(wxUSE_POSTSCRIPT)
9a98a854
VZ
4597fi
4598
4599AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
4600
4601AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
4602
4603dnl ---------------------------------------------------------------------------
4604dnl big GUI components: MDI, doc/view, printing, help, ...
4605dnl ---------------------------------------------------------------------------
4606
4607if test "$wxUSE_CONSTRAINTS" = "yes"; then
ce4169a4
RR
4608 AC_DEFINE(wxUSE_CONSTRAINTS)
4609 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
9a98a854
VZ
4610fi
4611
4612if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
fc26f4ab 4613
e26c13cf 4614dnl There is now experimental generic MDI support
b9f933ab
JS
4615dnl if test "$wxUSE_UNIVERSAL" = "yes"; then
4616dnl AC_MSG_WARN(MDI not yet supported for wxUniversal... disabled)
4617dnl wxUSE_MDI_ARCHITECTURE=no
4618dnl fi
4619
4620 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4621 AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
4622 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
4623 fi
9a98a854
VZ
4624fi
4625
4626if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
4627 AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
4628 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
4629 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
4630 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
4631 fi
9a98a854
VZ
4632fi
4633
4634if test "$wxUSE_HELP" = "yes"; then
ce4169a4
RR
4635 AC_DEFINE(wxUSE_HELP)
4636 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
3379ed37 4637
77e13408 4638 if test "$wxUSE_MSW" = 1; then
031d8228 4639 if test "$wxUSE_MS_HTML_HELP" = "yes"; then
3b7bc64a 4640 AC_DEFINE(wxUSE_MS_HTML_HELP)
29fd3c0c 4641 fi
3379ed37 4642 fi
031d8228
VS
4643
4644 if test "$wxUSE_WXHTML_HELP" = "yes"; then
4645 if test "$wxUSE_HTML" = "yes"; then
4646 AC_DEFINE(wxUSE_WXHTML_HELP)
4647 else
4648 AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled)
4649 wxUSE_WXHTML_HELP=no
4650 fi
4651 fi
9a98a854
VZ
4652fi
4653
4654if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
4655 if test "$wxUSE_CONSTRAINTS" != "yes"; then
4656 AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
4657 else
4658 AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
4659 fi
4660 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
9a98a854
VZ
4661fi
4662
2fc9385a
JS
4663dnl if test "$wxUSE_PROLOGIO" = "yes" ; then
4664dnl AC_DEFINE(wxUSE_PROLOGIO)
4665dnl ALL_OBJECTS="$ALL_OBJECTS parser.o"
4666dnl fi
9a98a854 4667
2fc9385a
JS
4668dnl if test "$wxUSE_RESOURCES" = "yes" ; then
4669dnl if test "$wxUSE_NANOX" = "yes"; then
4670dnl AC_MSG_WARN([Cannot use resource database functions in NanoX])
4671dnl else
4672dnl AC_DEFINE(wxUSE_RESOURCES)
4673dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource"
4674dnl fi
4675dnl if test "$wxUSE_PROLOGIO" != "yes" ; then
4676dnl ALL_OBJECTS="$ALL_OBJECTS parser.o"
4677dnl fi
4678dnl fi
9a98a854
VZ
4679
4680if test "$wxUSE_X_RESOURCES" = "yes"; then
ce4169a4 4681 AC_DEFINE(wxUSE_X_RESOURCES)
9a98a854
VZ
4682fi
4683
4684dnl ---------------------------------------------------------------------------
77c85c2b 4685dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
9a98a854
VZ
4686dnl ---------------------------------------------------------------------------
4687
2b9bdf71
VZ
4688dnl check for ole headers and disable a few features requiring it if not
4689dnl present (earlier versions of mingw32 don't have ole2.h)
77e13408
RL
4690if test "$wxUSE_MSW" = 1 -a \( "$wxUSE_DATAOBJ" = "yes" \
4691 -o "$wxUSE_CLIPBOARD" = "yes" \
3bce6687 4692 -o "$wxUSE_OLE" = "yes" \
77e13408 4693 -o "$wxUSE_DRAG_AND_DROP" = "yes" \) ; then
2b9bdf71
VZ
4694 AC_CHECK_HEADERS(ole2.h)
4695
4696 if test "$ac_cv_header_ole2_h" = "yes" ; then
4697 if test "$GCC" = yes ; then
8284b0c5
MB
4698 AC_LANG_SAVE
4699 AC_LANG_CPLUSPLUS
4700
4701 AC_MSG_CHECKING([if g++ requires -fvtable-thunks])
4702 AC_TRY_COMPILE([#include <windows.h>
4703 #include <ole2.h>],
4704 [],
4705 [AC_MSG_RESULT(no)],
4706 [AC_MSG_RESULT(yes)
4707 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"])
4708 AC_LANG_RESTORE
2b9bdf71 4709 ALL_OBJECTS="$ALL_OBJECTS \$(OLEOBJS)"
3d63bc3a 4710 LIBS=" -lrpcrt4 -loleaut32 -lole32 -luuid$LIBS"
2b9bdf71
VZ
4711 AC_DEFINE(wxUSE_OLE)
4712
4713 fi
4714
4715 dnl for OLE clipboard and dnd
4716 AC_DEFINE(wxUSE_DATAOBJ)
4717 else
4718 AC_MSG_WARN([Some features disabled because OLE headers not found])
4719
4720 wxUSE_CLIPBOARD=no
4721 wxUSE_DRAG_AND_DROP=no
4722 wxUSE_DATAOBJ=no
3bce6687
JS
4723 wxUSE_OLE=no
4724 fi
4725
4726 if test "$wxUSE_METAFILE" = "yes"; then
4727 AC_DEFINE(wxUSE_METAFILE)
4728
4729 dnl this one should probably be made separately configurable
4730 AC_DEFINE(wxUSE_ENH_METAFILE)
4731 fi
4732fi
4733
9a98a854 4734if test "$wxUSE_IPC" = "yes"; then
eb4efbdc 4735 if test "$wxUSE_SOCKETS" != "yes"; then
156b2523 4736 AC_MSG_WARN(wxWindows IPC classes require sockets... disabled)
eb4efbdc
VZ
4737 fi
4738
ce4169a4 4739 AC_DEFINE(wxUSE_IPC)
9a98a854
VZ
4740fi
4741
4742if test "$wxUSE_CLIPBOARD" = "yes"; then
6c657b52
VS
4743 if test "$wxUSE_MGL" = 1; then
4744 AC_MSG_WARN([Clipboard not yet supported under MGL... disabled])
4745 wxUSE_CLIPBOARD=no
4746 fi
178572bb 4747
6c657b52
VS
4748 if test "$wxUSE_CLIPBOARD" = "yes"; then
4749 AC_DEFINE(wxUSE_CLIPBOARD)
4750
4751 dnl required by clipboard code in configuration check
4752 AC_DEFINE(wxUSE_DATAOBJ)
4753 fi
9a98a854
VZ
4754fi
4755
39c9d5ac 4756if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
ce4169a4
RR
4757 if test "$wxUSE_GTK" = 1; then
4758 if test "$WXGTK12" != 1; then
156b2523 4759 AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2... disabled])
e90c1d2a 4760 wxUSE_DRAG_AND_DROP=no
ce4169a4 4761 fi
a9b5e89f 4762 fi
a9b5e89f 4763
ce4169a4 4764 if test "$wxUSE_MOTIF" = 1; then
156b2523 4765 AC_MSG_WARN([Drag and drop not yet supported under Motif... disabled])
e90c1d2a 4766 wxUSE_DRAG_AND_DROP=no
ce4169a4 4767 fi
a9b5e89f 4768
7f5c07ab
JS
4769 if test "$wxUSE_X11" = 1; then
4770 AC_MSG_WARN([Drag and drop not yet supported under X11... disabled])
4771 wxUSE_DRAG_AND_DROP=no
4772 fi
4773
6c657b52
VS
4774 if test "$wxUSE_MGL" = 1; then
4775 AC_MSG_WARN([Drag and drop not yet supported under MGL... disabled])
4776 wxUSE_DRAG_AND_DROP=no
4777 fi
4778
ce4169a4
RR
4779 if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
4780 AC_DEFINE(wxUSE_DRAG_AND_DROP)
4781 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
4782 fi
4882bf1b 4783
9a98a854
VZ
4784fi
4785
4786if test "$wxUSE_SPLINES" = "yes" ; then
4787 AC_DEFINE(wxUSE_SPLINES)
4788fi
4789
4790dnl ---------------------------------------------------------------------------
4791dnl GUI controls
4792dnl ---------------------------------------------------------------------------
4793
1e6feb95
VZ
4794USES_CONTROLS=0
4795if test "$wxUSE_CONTROLS" = "yes"; then
4796 USES_CONTROLS=1
4797fi
4798
9a98a854
VZ
4799if test "$wxUSE_ACCEL" = "yes"; then
4800 AC_DEFINE(wxUSE_ACCEL)
1e6feb95
VZ
4801 USES_CONTROLS=1
4802fi
4803
4804if test "$wxUSE_BUTTON" = "yes"; then
4805 AC_DEFINE(wxUSE_BUTTON)
4806 USES_CONTROLS=1
4807fi
4808
4809if test "$wxUSE_BMPBUTTON" = "yes"; then
4810 AC_DEFINE(wxUSE_BMPBUTTON)
4811 USES_CONTROLS=1
4812fi
4813
4814if test "$wxUSE_CALCTRL" = "yes"; then
4815 AC_DEFINE(wxUSE_CALENDARCTRL)
4816 USES_CONTROLS=1
4817 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar"
9a98a854
VZ
4818fi
4819
4820if test "$wxUSE_CARET" = "yes"; then
4821 AC_DEFINE(wxUSE_CARET)
1e6feb95 4822 USES_CONTROLS=1
9a98a854
VZ
4823 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
4824fi
4825
4826if test "$wxUSE_COMBOBOX" = "yes"; then
4827 AC_DEFINE(wxUSE_COMBOBOX)
1e6feb95 4828 USES_CONTROLS=1
9a98a854
VZ
4829fi
4830
ce4169a4
RR
4831if test "$wxUSE_CHOICE" = "yes"; then
4832 AC_DEFINE(wxUSE_CHOICE)
1e6feb95 4833 USES_CONTROLS=1
9a98a854
VZ
4834fi
4835
4836if test "$wxUSE_CHECKBOX" = "yes"; then
4837 AC_DEFINE(wxUSE_CHECKBOX)
1e6feb95 4838 USES_CONTROLS=1
9a98a854
VZ
4839fi
4840
4841if test "$wxUSE_CHECKLST" = "yes"; then
4842 AC_DEFINE(wxUSE_CHECKLISTBOX)
1e6feb95 4843 USES_CONTROLS=1
9a98a854
VZ
4844 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
4845fi
4846
ddb4769e
VZ
4847if test "$wxUSE_DISPLAY" = "yes"; then
4848 AC_DEFINE(wxUSE_DISPLAY)
4849 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display"
4850fi
4851
9a98a854
VZ
4852if test "$wxUSE_GAUGE" = "yes"; then
4853 AC_DEFINE(wxUSE_GAUGE)
1e6feb95 4854 USES_CONTROLS=1
9a98a854
VZ
4855fi
4856
d6a55c4b
VZ
4857if test "$wxUSE_GRID" = "yes"; then
4858 AC_DEFINE(wxUSE_GRID)
1e6feb95 4859 USES_CONTROLS=1
d6a55c4b
VZ
4860 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
4861fi
4862
9a98a854 4863if test "$wxUSE_IMAGLIST" = "yes"; then
ce4169a4 4864 AC_DEFINE(wxUSE_IMAGLIST)
9a98a854
VZ
4865fi
4866
4867if test "$wxUSE_LISTBOX" = "yes"; then
ce4169a4 4868 AC_DEFINE(wxUSE_LISTBOX)
1e6feb95 4869 USES_CONTROLS=1
9a98a854
VZ
4870fi
4871
4872if test "$wxUSE_LISTCTRL" = "yes"; then
ce4169a4
RR
4873 if test "$wxUSE_IMAGLIST" = "yes"; then
4874 AC_DEFINE(wxUSE_LISTCTRL)
1e6feb95 4875 USES_CONTROLS=1
ce4169a4
RR
4876 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
4877 else
4878 AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
4879 fi
9a98a854
VZ
4880fi
4881
4882if test "$wxUSE_NOTEBOOK" = "yes"; then
ce4169a4 4883 AC_DEFINE(wxUSE_NOTEBOOK)
1e6feb95 4884 USES_CONTROLS=1
ce4169a4 4885 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
9a98a854
VZ
4886fi
4887
2fc9385a
JS
4888dnl if test "$wxUSE_PROPSHEET" = "yes"; then
4889dnl AC_DEFINE(wxUSE_PROPSHEET)
4890dnl USES_CONTROLS=1
4891dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist"
4892dnl fi
24176f2c 4893
9a98a854 4894if test "$wxUSE_RADIOBOX" = "yes"; then
ce4169a4 4895 AC_DEFINE(wxUSE_RADIOBOX)
1e6feb95 4896 USES_CONTROLS=1
9a98a854
VZ
4897fi
4898
4899if test "$wxUSE_RADIOBTN" = "yes"; then
ce4169a4 4900 AC_DEFINE(wxUSE_RADIOBTN)
1e6feb95 4901 USES_CONTROLS=1
9a98a854
VZ
4902fi
4903
79b00c62 4904if test "$wxUSE_SASH" = "yes"; then
ce4169a4
RR
4905 AC_DEFINE(wxUSE_SASH)
4906 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
9a98a854
VZ
4907fi
4908
4909if test "$wxUSE_SCROLLBAR" = "yes"; then
ce4169a4 4910 AC_DEFINE(wxUSE_SCROLLBAR)
1e6feb95 4911 USES_CONTROLS=1
678b92a9 4912 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
9a98a854
VZ
4913fi
4914
4915if test "$wxUSE_SLIDER" = "yes"; then
ce4169a4 4916 AC_DEFINE(wxUSE_SLIDER)
1e6feb95 4917 USES_CONTROLS=1
9a98a854
VZ
4918fi
4919
4920if test "$wxUSE_SPINBTN" = "yes"; then
ce4169a4 4921 AC_DEFINE(wxUSE_SPINBTN)
1e6feb95 4922 USES_CONTROLS=1
9a98a854
VZ
4923fi
4924
66f38406
RR
4925if test "$wxUSE_SPINCTRL" = "yes"; then
4926 AC_DEFINE(wxUSE_SPINCTRL)
1e6feb95 4927 USES_CONTROLS=1
66f38406
RR
4928fi
4929
9a98a854 4930if test "$wxUSE_SPLITTER" = "yes"; then
ce4169a4
RR
4931 AC_DEFINE(wxUSE_SPLITTER)
4932 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
9a98a854
VZ
4933fi
4934
4935if test "$wxUSE_STATBMP" = "yes"; then
ce4169a4 4936 AC_DEFINE(wxUSE_STATBMP)
1e6feb95 4937 USES_CONTROLS=1
9a98a854
VZ
4938fi
4939
4940if test "$wxUSE_STATBOX" = "yes"; then
ce4169a4 4941 AC_DEFINE(wxUSE_STATBOX)
1e6feb95
VZ
4942 USES_CONTROLS=1
4943fi
4944
4945if test "$wxUSE_STATTEXT" = "yes"; then
4946 AC_DEFINE(wxUSE_STATTEXT)
4947 USES_CONTROLS=1
9a98a854
VZ
4948fi
4949
4950if test "$wxUSE_STATLINE" = "yes"; then
d1188635
JS
4951 AC_DEFINE(wxUSE_STATLINE)
4952 USES_CONTROLS=1
9a98a854
VZ
4953fi
4954
4955if test "$wxUSE_STATUSBAR" = "yes"; then
ce4169a4 4956 AC_DEFINE(wxUSE_STATUSBAR)
1e6feb95 4957 USES_CONTROLS=1
2286341c
VZ
4958
4959 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
9a98a854
VZ
4960fi
4961
4962if test "$wxUSE_TABDIALOG" = "yes"; then
ce4169a4
RR
4963 AC_DEFINE(wxUSE_TAB_DIALOG)
4964 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
9a98a854
VZ
4965fi
4966
1e6feb95
VZ
4967if test "$wxUSE_TEXTCTRL" = "yes"; then
4968 AC_DEFINE(wxUSE_TEXTCTRL)
4969 USES_CONTROLS=1
4970 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text"
4971fi
4972
1db8dc4a 4973if test "$wxUSE_TOGGLEBTN" = "yes"; then
ac0c4cc3 4974 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
156b2523
GD
4975 AC_MSG_WARN([Toggle button not yet supported under Mac OS X... disabled])
4976 wxUSE_TOGGLEBTN=no
4977 fi
4978 if test "$wxUSE_UNIVERSAL" = "yes"; then
3c011993 4979 AC_MSG_WARN([Toggle button not yet supported under wxUniversal... disabled])
a45d7ab7
GD
4980 wxUSE_TOGGLEBTN=no
4981 fi
4982
4983 if test "$wxUSE_TOGGLEBTN" = "yes"; then
4984 AC_DEFINE(wxUSE_TOGGLEBTN)
1e6feb95 4985 USES_CONTROLS=1
a45d7ab7 4986 fi
1db8dc4a
VZ
4987fi
4988
360d6699
VZ
4989if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
4990 AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
4991 wxUSE_TOOLBAR="yes"
1e6feb95 4992 USES_CONTROLS=1
360d6699
VZ
4993fi
4994
9a98a854 4995if test "$wxUSE_TOOLBAR" = "yes"; then
ce4169a4 4996 AC_DEFINE(wxUSE_TOOLBAR)
1e6feb95 4997 USES_CONTROLS=1
360d6699
VZ
4998
4999 dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
5000 if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
5001 wxUSE_TOOLBAR_NATIVE="yes"
5002 fi
5003
1e6feb95
VZ
5004 if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
5005 AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
5006 USES_CONTROLS=1
5007 fi
9a98a854 5008
1e6feb95 5009 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
360d6699
VZ
5010fi
5011
39c9d5ac 5012if test "$wxUSE_TOOLTIPS" = "yes"; then
ced859c3 5013 if test "$wxUSE_MOTIF" = 1; then
156b2523 5014 AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled])
9a98a854 5015 else
d1188635
JS
5016 if test "$wxUSE_UNIVERSAL" = "yes"; then
5017 AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled])
ce4169a4 5018 else
d1188635 5019 AC_DEFINE(wxUSE_TOOLTIPS)
ce4169a4 5020 fi
9a98a854
VZ
5021 fi
5022fi
5023
5024if test "$wxUSE_TREECTRL" = "yes"; then
ce4169a4
RR
5025 if test "$wxUSE_IMAGLIST" = "yes"; then
5026 AC_DEFINE(wxUSE_TREECTRL)
1e6feb95 5027 USES_CONTROLS=1
ce4169a4
RR
5028 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
5029 else
5030 AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
5031 fi
9a98a854
VZ
5032fi
5033
9f41d601 5034if test "$wxUSE_POPUPWIN" = "yes"; then
ac0c4cc3 5035 if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
156b2523 5036 AC_MSG_WARN([Popup window not yet supported under Mac OS X... disabled])
6abe4b65 5037 else
485cf710
VZ
5038 if test "$wxUSE_MOTIF" = 1; then
5039 AC_MSG_WARN([wxPopupWindow not yet supported under Motif... disabled])
5040 else
c6712985
SN
5041 if test "$wxUSE_PM" = 1; then
5042 AC_MSG_WARN([wxPopupWindow not yet supported under PM... disabled])
3bd8fb5f 5043 else
c6712985 5044 AC_DEFINE(wxUSE_POPUPWIN)
0b01706f 5045
c6712985
SN
5046 USES_CONTROLS=1
5047 fi
485cf710 5048 fi
6abe4b65 5049 fi
9f41d601
RR
5050fi
5051
dd964dcc 5052if test "$wxUSE_TIPWINDOW" = "yes"; then
c6712985
SN
5053 if test "$wxUSE_PM" = 1; then
5054 AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled])
3bd8fb5f 5055 else
c6712985
SN
5056 AC_DEFINE(wxUSE_TIPWINDOW)
5057 fi
dd964dcc
VZ
5058fi
5059
1e6feb95
VZ
5060if test "$USES_CONTROLS" = 1; then
5061 AC_DEFINE(wxUSE_CONTROLS)
5062fi
5063
9a98a854
VZ
5064dnl ---------------------------------------------------------------------------
5065dnl misc options
5066dnl ---------------------------------------------------------------------------
5067
2fc9385a
JS
5068dnl if test "$wxUSE_TREELAYOUT" = "yes"; then
5069dnl AC_DEFINE(wxUSE_TREELAYOUT)
5070dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treelay"
5071dnl fi
9a98a854 5072
24fd6d87
VZ
5073if test "$wxUSE_DRAGIMAGE" = "yes"; then
5074 AC_DEFINE(wxUSE_DRAGIMAGE)
5075 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag"
5076fi
5077
1e6feb95
VZ
5078if test "$wxUSE_MENUS" = "yes"; then
5079 AC_DEFINE(wxUSE_MENUS)
5080 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu"
ce4169a4 5081fi
9a98a854 5082
1e6feb95
VZ
5083if test "$wxUSE_METAFILE" = "yes"; then
5084 AC_DEFINE(wxUSE_METAFILE)
c11584af
RR
5085fi
5086
1e6feb95
VZ
5087if test "$wxUSE_MIMETYPE" = "yes"; then
5088 AC_DEFINE(wxUSE_MIMETYPE)
9a98a854
VZ
5089fi
5090
0cbff120
JS
5091if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then
5092 AC_DEFINE(wxUSE_SYSTEM_OPTIONS)
b2261c5b
JS
5093if test "$TOOLKIT" = "MSW"; then
5094 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar"
5095fi
5096
0cbff120
JS
5097fi
5098
4cdb0ab0 5099if test "$wxUSE_PROTOCOL" = "yes"; then
3954f9ca
VS
5100 if test "$wxUSE_SOCKETS" != "yes"; then
5101 AC_MSG_WARN(Protocol classes require sockets... disabled)
5102 wxUSE_PROTOCOL=no
5103 fi
5104
5105 if test "$wxUSE_PROTOCOL" = "yes"; then
5106 AC_DEFINE(wxUSE_PROTOCOL)
4cdb0ab0 5107
3954f9ca
VS
5108 if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then
5109 AC_DEFINE(wxUSE_PROTOCOL_HTTP)
5110 fi
5111 if test "$wxUSE_PROTOCOL_FTP" = "yes"; then
5112 AC_DEFINE(wxUSE_PROTOCOL_FTP)
5113 fi
5114 if test "$wxUSE_PROTOCOL_FILE" = "yes"; then
5115 AC_DEFINE(wxUSE_PROTOCOL_FILE)
5116 fi
4cdb0ab0 5117 fi
3954f9ca
VS
5118fi
5119
5120if test "$wxUSE_URL" = "yes"; then
5121 if test "$wxUSE_PROTOCOL" != "yes"; then
5122 AC_MSG_WARN(wxURL class requires wxProtocol... disabled)
5123 wxUSE_URL=no
4cdb0ab0 5124 fi
3954f9ca
VS
5125 if test "$wxUSE_URL" = "yes"; then
5126 AC_DEFINE(wxUSE_URL)
4cdb0ab0
VS
5127 fi
5128fi
5129
9a98a854 5130if test "$wxUSE_MINIFRAME" = "yes"; then
ce4169a4
RR
5131 AC_DEFINE(wxUSE_MINIFRAME)
5132 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
9a98a854
VZ
5133fi
5134
5526e819
VS
5135if test "$wxUSE_HTML" = "yes"; then
5136 AC_DEFINE(wxUSE_HTML)
5137 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html"
5138fi
5139
9a98a854 5140if test "$wxUSE_VALIDATORS" = "yes"; then
ce4169a4
RR
5141 AC_DEFINE(wxUSE_VALIDATORS)
5142 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
9a98a854
VZ
5143fi
5144
d275c7eb
VZ
5145if test "$wxUSE_PALETTE" = "yes" ; then
5146 AC_DEFINE(wxUSE_PALETTE)
5147fi
5148
0046ff7c
VS
5149if test "$wxUSE_IMAGE" = "yes" ; then
5150 AC_DEFINE(wxUSE_IMAGE)
5151fi
5152
0940bcf7
HH
5153if test "$wxUSE_GIF" = "yes" ; then
5154 AC_DEFINE(wxUSE_GIF)
5155fi
5156
5157if test "$wxUSE_PCX" = "yes" ; then
5158 AC_DEFINE(wxUSE_PCX)
5159fi
5160
4b6b4dfc
RR
5161if test "$wxUSE_IFF" = "yes" ; then
5162 AC_DEFINE(wxUSE_IFF)
5163fi
5164
0940bcf7
HH
5165if test "$wxUSE_PNM" = "yes" ; then
5166 AC_DEFINE(wxUSE_PNM)
5167fi
5168
0046ff7c
VS
5169if test "$wxUSE_XPM" = "yes" ; then
5170 AC_DEFINE(wxUSE_XPM)
5171fi
5172
658974ae
VS
5173if test "$wxUSE_ICO_CUR" = "yes" ; then
5174 AC_DEFINE(wxUSE_ICO_CUR)
5175fi
5176
a72a4bfa
VS
5177if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then
5178 dnl Must be done this late because -lunicows must be before all the other libs
5179 LIBS=" -lunicows $LIBS"
5180fi
5181
1e6feb95
VZ
5182dnl ---------------------------------------------------------------------------
5183dnl common dialog
5184dnl ---------------------------------------------------------------------------
5185
5186if test "$wxUSE_CHOICEDLG" = "yes"; then
5187 AC_DEFINE(wxUSE_CHOICEDLG)
5188fi
5189
5190if test "$wxUSE_COLOURDLG" = "yes"; then
5191 AC_DEFINE(wxUSE_COLOURDLG)
5192fi
5193
5194if test "$wxUSE_FILEDLG" = "yes"; then
5195 AC_DEFINE(wxUSE_FILEDLG)
5196fi
5197
8db37e06
VZ
5198if test "$wxUSE_FINDREPLDLG" = "yes"; then
5199 AC_DEFINE(wxUSE_FINDREPLDLG)
5200fi
5201
1e6feb95
VZ
5202if test "$wxUSE_FONTDLG" = "yes"; then
5203 AC_DEFINE(wxUSE_FONTDLG)
5204fi
5205
5206if test "$wxUSE_DIRDLG" = "yes"; then
ae1daed0
JS
5207 if test "$wxUSE_TREECTRL" != "yes"; then
5208 AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
1e6feb95 5209 else
ae1daed0 5210 AC_DEFINE(wxUSE_DIRDLG)
1e6feb95
VZ
5211 fi
5212fi
5213
5214if test "$wxUSE_MSGDLG" = "yes"; then
5215 AC_DEFINE(wxUSE_MSGDLG)
5216fi
5217
5218if test "$wxUSE_NUMBERDLG" = "yes"; then
5219 AC_DEFINE(wxUSE_NUMBERDLG)
5220fi
5221
5222if test "$wxUSE_PROGRESSDLG" = "yes"; then
5223 if test "$wxUSE_CONSTRAINTS" != "yes"; then
5224 AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
5225 else
5226 AC_DEFINE(wxUSE_PROGRESSDLG)
5227 fi
5228fi
5229
cbca9943
VZ
5230if test "$wxUSE_SPLASH" = "yes"; then
5231 AC_DEFINE(wxUSE_SPLASH)
5232fi
5233
1e6feb95
VZ
5234if test "$wxUSE_STARTUP_TIPS" = "yes"; then
5235 if test "$wxUSE_CONSTRAINTS" != "yes"; then
5236 AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
5237 else
5238 AC_DEFINE(wxUSE_STARTUP_TIPS)
5239 fi
5240fi
5241
5242if test "$wxUSE_TEXTDLG" = "yes"; then
5243 AC_DEFINE(wxUSE_TEXTDLG)
5244fi
5245
b1f5d087
VZ
5246if test "$wxUSE_WIZARDDLG" = "yes"; then
5247 AC_DEFINE(wxUSE_WIZARDDLG)
5248 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard"
5249fi
5250
bdc72a22
VZ
5251dnl ---------------------------------------------------------------------------
5252dnl get the string with OS info - used by wxGetOsDescription()
5253dnl ---------------------------------------------------------------------------
5254
32832908
VZ
5255if test "$cross_compiling" = "yes"; then
5256 dnl Use best guess from host as we can't use uname when cross compiling
5257 OSINFO="\"$host\""
5258else
5259 dnl attualy work out OS version
5260 OSINFO=`uname -s -r -m`
5261 OSINFO="\"$OSINFO\""
5262fi
5263
bdc72a22
VZ
5264AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
5265
7e67ed0d
VZ
5266dnl ---------------------------------------------------------------------------
5267dnl define the variable containing the installation prefix (used in dcpsg.cpp)
5268dnl ---------------------------------------------------------------------------
5269
06dda230
VZ
5270if test "x$prefix" != "xNONE"; then
5271 wxPREFIX=$prefix
5272else
5273 wxPREFIX=$ac_default_prefix
5274fi
5275
5276AC_DEFINE_UNQUOTED(wxINSTALL_PREFIX, "$wxPREFIX")
7e67ed0d 5277
52c71b80
VZ
5278dnl define the variables used in wx-config
5279top_builddir=`pwd`
5280
9a98a854
VZ
5281dnl ---------------------------------------------------------------------------
5282dnl Output the makefiles and such from the results found above
5283dnl ---------------------------------------------------------------------------
5284
9a98a854 5285dnl all additional libraries (except wxWindows itself) we link with
3d63bc3a 5286
b4085ce6
GD
5287dnl note that we always link with -lm except for Mac OS X
5288dnl extended.c uses floor() and is always linked in
3a922bb4 5289
f11bdd03 5290if test "$wxUSE_MAC" = 1 ; then
3d63bc3a 5291 LDFLAGS="$LDFLAGS -framework Carbon -framework System"
b4085ce6 5292fi
ac0c4cc3
DE
5293if test "$wxUSE_COCOA" = 1 ; then
5294 LDFLAGS="$LDFLAGS -framework Cocoa -framework System"
5295fi
3a922bb4 5296
3d63bc3a
RL
5297dnl FIXME: should this be covered by the conditional above
5298dnl given the -lm comment there? Or should that comment (and
5299dnl this one) be removed.. [ 7 Nov 2001 ]
5300
2b5f62a0
VZ
5301LIBS="$ZLIB_LINK $POSIX4_LINK $INET_LINK $WCHAR_LINK $DL_LINK $LIBS"
5302
5303dnl Only add the -lm library if floating point functions cannot be used
5304dnl without it. This check is important on cygwin because of the bizarre
5305dnl way that they have organized functions into libraries. On cygwin, both
5306dnl libc.a and libm.a are symbolic links to a single lib libcygwin.a. This
5307dnl means that
5308dnl 1) linking with -lm is not necessary, and
5309dnl 2) linking with -lm is dangerous if the order of libraries is wrong
5310dnl In particular, if you compile any program with -mno-cygwin and link with
5311dnl -lm, it will crash instantly when it is run. This happens because the
5312dnl linker incorrectly links the Cygwin libm.a (==libcygwin.a), which replaces
5313dnl the ___main function instead of allowing it to be defined by
5314dnl /usr/lib/mingw/libmingw32.a as it should be.
5315dnl
5316dnl On MacOS X, this test will find that -lm is unnecessary and leave it out.
5317dnl
5318dnl Just check a few floating point functions. If they are all found without
5319dnl -lm, then we must not need -lm.
5320have_cos=0
5321have_floor=0
5322AC_CHECK_FUNCS(cos, have_cos=1)
5323AC_CHECK_FUNCS(floor, have_floor=1)
5324AC_MSG_CHECKING(if floating point functions link without -lm)
5325if test "$have_cos" = 1 -a "$have_floor" = 1; then
5326 AC_MSG_RESULT(yes)
5327else
5328 AC_MSG_RESULT(no)
5329 LIBS="$LIBS -lm"
5330 # use different functions to avoid configure caching
5331 have_sin=0
5332 have_ceil=0
5333 AC_CHECK_FUNCS(sin, have_sin=1)
5334 AC_CHECK_FUNCS(ceil, have_ceil=1)
5335 AC_MSG_CHECKING(if floating point functions link with -lm)
5336 if test "$have_sin" = 1 -a "$have_ceil" = 1; then
5337 AC_MSG_RESULT(yes)
5338 else
5339 AC_MSG_RESULT(no)
5340 # not sure we should warn the user, crash, etc.
5341 fi
5342fi
3d63bc3a 5343
e90c1d2a 5344if test "$wxUSE_GUI" = "yes"; then
3d63bc3a 5345
cb61c62d 5346 LIBS="$GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $LIBS"
3a922bb4
RL
5347
5348 dnl TODO add checks that these samples will really compile (i.e. all the
5349 dnl library features they need are present)
5350
5351 dnl TODO some samples are never built so far:
5352 dnl ipc, mfc, nativdlg, oleauto, ownerdrw
867a54b6 5353 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS artprov controls dialogs \
3a922bb4 5354 drawing dynamic erase event exec font image \
1542ea39 5355 minimal propsize rotate shaped widgets"
3a922bb4 5356
3a922bb4
RL
5357 dnl this is needed to be able to find AFM files
5358 CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"
5359else
5360 SAMPLES_SUBDIRS="console"
e90c1d2a 5361fi
9a98a854 5362
8e877c19 5363
9a98a854 5364dnl all -I options we must pass to the compiler
44a5856d
VZ
5365dnl
5366dnl note that the order is somewhat important, in particular the ZLIB_INCLUDE
5367dnl and other stuff for the built in libraries should come first to avoid
5368dnl including the system headers with the same name (it is particularly
5369dnl important for zlib because XFree 4.2.0 has its own, horribly old and
5370dnl incompatible, zlib.h) and the wxWindows headers should come first anyhow
5371INCLUDES="-I\${top_builddir}/lib/wx/include/${TOOLCHAIN_NAME} \
5372-I\${top_srcdir}/include \
5373$REGEX_INCLUDE $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TIFF_INCLUDE \
5374$TOOLKIT_INCLUDE"
9a98a854 5375
f6bcfd97 5376dnl wxGTK does not need TOOLKIT includes in wx-config
63e7762e 5377if test "$wxUSE_GTK" = 1; then
3d63bc3a 5378 WXCONFIG_INCLUDE=
f6bcfd97
BP
5379else
5380 WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
5381fi
5382
9a98a854 5383dnl C/C++ compiler options used to compile wxWindows
bea74fbb 5384if test "$GXX" = yes ; then
ce4169a4
RR
5385 dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
5386 CXXWARNINGS="-Wall"
d6a55c4b 5387 dnl should enable this one day...
ce4169a4 5388 dnl CXXWARNINGS="-Wall -Werror"
88e30f2b
RL
5389
5390 dnl Add this *after* all compile tests, we don't need or want generated
5391 dnl depfiles until actually building the lib
5392 if test "$wxUSE_NO_DEPS" = "no" ; then
5393 CFLAGS="-MMD $CFLAGS"
5394 CXXFLAGS="-MMD $CXXFLAGS"
5395 fi
9a98a854 5396fi
88e30f2b 5397
b2fee376 5398EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE"
9a98a854 5399
fe5a9cab 5400dnl remove the extra white space from the cc/c++/ld options
b2fee376 5401CPPFLAGS=`echo $INCLUDES $CPPFLAGS | sed 's/ \\+/ /g'`
7b4a847f
RR
5402CFLAGS=`echo $EXTRA_CFLAGS $CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
5403CXXFLAGS=`echo $EXTRA_CFLAGS $CXXFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
fe5a9cab 5404LIBS=`echo $LIBS | sed 's/ \+/ /g'`
9a98a854 5405
fe5a9cab 5406LDFLAGS="$LDFLAGS $PROFILE"
e694c22c 5407
70d1b3cf
VZ
5408dnl for convenience, sort the samples in alphabetical order
5409dnl
5410dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
5411dnl in this list - hence uniq. But normally, this shouldn't be needed!
d6a55c4b
VZ
5412dnl
5413dnl Unfortunately, there is a bug in OS/2's tr, such that
d51e8205
SN
5414dnl tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
5415dnl only removes the Unix-like part of the introduced line break.
5416SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
5417
5418dnl makefile variables
5419AC_SUBST(LEX_STEM)
5420AC_SUBST(PATH_IFS)
70d1b3cf 5421
9a98a854
VZ
5422dnl global options
5423AC_SUBST(WX_MAJOR_VERSION_NUMBER)
5424AC_SUBST(WX_MINOR_VERSION_NUMBER)
5425AC_SUBST(WX_RELEASE_NUMBER)
48b1d0ff
RR
5426AC_SUBST(WX_LIBRARY_NAME_STATIC)
5427AC_SUBST(WX_LIBRARY_NAME_SHARED)
2b5f62a0 5428AC_SUBST(WX_LIBRARY_BASENAME)
77e13408 5429AC_SUBST(WX_LIBRARY_IMPORTLIB)
48b1d0ff
RR
5430AC_SUBST(WX_TARGET_LIBRARY)
5431AC_SUBST(WX_LIBRARY_LINK1)
5432AC_SUBST(WX_LIBRARY_LINK2)
80d895cd 5433AC_SUBST(PROGRAM_EXT)
48b1d0ff 5434
bdad4e7e 5435dnl global gl options
bdad4e7e
RR
5436AC_SUBST(WX_LIBRARY_NAME_STATIC_GL)
5437AC_SUBST(WX_LIBRARY_NAME_SHARED_GL)
bdad4e7e
RR
5438AC_SUBST(WX_TARGET_LIBRARY_GL)
5439AC_SUBST(WX_LIBRARY_LINK1_GL)
5440AC_SUBST(WX_LIBRARY_LINK2_GL)
bdad4e7e 5441
48b1d0ff 5442dnl are we supposed to create the links?
de87c353
RR
5443AC_SUBST(WX_ALL)
5444AC_SUBST(WX_ALL_INSTALLED)
9a98a854 5445
48b1d0ff
RR
5446AC_SUBST(SHARED_LD)
5447AC_SUBST(PIC_FLAG)
caa2c79b 5448AC_SUBST(CODE_GEN_FLAGS)
0f3f1cbc 5449AC_SUBST(CODE_GEN_FLAGS_CXX)
3a922bb4
RL
5450
5451AC_SUBST(SONAME_FLAGS)
5452AC_SUBST(SONAME_FLAGS_GL)
f6bcfd97 5453AC_SUBST(WX_TARGET_LIBRARY_SONAME)
3711412e 5454AC_SUBST(WX_TARGET_LIBRARY_TYPE)
48b1d0ff 5455
2bffed64
VZ
5456AC_SUBST(STATIC_FLAG)
5457
9a98a854
VZ
5458dnl debugging options
5459AC_SUBST(WXDEBUG_DEFINE)
5460
5461dnl toolkit options
dad6c0ea
VZ
5462AC_SUBST(USE_GUI)
5463AC_SUBST(AFMINSTALL)
2b5f62a0 5464AC_SUBST(WIN32INSTALL)
9a98a854 5465AC_SUBST(TOOLKIT)
9a98a854 5466AC_SUBST(TOOLKIT_DIR)
1e6feb95 5467AC_SUBST(TOOLKIT_VPATH)
3a922bb4
RL
5468AC_SUBST(TOOLCHAIN_NAME)
5469AC_SUBST(TOOLCHAIN_DEFS)
00c81359 5470AC_SUBST(TOOLCHAIN_DLL_DEFS)
3a922bb4
RL
5471
5472dnl wx-config options
52c71b80 5473AC_SUBST(top_builddir)
77e13408 5474AC_SUBST(host_alias)
3a922bb4
RL
5475AC_SUBST(cross_compiling)
5476AC_SUBST(WXCONFIG_LIBS)
5477AC_SUBST(WXCONFIG_LIBS_GL)
885d4bf5
VS
5478AC_SUBST(WXCONFIG_LIBS_STATIC)
5479AC_SUBST(WXCONFIG_LIBS_STATIC_GL)
f6bcfd97 5480AC_SUBST(WXCONFIG_INCLUDE)
3bd8fb5f 5481AC_SUBST(WXCONFIG_RPATH)
e26c13cf 5482AC_SUBST(WX_LARGEFILE_FLAGS)
9a98a854 5483
9b695262 5484dnl the list of files to compile/install
e90c1d2a 5485AC_SUBST(ALL_OBJECTS)
9b695262
VZ
5486AC_SUBST(ALL_HEADERS)
5487AC_SUBST(ALL_SOURCES)
2224580a
VZ
5488
5489dnl distribution vars
a4aad961 5490AC_SUBST(GUIDIST)
2224580a
VZ
5491AC_SUBST(PORT_FILES)
5492AC_SUBST(DISTDIR)
073478b3 5493
9a98a854 5494dnl additional subdirectories where we will build
9a98a854 5495AC_SUBST(SAMPLES_SUBDIRS)
9a98a854 5496
e694c22c
VZ
5497dnl additional libraries and linker settings
5498AC_SUBST(LDFLAGS)
62d0491b 5499AC_SUBST(LDFLAGS_GL)
2b5f62a0 5500AC_SUBST(LDFLAGS_VERSIONING)
40f7145c 5501AC_SUBST(LDFLAGS_EXE)
f6bcfd97 5502AC_SUBST(OPENGL_LIBS)
3d63bc3a 5503AC_SUBST(DMALLOC_LIBS)
b12915c1 5504AC_SUBST(EXTRADEFS)
2b5f62a0 5505AC_SUBST(WX_VERSION_TAG)
9a98a854 5506
32832908 5507dnl additional resurces settings
32832908
VZ
5508AC_SUBST(RESCOMP)
5509AC_SUBST(RESFLAGS)
3a922bb4 5510AC_SUBST(RESPROGRAMOBJ)
e95edd8d
GD
5511AC_SUBST(WX_RESOURCES_MACOSX_ASCII)
5512AC_SUBST(WX_RESOURCES_MACOSX_DATA)
3a922bb4 5513
2f51a9ec 5514dnl additional for Mac OS X
2f51a9ec 5515AC_SUBST(DEREZ)
ef7f2189 5516AC_SUBST(MACOSX_BUNDLE)
2f51a9ec 5517AC_SUBST(LIBWXMACRES)
36825681
GD
5518AC_SUBST(MACRESCOMP)
5519AC_SUBST(MACSETFILE)
5520AC_SUBST(MACRESWXCONFIG)
32832908 5521
2b5f62a0
VZ
5522dnl other tools
5523AC_SUBST(GCC)
32832908
VZ
5524AC_SUBST(DLLTOOL)
5525AC_SUBST(AS)
5526AC_SUBST(NM)
5527AC_SUBST(LD)
5528AC_SUBST(MAKEINFO)
885d4bf5 5529AC_SUBST(INSTALL_LIBRARY)
4f5a7f74 5530AC_SUBST(INSTALL_DIR)
885d4bf5 5531
9a98a854 5532dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
156b2523 5533dnl itself (this macro is required if SUBDIRS variable is used in Makefile.am
9a98a854
VZ
5534dnl - and we do use it)
5535AC_PROG_MAKE_SET
5536
00cf1208 5537dnl move setup.h back if available
3a922bb4
RL
5538if test -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h; then
5539 mv -f lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h setup.h
00cf1208 5540fi
014e19de 5541
2aa88730
RR
5542AC_CONFIG_HEADER(setup.h:setup.h.in)
5543
57973b9c
VZ
5544dnl we need to pass SAMPLES_SUBDIRS (and some other) to the configure in
5545dnl samples and the only way to do it is to use the environment (another
5546dnl idea could have been to use the cache but this wouldn't work when
5547dnl configure doesn't use cache at all which is the default with autoconf 2.50)
5548wx_cv_path_samplesubdirs=$SAMPLES_SUBDIRS
5549wx_cv_if_gnu_make=$IF_GNU_MAKE
5550wx_cv_path_ifs=$PATH_IFS
5551wx_cv_program_ext=$PROGRAM_EXT
5552wx_cv_target_library=$WX_TARGET_LIBRARY
5553wx_cv_target_library_gl=$WX_TARGET_LIBRARY_GL
5554wx_cv_target_libtype=$WX_TARGET_LIBRARY_TYPE
2b5f62a0
VZ
5555wx_cv_library_basename=${WX_LIBRARY_BASENAME}
5556wx_cv_release=${WX_RELEASE}
5557wx_cv_current=${WX_CURRENT}
5558wx_cv_revision=${WX_REVISION}
5559wx_cv_age=${WX_AGE}
27635a90 5560wx_cv_use_gui=${USE_GUI}
5e66eee1 5561wx_cv_use_resources=${wxUSE_RESOURCES}
57973b9c
VZ
5562export wx_cv_path_samplesubdirs wx_cv_if_gnu_make \
5563 wx_cv_path_ifs wx_cv_program_ext \
2b5f62a0 5564 wx_cv_target_library wx_cv_target_library_gl wx_cv_target_libtype \
27635a90 5565 wx_cv_library_basename wx_cv_release wx_cv_current wx_cv_revision wx_cv_age \
5e66eee1 5566 wx_cv_use_gui wx_cv_use_resources
57973b9c
VZ
5567
5568AC_CONFIG_SUBDIRS(demos samples utils contrib)
2aa88730 5569
9a98a854
VZ
5570dnl create each of the files in the space separated list from the file.in
5571dnl (the original file name may be overriden by appending another name after a
5572dnl colon)
5573AC_OUTPUT([
ff684c98 5574 wx-config
2b5f62a0 5575 version-script
e90c1d2a
VZ
5576 src/make.env
5577 src/makeprog.env
5578 src/makelib.env
bcd2b961 5579 Makefile
9a98a854 5580 ],
a2cddd63 5581 [
3a922bb4
RL
5582 dnl This test is required to make the following idempotent.
5583 dnl Otherwise running config.status or rerunning configure
5584 dnl would stomp the wx-config link or try to move it onto
5585 dnl itself.
652d930d
GD
5586 dnl Use -h instead of -L to test for link (GD)
5587 dnl -h is documented as obsolete under Mac OS X but works
5588 dnl -L is obsolete under Solaris8
5589 if test ! -h wx-config; then
991a5759 5590 chmod +x wx-config
3a922bb4
RL
5591 mv wx-config wx${TOOLCHAIN_NAME}-config
5592 ${LN_S} wx${TOOLCHAIN_NAME}-config wx-config
991a5759 5593 fi
014e19de 5594
00cf1208
RR
5595 if test ! -d lib; then
5596 mkdir lib
5597 fi
5598 if test ! -d lib/wx; then
5599 mkdir lib/wx
5600 fi
5601 if test ! -d lib/wx/include; then
5602 mkdir lib/wx/include
5603 fi
3a922bb4
RL
5604 if test ! -d lib/wx/include/${TOOLCHAIN_NAME}; then
5605 mkdir lib/wx/include/${TOOLCHAIN_NAME}
e90c1d2a 5606 fi
3a922bb4
RL
5607 if test ! -d lib/wx/include/${TOOLCHAIN_NAME}/wx; then
5608 mkdir lib/wx/include/${TOOLCHAIN_NAME}/wx
e90c1d2a 5609 fi
afc31813 5610 if test -f setup.h; then
3a922bb4 5611 mv -f setup.h lib/wx/include/${TOOLCHAIN_NAME}/wx/setup.h
afc31813 5612 fi
a2cddd63
VZ
5613 ],
5614 [
3a922bb4 5615 TOOLCHAIN_NAME="${TOOLCHAIN_NAME}"
07eb77a6 5616 LN_S="${LN_S}"
a2cddd63
VZ
5617 ]
5618 )
9a98a854 5619
2b5f62a0
VZ
5620dnl report on what we decided to do
5621echo
5622echo "Configured wxWindows ${WX_VERSION} for \`${host}'"
5623echo ""
5624echo " Which GUI toolkit should wxWindows use? ${TOOLKIT:-base only}"
5625
5626echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG:-no}"
5627echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED:-no}"
5628echo " Should wxWindows be compiled in Unicode mode? ${wxUSE_UNICODE:-no}"
5629
0c98a14e
GD
5630echo " What level of wxWindows compatibility should be enabled?"
5631echo " wxWindows 2.0 ${WXWIN_COMPATIBILITY_2:-no}"
65d8ef1e
VS
5632echo " wxWindows 2.2 ${WXWIN_COMPATIBILITY_2_2:-no}"
5633echo " wxWindows 2.4 ${WXWIN_COMPATIBILITY_2_4:-yes}"
0c98a14e 5634
2b5f62a0
VZ
5635echo " Which libraries should wxWindows use?"
5636echo " jpeg ${wxUSE_LIBJPEG-none}"
5637echo " png ${wxUSE_LIBPNG-none}"
5638echo " regex ${wxUSE_REGEX}"
5639echo " tiff ${wxUSE_LIBTIFF-none}"
5640echo " zlib ${wxUSE_ZLIB}"
5641
5642echo ""
5643
5644dnl vi: set et sts=4 sw=4 com=\:dnl: