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