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