]> git.saurik.com Git - wxWidgets.git/blame - configure.in
implemented (more) correct <pre> handling
[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
6dnl Top-level configure.in for wxWindows by Robert Roebling, Phil Blecker and
7dnl Vadim Zeitlin
8dnl
9dnl This script is under the wxWindows licence.
10dnl
11dnl Version: $Id$
bcd2b961 12dnl ---------------------------------------------------------------------------
9a98a854 13
2aa88730
RR
14dnl ---------------------------------------------------------------------------
15dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
16dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS. Uses variables
17dnl gtk_config_prefix and/or gtk_config_exec_prefix if defined.
18dnl ---------------------------------------------------------------------------
19dnl
20AC_DEFUN(AM_PATH_GTK,
21[
22 if test x$gtk_config_exec_prefix != x ; then
23 gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
24 if test x${GTK_CONFIG+set} != xset ; then
25 GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
26 fi
27 fi
28 if test x$gtk_config_prefix != x ; then
29 gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
30 if test x${GTK_CONFIG+set} != xset ; then
31 GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
32 fi
33 fi
34
35 AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
36 min_gtk_version=ifelse([$1], ,0.99.7,$1)
37 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
38 no_gtk=""
39 if test "$GTK_CONFIG" != "no" ; then
40 GTK_CFLAGS=`$GTK_CONFIG --cflags`
b9fa850d 41 GTK_LIBS=`$GTK_CONFIG --libs gthread`
2aa88730
RR
42 ac_save_CFLAGS="$CFLAGS"
43 ac_save_LIBS="$LIBS"
44 CFLAGS="$CFLAGS $GTK_CFLAGS"
45 LIBS="$LIBS $GTK_LIBS"
46dnl
47dnl Now check if the installed GTK is sufficiently new. (Also sanity
48dnl checks the results of gtk-config to some extent)
49dnl
50 AC_TRY_RUN([
51#include <gtk/gtk.h>
f49f2b0c 52#include <gtk/gtkfeatures.h>
2aa88730 53#include <stdio.h>
b6fa52db 54#include <stdlib.h>
2aa88730
RR
55
56int
57main ()
58{
59 int major, minor, micro;
60
61 if (sscanf("$min_gtk_version", "%d.%d.%d", &major, &minor, &micro) != 3) {
62 printf("%s, bad version string\n", "$min_gtk_version");
63 exit(1);
f49f2b0c
RR
64 }
65
66 if ((GTK_MAJOR_VERSION != gtk_major_version) ||
67 (GTK_MINOR_VERSION != gtk_minor_version) ||
68 (GTK_MICRO_VERSION != gtk_micro_version)) {
69 printf("Headers vs. library version mismatch!\n");
70 exit(1);
2aa88730
RR
71 }
72
73 if (gtk_minor_version == 1) return FALSE;
74
75 return !((gtk_major_version > major) ||
e90c1d2a
VZ
76 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
77 ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)));
2aa88730
RR
78}
79],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
80 CFLAGS="$ac_save_CFLAGS"
81 LIBS="$ac_save_LIBS"
82 else
83 no_gtk=yes
84 fi
85 if test "x$no_gtk" = x ; then
86 AC_MSG_RESULT(yes)
87 ifelse([$2], , :, [$2])
88 else
89 AC_MSG_RESULT(no)
90 GTK_CFLAGS=""
91 GTK_LIBS=""
92 ifelse([$3], , :, [$3])
93 fi
94 AC_SUBST(GTK_CFLAGS)
95 AC_SUBST(GTK_LIBS)
96])
97
98dnl ===========================================================================
99dnl macros to find the a file in the list of include/lib paths
100dnl ===========================================================================
101
102dnl ---------------------------------------------------------------------------
103dnl call WX_PATH_FIND_INCLUDES(search path, header name), sets ac_find_includes
104dnl to the full name of the file that was found or leaves it empty if not found
105dnl ---------------------------------------------------------------------------
106AC_DEFUN(WX_PATH_FIND_INCLUDES,
107[
108ac_find_includes=
109for ac_dir in $1;
110 do
111 if test -f "$ac_dir/$2"; then
112 ac_find_includes=$ac_dir
113 break
114 fi
115 done
116])
117
118dnl ---------------------------------------------------------------------------
119dnl call WX_PATH_FIND_LIBRARIES(search path, header name), sets ac_find_includes
120dnl to the full name of the file that was found or leaves it empty if not found
121dnl ---------------------------------------------------------------------------
122AC_DEFUN(WX_PATH_FIND_LIBRARIES,
123[
124ac_find_libraries=
125for ac_dir in $1;
126 do
127 for ac_extension in a so sl; do
128 if test -f "$ac_dir/lib$2.$ac_extension"; then
129 ac_find_libraries=$ac_dir
130 break 2
131 fi
132 done
133 done
134])
135
136dnl ---------------------------------------------------------------------------
137dnl Path to include, already defined
138dnl ---------------------------------------------------------------------------
139AC_DEFUN(WX_INCLUDE_PATH_EXIST,
140[
141 ac_path_to_include=$1
142 echo "$2" | grep "\-I$1" > /dev/null
143 result=$?
144 if test $result = 0; then
145 ac_path_to_include=""
146 else
147 ac_path_to_include="-I$1"
148 fi
149])
150
151dnl ---------------------------------------------------------------------------
152dnl Path to link, already defined
153dnl ---------------------------------------------------------------------------
154AC_DEFUN(WX_LINK_PATH_EXIST,
155[
156 echo "$2" | grep "\-L$1" > /dev/null
157 result=$?
158 if test $result = 0; then
159 ac_path_to_link=""
160 else
161 ac_path_to_link="-L$1"
162 fi
163])
164
165dnl ===========================================================================
166dnl C++ features test
167dnl ===========================================================================
168
169dnl ---------------------------------------------------------------------------
170dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
171dnl or only the old <iostream.h> one - it may be generally assumed that if
172dnl <iostream> exists, the other "new" headers (without .h) exist too.
173dnl
174dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false-or-cross-compiling)
175dnl ---------------------------------------------------------------------------
176
177AC_DEFUN(WX_CPP_NEW_HEADERS,
178[
179 if test "$cross_compiling" = "yes"; then
180 ifelse([$2], , :, [$2])
181 else
182 AC_LANG_SAVE
183 AC_LANG_CPLUSPLUS
184
185 AC_CHECK_HEADERS(iostream)
186
187 if test "x$HAVE_IOSTREAM" = x ; then
188 ifelse([$2], , :, [$2])
189 else
190 ifelse([$1], , :, [$1])
191 fi
192
193 AC_LANG_RESTORE
194 fi
195])
196
197dnl ---------------------------------------------------------------------------
198dnl WX_CPP_BOOL checks whether the C++ compiler has a built in bool type
199dnl
200dnl call WX_CPP_BOOL - will define HAVE_BOOL if the compiler supports bool
201dnl ---------------------------------------------------------------------------
202
203AC_DEFUN(WX_CPP_BOOL,
204[
205 AC_CACHE_CHECK([if C++ compiler supports bool], wx_cv_cpp_bool,
206 [
207 AC_LANG_SAVE
208 AC_LANG_CPLUSPLUS
209
3a3eed31
VZ
210 AC_TRY_COMPILE(
211 [
212 ],
213 [
214 bool b = true;
2aa88730 215
3a3eed31 216 return 0;
2aa88730
RR
217 ],
218 [
219 AC_DEFINE(HAVE_BOOL)
220 wx_cv_cpp_bool=yes
221 ],
3a3eed31
VZ
222 [
223 wx_cv_cpp_bool=no
224 ]
2aa88730
RR
225 )
226
227 AC_LANG_RESTORE
228 ])
229
230 if test "$wx_cv_cpp_bool" = "yes"; then
231 AC_DEFINE(HAVE_BOOL)
232 fi
233])
234
2aa88730
RR
235dnl ---------------------------------------------------------------------------
236dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
237dnl ---------------------------------------------------------------------------
238
239AC_DEFUN(WX_C_BIGENDIAN,
240[AC_CACHE_CHECK(whether byte ordering is bigendian, ac_cv_c_bigendian,
241[ac_cv_c_bigendian=unknown
242# See if sys/param.h defines the BYTE_ORDER macro.
243AC_TRY_COMPILE([#include <sys/types.h>
244#include <sys/param.h>], [
245#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
246 bogus endian macros
247#endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
248AC_TRY_COMPILE([#include <sys/types.h>
249#include <sys/param.h>], [
250#if BYTE_ORDER != BIG_ENDIAN
251 not big endian
252#endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
253if test $ac_cv_c_bigendian = unknown; then
254AC_TRY_RUN([main () {
255 /* Are we little or big endian? From Harbison&Steele. */
256 union
257 {
258 long l;
259 char c[sizeof (long)];
260 } u;
261 u.l = 1;
262 exit (u.c[sizeof (long) - 1] == 1);
263}], ac_cv_c_bigendian=no, ac_cv_c_bigendian=yes, ac_cv_c_bigendian=unknown)
264fi])
265if test $ac_cv_c_bigendian = unknown; then
266 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])
267fi
268if test $ac_cv_c_bigendian = yes; then
269 AC_DEFINE(WORDS_BIGENDIAN)
270fi
271])
272
273dnl ---------------------------------------------------------------------------
274dnl override AC_ARG_ENABLE/WITH to cache the results in .cache file
275dnl ---------------------------------------------------------------------------
276
277AC_DEFUN(WX_ARG_CACHE_INIT,
278 [
279 wx_arg_cache_file="configarg.cache"
280 echo "loading argument cache $wx_arg_cache_file"
281 rm -f ${wx_arg_cache_file}.tmp
282 touch ${wx_arg_cache_file}.tmp
283 touch ${wx_arg_cache_file}
284 ])
285
286AC_DEFUN(WX_ARG_CACHE_FLUSH,
287 [
288 echo "saving argument cache $wx_arg_cache_file"
289 mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
290 ])
291
422107f9
VZ
292dnl this macro checks for a three-valued command line --with argument:
293dnl possible arguments are 'yes', 'no', or 'sys'
294dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
295AC_DEFUN(WX_ARG_SYS_WITH,
296 [
297 AC_MSG_CHECKING("for --with-$1")
298 no_cache=0
299 AC_ARG_WITH($1, $2,
300 [
301 if test "$withval" = yes; then
302 ac_cv_use_$1='$3=yes'
303 elif test "$withval" = no; then
304 ac_cv_use_$1='$3=no'
305 elif test "$withval" = sys; then
306 ac_cv_use_$1='$3=sys'
307 else
308 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no or sys])
309 fi
310 ],
311 [
312 LINE=`grep "$3" ${wx_arg_cache_file}`
313 if test "x$LINE" != x ; then
314 eval "DEFAULT_$LINE"
315 else
316 no_cache=1
317 fi
318
319 ac_cv_use_$1='$3='$DEFAULT_$3
320 ])
321
322 eval "$ac_cv_use_$1"
323 if test "$no_cache" != 1; then
324 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
325 fi
326
327 if test "$$3" = yes; then
328 AC_MSG_RESULT(yes)
329 elif test "$$3" = no; then
330 AC_MSG_RESULT(no)
331 elif test "$$3" = sys; then
332 AC_MSG_RESULT(system version)
333 else
334 AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no or sys])
335 fi
336 ])
337
2aa88730
RR
338dnl this macro checks for a command line argument and caches the result
339dnl usage: WX_ARG_WITH(option, helpmessage, variable-name)
340AC_DEFUN(WX_ARG_WITH,
341 [
342 AC_MSG_CHECKING("for --with-$1")
343 no_cache=0
344 AC_ARG_WITH($1, $2,
345 [
346 if test "$withval" = yes; then
347 ac_cv_use_$1='$3=yes'
348 else
349 ac_cv_use_$1='$3=no'
350 fi
351 ],
352 [
353 LINE=`grep "$3" ${wx_arg_cache_file}`
354 if test "x$LINE" != x ; then
355 eval "DEFAULT_$LINE"
356 else
357 no_cache=1
358 fi
359
360 ac_cv_use_$1='$3='$DEFAULT_$3
361 ])
362
363 eval "$ac_cv_use_$1"
364 if test "$no_cache" != 1; then
365 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
366 fi
367
368 if test "$$3" = yes; then
369 AC_MSG_RESULT(yes)
370 else
371 AC_MSG_RESULT(no)
372 fi
373 ])
374
375dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
376dnl usage: WX_ARG_ENABLE(option, helpmessage, variable-name)
377AC_DEFUN(WX_ARG_ENABLE,
378 [
379 AC_MSG_CHECKING("for --enable-$1")
380 no_cache=0
381 AC_ARG_ENABLE($1, $2,
382 [
383 if test "$enableval" = yes; then
384 ac_cv_use_$1='$3=yes'
385 else
386 ac_cv_use_$1='$3=no'
387 fi
388 ],
389 [
390 LINE=`grep "$3" ${wx_arg_cache_file}`
391 if test "x$LINE" != x ; then
392 eval "DEFAULT_$LINE"
393 else
394 no_cache=1
395 fi
396
397 ac_cv_use_$1='$3='$DEFAULT_$3
398 ])
399
400 eval "$ac_cv_use_$1"
401 if test "$no_cache" != 1; then
402 echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
403 fi
404
405 if test "$$3" = yes; then
406 AC_MSG_RESULT(yes)
407 else
408 AC_MSG_RESULT(no)
409 fi
410 ])
411
412dnl -
413dnl - GNU libc extension (added by GL)
414dnl -
415
416AC_DEFUN(WX_GNU_EXTENSIONS,
417[
418AC_MSG_CHECKING([if you need GNU extensions])
419AC_CACHE_VAL(wx_cv_gnu_extensions,[
420 AC_TRY_COMPILE([#include <features.h>],[
421
422#ifndef __GNU_LIBRARY__
423 Compile error wanted
424#endif
425
426],
427 [wx_cv_gnu_extensions=yes],
428 [wx_cv_gnu_extensions=no])
429])
430
431AC_MSG_RESULT($wx_cv_gnu_extensions)
432if test "$wx_cv_gnu_extensions" = "yes"; then
433 AC_DEFINE_UNQUOTED(_GNU_SOURCE)
434fi
435])
436
437
9a98a854
VZ
438dnl ---------------------------------------------------------------------------
439dnl initialization
440dnl ---------------------------------------------------------------------------
441
a9b5e89f 442dnl the file passed to AC_INIT should be specific to our package
9a98a854
VZ
443AC_INIT(wx-config.in)
444
e59890c3 445dnl sets build, host, target variables and the same with _alias
7c66a493
VZ
446AC_CANONICAL_SYSTEM
447
448dnl When making releases do:
449dnl
450dnl WX_RELEASE_NUMBER += 1
2b6f061f 451dnl
6426998c
RL
452dnl ..and update WX_CURRENT, WX_RELEASE and WX_AGE according to the
453dnl following rules:
2b6f061f 454dnl
6426998c
RL
455dnl If any changes have been made to the public interface, that is if any
456dnl exported class, method, global or global type has been added, removed
457dnl or changed in any way, then do: WX_CURRENT += 1
458dnl
459dnl If source changes have been made that *do not* alter the public
460dnl interface then do: WX_REVISION += 1
461dnl If WX_CURRENT was incremented (as above) instead do: WX_REVISION = 0
462dnl
463dnl If any public interface was added, do: WX_AGE += 1
464dnl If any public interface was removed (or altered in a way effectively
465dnl removing the previous definition), instead do: WX_AGE = 0
466dnl
467dnl When the major or minor version numbers are incremented, all the above
468dnl variables should be reset to 0.
469dnl
470dnl The resulting library name will be of the form:
471dnl libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
9a98a854
VZ
472
473WX_MAJOR_VERSION_NUMBER=2
1d43cb9e 474WX_MINOR_VERSION_NUMBER=3
f6bcfd97 475WX_RELEASE_NUMBER=0
9a98a854 476
2b6f061f 477WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER
2aa88730 478WX_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER
6426998c
RL
479
480WX_CURRENT=0
481WX_REVISION=0
482WX_AGE=0
483
9a98a854
VZ
484
485dnl ------------------------------------------------------------------------
486dnl Check platform (host system)
487dnl ------------------------------------------------------------------------
488
489dnl assume Unix
490USE_UNIX=1
4882bf1b 491USE_WIN32=0
b12915c1
VZ
492USE_BEOS=0
493
9a98a854
VZ
494USE_LINUX=
495USE_SGI=
496USE_HPUX=
497USE_SYSV=
498USE_SVR4=
499USE_AIX=
500USE_SUN=
501USE_SOLARIS=
502USE_SUNOS=
503USE_ALPHA=
504USE_OSF=
505USE_BSD=
506USE_FREEBSD=
1cf8c0a9 507USE_OPENBSD=
f6bcfd97 508USE_NETBSD=
9a98a854
VZ
509USE_VMS=
510USE_ULTRIX=
511USE_CYGWIN=
4d19d979 512USE_MINGW=
9a98a854
VZ
513USE_DATA_GENERAL=
514
ab9b9eab
VZ
515dnl on some platforms xxx_r() functions are declared inside "#ifdef
516dnl _REENTRANT" and it's easier to just define this symbol for these platforms
517dnl than checking it during run-time
518NEEDS_D_REENTRANT_FOR_R_FUNCS=0
519
ced859c3 520dnl the list of all available toolkits
b4085ce6 521ALL_TOOLKITS="CYGWIN GTK MINGW MOTIF MAC WINE PM"
ced859c3 522
9a98a854
VZ
523dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
524dnl which are either yes or no
525DEFAULT_wxUSE_GTK=0
526DEFAULT_wxUSE_MOTIF=0
527DEFAULT_wxUSE_MSW=0
b4085ce6 528DEFAULT_wxUSE_MAC=0
5a92d200 529DEFAULT_wxUSE_WINE=0
e07802fc 530DEFAULT_wxUSE_PM=0
9a98a854 531
143121c5
VZ
532dnl these are the values which are really default for the given platform -
533dnl they're not cached and are only used if no --with-toolkit was given *and*
534dnl nothing was found in the cache
535DEFAULT_DEFAULT_wxUSE_GTK=0
536DEFAULT_DEFAULT_wxUSE_MOTIF=0
537DEFAULT_DEFAULT_wxUSE_MSW=0
b4085ce6 538DEFAULT_DEFAULT_wxUSE_MAC=0
5a92d200 539DEFAULT_DEFAULT_wxUSE_WINE=0
e07802fc 540DEFAULT_DEFAULT_wxUSE_PM=0
143121c5 541
d6a55c4b
VZ
542PROGRAM_EXT=
543
b12915c1
VZ
544dnl to support a new system, you need to add its canonical name (as determined
545dnl by config.sub or specified by the configure command line) to this "case"
546dnl and also define the shared library flags below - search for
547dnl SHARED_LIB_SETUP to find the exact place
9a98a854
VZ
548case "${host}" in
549 *-hp-hpux* )
550 USE_HPUX=1
143121c5 551 DEFAULT_DEFAULT_wxUSE_MOTIF=1
ab9b9eab 552 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
9a98a854
VZ
553 AC_DEFINE(__HPUX__)
554 ;;
555 *-*-linux* )
556 USE_LINUX=1
557 AC_DEFINE(__LINUX__)
558 TMP=`uname -m`
559 if test "x$TMP" = "xalpha"; then
560 USE_ALPHA=1
561 AC_DEFINE(__ALPHA__)
562 fi
143121c5 563 DEFAULT_DEFAULT_wxUSE_GTK=1
9a98a854
VZ
564 ;;
565 *-*-irix5* | *-*-irix6* )
566 USE_SGI=1
567 USE_SVR4=1
568 AC_DEFINE(__SGI__)
569 AC_DEFINE(__SVR4__)
143121c5 570 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
571 ;;
572 *-*-solaris2* )
573 USE_SUN=1
574 USE_SOLARIS=1
575 USE_SVR4=1
576 AC_DEFINE(__SUN__)
577 AC_DEFINE(__SOLARIS__)
578 AC_DEFINE(__SVR4__)
143121c5 579 DEFAULT_DEFAULT_wxUSE_MOTIF=1
ab9b9eab 580 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
9a98a854
VZ
581 ;;
582 *-*-sunos4* )
583 USE_SUN=1
584 USE_SUNOS=1
585 USE_BSD=1
586 AC_DEFINE(__SUN__)
587 AC_DEFINE(__SUNOS__)
588 AC_DEFINE(__BSD__)
143121c5 589 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854 590 ;;
f6bcfd97 591 *-*-freebsd*)
9a98a854
VZ
592 USE_BSD=1
593 USE_FREEBSD=1
594 AC_DEFINE(__FREEBSD__)
595 AC_DEFINE(__BSD__)
143121c5 596 DEFAULT_DEFAULT_wxUSE_GTK=1
9a98a854 597 ;;
1cf8c0a9
VZ
598 *-*-openbsd*)
599 USE_BSD=1
600 USE_OPENBSD=1
601 AC_DEFINE(__FREEBSD__)
602 AC_DEFINE(__OPENBSD__)
603 DEFAULT_DEFAULT_wxUSE_GTK=1
604 ;;
f6bcfd97
BP
605 *-*-netbsd*)
606 USE_BSD=1
607 USE_NETBSD=1
608 AC_DEFINE(__FREEBSD__)
609 AC_DEFINE(__NETBSD__)
610 DEFAULT_DEFAULT_wxUSE_GTK=1
611 ;;
9a98a854
VZ
612 *-*-osf* )
613 USE_ALPHA=1
614 USE_OSF=1
615 AC_DEFINE(__ALPHA__)
616 AC_DEFINE(__OSF__)
143121c5 617 DEFAULT_DEFAULT_wxUSE_MOTIF=1
f6bcfd97 618 NEEDS_D_REENTRANT_FOR_R_FUNCS=1
9a98a854
VZ
619 ;;
620 *-*-dgux5* )
621 USE_ALPHA=1
622 USE_SVR4=1
623 AC_DEFINE(__ALPHA__)
624 AC_DEFINE(__SVR4__)
143121c5 625 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
626 ;;
627 *-*-sysv5* )
628 USE_SYSV=1
629 USE_SVR4=1
630 AC_DEFINE(__SYSV__)
631 AC_DEFINE(__SVR4__)
143121c5 632 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854
VZ
633 ;;
634 *-*-aix* )
635 USE_AIX=1
636 USE_SYSV=1
637 USE_SVR4=1
638 AC_DEFINE(__AIX__)
639 AC_DEFINE(__SYSV__)
640 AC_DEFINE(__SVR4__)
143121c5 641 DEFAULT_DEFAULT_wxUSE_MOTIF=1
9a98a854 642 ;;
a9b5e89f 643
7c0ea335 644 *-*-cygwin32* | *-*-mingw32* )
4d19d979 645 USE_UNIX=0
4882bf1b 646 USE_WIN32=1
4d19d979
HH
647 AC_DEFINE(__WIN32__)
648 AC_DEFINE(__WIN95__)
649 AC_DEFINE(__WINDOWS__)
650 AC_DEFINE(__GNUWIN32__)
1db46618 651 AC_DEFINE(STRICT)
4d19d979 652 AC_DEFINE(WINVER, 0x0400)
cf27ef00 653 PROGRAM_EXT=".exe"
a9b5e89f
VZ
654 DEFAULT_DEFAULT_wxUSE_MSW=1
655 ;;
656
91b8de8d
RR
657 *-pc-os2_emx )
658 AC_DEFINE(__EMX__)
cf27ef00 659 PROGRAM_EXT=".exe"
e07802fc 660 DEFAULT_DEFAULT_wxUSE_PM=1
91b8de8d 661 ;;
a9b5e89f 662
b4085ce6
GD
663 *-*-darwin* )
664 USE_BSD=1
665 USE_MAC=1
666 AC_DEFINE(__MAC__)
667 AC_DEFINE(__BSD__)
668 AC_DEFINE(__UNIX__)
669 DEFAULT_DEFAULT_wxUSE_MAC=1
670 ;;
671
b12915c1
VZ
672 *-*-beos* )
673 dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this
674 USE_BEOS=1
675 AC_DEFINE(__BEOS__)
676 ;;
677
9a98a854 678 *)
a9b5e89f 679 AC_MSG_ERROR(unknown system type ${host}.)
9a98a854
VZ
680esac
681
682if test "$USE_UNIX" = 1 ; then
b12915c1
VZ
683 wxUSE_UNIX=yes
684 AC_DEFINE(__UNIX__)
685
686 SRC_SUBDIRS="$SRC_SUBDIRS unix"
687 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS unix"
688fi
689
690if test "$USE_BEOS" = 1; then
691 SRC_SUBDIRS="$SRC_SUBDIRS be"
692 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS be"
9a98a854
VZ
693fi
694
695dnl Linux: test for libc5/glibc2: glibc2 has gettext() included
696if test "$USE_LINUX" = 1; then
697 AC_CHECK_LIB(c,gettext,AC_DEFINE(wxHAVE_GLIBC2))
698fi
699
9a98a854
VZ
700dnl ---------------------------------------------------------------------------
701dnl command line options for configure
702dnl ---------------------------------------------------------------------------
703
704dnl the default values for all options - we collect them all here to simplify
705dnl modification of the default values (for example, if the defaults for some
706dnl platform should be changed, it can be done here too)
707dnl
708dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above
709
143121c5
VZ
710WX_ARG_CACHE_INIT
711
9a98a854
VZ
712dnl useful to test the compilation with minimum options, define as 0 for normal
713dnl usage
714DEBUG_CONFIGURE=0
715if test $DEBUG_CONFIGURE = 1; then
716 DEFAULT_wxUSE_THREADS=yes
717
2aa88730 718 DEFAULT_wxUSE_SHARED=yes
00cf1208 719 DEFAULT_wxUSE_BURNT_NAME=no
2aa88730 720 DEFAULT_wxUSE_OPTIMISE=yes
9a98a854 721 DEFAULT_wxUSE_PROFILE=no
5586805b 722 DEFAULT_wxUSE_NO_DEPS=no
f7bdcdd7
RR
723 DEFAULT_wxUSE_NO_RTTI=no
724 DEFAULT_wxUSE_NO_EXCEPTIONS=no
5586805b 725 DEFAULT_wxUSE_PERMISSIVE=no
9a98a854
VZ
726 DEFAULT_wxUSE_DEBUG_FLAG=yes
727 DEFAULT_wxUSE_DEBUG_INFO=yes
728 DEFAULT_wxUSE_DEBUG_GDB=yes
729 DEFAULT_wxUSE_MEM_TRACING=no
143121c5 730 DEFAULT_wxUSE_DEBUG_CONTEXT=no
9a98a854
VZ
731 DEFAULT_wxUSE_DMALLOC=no
732 DEFAULT_wxUSE_APPLE_IEEE=no
733
734 DEFAULT_wxUSE_LOG=yes
735
736 DEFAULT_wxUSE_GUI=yes
737
738 DEFAULT_wxUSE_ZLIB=no
739 DEFAULT_wxUSE_LIBPNG=no
9a98a854 740 DEFAULT_wxUSE_LIBJPEG=no
c7a2bf27 741 DEFAULT_wxUSE_LIBTIFF=no
9a98a854 742 DEFAULT_wxUSE_ODBC=no
3fed1840 743 DEFAULT_wxUSE_FREETYPE=no
bdad4e7e 744 DEFAULT_wxUSE_OPENGL=no
9a98a854 745
eb4efbdc 746 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no
fd15d8f1 747 DEFAULT_wxUSE_STD_IOSTREAM=no
9a98a854
VZ
748 DEFAULT_wxUSE_FILE=no
749 DEFAULT_wxUSE_TEXTFILE=no
750 DEFAULT_wxUSE_TIMEDATE=no
2749089a 751 DEFAULT_wxUSE_WAVE=no
9a98a854
VZ
752 DEFAULT_wxUSE_INTL=no
753 DEFAULT_wxUSE_CONFIG=no
754 DEFAULT_wxUSE_STREAMS=no
755 DEFAULT_wxUSE_SOCKETS=no
1c8515f9 756 DEFAULT_wxUSE_DIALUP_MANAGER=no
9a98a854
VZ
757 DEFAULT_wxUSE_SERIAL=no
758 DEFAULT_wxUSE_JOYSTICK=no
759 DEFAULT_wxUSE_DYNLIB_CLASS=no
760 DEFAULT_wxUSE_LONGLONG=no
e8f65ba6 761 DEFAULT_wxUSE_GEOMETRY=no
9a98a854
VZ
762
763 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no
764 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no
765 DEFAULT_wxUSE_POSTSCRIPT=no
766
767 DEFAULT_wxUSE_X_RESOURCES=no
768 DEFAULT_wxUSE_CLIPBOARD=no
769 DEFAULT_wxUSE_TOOLTIPS=no
770 DEFAULT_wxUSE_DRAG_AND_DROP=no
771 DEFAULT_wxUSE_SPLINES=no
772
773 DEFAULT_wxUSE_MDI_ARCHITECTURE=no
774 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no
775 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no
776
777 DEFAULT_wxUSE_PROLOGIO=no
778 DEFAULT_wxUSE_RESOURCES=no
779 DEFAULT_wxUSE_CONSTRAINTS=no
780 DEFAULT_wxUSE_IPC=no
781 DEFAULT_wxUSE_HELP=no
782 DEFAULT_wxUSE_WXTREE=no
783 DEFAULT_wxUSE_METAFILE=no
784
785 DEFAULT_wxUSE_COMMONDLGS=no
ce4169a4 786 DEFAULT_wxUSE_DIRDLG=no
c11584af 787 DEFAULT_wxUSE_TEXTDLG=no
a641505f 788 DEFAULT_wxUSE_STARTUP_TIPS=no
ce4169a4 789 DEFAULT_wxUSE_PROGRESSDLG=no
9a98a854 790 DEFAULT_wxUSE_MINIFRAME=no
5526e819 791 DEFAULT_wxUSE_HTML=no
24528b0c 792 DEFAULT_wxUSE_FILESYSTEM=no
e3e717ec
VZ
793 DEFAULT_wxUSE_FS_INET=no
794 DEFAULT_wxUSE_FS_ZIP=no
d78b3d64
VS
795 DEFAULT_wxUSE_BUSYINFO=no
796 DEFAULT_wxUSE_ZIPSTREAM=no
9a98a854
VZ
797 DEFAULT_wxUSE_VALIDATORS=yes
798
799 DEFAULT_wxUSE_ACCEL=no
800 DEFAULT_wxUSE_CARET=no
801 DEFAULT_wxUSE_BMPBUTTON=no
802 DEFAULT_wxUSE_CHECKBOX=no
803 DEFAULT_wxUSE_CHECKLST=no
40dac23a 804 DEFAULT_wxUSE_CHOICE=yes
9a98a854
VZ
805 DEFAULT_wxUSE_COMBOBOX=no
806 DEFAULT_wxUSE_GAUGE=no
807 DEFAULT_wxUSE_GRID=no
f85afd4e 808 DEFAULT_wxUSE_NEW_GRID=no
9a98a854
VZ
809 DEFAULT_wxUSE_IMAGLIST=no
810 DEFAULT_wxUSE_LISTBOX=no
811 DEFAULT_wxUSE_LISTCTRL=no
812 DEFAULT_wxUSE_NOTEBOOK=no
813 DEFAULT_wxUSE_RADIOBOX=no
814 DEFAULT_wxUSE_RADIOBTN=no
e602002e 815 DEFAULT_wxUSE_SASH=no
9a98a854
VZ
816 DEFAULT_wxUSE_SCROLLBAR=no
817 DEFAULT_wxUSE_SLIDER=no
818 DEFAULT_wxUSE_SPINBTN=no
66f38406 819 DEFAULT_wxUSE_SPINCTRL=no
9a98a854
VZ
820 DEFAULT_wxUSE_SPLITTER=no
821 DEFAULT_wxUSE_STATBMP=no
822 DEFAULT_wxUSE_STATBOX=no
823 DEFAULT_wxUSE_STATLINE=no
824 DEFAULT_wxUSE_STATUSBAR=yes
825 DEFAULT_wxUSE_TABDIALOG=no
1db8dc4a 826 DEFAULT_wxUSE_TOGGLEBTN=no
9a98a854 827 DEFAULT_wxUSE_TOOLBAR=no
360d6699
VZ
828 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
829 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
9a98a854
VZ
830 DEFAULT_wxUSE_TREECTRL=no
831
832 DEFAULT_wxUSE_UNICODE=no
833 DEFAULT_wxUSE_WCSRTOMBS=no
e90c1d2a 834
0046ff7c 835 DEFAULT_wxUSE_IMAGE=no
0940bcf7
HH
836 DEFAULT_wxUSE_GIF=no
837 DEFAULT_wxUSE_PCX=no
838 DEFAULT_wxUSE_PNM=no
0046ff7c 839 DEFAULT_wxUSE_XPM=no
9a98a854
VZ
840else
841 DEFAULT_wxUSE_THREADS=yes
842
2aa88730 843 DEFAULT_wxUSE_SHARED=yes
00cf1208 844 DEFAULT_wxUSE_BURNT_NAME=no
9a98a854
VZ
845 DEFAULT_wxUSE_OPTIMISE=yes
846 DEFAULT_wxUSE_PROFILE=no
5586805b 847 DEFAULT_wxUSE_NO_DEPS=no
f7bdcdd7
RR
848 DEFAULT_wxUSE_NO_RTTI=no
849 DEFAULT_wxUSE_NO_EXCEPTIONS=no
5586805b 850 DEFAULT_wxUSE_PERMISSIVE=no
9a98a854
VZ
851 DEFAULT_wxUSE_DEBUG_FLAG=no
852 DEFAULT_wxUSE_DEBUG_INFO=no
853 DEFAULT_wxUSE_DEBUG_GDB=no
854 DEFAULT_wxUSE_MEM_TRACING=no
143121c5 855 DEFAULT_wxUSE_DEBUG_CONTEXT=no
9a98a854
VZ
856 DEFAULT_wxUSE_DMALLOC=no
857 DEFAULT_wxUSE_APPLE_IEEE=yes
858
859 DEFAULT_wxUSE_LOG=yes
860
861 DEFAULT_wxUSE_GUI=yes
862
863 DEFAULT_wxUSE_ZLIB=yes
864 DEFAULT_wxUSE_LIBPNG=yes
9a98a854 865 DEFAULT_wxUSE_LIBJPEG=yes
b47c832e 866 DEFAULT_wxUSE_LIBTIFF=yes
16b52fa1 867 DEFAULT_wxUSE_ODBC=no
3fed1840 868 DEFAULT_wxUSE_FREETYPE=no
bdad4e7e 869 DEFAULT_wxUSE_OPENGL=no
9a98a854 870
eb4efbdc 871 DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes
073478b3 872 DEFAULT_wxUSE_STD_IOSTREAM=no
9a98a854
VZ
873 DEFAULT_wxUSE_FILE=yes
874 DEFAULT_wxUSE_TEXTFILE=yes
875 DEFAULT_wxUSE_TIMEDATE=yes
2749089a 876 DEFAULT_wxUSE_WAVE=no
9a98a854
VZ
877 DEFAULT_wxUSE_INTL=yes
878 DEFAULT_wxUSE_CONFIG=yes
879 DEFAULT_wxUSE_STREAMS=yes
880 DEFAULT_wxUSE_SOCKETS=yes
1c8515f9 881 DEFAULT_wxUSE_DIALUP_MANAGER=yes
9a98a854
VZ
882 DEFAULT_wxUSE_SERIAL=yes
883 DEFAULT_wxUSE_JOYSTICK=yes
884 DEFAULT_wxUSE_DYNLIB_CLASS=yes
b685cd9b 885 DEFAULT_wxUSE_LONGLONG=yes
e8f65ba6 886 DEFAULT_wxUSE_GEOMETRY=yes
9a98a854
VZ
887
888 DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes
889 DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes
890 DEFAULT_wxUSE_POSTSCRIPT=yes
891
892 DEFAULT_wxUSE_X_RESOURCES=no
893 DEFAULT_wxUSE_CLIPBOARD=yes
894 DEFAULT_wxUSE_TOOLTIPS=yes
895 DEFAULT_wxUSE_DRAG_AND_DROP=yes
896 DEFAULT_wxUSE_SPLINES=yes
897
898 DEFAULT_wxUSE_MDI_ARCHITECTURE=yes
899 DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes
900 DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes
901
902 DEFAULT_wxUSE_PROLOGIO=yes
903 DEFAULT_wxUSE_RESOURCES=yes
904 DEFAULT_wxUSE_CONSTRAINTS=yes
905 DEFAULT_wxUSE_IPC=yes
906 DEFAULT_wxUSE_HELP=yes
907 DEFAULT_wxUSE_WXTREE=yes
908 DEFAULT_wxUSE_METAFILE=yes
909
910 DEFAULT_wxUSE_COMMONDLGS=yes
ce4169a4 911 DEFAULT_wxUSE_DIRDLG=yes
c11584af 912 DEFAULT_wxUSE_TEXTDLG=yes
a641505f 913 DEFAULT_wxUSE_STARTUP_TIPS=yes
ce4169a4 914 DEFAULT_wxUSE_PROGRESSDLG=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
925 DEFAULT_wxUSE_CARET=yes
926 DEFAULT_wxUSE_BMPBUTTON=yes
927 DEFAULT_wxUSE_CHECKBOX=yes
928 DEFAULT_wxUSE_CHECKLST=yes
ce4169a4 929 DEFAULT_wxUSE_CHOICE=yes
9a98a854
VZ
930 DEFAULT_wxUSE_COMBOBOX=yes
931 DEFAULT_wxUSE_GAUGE=yes
932 DEFAULT_wxUSE_GRID=yes
cc977e5f 933 DEFAULT_wxUSE_NEW_GRID=yes
9a98a854
VZ
934 DEFAULT_wxUSE_IMAGLIST=yes
935 DEFAULT_wxUSE_LISTBOX=yes
936 DEFAULT_wxUSE_LISTCTRL=yes
937 DEFAULT_wxUSE_NOTEBOOK=yes
938 DEFAULT_wxUSE_RADIOBOX=yes
939 DEFAULT_wxUSE_RADIOBTN=yes
e602002e 940 DEFAULT_wxUSE_SASH=yes
9a98a854
VZ
941 DEFAULT_wxUSE_SCROLLBAR=yes
942 DEFAULT_wxUSE_SLIDER=yes
943 DEFAULT_wxUSE_SPINBTN=yes
66f38406 944 DEFAULT_wxUSE_SPINCTRL=yes
9a98a854
VZ
945 DEFAULT_wxUSE_SPLITTER=yes
946 DEFAULT_wxUSE_STATBMP=yes
947 DEFAULT_wxUSE_STATBOX=yes
948 DEFAULT_wxUSE_STATLINE=yes
949 DEFAULT_wxUSE_STATUSBAR=yes
950 DEFAULT_wxUSE_TABDIALOG=no
1db8dc4a 951 DEFAULT_wxUSE_TOGGLEBTN=yes
9a98a854 952 DEFAULT_wxUSE_TOOLBAR=yes
360d6699
VZ
953 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
954 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
9a98a854
VZ
955 DEFAULT_wxUSE_TREECTRL=yes
956
957 DEFAULT_wxUSE_UNICODE=no
958 DEFAULT_wxUSE_WCSRTOMBS=no
e90c1d2a 959
0046ff7c 960 DEFAULT_wxUSE_IMAGE=yes
0940bcf7
HH
961 DEFAULT_wxUSE_GIF=yes
962 DEFAULT_wxUSE_PCX=yes
963 DEFAULT_wxUSE_PNM=yes
0046ff7c 964 DEFAULT_wxUSE_XPM=yes
9a98a854
VZ
965fi
966
143121c5 967dnl WX_ARG_WITH should be used to select whether an external package will be
9a98a854 968dnl used or not, to configure compile-time features of this package itself,
143121c5 969dnl use WX_ARG_ENABLE instead
9a98a854
VZ
970
971dnl ============================
972dnl external package dependecies
973dnl ============================
974
143121c5
VZ
975dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache
976dnl these values manually
ced859c3 977for toolkit in `echo $ALL_TOOLKITS`; do
143121c5
VZ
978 LINE=`grep "wxUSE_$toolkit" ${wx_arg_cache_file}`
979 if test "x$LINE" != x ; then
980 has_toolkit_in_cache=1
981 eval "DEFAULT_$LINE"
ced859c3 982 eval "CACHE_$toolkit=1"
143121c5
VZ
983 fi
984done
985
e90c1d2a
VZ
986dnl ---------------------------------------------------------------------------
987dnl --disable-gui will build only non-GUI part of wxWindows: check for this
988dnl first to disable many other switches if it's given
989dnl
990dnl NB: this is still in testing stage, don't use if you don't know what you're
991dnl doing
992dnl ---------------------------------------------------------------------------
993
994WX_ARG_ENABLE(gui, [ --enable-gui use GUI classes], wxUSE_GUI)
995
b12915c1 996if test "$wxUSE_GUI" = "yes"; then
e90c1d2a 997
ced859c3
VZ
998AC_ARG_WITH(gtk, [ --with-gtk use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1])
999AC_ARG_WITH(motif, [ --with-motif use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1])
b4085ce6 1000AC_ARG_WITH(mac, [ --with-mac use Mac OS X], [wxUSE_MAC="$withval" TOOLKIT_GIVEN=1])
ced859c3
VZ
1001AC_ARG_WITH(wine, [ --with-wine use WINE], [wxUSE_WINE="$withval" CACHE_WINE=1 TOOLKIT_GIVEN=1])
1002AC_ARG_WITH(cygwin, [ --with-cygwin use Cygwin for MS-Windows], [wxUSE_CYGWIN="$withval" CACHE_CYGWIN=1 TOOLKIT_GIVEN=1])
1003AC_ARG_WITH(mingw, [ --with-mingw use GCC Minimal MS-Windows], [wxUSE_MINGW="$withval" CACHE_MINGW=1 TOOLKIT_GIVEN=1])
e07802fc 1004AC_ARG_WITH(pm, [ --with-pm use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
143121c5 1005
a9b5e89f
VZ
1006AC_ARG_WITH(gtk-prefix, [ --with-gtk-prefix=PFX Prefix where GTK is installed],
1007 gtk_config_prefix="$withval", gtk_config_prefix="")
1008AC_ARG_WITH(gtk-exec-prefix, [ --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed],
1009 gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="")
1010
422107f9
VZ
1011WX_ARG_SYS_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG)
1012WX_ARG_SYS_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
0dcf9893 1013WX_ARG_SYS_WITH(libtiff, [ --with-libtiff use libtiff (TIFF file format)], wxUSE_LIBTIFF)
3fed1840 1014WX_ARG_SYS_WITH(freetype, [ --with-freetype use freetype (font rasterizer)], wxUSE_FREETYPE)
143121c5 1015WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL)
b12915c1
VZ
1016
1017fi
1018dnl for GUI only
1019
1020WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (www.letters.com/dmalloc)], wxUSE_DMALLOC)
422107f9 1021WX_ARG_SYS_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB)
143121c5 1022WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC)
9a98a854
VZ
1023
1024dnl ====================
1025dnl compile-time options
1026dnl ====================
1027
1028dnl ---------------------------------------------------------------------------
1029dnl compile options
1030dnl ---------------------------------------------------------------------------
1031
2aa88730 1032WX_ARG_ENABLE(shared, [ --enable-shared create shared library code], wxUSE_SHARED)
00cf1208 1033WX_ARG_ENABLE(burnt_name, [ --enable-burnt_name create set name in shared library ], wxUSE_BURNT_NAME)
143121c5 1034WX_ARG_ENABLE(optimise, [ --enable-optimise create optimised code], wxUSE_OPTIMISE)
143121c5 1035WX_ARG_ENABLE(debug, [ --enable-debug same as debug_flag and debug_info], wxUSE_DEBUG)
70d1b3cf
VZ
1036
1037if test "$wxUSE_DEBUG" = "yes"; then
1038 DEFAULT_wxUSE_DEBUG_FLAG=yes
1039 DEFAULT_wxUSE_DEBUG_INFO=yes
1040elif test "$wxUSE_DEBUG" = "no"; then
1041 DEFAULT_wxUSE_DEBUG_FLAG=no
1042 DEFAULT_wxUSE_DEBUG_INFO=no
1043fi
1044
f7bdcdd7
RR
1045WX_ARG_ENABLE(debug_flag, [ --enable-debug_flag set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG)
1046WX_ARG_ENABLE(debug_info, [ --enable-debug_info create code with debugging information], wxUSE_DEBUG_INFO)
1047WX_ARG_ENABLE(debug_gdb, [ --enable-debug_gdb create code with extra GDB debugging information], wxUSE_DEBUG_GDB)
1048WX_ARG_ENABLE(debug_cntxt, [ --enable-debug_cntxt use wxDebugContext], wxUSE_DEBUG_CONTEXT)
1049WX_ARG_ENABLE(mem_tracing, [ --enable-mem_tracing create code with memory tracing], wxUSE_MEM_TRACING)
1050WX_ARG_ENABLE(profile, [ --enable-profile create code with profiling information], wxUSE_PROFILE)
1051WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI)
1052WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without exceptions information], wxUSE_NO_EXCEPTIONS)
5586805b
RR
1053WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
1054WX_ARG_ENABLE(no_deps, [ --enable-no_deps create code without dependency information], wxUSE_NO_DEPS)
9a98a854 1055
9a98a854
VZ
1056dnl ---------------------------------------------------------------------------
1057dnl (small) optional non GUI classes
1058dnl ---------------------------------------------------------------------------
1059
fd15d8f1
RR
1060WX_ARG_ENABLE(intl, [ --enable-intl use internationalization system], wxUSE_INTL)
1061WX_ARG_ENABLE(config, [ --enable-config use wxConfig (and derived) classes], wxUSE_CONFIG)
b12915c1 1062
fd15d8f1 1063WX_ARG_ENABLE(sockets, [ --enable-sockets use socket/network classes], wxUSE_SOCKETS)
b12915c1 1064
fd15d8f1 1065WX_ARG_ENABLE(ipc, [ --enable-ipc use interprocess communication (wxSocket etc.)], wxUSE_IPC)
eb4efbdc
VZ
1066
1067WX_ARG_ENABLE(dialupman, [ --enable-dialupman use dialup network classes], wxUSE_DIALUP_MANAGER)
fd15d8f1
RR
1068WX_ARG_ENABLE(apple_ieee, [ --enable-apple_ieee use the Apple IEEE codec], wxUSE_APPLE_IEEE)
1069WX_ARG_ENABLE(timedate, [ --enable-timedate use date/time classes], wxUSE_TIMEDATE)
1070WX_ARG_ENABLE(wave, [ --enable-wave use wxWave class], wxUSE_WAVE)
1071WX_ARG_ENABLE(fraction, [ --enable-fraction use wxFraction class], wxUSE_FRACTION)
1072WX_ARG_ENABLE(dynlib, [ --enable-dynlib use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS)
1073WX_ARG_ENABLE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG)
e8f65ba6 1074WX_ARG_ENABLE(geometry, [ --enable-geometry use geometry class], wxUSE_GEOMETRY)
fd15d8f1
RR
1075WX_ARG_ENABLE(log, [ --enable-log use logging system], wxUSE_LOG)
1076WX_ARG_ENABLE(streams, [ --enable-streams use wxStream etc classes], wxUSE_STREAMS)
1077WX_ARG_ENABLE(file, [ --enable-file use wxFile classes], wxUSE_FILE)
1078WX_ARG_ENABLE(textfile, [ --enable-textfile use wxTextFile classes], wxUSE_TEXTFILE)
1079WX_ARG_ENABLE(unicode, [ --enable-unicode compile wxString with Unicode support], wxUSE_UNICODE)
1080WX_ARG_ENABLE(wcsrtombs, [ --enable-wcsrtombs use wcsrtombs instead of buggy (GNU libc1/Linux libc5) wcstombs], wxUSE_WCSRTOMBS)
1081WX_ARG_ENABLE(wxprintfv, [ --enable-wxprintfv use wxWindows implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF)
fd15d8f1 1082WX_ARG_ENABLE(std_iostreams, [ --enable-std_iostreams use standard C++ stream classes], wxUSE_STD_IOSTREAM)
24528b0c 1083WX_ARG_ENABLE(filesystem, [ --enable-filesystem use virtual file systems classes], wxUSE_FILESYSTEM)
e3e717ec
VZ
1084WX_ARG_ENABLE(fs_inet, [ --enable-fs_inet use virtual HTTP/FTP filesystems], wxUSE_FS_INET)
1085WX_ARG_ENABLE(fs_zip, [ --enable-fs_zip use virtual ZIP filesystems], wxUSE_FS_ZIP)
d78b3d64 1086WX_ARG_ENABLE(zipstream, [ --enable-zipstream use wxZipInputStream], wxUSE_ZIPSTREAM)
9a98a854 1087
eb4efbdc
VZ
1088WX_ARG_ENABLE(catch_segvs, [ --enable-catch_segvs catch signals and pass them to wxApp::OnFatalException], wxUSE_ON_FATAL_EXCEPTION)
1089
9a98a854
VZ
1090dnl ---------------------------------------------------------------------------
1091dnl "big" options (i.e. those which change a lot of things throughout the library)
1092dnl ---------------------------------------------------------------------------
1093
143121c5
VZ
1094WX_ARG_ENABLE(threads, [ --enable-threads use threads], wxUSE_THREADS)
1095WX_ARG_ENABLE(serial, [ --enable-serial use class serialization], wxUSE_SERIAL)
9a98a854 1096
b12915c1
VZ
1097if test "$wxUSE_GUI" = "yes"; then
1098
9a98a854
VZ
1099dnl ---------------------------------------------------------------------------
1100dnl "big" GUI options
1101dnl ---------------------------------------------------------------------------
1102
143121c5
VZ
1103WX_ARG_ENABLE(docview, [ --enable-docview use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE)
1104WX_ARG_ENABLE(help, [ --enable-help use help (using external browser at present)], wxUSE_HELP)
1105WX_ARG_ENABLE(constraints, [ --enable-constraints use layout-constraints system], wxUSE_CONSTRAINTS)
1106WX_ARG_ENABLE(printarch, [ --enable-printarch use printing architecture], wxUSE_PRINTING_ARCHITECTURE)
1107WX_ARG_ENABLE(mdi, [ --enable-mdi use multiple document interface architecture], wxUSE_MDI_ARCHITECTURE)
9a98a854
VZ
1108
1109dnl ---------------------------------------------------------------------------
1110dnl PostScript options
1111dnl ---------------------------------------------------------------------------
143121c5 1112WX_ARG_ENABLE(postscript, [ --enable-postscript use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT)
9a98a854
VZ
1113
1114dnl VZ: these options seem to be always on, if someone wants to change it please do
143121c5
VZ
1115dnl WX_ARG_ENABLE(PS-normalized, [ --enable-PS-normalized use normalized PS fonts], dnl wxUSE_NORMALIZED_PS_FONTS)
1116dnl WX_ARG_ENABLE(afmfonts, [ --enable-afmfonts use Adobe Font Metric Font table], dnl wxUSE_AFM_FOR_POSTSCRIPT)
9a98a854
VZ
1117
1118dnl ---------------------------------------------------------------------------
1119dnl resources
1120dnl ---------------------------------------------------------------------------
143121c5
VZ
1121WX_ARG_ENABLE(prologio, [ --enable-prologio use Prolog IO library], wxUSE_PROLOGIO)
1122WX_ARG_ENABLE(resources, [ --enable-resources use wxWindows resources], wxUSE_RESOURCES)
1123
1124WX_ARG_ENABLE(xresources, [ --enable-xresources use X resources for save (default for gtk+)], wxUSE_X_RESOURCES)
9a98a854 1125
9a98a854
VZ
1126dnl ---------------------------------------------------------------------------
1127dnl IPC &c
1128dnl ---------------------------------------------------------------------------
9a98a854 1129
143121c5
VZ
1130WX_ARG_ENABLE(clipboard, [ --enable-clipboard use wxClipboard classes], wxUSE_CLIPBOARD)
1131WX_ARG_ENABLE(dnd, [ --enable-dnd use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP)
b64f0a5f 1132WX_ARG_ENABLE(metafile, [ --enable-metafile use win32 metafiles], wxUSE_METAFILE)
143121c5
VZ
1133
1134dnl TODO: doesn't work yet
1135WX_ARG_ENABLE(wxtree, [ --enable-wxtree make wxTree library], wxUSE_WXTREE)
9a98a854
VZ
1136
1137dnl ---------------------------------------------------------------------------
1138dnl optional GUI controls (in alphabetical order except the first one)
1139dnl ---------------------------------------------------------------------------
1140
143121c5 1141WX_ARG_ENABLE(controls, [ --enable-controls use all usual controls], wxUSE_CONTROLS)
9a98a854
VZ
1142
1143dnl even with --enable-controls, some may be disabled by giving
1144dnl --disable-<control> later on the command line - but by default all will be
1145dnl used (and vice versa)
1146if test "$wxUSE_CONTROLS" = "yes"; then
1147 DEFAULT_wxUSE_ACCEL=yes
1148 DEFAULT_wxUSE_CARET=yes
1149 DEFAULT_wxUSE_COMBOBOX=yes
1150 DEFAULT_wxUSE_BMPBUTTON=yes
1151 DEFAULT_wxUSE_CHECKBOX=yes
1152 DEFAULT_wxUSE_CHECKLISTBOX=yes
ce4169a4 1153 DEFAULT_wxUSE_CHOICE=yes
9a98a854
VZ
1154 DEFAULT_wxUSE_GAUGE=yes
1155 DEFAULT_wxUSE_GRID=yes
cc977e5f 1156 DEFAULT_wxUSE_NEW_GRID=yes
9a98a854
VZ
1157 DEFAULT_wxUSE_IMAGLIST=yes
1158 DEFAULT_wxUSE_LISTBOX=yes
1159 DEFAULT_wxUSE_LISTCTRL=yes
1160 DEFAULT_wxUSE_NOTEBOOK=yes
1161 DEFAULT_wxUSE_RADIOBOX=yes
1162 DEFAULT_wxUSE_RADIOBTN=yes
1163 DEFAULT_wxUSE_SASH=yes
1164 DEFAULT_wxUSE_SCROLLBAR=yes
1165 DEFAULT_wxUSE_SLIDER=yes
1166 DEFAULT_wxUSE_SPINBTN=yes
66f38406 1167 DEFAULT_wxUSE_SPINCTRL=yes
9a98a854
VZ
1168 DEFAULT_wxUSE_SPLITTER=yes
1169 DEFAULT_wxUSE_STATBMP=yes
1170 DEFAULT_wxUSE_STATBOX=yes
1171 DEFAULT_wxUSE_STATLINE=yes
1172 DEFAULT_wxUSE_STATUSBAR=yes
1173 DEFAULT_wxUSE_TAB_DIALOG=yes
1db8dc4a 1174 DEFAULT_wxUSE_TOGGLEBTN=yes
9a98a854 1175 DEFAULT_wxUSE_TOOLBAR=yes
360d6699
VZ
1176 DEFAULT_wxUSE_TOOLBAR_NATIVE=yes
1177 DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes
9a98a854
VZ
1178 DEFAULT_wxUSE_TOOLTIPS=yes
1179 DEFAULT_wxUSE_TREECTRL=yes
1180elif test "$wxUSE_CONTROLS" = "no"; then
1181 DEFAULT_wxUSE_ACCEL=no
1182 DEFAULT_wxUSE_CARET=no
1183 DEFAULT_wxUSE_COMBOBOX=no
1184 DEFAULT_wxUSE_BMPBUTTON=no
1185 DEFAULT_wxUSE_CHECKBOX=no
1186 DEFAULT_wxUSE_CHECKLISTBOX=no
ce4169a4 1187 DEFAULT_wxUSE_CHOICE=no
9a98a854
VZ
1188 DEFAULT_wxUSE_GAUGE=no
1189 DEFAULT_wxUSE_GRID=no
f85afd4e 1190 DEFAULT_wxUSE_NEW_GRID=no
9a98a854
VZ
1191 DEFAULT_wxUSE_IMAGLIST=no
1192 DEFAULT_wxUSE_LISTBOX=no
1193 DEFAULT_wxUSE_LISTCTRL=no
1194 DEFAULT_wxUSE_NOTEBOOK=no
1195 DEFAULT_wxUSE_RADIOBOX=no
1196 DEFAULT_wxUSE_RADIOBTN=no
1197 DEFAULT_wxUSE_SASH=no
1198 DEFAULT_wxUSE_SCROLLBAR=no
1199 DEFAULT_wxUSE_SLIDER=no
1200 DEFAULT_wxUSE_SPINBTN=no
66f38406 1201 DEFAULT_wxUSE_SPINCTRL=no
9a98a854
VZ
1202 DEFAULT_wxUSE_SPLITTER=no
1203 DEFAULT_wxUSE_STATBMP=no
1204 DEFAULT_wxUSE_STATBOX=no
1205 DEFAULT_wxUSE_STATLINE=no
1206 DEFAULT_wxUSE_STATUSBAR=no
1207 DEFAULT_wxUSE_TAB_DIALOG=no
1db8dc4a 1208 DEFAULT_wxUSE_TOGGLEBTN=no
9a98a854 1209 DEFAULT_wxUSE_TOOLBAR=no
360d6699
VZ
1210 DEFAULT_wxUSE_TOOLBAR_NATIVE=no
1211 DEFAULT_wxUSE_TOOLBAR_SIMPLE=no
9a98a854
VZ
1212 DEFAULT_wxUSE_TOOLTIPS=no
1213 DEFAULT_wxUSE_TREECTRL=no
1214fi
1215
143121c5
VZ
1216WX_ARG_ENABLE(accel, [ --enable-accel use accelerators], wxUSE_ACCEL)
1217WX_ARG_ENABLE(caret, [ --enable-caret use wxCaret class], wxUSE_CARET)
1218WX_ARG_ENABLE(bmpbutton, [ --enable-bmpbutton use wxBitmapButton class], wxUSE_BMPBUTTON)
1219WX_ARG_ENABLE(checkbox, [ --enable-checkbox use wxCheckBox class], wxUSE_CHECKBOX)
1220WX_ARG_ENABLE(checklst, [ --enable-checklst use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST)
ce4169a4
RR
1221WX_ARG_ENABLE(choice, [ --enable-choice use wxChoice class], wxUSE_CHOICE)
1222WX_ARG_ENABLE(combobox, [ --enable-combobox use wxComboBox classes], wxUSE_COMBOBOX)
143121c5
VZ
1223WX_ARG_ENABLE(gauge, [ --enable-gauge use wxGauge class], wxUSE_GAUGE)
1224WX_ARG_ENABLE(grid, [ --enable-grid use wxGrid class], wxUSE_GRID)
f85afd4e 1225WX_ARG_ENABLE(newgrid, [ --enable-newgrid use new wxGrid class], wxUSE_NEW_GRID)
143121c5
VZ
1226WX_ARG_ENABLE(imaglist, [ --enable-imaglist use wxImageList class], wxUSE_IMAGLIST)
1227WX_ARG_ENABLE(listbox, [ --enable-listbox use wxListBox class], wxUSE_LISTBOX)
1228WX_ARG_ENABLE(listctrl, [ --enable-listctrl use wxListCtrl class], wxUSE_LISTCTRL)
1229WX_ARG_ENABLE(notebook, [ --enable-notebook use wxNotebook class], wxUSE_NOTEBOOK)
1230WX_ARG_ENABLE(radiobox, [ --enable-radiobox use wxRadioBox class], wxUSE_RADIOBOX)
1231WX_ARG_ENABLE(radiobtn, [ --enable-radiobtn use wxRadioButton class], wxUSE_RADIOBTN)
1232WX_ARG_ENABLE(sash, [ --enable-sash use wxSashWindow class], wxUSE_SASH)
1233WX_ARG_ENABLE(scrollbar, [ --enable-scrollbar use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR)
1234WX_ARG_ENABLE(slider, [ --enable-slider use wxSlider class], wxUSE_SLIDER)
1235WX_ARG_ENABLE(spinbtn, [ --enable-spinbtn use wxSpinButton class], wxUSE_SPINBTN)
66f38406 1236WX_ARG_ENABLE(spinctrl, [ --enable-spinctrl use wxSpinCtrl class], wxUSE_SPINCTRL)
143121c5
VZ
1237WX_ARG_ENABLE(splitter, [ --enable-splitter use wxSplitterWindow class], wxUSE_SPLITTER)
1238WX_ARG_ENABLE(statbmp, [ --enable-statbmp use wxStaticBitmap class], wxUSE_STATBMP)
1239WX_ARG_ENABLE(statbox, [ --enable-statbox use wxStaticBox class], wxUSE_STATBOX)
1240WX_ARG_ENABLE(statline, [ --enable-statline use wxStaticLine class], wxUSE_STATLINE)
1241WX_ARG_ENABLE(statusbar, [ --enable-statusbar use wxStatusBar class], wxUSE_STATUSBAR)
1242WX_ARG_ENABLE(tabdialog, [ --enable-tabdialog use wxTabControl class], wxUSE_TABDIALOG)
1db8dc4a 1243WX_ARG_ENABLE(togglebtn, [ --enable-togglebtn use wxToggleButton class], wxUSE_TOGGLEBTN)
143121c5 1244WX_ARG_ENABLE(toolbar, [ --enable-toolbar use wxToolBar class], wxUSE_TOOLBAR)
360d6699
VZ
1245WX_ARG_ENABLE(tbarnative, [ --enable-tbarnative use native wxToolBar class], wxUSE_TOOLBAR_NATIVE)
1246WX_ARG_ENABLE(tbarsmpl, [ --enable-tbarsmpl use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE)
143121c5 1247WX_ARG_ENABLE(treectrl, [ --enable-treectrl use wxTreeCtrl class], wxUSE_TREECTRL)
9a98a854
VZ
1248
1249dnl ---------------------------------------------------------------------------
1250dnl misc GUI options
1251dnl ---------------------------------------------------------------------------
1252
143121c5 1253WX_ARG_ENABLE(commondlg, [ --enable-commondlg use common dialogs (wxDirDialog, wxProgressDialog, wxTextDialog, ...)], wxUSE_COMMONDLGS)
ce4169a4 1254WX_ARG_ENABLE(dirdlg, [ --enable-dirdlg use wxDirDialog], wxUSE_DIRDLG)
c11584af 1255WX_ARG_ENABLE(textdlg, [ --enable-textdlg use wxTextDialog], wxUSE_TEXTDLG)
a641505f 1256WX_ARG_ENABLE(tipdlg, [ --enable-tipdlg use startup tips], wxUSE_STARTUP_TIPS)
ce4169a4 1257WX_ARG_ENABLE(progressdlg, [ --enable-progressdlg use wxProgressDialog], wxUSE_PROGRESSDLG)
143121c5 1258WX_ARG_ENABLE(miniframe, [ --enable-miniframe use wxMiniFrame class], wxUSE_MINIFRAME)
5526e819 1259WX_ARG_ENABLE(html, [ --enable-html use wxHTML sub-library], wxUSE_HTML)
143121c5
VZ
1260WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUSE_TOOLTIPS)
1261WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES)
1262WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
d78b3d64 1263WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
f6bcfd97 1264WX_ARG_ENABLE(joystick, [ --enable-joystick compile in joystick support (Linux only)], wxUSE_JOYSTICK)
143121c5 1265
0940bcf7
HH
1266dnl ---------------------------------------------------------------------------
1267dnl support for image formats that do not rely on external library
1268dnl ---------------------------------------------------------------------------
1269
0046ff7c 1270WX_ARG_ENABLE(image, [ --enable-image use wxImage class], wxUSE_IMAGE)
6b5286d1
HH
1271WX_ARG_ENABLE(gif, [ --enable-gif use gif images (GIF file format)], wxUSE_GIF)
1272WX_ARG_ENABLE(pcx, [ --enable-pcx use pcx images (PCX file format)], wxUSE_PCX)
1273WX_ARG_ENABLE(pnm, [ --enable-pnm use pnm images (PNM file format)], wxUSE_PNM)
0046ff7c 1274WX_ARG_ENABLE(pnm, [ --enable-xpm use xpm images (XPM file format)], wxUSE_XPM)
0940bcf7 1275
b12915c1
VZ
1276fi
1277dnl for GUI only
1278
143121c5
VZ
1279dnl cache the options values before (may be) aborting below
1280WX_ARG_CACHE_FLUSH
9a98a854
VZ
1281
1282dnl check that no more than one toolkit is given and that if none are given that
1283dnl we have a default one
efeb0365 1284
143121c5
VZ
1285AC_MSG_CHECKING(for toolkit)
1286
e90c1d2a
VZ
1287if test "$wxUSE_GUI" = "yes"; then
1288
b12915c1
VZ
1289if test "$USE_BEOS" = 1; then
1290 AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui])
1291fi
1292
70d1b3cf
VZ
1293if test "$TOOLKIT_GIVEN" = 1; then
1294 dnl convert "yes" to 1 and "no" to 0
ced859c3 1295 for toolkit in `echo $ALL_TOOLKITS`; do
143121c5
VZ
1296 var=wxUSE_$toolkit
1297 eval "value=\$${var}"
1298 eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`"
1299 done
70d1b3cf
VZ
1300else
1301 dnl try to guess the most apropriate toolkit for this platform
ced859c3 1302 for toolkit in `echo $ALL_TOOLKITS`; do
143121c5
VZ
1303 if test "$has_toolkit_in_cache" != 1; then
1304 var=DEFAULT_DEFAULT_wxUSE_$toolkit
1305 else
1306 var=DEFAULT_wxUSE_$toolkit
1307 fi
1308 eval "wxUSE_$toolkit=\$${var}"
1309 done
70d1b3cf 1310fi
efeb0365 1311
ced859c3 1312dnl we suppose that expr exists...
b4085ce6 1313NUM_TOOLKITS=`expr ${wxUSE_GTK:-0} + ${wxUSE_MOTIF:-0} + ${wxUSE_MAC:-0} + ${wxUSE_WINE:-0} + ${wxUSE_MINGW:-0} + ${wxUSE_CYGWIN:-0}`
4c0ed911
SN
1314
1315dnl Allow wxUSE_PM only for OS/2 with EMX.
1316dnl Path separator; ':' for unix.
1317dnl Stem for flex output; lexyy for OS/2, lex.yy otherwise
1318dnl Extension for programs; '.exe' for OS/2 and msw builds (set later).
d51e8205
SN
1319case "${host}" in
1320 *-pc-os2_emx )
1321 NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}`
1322 # PATH_IFS is autodetected by OS/2's configure (usually ';')
1323 LEX_STEM="lexyy"
1324 ;;
1325 *)
1326 PATH_IFS=':'
1327 LEX_STEM="lex.yy"
1328 ;;
1329esac
9a98a854
VZ
1330
1331case "$NUM_TOOLKITS" in
1332 1)
1333 ;;
1334 0)
143121c5 1335 AC_MSG_ERROR(Please specify a toolkit - cannot determine the default for ${host})
9a98a854
VZ
1336 ;;
1337 *)
143121c5 1338 AC_MSG_ERROR(Please specify at most one toolkit (may be some are cached?))
9a98a854
VZ
1339esac
1340
143121c5 1341dnl cache the wxUSE_<TOOLKIT> values too
ced859c3 1342for toolkit in `echo $ALL_TOOLKITS`; do
143121c5
VZ
1343 var=wxUSE_$toolkit
1344 eval "value=\$${var}"
1345 if test "x$value" != x; then
ced859c3
VZ
1346 cache_var=CACHE_$toolkit
1347 eval "cache=\$${cache_var}"
1348 if test "$cache" = 1; then
1349 echo "$var=$value" >> ${wx_arg_cache_file}
1350 fi
143121c5
VZ
1351 if test "$value" = 1; then
1352 AC_MSG_RESULT(`echo $toolkit | tr [[A-Z]] [[a-z]]`)
1353 fi
1354 fi
1355done
1356
e90c1d2a
VZ
1357dnl from "if wxUSE_GUI"
1358else
cf27ef00 1359 PATH_IFS=':'
e90c1d2a
VZ
1360 AC_MSG_RESULT(base only)
1361fi
1362
9a98a854
VZ
1363dnl ---------------------------------------------------------------------------
1364dnl Checks for programs
1365dnl ---------------------------------------------------------------------------
1366
1367dnl flush the cache because checking for programs might abort
1368AC_CACHE_SAVE
1369
1370dnl cross-compiling support: we're cross compiling if the build system is
1371dnl different from the target one (assume host and target be always the same)
e59890c3 1372if test "$build" != "$host" ; then
c596875e
RD
1373 CC=$host_alias-gcc
1374 CXX=$host_alias-c++
214960fb
HH
1375 AR=$host_alias-ar
1376 RANLIB=$host_alias-ranlib
c596875e 1377 DLLTOOL=$host_alias-dlltool
32832908 1378 RESCOMP=$host_alias-windres
c596875e 1379 LD=$host_alias-ld
214960fb
HH
1380 NM=$host_alias-nm
1381 STRIP=$host_alias-strip
9a98a854
VZ
1382fi
1383
1384dnl C-compiler checks
1385dnl defines CC with the compiler to use
1386dnl defines GCC with yes if using gcc
1387dnl defines GCC empty if not using gcc
1388dnl defines CFLAGS
1389AC_PROG_CC
1390
1391CFLAGS=`echo "$CFLAGS" | sed 's/-g//g'`
1392
1393dnl what is the c-preprocessor
1394dnl defines CPP with the c-preprocessor
1395AC_PROG_CPP
1396
1397dnl is -traditional needed for correct compilations
1398dnl adds -traditional for gcc if needed
1399AC_PROG_GCC_TRADITIONAL
1400
1401AC_LANG_SAVE
1402AC_LANG_CPLUSPLUS
1403
1404dnl C++-compiler checks
1405dnl defines CXX with the compiler to use
1406dnl defines GXX with yes if using gxx
1407dnl defines GXX empty if not using gxx
1408dnl defines CXXFLAGS
1409AC_PROG_CXX
1410
1411dnl what is the C++-preprocessor
1412dnl defines CXXCPP with the C++-preprocessor
1413AC_PROG_CXXCPP
1414
1415CXXFLAGS=`echo "$CXXFLAGS" | sed 's/-g//g'`
1416
1417AC_LANG_RESTORE
1418
1419dnl ranlib command
1420dnl defines RANLIB with the appropriate command
1421AC_PROG_RANLIB
1422
1423dnl ar command
1424dnl defines AR with the appropriate command
1425AC_CHECK_PROG(AR, ar, ar, ar)
1426
1427dnl install checks
1428dnl defines INSTALL with the appropriate command
1429AC_PROG_INSTALL
1430
9a98a854
VZ
1431dnl strip command
1432dnl defines STRIP as strip or nothing if not found
1433AC_CHECK_PROG(STRIP, strip, strip, true)
1434
1435dnl check if VPATH works
1436AC_MSG_CHECKING("make for VPATH support")
1437dnl create Makefile
1438cat - << EOF > confMake
1439check : file
1440 cp \$? \$@
1441 cp \$? final_file
1442EOF
1443
1444if test ! -d sub ; then
1445 mkdir sub
1446fi
1447echo dummy > sub/file
f6bcfd97 1448${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null
9a98a854
VZ
1449RESULT=$?
1450rm -f sub/file check final_file confMake
1451rmdir sub
1452if test "$RESULT" = 0; then
1453 AC_MSG_RESULT(yes)
1454else
1455 AC_MSG_RESULT(no)
1456 AC_MSG_ERROR(
1457You need a make-utility that is able to use the variable
1458VPATH correctly.
1459If your version of make does not support VPATH correctly,
1460please install GNU-make (possibly as gmake), and start
1461configure with the following command:
1462export MAKE=gmake; ./configure for sh-type shells
1463setenv MAKE gmake; ./configure for csh-type shells
1464Also please do remember to use gmake in this case every time
1465you are trying to compile.
1466)
1467fi
1468
1469dnl YACC checks
1470dnl defines YACC with the appropriate command
1471AC_PROG_YACC
1472
1473dnl LEX checks
1474dnl defines LEX with the appropriate command
1475dnl defines LEXLIB with the appropriate library
2aa88730 1476AC_PROG_LEX
9a98a854 1477
c7114f59
VZ
1478dnl needed for making link to setup.h
1479AC_PROG_LN_S
1480
9a98a854
VZ
1481dnl ---------------------------------------------------------------------------
1482dnl Define search path for includes and libraries: all headers and libs will be
1483dnl looked for in all directories of this path
1484dnl ---------------------------------------------------------------------------
1485
ee31c269
VZ
1486dnl notice that /usr/include should not be in this list, otherwise it breaks
1487dnl compilation on Solaris/gcc because standard headers are included instead
928b5c08
VZ
1488dnl of the gcc ones (correction: it *is* needed for broken AIX compiler - but
1489dnl do put it last!)
afc31813
VZ
1490dnl
1491dnl Also try to put all directories which may contain X11R6 before those which
1492dnl may contain X11R5/4 - we want to use R6 on machines which have both!
9a98a854 1493SEARCH_INCLUDE="\
ee31c269
VZ
1494 /usr/local/include \
1495 \
9a98a854
VZ
1496 /usr/Motif-1.2/include \
1497 /usr/Motif-2.1/include \
1498 \
1499 /usr/include/Motif1.2 \
1500 /opt/xpm/include/X11 \
8636aed8
RR
1501 /opt/GBxpm/include/ \
1502 /opt/GBxpm/X11/include/ \
9a98a854
VZ
1503 \
1504 /usr/Motif1.2/include \
1505 /usr/dt/include \
afc31813
VZ
1506 /usr/openwin/include \
1507 \
9a98a854
VZ
1508 /usr/include/Xm \
1509 \
1510 /usr/X11R6/include \
afc31813 1511 /usr/X11R6.4/include \
9a98a854
VZ
1512 /usr/X11R5/include \
1513 /usr/X11R4/include \
1514 \
9a98a854
VZ
1515 /usr/include/X11R6 \
1516 /usr/include/X11R5 \
1517 /usr/include/X11R4 \
1518 \
1519 /usr/local/X11R6/include \
1520 /usr/local/X11R5/include \
1521 /usr/local/X11R4/include \
1522 \
1523 /usr/local/include/X11R6 \
1524 /usr/local/include/X11R5 \
1525 /usr/local/include/X11R4 \
1526 \
1527 /usr/X11/include \
1528 /usr/include/X11 \
1529 /usr/local/X11/include \
1530 /usr/local/include/X11 \
1531 \
1532 /usr/X386/include \
1533 /usr/x386/include \
1534 /usr/XFree86/include/X11 \
1535 \
4c0ed911 1536 X:/XFree86/include \
d51e8205
SN
1537 X:/XFree86/include/X11 \
1538 \
9a98a854 1539 /usr/include/gtk \
5a92d200 1540 /usr/local/include/gtk \
9a98a854 1541 /usr/include/glib \
5a92d200
RR
1542 /usr/local/include/glib \
1543 \
1544 /usr/include/qt \
1545 /usr/local/include/qt \
1546 \
a9b5e89f 1547 /usr/include/windows \
5a92d200
RR
1548 /usr/include/wine \
1549 /usr/local/include/wine \
1550 \
9a98a854
VZ
1551 /usr/unsupported/include \
1552 /usr/athena/include \
1553 /usr/local/x11r5/include \
1554 /usr/lpp/Xamples/include \
1555 \
9a98a854 1556 /usr/openwin/share/include \
928b5c08
VZ
1557 \
1558 /usr/include"
9a98a854
VZ
1559
1560SEARCH_LIB="`echo "$SEARCH_INCLUDE" | sed s/include/lib/g` "
1561
1562dnl ------------------------------------------------------------------------
1563dnl Check for libraries
1564dnl ------------------------------------------------------------------------
1565
143121c5 1566dnl flush the cache because checking for libraries below might abort
9a98a854
VZ
1567AC_CACHE_SAVE
1568
9a98a854
VZ
1569dnl ----------------------------------------------------------------
1570dnl search for toolkit (widget sets)
1571dnl ----------------------------------------------------------------
1572
dad6c0ea
VZ
1573AFMINSTALL=
1574
e90c1d2a
VZ
1575if test "$wxUSE_GUI" = "yes"; then
1576
dad6c0ea
VZ
1577USE_GUI=1
1578
9a98a854 1579TOOLKIT=
9a98a854
VZ
1580TOOLKIT_INCLUDE=
1581
1582GUI_TK_LIBRARY=
1583GUI_TK_LINK=
1584
1585WXGTK12=
f6bcfd97 1586WXGTK127=
6f72b082 1587WXGTK20=
9a98a854 1588
5a92d200
RR
1589WXWINE=
1590
4d19d979 1591if test "$wxUSE_CYGWIN" = 1 || test "$wxUSE_MINGW" = 1 ; then
3e0de8a5 1592 if test "$cross_compiling" = "yes" ; then
e59890c3
VZ
1593 dnl mingw32 will find them even if they're not in one of standard paths
1594 AC_MSG_WARN(skipping windows.h check for cross-compilation)
e4b4d60e 1595 else
e90c1d2a
VZ
1596 AC_MSG_CHECKING(for Windows headers)
1597 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, windows.h)
1598 if test "$ac_find_includes" != "" ; then
3e0de8a5
HH
1599 AC_MSG_RESULT(found $ac_find_includes)
1600 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE -I$ac_find_includes"
e90c1d2a 1601 else
3e0de8a5 1602 AC_MSG_RESULT(no)
e4b4d60e 1603 AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
c596875e 1604 fi
e4b4d60e 1605 fi
c596875e 1606
3e0de8a5
HH
1607 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS msw"
1608 dnl --- Quick & Dirty ; link against most/all libraries
1609 dnl --- This will bloat the executable, but it'll work for now...
be4c1d33
VZ
1610 LIBS="$LIBS -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -lcrtdll -ladvapi32 -lwsock32"
1611
f6bcfd97
BP
1612 dnl add extra odbc libs if we have compiled in odbc
1613 if test "$wxUSE_ODBC" = "yes" ; then
1614 LIBS="$LIBS -lodbc32 -lole32 -loleaut32"
1615 fi
1616
be4c1d33
VZ
1617 dnl -mwindows is needed to avoid that spawning of a console window
1618 if test "$wxUSE_MINGW" = 1; then
1619 LDFLAGS="$LDFLAGS -mwindows"
1620 fi
a9b5e89f 1621
e4b4d60e 1622 TOOLKIT=MSW
a4aad961 1623 GUIDIST=MSW_DIST
32832908
VZ
1624
1625 dnl we should calculate these
1626 RCINCSWITCH="--include-dir"
1627 RCDEFSWITCH="--define"
1628 RCPREPROCESSOR="--preprocessor \"\$(CC) -c -E -xc-header -DRC_INVOKED\""
1629 RCINPUTSWITCH="-i"
1630 RCOUTPUTSWITCH="-o"
1631 RESFLAGS="$RCPREPROCESSOR $RCINCSWITCH \$(top_srcdir)/include $RCINCSWITCH \$(top_srcdir)/\$(program_dir) $RCDEFSWITCH __WIN32__ $RCDEFSWITCH __WIN95__ $RCDEFSWITCH __GNUWIN32__"
1632
1633 dnl set optinal RES_PROGRAM_OPT to RES_PROGRAM
1634 RESPROGRAM="\$(RES_PROGRAM)"
1635
a9b5e89f
VZ
1636fi
1637
9a98a854 1638if test "$wxUSE_GTK" = 1; then
13111b2a
VZ
1639 dnl avoid calling AM_PATH_GTK twice, so check first for the newer version
1640 dnl and only then, if it wasn't found, for an older one
6f72b082
OK
1641 AM_PATH_GTK_2_0(1.3.1, WXGTK20=1,[
1642 AM_PATH_GTK(1.2.7, WXGTK127=1)
1643 AM_PATH_GTK(1.2.3, WXGTK12=1)
1644 ], gthread)
7e99ad86 1645
6f72b082 1646 if test "$WXGTK12" != 1 -a "$WXGTK20" != 1; then
7e99ad86
VZ
1647 AC_MSG_ERROR([
1648 Please check that gtk-config is in path, the directory
1649 where GTK+ libraries are installed (returned by
1650 'gtk-config --libs' command) is in LD_LIBRARY_PATH or
1651 equivalent variable and GTK+ is version 1.2.3 or above.
1652 ])
1653 fi
1654
073478b3 1655 TOOLKIT_INCLUDE="$GTK_CFLAGS"
b9fa850d
KB
1656
1657dnl Appending gthreads as it was done here is not portable, instead
1658dnl we now call "gtk-config --libs gthread" which sets the right library
1659dnl name for us. The following hacks are no longer required.
1660
1661 GUI_TK_LIBRARY="$GTK_LIBS"
1662
1663dnl dnl On FreeBSD, the libs are called gtk12 etc, so we must append gthread12
1664dnl echo $GTK_LIBS | fgrep -q "glib12"
1665dnl if test $? = 0 ; then
1666dnl GUI_TK_LIBRARY="$GTK_LIBS -gthread12"
1667dnl else
1668dnl GUI_TK_LIBRARY="$GTK_LIBS -lgthread"
1669dnl fi
c596875e 1670
dad6c0ea 1671 AFMINSTALL=afminstall
9ad43c8b 1672 TOOLKIT=GTK
a4aad961 1673 GUIDIST=GTK_DIST
7799a2d7 1674
2224580a
VZ
1675 dnl test for XIM support in libgdk
1676 AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM))
9a98a854
VZ
1677fi
1678
5a92d200
RR
1679if test "$wxUSE_WINE" = 1; then
1680 AC_MSG_CHECKING(for WINE includes)
1681 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, windows.h)
1682 if test "$ac_find_includes" != "" ; then
1683 AC_MSG_RESULT(found $ac_find_includes)
d1c7e624 1684 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE -I$ac_find_includes"
5a92d200
RR
1685 else
1686 AC_MSG_RESULT(no)
1687 AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h)
1688 fi
1689
1690 XPM_LINK=""
1691 AC_MSG_CHECKING(for Xpm library)
1692 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
1693 if test "$ac_find_libraries" != "" ; then
4286a5b5
RR
1694 GUI_TK_LIBRARY="-L$ac_find_libraries"
1695 XPM_LINK="-lXpm"
5a92d200
RR
1696 AC_DEFINE(wxHAVE_LIB_XPM)
1697 AC_MSG_RESULT(found at $ac_find_libraries)
1698 else
1699 AC_MSG_RESULT(no)
1700 AC_MSG_WARN(library will be compiled without support for images in XPM format)
1701 fi
c596875e 1702
4286a5b5
RR
1703 MESA_LINK=""
1704 AC_MSG_CHECKING(for Mesa library)
1705 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,MesaGL)
1706 if test "$ac_find_libraries" != "" ; then
1707 GUI_TK_LIBRARY="$GUI_TK_LIBRARY -L$ac_find_libraries"
1708 MESA_LINK="-lMesaGL"
1709 AC_MSG_RESULT(found at $ac_find_libraries)
1710 else
1711 AC_MSG_ERROR(no)
1712 fi
5a92d200 1713
8916026b 1714 GUI_TK_LINK="-lwine $MESA_LINK $XPM_LINK -lXxf86dga -lXxf86vm -lSM -lICE -lXext -lXmu -lX11 -lncurses"
5a92d200
RR
1715 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK"
1716 WXWINE=1
1717 TOOLKIT=MSW
a4aad961 1718 GUIDIST=MSW_DIST
5a92d200
RR
1719fi
1720
264de0cc
UN
1721dnl use standard macros to check for X headers/libs, this brings support
1722dnl for the standard configure options --x-includes and --x-libraries;
1723dnl the path to the X headers/libs is not only needed for motif, but also
1724dnl by the OpenGL and XKBlib.h checks further down
1725
1726AC_PATH_XTRA
1727CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1728LDFLAGS="$LDFLAGS $X_LIBS"
d607e6c3 1729
264de0cc 1730if test "$wxUSE_MOTIF" = 1; then
788deba1 1731 if test "$no_x" = "yes"; then
264de0cc 1732 AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options)
d607e6c3 1733 fi
143121c5 1734
788deba1
VZ
1735 GUI_TK_LIBRARY="$X_LIBS"
1736 TOOLKIT_INCLUDE="$X_CFLAGS"
1737
dad6c0ea
VZ
1738 AFMINSTALL=afminstall
1739
788deba1
VZ
1740 dnl manual check for X11 headers/libs
1741 dnl
1742 dnl AC_MSG_CHECKING(for X11 headers)
1743 dnl WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, X11/Intrinsic.h)
1744 dnl if test "$ac_find_includes" != "" ; then
1745 dnl AC_MSG_RESULT(found $ac_find_includes)
1746 dnl else
1747 dnl AC_MSG_RESULT(no)
1748 dnl AC_MSG_ERROR(please set CFLAGS to contain the location of X11/Intrinsic.h)
1749 dnl fi
1750 dnl
1751 dnl AC_MSG_CHECKING(for X11 libraries)
1752 dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB, X11)
1753 dnl if test "$ac_find_libraries" != "" ; then
1754 dnl WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
1755 dnl WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
1756 dnl
1757 dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1758 dnl TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE $ac_path_to_include"
1759 dnl AC_MSG_RESULT(found at $ac_find_libraries)
1760 dnl else
1761 dnl AC_MSG_RESULT(no)
1762 dnl AC_MSG_ERROR(please set LDFLAGS to contain the location of libX11)
1763 dnl fi
1764
cd6d6d5b
VZ
1765 COMPILED_X_PROGRAM=0
1766
d607e6c3 1767 AC_MSG_CHECKING(for Motif/Lesstif headers)
143121c5 1768 WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h)
9a98a854
VZ
1769 if test "$ac_find_includes" != "" ; then
1770 AC_MSG_RESULT(found $ac_find_includes)
1771 else
cd6d6d5b
VZ
1772 AC_TRY_COMPILE(
1773 [
1774 #include <Xm/Xm.h>
1775 ],
1776 [
1777 int version;
1778
1779 version = xmUseVersion;
1780 ],
1781 [
1782 AC_MSG_RESULT(found in default search path)
1783 COMPILED_X_PROGRAM=1
1784 ],
1785 [
1786 AC_MSG_RESULT(no)
1787 AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h)
1788 ]
1789 )
9a98a854
VZ
1790 fi
1791
cd6d6d5b
VZ
1792 if test "$COMPILED_X_PROGRAM" = 0; then
1793 AC_MSG_CHECKING(for Motif/Lesstif library)
1794 WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm)
1795 if test "$ac_find_libraries" != "" ; then
1796 WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE)
1797 WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY)
9a98a854 1798
cd6d6d5b
VZ
1799 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1800 TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE $ac_path_to_include"
1801 AC_MSG_RESULT(found at $ac_find_libraries)
1802 else
1803 dnl it might happen that we found headers in one of the standard
1804 dnl paths but the libs are elsewhere - we do need to try to
1805 dnl compile a sample program then here
1806 AC_TRY_COMPILE(
1807 [
1808 #include <Xm/Xm.h>
1809 ],
1810 [
1811 int version;
1812
1813 version = xmUseVersion;
1814 ],
1815 [
1816 AC_MSG_RESULT(found in default search path)
1817 COMPILED_X_PROGRAM=1
1818 ],
1819 [
1820 AC_MSG_RESULT(no)
1821 AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
1822 ]
1823 )
1824 fi
9a98a854
VZ
1825 fi
1826
cd6d6d5b
VZ
1827 dnl we don't need this as we used AC_PATH_XTRA above which does it for us
1828 dnl
1829 dnl dnl if we already compiled a sample program, X libs are surely there
1830 dnl if test "$COMPILED_X_PROGRAM" = 0; then
1831 dnl AC_MSG_CHECKING(for Xt library)
1832 dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xt)
1833 dnl if test "$ac_find_libraries" != "" ; then
1834 dnl WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
1835 dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
1836 dnl AC_MSG_RESULT(found at $ac_find_libraries)
1837 dnl else
1838 dnl AC_TRY_COMPILE
1839 dnl (
1840 dnl [
1841 dnl #include <X11/Intrinsic.h>
1842 dnl ],
1843 dnl [
1844 dnl char *p;
1845 dnl p = XtMalloc(5);
1846 dnl ],
1847 dnl [
1848 dnl AC_MSG_RESULT(found in default search path)
1849 dnl COMPILED_X_PROGRAM=1
1850 dnl ],
1851 dnl [
1852 dnl AC_MSG_RESULT(no)
1853 dnl AC_MSG_ERROR(please set LDFLAGS to contain the location of libXt)
1854 dnl ]
1855 dnl )
1856 dnl fi
1857 dnl fi
9a98a854
VZ
1858
1859 XPM_LINK=""
1860 AC_MSG_CHECKING(for Xpm library)
143121c5 1861 WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm)
9a98a854 1862 if test "$ac_find_libraries" != "" ; then
143121c5 1863 WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY)
d607e6c3 1864 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $ac_path_to_link"
9a98a854
VZ
1865 XPM_LINK="-lXpm "
1866 AC_DEFINE(wxHAVE_LIB_XPM)
1867 AC_MSG_RESULT(found at $ac_find_libraries)
1868 else
cd6d6d5b
VZ
1869 AC_TRY_COMPILE(
1870 [
1871 #include <X11/xpm.h>
1872 ],
1873 [
1874 int version;
1875
1876 version = XpmLibraryVersion();
1877 ],
1878 [
f6bcfd97
BP
1879 XPM_LINK="-lXpm "
1880 AC_DEFINE(wxHAVE_LIB_XPM)
b137db14 1881 AC_MSG_RESULT(found in default search path)
cd6d6d5b
VZ
1882 COMPILED_X_PROGRAM=0
1883 ],
1884 [
1885 AC_MSG_RESULT(no)
1886 AC_MSG_WARN(library will be compiled without support for images in XPM format)
1887 ]
1888 )
9a98a854
VZ
1889 fi
1890
8916026b 1891 GUI_TK_LINK="-lXm $XPM_LINK -lXmu -lXext -lXt -lX11"
143121c5 1892 GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK"
9a98a854 1893 TOOLKIT=MOTIF
a4aad961 1894 GUIDIST=MOTIF_DIST
9a98a854
VZ
1895fi
1896
b4085ce6
GD
1897if test "$wxUSE_MAC" = 1; then
1898 TOOLKIT=MAC
c521c494
RL
1899 dnl we can't call this MAC_DIST or autoconf thinks its a macro
1900 GUIDIST=MACX_DIST
b4085ce6
GD
1901fi
1902
e07802fc
VZ
1903if test "$wxUSE_PM" = 1; then
1904 TOOLKIT=PM
e07802fc
VZ
1905 GUIDIST=GTK_DIST
1906fi
1907
9a98a854 1908dnl the name of the directory where the files for this toolkit live
e07802fc 1909if test "$TOOLKIT" != "PM" ; then
ec14dd32 1910 TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"`
e07802fc
VZ
1911else
1912 TOOLKIT_DIR="os2"
1913fi
9a98a854 1914
f6bcfd97
BP
1915 dnl the (base) name of the library and support files for this toolkit
1916 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
1917 TOOLKIT_NAME="${TOOLKIT_DIR}d"
1918 else
1919 TOOLKIT_NAME="${TOOLKIT_DIR}"
1920 fi
1921
2224580a
VZ
1922 dnl the symbol which allows conditional compilation for the given toolkit
1923 TOOLKIT_DEF="-D__WX${TOOLKIT}__"
9a98a854 1924
2224580a 1925 dnl the name of the (libtool) library
f6bcfd97 1926 WX_LIBRARY="wx_${TOOLKIT_NAME}"
517a619d 1927
e90c1d2a 1928 dnl the sources, their dependenices and the headers
bdad4e7e 1929 ALL_OBJECTS="\$(GUIOBJS) \$(COMMONOBJS) \$(GENERICOBJS) \$(UNIXOBJS) \$(HTMLOBJS) \$(OGLOBJS)"
3fcdd07b
VZ
1930
1931 dnl ODBC objects are Unix only
9ad43c8b
RL
1932 if test "$TOOLKIT" != "MSW" -a "$wxUSE_ODBC" = "yes" ; then
1933 ALL_OBJECTS="${ALL_OBJECTS} \$(IODBCOBJS)"
3fcdd07b
VZ
1934 fi
1935
d9d8273d 1936 if test "$wxUSE_LIBJPEG" = "yes" ; then
2224580a 1937 ALL_OBJECTS="${ALL_OBJECTS} \$(JPEGOBJS)"
d9d8273d
RR
1938 fi
1939 if test "$wxUSE_LIBTIFF" = "yes" ; then
1940 ALL_OBJECTS="${ALL_OBJECTS} \$(TIFFOBJS)"
1941 fi
1942 if test "$wxUSE_LIBPNG" = "yes" ; then
1943 ALL_OBJECTS="${ALL_OBJECTS} \$(PNGOBJS)"
1944 fi
1945 if test "$wxUSE_ZLIB" = "yes" ; then
1946 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
1947 fi
3fed1840
RR
1948 if test "$wxUSE_FREETYPE" = "yes" ; then
1949 ALL_OBJECTS="${ALL_OBJECTS} \$(FREETYPEOBJS)"
1950 fi
bdad4e7e 1951 ALL_DEPFILES="\$(GUIDEPS) \$(COMMONDEPS) \$(GENERICDEPS) \$(UNIXDEPS) \$(HTMLDEPS) \$(OGLDEPS)"
2224580a
VZ
1952
1953 PORT_FILES="src/\$(TOOLKITDIR)/files.lst"
1954 RPM_FILES="src/\$(TOOLKITDIR)/rpmfiles.lst"
1955 RPM_SPEC="wx\$(TOOLKIT).spec"
1956
1957 dnl distribute samples/demos/utils with GUI versions
1958 GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST"
1959 DISTDIR="wx\$(TOOLKIT)"
e90c1d2a 1960else
dad6c0ea
VZ
1961 USE_GUI=0
1962
f6bcfd97 1963 dnl this may be (almost) unneccesary for wxBase now we use TOOLKIT_NAME
07eb77a6 1964 TOOLKIT_DIR="base"
f6bcfd97
BP
1965
1966 dnl the base name of the library and wxXXX-config files
1967 if test "$wxUSE_DEBUG_FLAG" = "yes"; then
1968 TOOLKIT_NAME="${TOOLKIT_DIR}d"
1969 else
1970 TOOLKIT_NAME="${TOOLKIT_DIR}"
1971 fi
1972
07eb77a6
RL
1973 TOOLKIT_DEF="-D__WXBASE__"
1974
e90c1d2a 1975 dnl the sources, their dependenices and the headers
b4085ce6
GD
1976 ALL_OBJECTS="\$(BASE_OBJS) \$(BASE_UNIX_OBJS)"
1977 ALL_DEPFILES="\$(BASE_DEPS) \$(BASE_UNIX_DEPS)"
e90c1d2a 1978
a20b6d3a
VZ
1979 if test "$wxUSE_ZLIB" = "yes" ; then
1980 ALL_OBJECTS="${ALL_OBJECTS} \$(ZLIBOBJS)"
1981 fi
1982
e90c1d2a 1983 dnl building wxBase only
f6bcfd97 1984 WX_LIBRARY="wx_${TOOLKIT_NAME}"
2224580a
VZ
1985
1986 PORT_FILES="src/files.lst"
1987 RPM_FILES="src/rpmfiles.lst"
1988 RPM_SPEC="wxBase.spec"
1989
1990 dnl distribute only wxBase sources/headers
1991 GUIDIST="BASE_DIST"
1992 DISTDIR="wxBase"
e90c1d2a
VZ
1993fi
1994
70d1b3cf 1995dnl the name of the (libtool) library
e90c1d2a 1996WX_LIBRARY_NAME="lib${WX_LIBRARY}.la"
bdad4e7e 1997WX_LIBRARY_NAME_GL="lib${WX_LIBRARY}_gl.la"
2b6f061f 1998
8e877c19 1999dnl the name of the static library
e90c1d2a 2000WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
bdad4e7e 2001WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY}_gl.a"
8e877c19 2002
48b1d0ff 2003dnl the name of the shared library
e90c1d2a 2004WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
bdad4e7e 2005WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
48b1d0ff 2006
48b1d0ff 2007dnl the name of the links to the shared library
e90c1d2a
VZ
2008WX_LIBRARY_LINK1="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}"
2009WX_LIBRARY_LINK2="lib${WX_LIBRARY}-${WX_RELEASE}.so"
2010WX_LIBRARY_LINK3="lib${WX_LIBRARY}.so"
bdad4e7e
RR
2011WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}"
2012WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so"
2013WX_LIBRARY_LINK3_GL="lib${WX_LIBRARY}_gl.so"
48b1d0ff
RR
2014
2015dnl shared library settings
2016SHARED_LD=
2017PIC_FLAG=
de87c353
RR
2018WX_ALL=
2019WX_ALL_INSTALLED=
1d62a8b4 2020BURNT_LIBRARY_NAME=
f6bcfd97 2021WX_TARGET_LIBRARY_SONAME=
48b1d0ff 2022
b12915c1
VZ
2023dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
2024
517a619d 2025if test "$wxUSE_SHARED" = "yes"; then
de87c353
RR
2026 case "${host}" in
2027 *-hp-hpux* )
be087207 2028 if test "$GCC" = yes ; then
69ffe1d2 2029 SHARED_LD="${CC} -shared -fPIC -o"
be087207
RR
2030 PIC_FLAG="-fPIC"
2031 else
f6bcfd97
BP
2032 dnl no idea why it wants it, but it does
2033 LDFLAGS="-L/usr/lib"
2034
be087207
RR
2035 SHARED_LD="${CXX} -b -o"
2036 PIC_FLAG="+Z"
2037 fi
f6bcfd97
BP
2038 WX_LIBRARY_NAME_SHARED="libwx_${TOOLKIT_NAME}.sl"
2039 WX_LIBRARY_NAME_SHARED_GL="libwx_${TOOLKIT_NAME}_gl.sl"
c661ecca 2040 if test "$wxUSE_OPENGL" = "yes"; then
f6bcfd97 2041 WX_ALL_INSTALLED="preinstall_gl"
c661ecca
RR
2042 WX_ALL="${WX_LIBRARY_NAME_SHARED} ${WX_LIBRARY_NAME_SHARED_GL}"
2043 else
2044 WX_ALL="${WX_LIBRARY_NAME_SHARED}"
2045 fi
de87c353 2046 ;;
b12915c1
VZ
2047
2048 dnl in fact, these settings are for any platform using gcc
de87c353
RR
2049 *-*-linux* )
2050 SHARED_LD="${CC} -shared -o"
2051 PIC_FLAG="-fPIC"
00cf1208 2052 if test "$wxUSE_BURNT_NAME" = "yes" ; then
05cdfc6f 2053 BURNT_LIBRARY_NAME="-Wl,-soname,${WX_LIBRARY_LINK1}"
bdad4e7e 2054 BURNT_LIBRARY_NAME_GL="-Wl,-soname,${WX_LIBRARY_LINK1_GL}"
f6bcfd97
BP
2055 dnl substitute this in makelib.env for the contrib libs
2056 WX_TARGET_LIBRARY_SONAME="-Wl,-soname,\$(TARGETLIB_LINK1)"
00cf1208 2057 fi
c661ecca
RR
2058 if test "$wxUSE_OPENGL" = "yes"; then
2059 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2060 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2061 else
2062 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2063 WX_ALL="CREATE_LINKS"
422107f9 2064 fi
de87c353
RR
2065 ;;
2066 *-*-irix5* | *-*-irix6* )
2067 if test "$GCC" = yes ; then
2068 SHARED_LD="${CC} -shared -o"
2069 PIC_FLAG="-fPIC"
2070 else
2071 SHARED_LD="${CXX} -shared -o"
2072 fi
c661ecca
RR
2073 if test "$wxUSE_OPENGL" = "yes"; then
2074 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2075 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2076 else
2077 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2078 WX_ALL="CREATE_LINKS"
422107f9 2079 fi
de87c353
RR
2080 ;;
2081 *-*-solaris2* )
2082 if test "$GCC" = yes ; then
2083 SHARED_LD="${CC} -shared -o"
2084 PIC_FLAG="-fPIC"
f6bcfd97
BP
2085
2086 dnl newer versions of gcc need -isystem to compile X headers on
2087 dnl Solaris (which use old style C syntax)
2088 CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include"
de87c353
RR
2089 else
2090 SHARED_LD="${CXX} -G -o"
10f2d63a 2091 PIC_FLAG="-KPIC"
de87c353 2092 fi
c661ecca
RR
2093 if test "$wxUSE_OPENGL" = "yes"; then
2094 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2095 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2096 else
2097 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2098 WX_ALL="CREATE_LINKS"
2099 fi
de87c353
RR
2100 ;;
2101 *-*-sunos4* )
2102 SHARED_LD="${CC} -shared -o"
2103 PIC_FLAG="-fPIC"
2104 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2105 WX_ALL="CREATE_LINKS"
2106 ;;
1cf8c0a9 2107 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* )
de87c353
RR
2108 SHARED_LD="${CC} -shared -o"
2109 PIC_FLAG="-fPIC"
264de0cc
UN
2110 if test "$wxUSE_OPENGL" = "yes"; then
2111 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2112 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2113 else
2114 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2115 WX_ALL="CREATE_LINKS"
2116 fi
de87c353 2117 ;;
b4085ce6 2118 *-*-darwin* )
ea5999b9
GD
2119 SHARED_LD="${CXX} -dynamiclib -o"
2120 PIC_FLAG="-dynamic -fPIC"
b4085ce6
GD
2121 if test "$wxUSE_OPENGL" = "yes"; then
2122 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS CREATE_INSTALLED_LINKS_GL"
2123 WX_ALL="CREATE_LINKS CREATE_LINKS_GL"
2124 else
2125 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2126 WX_ALL="CREATE_LINKS"
2127 fi
f3c067d2
GD
2128 dnl the name of the shared library
2129 WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}-${WX_RELEASE}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.dylib"
2130 WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}.dylib"
2131 dnl the name of the links to the shared library
2132 WX_LIBRARY_LINK1="lib${WX_LIBRARY}-${WX_RELEASE}.${WX_CURRENT}.dylib"
2133 WX_LIBRARY_LINK2="lib${WX_LIBRARY}-${WX_RELEASE}.dylib"
2134 WX_LIBRARY_LINK3="lib${WX_LIBRARY}.dylib"
2135 WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.${WX_CURRENT}.dylib"
2136 WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.dylib"
2137 WX_LIBRARY_LINK3_GL="lib${WX_LIBRARY}_gl.dylib"
b4085ce6 2138 ;;
de87c353
RR
2139 *-*-osf* )
2140 SHARED_LD="${CXX} -shared -o"
2141 PIC_FLAG="-fPIC"
2142 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2143 WX_ALL="CREATE_LINKS"
2144 ;;
2145 *-*-dgux5* )
2146 SHARED_LD="${CXX} -shared -o"
2147 PIC_FLAG="-fPIC"
2148 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2149 WX_ALL="CREATE_LINKS"
2150 ;;
2151 *-*-sysv5* )
2152 SHARED_LD="${CC} -shared -o"
2153 PIC_FLAG="-fPIC"
2154 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2155 WX_ALL="CREATE_LINKS"
2156 ;;
2157 *-*-aix* )
2158 SHARED_LD="/usr/lpp/xlC/bin/makeC++SharedLib -p 0 -o"
2159 WX_ALL=${WX_LIBRARY_NAME_SHARED}
2160 ;;
2161 *-*-cygwin32* )
2162 dnl only static for now
2163 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
bdad4e7e 2164 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
f6bcfd97
BP
2165 if test "$wxUSE_OPENGL" = "yes"; then
2166 WX_ALL_INSTALLED="preinstall_gl"
2167 WX_ALL="${WX_LIBRARY_NAME_STATIC} ${WX_LIBRARY_NAME_STATIC_GL}"
2168 else
2169 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2170 fi
de87c353 2171 ;;
b12915c1 2172 *-*-mingw32* )
de87c353
RR
2173 dnl only static for now
2174 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
bdad4e7e 2175 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
f6bcfd97
BP
2176 if test "$wxUSE_OPENGL" = "yes"; then
2177 WX_ALL_INSTALLED="preinstall_gl"
2178 WX_ALL="${WX_LIBRARY_NAME_STATIC} ${WX_LIBRARY_NAME_STATIC_GL}"
2179 else
2180 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2181 fi
de87c353
RR
2182 ;;
2183 *-pc-os2_emx )
e07802fc
VZ
2184 dnl only static for now
2185 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
2186 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
de87c353 2187 ;;
b12915c1
VZ
2188 *-*-beos* )
2189 dnl can't use gcc under BeOS for shared library creation because it
2190 dnl complains about missing 'main'
2191 SHARED_LD="${LD} -shared -o"
2192 PIC_FLAG="-fPIC"
2193 WX_ALL_INSTALLED="CREATE_INSTALLED_LINKS"
2194 WX_ALL="CREATE_LINKS"
2195 ;;
de87c353
RR
2196 *)
2197 AC_MSG_ERROR(unknown system type ${host}.)
2198 esac
9a98a854 2199
72dd34b5
VZ
2200 dnl set target to shared if not explicitly chose static before
2201 if test "x$WX_TARGET_LIBRARY" = "x"; then
2202 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_SHARED}"
bdad4e7e 2203 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_SHARED_GL}"
72dd34b5 2204 fi
3711412e
RL
2205 dnl do not alter the LIBRARY_TYPE strings "so" and "a", they are magic
2206 WX_TARGET_LIBRARY_TYPE="so"
517a619d
RR
2207else
2208 dnl set target to static
2209 WX_TARGET_LIBRARY="${WX_LIBRARY_NAME_STATIC}"
bdad4e7e 2210 WX_TARGET_LIBRARY_GL="${WX_LIBRARY_NAME_STATIC_GL}"
f6bcfd97
BP
2211
2212 if test "$wxUSE_OPENGL" = "yes"; then
2213 WX_ALL_INSTALLED="preinstall_gl"
2214 WX_ALL="${WX_LIBRARY_NAME_STATIC} ${WX_LIBRARY_NAME_STATIC_GL}"
2215 else
2216 WX_ALL="${WX_LIBRARY_NAME_STATIC}"
2217 fi
2218
2219 dnl give static wxBase build a working install target
2220 if test "$wxUSE_GUI" = "no"; then
2221 dnl we're here because WX_ALL_INSTALLED is empty, but play safe anyway
2222 WX_ALL_INSTALLED="${WX_ALL_INSTALLED} preinstall"
2223 fi
2224
3711412e 2225 WX_TARGET_LIBRARY_TYPE="a"
517a619d
RR
2226fi
2227
9a98a854
VZ
2228dnl ------------------------------------------------------------------------
2229dnl Check for headers
2230dnl ------------------------------------------------------------------------
2231
2232dnl defines HAVE_STRINGS_H (where some string functions live on AIX for example)
2233AC_CHECK_HEADERS(strings.h)
2234dnl defines HAVE_UNISTD_H
2235AC_CHECK_HEADERS(unistd.h)
0fb0dd83
RR
2236dnl defines HAVE_FCNTL_H
2237AC_CHECK_HEADERS(fcntl.h)
9a98a854 2238dnl defines HAVE_WCHAR_H
0046ff7c 2239AC_CHECK_HEADERS(wchar.h)
9a98a854
VZ
2240dnl defines HAVE_WCSTR_H
2241AC_CHECK_HEADERS(wcstr.h)
2242dnl defines HAVE_FNMATCH_H
2243AC_CHECK_HEADERS(fnmatch.h)
6f72b082
OK
2244dnl defines HAVE_ICONV_H (Unix98 encoding conversion routines)
2245AC_CHECK_HEADERS(iconv.h)
2246dnl defines HAVE_LANGINFO_H (GNU libc locale parameters)
2247AC_CHECK_HEADERS(langinfo.h)
e90c1d2a 2248
73fd4a60
VZ
2249if test "$wxUSE_GUI" = "yes"; then
2250 if test "$wxUSE_UNIX" = "yes"; then
2251 dnl defines HAVE_X11_XKBLIB_H
2252 AC_CHECK_HEADERS(X11/XKBlib.h)
2253 fi
e90c1d2a 2254fi
9a98a854
VZ
2255
2256dnl ---------------------------------------------------------------------------
2257dnl Checks for typedefs
2258dnl ---------------------------------------------------------------------------
2259
2260dnl defines mode_t if not already defined
2261AC_TYPE_MODE_T
2262dnl defines off_t if not already defined
2263AC_TYPE_OFF_T
2264dnl defines pid_t if not already defined
2265AC_TYPE_PID_T
2266dnl defines size_t if not already defined
2267AC_TYPE_SIZE_T
2268dnl defines uid_t and gid_t if not already defined
2269AC_TYPE_UID_T
2270
0046ff7c
VS
2271dnl check for wchar_t
2272AC_CACHE_CHECK([for wchar_t], wx_cv_type_wchar_t,
2273[
2274 AC_TRY_COMPILE([#include <wchar.h>],
2275 [
2276 wchar_t wc, *ws;
2277 wc = L'a';
2278 ws = L"Hello, world!";
2279 ],
2280 wx_cv_type_wchar_t=yes,
2281 wx_cv_type_wchar_t=no)
2282])
2283if test "$wx_cv_type_wchar_t" = yes ; then
2284 AC_DEFINE(wxUSE_WCHAR_T)
2285fi
2286
9a98a854
VZ
2287dnl ---------------------------------------------------------------------------
2288dnl Checks for structures
2289dnl ---------------------------------------------------------------------------
2290
b12915c1
VZ
2291dnl does passwd struct has the pw_gecos field?
2292AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos,
2293 [
2294 AC_TRY_COMPILE([#include <pwd.h>],
2295 [
2296 char *p;
2297 struct passwd *pw;
2298 p = pw->pw_gecos;
2299 ],
2300 [
2301 wx_cv_struct_pw_gecos=yes
b12915c1
VZ
2302 ],
2303 [
2304 wx_cv_struct_pw_gecos=no
2305 ]
2306 )
2307 ]
2308)
2309
bd3277fe
VZ
2310if test "$wx_cv_struct_pw_gecos" = "yes"; then
2311 AC_DEFINE(HAVE_PW_GECOS)
2312fi
2313
9a98a854
VZ
2314dnl ---------------------------------------------------------------------------
2315dnl Checks for compiler characteristics
2316dnl ---------------------------------------------------------------------------
2317
2318dnl defines const to be empty if c-compiler does not support const fully
2319AC_C_CONST
2320dnl defines inline to a sensible value for the c-compiler
2321AC_C_INLINE
2322
2323dnl check the sizes of integral types (give some reasonable default values for
2324dnl cross-compiling)
2325dnl defines the size of certain types of variables in SIZEOF_<TYPE>
d716d967 2326AC_CHECK_SIZEOF(char, 1)
6f72b082 2327AC_CHECK_SIZEOF(wchar_t, 4)
d716d967 2328AC_CHECK_SIZEOF(short, 2)
9a98a854
VZ
2329AC_CHECK_SIZEOF(int *, 4)
2330AC_CHECK_SIZEOF(int, 4)
2331AC_CHECK_SIZEOF(long, 4)
2332AC_CHECK_SIZEOF(long long, 0)
2333
bcd2b961
VZ
2334dnl for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling)
2335WX_C_BIGENDIAN
239bca2e 2336
9a98a854
VZ
2337dnl check for iostream (as opposed to iostream.h) standard header
2338WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH))
2339
2340dnl check whether C++ compiler supports bool built-in type
2341WX_CPP_BOOL
2342
60b6c062
GL
2343dnl check whether we should define _GNU_SOURCE
2344WX_GNU_EXTENSIONS
2345
9a98a854
VZ
2346dnl ---------------------------------------------------------------------------
2347dnl Check for functions
2348dnl ---------------------------------------------------------------------------
2349
2350dnl check for wcslen
2351AC_CHECK_LIB(c, wcslen, [
2352 AC_DEFINE(HAVE_WCSLEN)
2353 WCHAR_LINK=""
2354 ], [
2355 AC_CHECK_LIB(w, wcslen, [
2356 AC_DEFINE(HAVE_WCSLEN)
2357 WCHAR_LINK="-lw"
2358 ])
2359 ])
2360
2361dnl check for vprintf/vsprintf() which are GNU extensions
2362AC_FUNC_VPRINTF
2363
aea02638
VZ
2364AC_LANG_SAVE
2365AC_LANG_CPLUSPLUS
2366
f6bcfd97
BP
2367dnl check for vsscanf() and vsnprintf() - on some platforms (Linux, glibc
2368dnl 2.1.1 for the first one, HP-UX for the second) it's available in the
2369dnl library but the prototype is missing, so we can't use AC_CHECK_FUNCS here,
2370dnl do it manually
2371
2372dnl we use AC_TRY_COMPILE() here instead of AC_TRY_RUN() to make the checks
2373dnl work for cross-compilation, but AC_TRY_COMPILE() normally only compiles
2374dnl one function while we need at least 2 - hence the ugly hack below. To
2375dnl understand why it works, remember that AC_TRY_COMPILE() just prepends
2376dnl "int main() {" in the beginning of the code and "; return 0; }" at the
2377dnl end...
2378
c521c494
RL
2379dnl if we fail to find vsnprintf, also try for _vsnprintf as that is what
2380dnl we'll find under MSW if it exists.
2381
9d8deca0
VZ
2382dnl final note: AC_TRY_COMPILE will only be executed if there is nothing in
2383dnl the cache so we have to do AC_DEFINE(HAVE_VSNPRINTF) below and not inside
2384dnl it or the symbol wouldn't be defined for the 2nd and subsequent configure
2385dnl runs
2386
f6bcfd97
BP
2387dnl check for vsnprintf() - a safe version of vsprintf()
2388AC_CACHE_CHECK([for vsnprintf], wx_cv_func_vsnprintf,
aea02638 2389[
f6bcfd97
BP
2390 AC_TRY_COMPILE([
2391 #include <stdio.h>
2392 #include <stdarg.h>
2393 ], [
2394 int wx_test_vsnprintf(const char *, ...);
3a3eed31 2395
f6bcfd97
BP
2396 wx_test_vsnprintf("%s");
2397 return 0;
2398 }
2399
2400 int wx_test_vsnprintf(const char *fmt, ...)
2401 {
2402 char *s;
3a3eed31 2403
f6bcfd97
BP
2404 va_list argp;
2405 va_start(argp, fmt);
2406 vsnprintf(s, 42, fmt, argp);
2407 va_end(argp);
2408 ], [
f6bcfd97
BP
2409 wx_cv_func_vsnprintf=yes
2410 ], [
c521c494
RL
2411 AC_TRY_COMPILE([
2412 #include <stdio.h>
2413 #include <stdarg.h>
2414 ], [
2415 int wx_test_vsnprintf(const char *, ...);
2416
2417 wx_test_vsnprintf("%s");
2418 return 0;
2419 }
2420
2421 int wx_test_vsnprintf(const char *fmt, ...)
2422 {
2423 char *s;
2424
2425 va_list argp;
2426 va_start(argp, fmt);
2427 _vsnprintf(s, 42, fmt, argp);
2428 va_end(argp);
2429 ], [
c521c494
RL
2430 wx_cv_func_vsnprintf=yes
2431 ], [
c521c494
RL
2432 wx_cv_func_vsnprintf=no
2433 ])
f6bcfd97
BP
2434 ])
2435])
3a3eed31 2436
9d8deca0
VZ
2437if test "$wx_cv_func_vsnprintf" = yes; then
2438 AC_DEFINE(HAVE_VSNPRINTF)
2439else
2440 AC_MSG_WARN(unsafe function sprintf will be used instead of snprintf)
2441fi
2442
f6bcfd97
BP
2443dnl check for vsscanf()
2444AC_CACHE_CHECK([for vsscanf], wx_cv_func_vsscanf,
2445[
2446 AC_TRY_COMPILE([
2447 #include <stdio.h>
2448 #include <stdarg.h>
2449 ], [
2450 int wx_test_vsscanf(const char *, ...);
2451
2452 wx_test_vsscanf("%d");
2453 return 0;
3a3eed31
VZ
2454 }
2455
f6bcfd97 2456 int wx_test_vsscanf(const char *fmt, ...)
3a3eed31 2457 {
f6bcfd97
BP
2458 va_list argp;
2459 va_start(argp, fmt);
2460 vsscanf("42", fmt, argp);
2461 va_end(argp);
2462 ], [
f6bcfd97
BP
2463 wx_cv_func_vsscanf=yes
2464 ], [
2465 wx_cv_func_vsscanf=no
2466 ])
aea02638
VZ
2467])
2468
9d8deca0
VZ
2469if test "$wx_cv_func_vsscanf" = yes; then
2470 AC_DEFINE(HAVE_VSSCANF)
2471fi
2472
aea02638
VZ
2473AC_LANG_RESTORE
2474
f6bcfd97 2475dnl the following tests are for Unix(like) systems only
b089607b 2476if test "$TOOLKIT" != "MSW"; then
a0c79abb 2477
eb4efbdc
VZ
2478dnl check for POSIX signals if we need them
2479if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then
2480 AC_CHECK_FUNCS(sigaction)
2481
2482 if test "$ac_cv_func_sigaction" = "no"; then
2483 AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called])
2484 wxUSE_ON_FATAL_EXCEPTION=no
2485 fi
f6bcfd97
BP
2486
2487 if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
2488 AC_LANG_SAVE
2489 AC_LANG_CPLUSPLUS
2490
2491 AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler,
2492 [
2493 AC_TRY_COMPILE([#include <signal.h>],
2494 [
2495 extern void testSigHandler(int);
2496
2497 struct sigaction sa;
2498 sa.sa_handler = testSigHandler;
2499 ], [
2500 wx_cv_type_sa_handler=int
2501 ], [
2502 wx_cv_type_sa_handler=void
2503 ])
2504 ])
2505
2506 AC_LANG_RESTORE
2507
2508 AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler)
2509 fi
eb4efbdc
VZ
2510fi
2511
9a98a854
VZ
2512dnl check for vfork() (even if it's the same as fork() in modern Unices)
2513AC_CHECK_FUNCS(vfork)
2514
270a909e
VZ
2515dnl check for timegm() used by datetime.cpp
2516AC_CHECK_FUNCS(timegm)
2517
8fd0d89b
VZ
2518dnl look for a functiopn to modify the environment
2519AC_CHECK_FUNCS(putenv setenv, break)
2520
b12915c1
VZ
2521HAVE_SOME_SLEEP_FUNC=0
2522if test "$USE_BEOS" = 1; then
2523 dnl BeOS has its own (wonder where did they get it from) sleep() function
2524 dnl in unistd.h
2525 AC_DEFINE(HAVE_SLEEP)
2526 HAVE_SOME_SLEEP_FUNC=1
2527fi
2528
b4085ce6
GD
2529if test "$USE_MAC" = 1; then
2530 dnl Mac OS X has both nanosleep and usleep
2531 dnl but only usleep is defined in unistd.h
2532 AC_DEFINE(HAVE_USLEEP)
2533 HAVE_SOME_SLEEP_FUNC=1
2534fi
2535
b12915c1
VZ
2536if test "$HAVE_SOME_SLEEP_FUNC" != 1; then
2537 dnl try nanosleep() in libc and libposix4, if this fails - usleep()
2538 POSIX4_LINK=
2539 AC_CHECK_FUNCS(nanosleep,
2540 AC_DEFINE(HAVE_NANOSLEEP),
2541 [
2542 AC_CHECK_LIB(posix4, nanosleep,
2543 [
2544 AC_DEFINE(HAVE_NANOSLEEP)
2545 POSIX4_LINK="-lposix4"
2546 ],
2547 [
b4085ce6
GD
2548 AC_CHECK_FUNCS(usleep,
2549 AC_DEFINE(HAVE_USLEEP),
2550 )
b12915c1
VZ
2551 AC_MSG_WARN([wxSleep() function will not work])
2552 ]
2553 )
2554 ]
2555 )
2556fi
9a98a854
VZ
2557
2558dnl check for uname (POSIX) and gethostname (BSD)
2559AC_CHECK_FUNCS(uname gethostname, break)
2560
6098c7f9
VZ
2561dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler
2562dnl but not for C++ one - hence change language)
2563AC_LANG_SAVE
2564AC_LANG_CPLUSPLUS
2565
e90c1d2a
VZ
2566AC_CHECK_FUNCS(strtok_r)
2567
6098c7f9
VZ
2568AC_LANG_RESTORE
2569
c63c7106
VZ
2570dnl check for inet_addr and inet_aton (these may live either in libc, or in
2571dnl libnsl or libresolv)
2572INET_LINK=
2573AC_CHECK_FUNCS(inet_addr,
2574 AC_DEFINE(HAVE_INET_ADDR),
2575 [
2576 AC_CHECK_LIB(nsl, inet_addr,
270a909e 2577 INET_LINK="nsl",
c63c7106
VZ
2578 AC_CHECK_LIB(resolv, inet_addr,
2579 INET_LINK="resolv"
2580 )
2581 )
2582 ]
2583)
2584
2585AC_CHECK_FUNCS(inet_aton,
2586 AC_DEFINE(HAVE_INET_ATON),
2587 [
2588 dnl only check it in the same lib
2589 AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON))
2590 ])
2591
2592if test "x$INET_LINK" != "x"; then
2593 AC_DEFINE(HAVE_INET_ADDR)
2594 INET_LINK="-l$INET_LINK"
2595fi
e96ac54e 2596
a0c79abb 2597fi
b089607b 2598dnl if !MSW
a0c79abb 2599
9a98a854
VZ
2600dnl ===========================================================================
2601dnl Now we have all the info we need - use it!
2602dnl ===========================================================================
2603
2604dnl flush the cache
2605AC_CACHE_SAVE
2606
2607dnl ---------------------------------------------------------------------------
a9b5e89f 2608dnl thread support for Unix (always available under Win32)
9a98a854
VZ
2609dnl ---------------------------------------------------------------------------
2610
b089607b
VZ
2611dnl under MSW we always have thread support
2612if test "$TOOLKIT" != "MSW"; then
a9b5e89f 2613
9a98a854
VZ
2614dnl the code below:
2615dnl defines THREADS_OBJ which contains the object files to build
2616dnl defines THREADS_LINK which contains the thread library to link with
2617dnl defines wxUSE_THREADS=1 if thread support is activated
2618
2619THREADS_LINK=""
2620THREADS_OBJ=""
2621
77c85c2b
RR
2622if test "$wxUSE_THREADS" = "yes" ; then
2623 if test "$wxUSE_WINE" = 1 ; then
2624 AC_MSG_WARN([Threads are not supported under WINE])
2625 wxUSE_THREADS="no"
b12915c1
VZ
2626 elif test "$USE_BEOS" = 1; then
2627 AC_MSG_WARN([BeOS threads are not yet supported])
2628 wxUSE_THREADS="no"
77c85c2b 2629 fi
39c9d5ac
RR
2630fi
2631
77c85c2b 2632if test "$wxUSE_THREADS" = "yes" ; then
9a98a854 2633 dnl find if POSIX threads are available
c596875e 2634
f6bcfd97 2635 dnl AIX calls the library libpthreads - thanks IBM!
186837b0 2636 if test "$USE_AIX" = 1; then
f6bcfd97 2637 THREADS_LIB=pthreads
f3c067d2
GD
2638 elif test "$USE_MAC" = 1; then
2639 THREADS_LIB=cc_dynamic
f6bcfd97
BP
2640 else
2641 THREADS_LIB=pthread
2642 fi
2643
9a98a854
VZ
2644 dnl standard lib name is pthread
2645 dnl We no longer test for pthread-0.7 as it breaks compilation on some
2646 dnl glibc2 systems, especially for static linkage.
f6bcfd97 2647 AC_CHECK_LIB($THREADS_LIB, pthread_create, [
9a98a854 2648 THREADS_OBJ="threadpsx.lo"
f6bcfd97 2649 THREADS_LINK=$THREADS_LIB
9a98a854
VZ
2650 ], [
2651 dnl thread functions are in libc_r under FreeBSD
2652 AC_CHECK_LIB(c_r, pthread_create, [
2653 THREADS_OBJ="threadpsx.lo"
2654 THREADS_LINK="c_r"
2655 ], [
b4085ce6
GD
2656 dnl thread functions are in libcc_dynamic under Mac OS X/Darwin
2657 AC_CHECK_LIB(cc_dynamic, pthread_create, [
2658 THREADS_OBJ="threadpsx.lo"
2659 THREADS_LINK="cc_dynamic"
2660 ], [
2661 dnl VZ: SGI threads are not supported currently
2662 AC_CHECK_HEADER(sys/prctl.h, [
2663 THREADS_OBJ="threadsgi.lo"
2664 ])
9a98a854
VZ
2665 ])
2666 ])
2667 ])
9a98a854 2668
aea02638
VZ
2669 if test -z "$THREADS_OBJ" ; then
2670 wxUSE_THREADS=no
2671 AC_MSG_WARN(No thread support on this system)
2672 fi
9a98a854
VZ
2673fi
2674
2675dnl do other tests only if we are using threads
77c85c2b 2676if test "$wxUSE_THREADS" = "yes" ; then
70846f0a
VZ
2677 AC_CHECK_FUNCS(thr_setconcurrency)
2678
9a98a854
VZ
2679 dnl define autoconf macro to check for given function in both pthread and
2680 dnl posix4 libraries
2681 dnl usage: AC_FUNC_THREAD(FUNCTION_NAME)
2682 dnl VZ: TODO
2683 dnl AC_DEFUN(AC_FUNC_THREAD,
2684 dnl [
2685 dnl AC_CHECK_LIB($THREADS_LINK, $1,
2686 dnl AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z'),
2687 dnl [AC_CHECK_LIB("posix4", $1,
2688 dnl [AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z'))
2689 dnl POSIX4_LINK="-lposix4"
2690 dnl ])
2691 dnl ])
2692 dnl ])
2693
2694 AC_CHECK_HEADERS(sched.h)
2695
2696 AC_CHECK_LIB($THREADS_LINK, sched_yield,
2697 AC_DEFINE(HAVE_SCHED_YIELD),
2698 [AC_CHECK_LIB("posix4", sched_yield,
2699 [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK="-lposix4"],
2700 AC_MSG_WARN(wxThread::Yield will not work properly)
2701 )]
2702 )
2703
f6bcfd97
BP
2704 dnl to be able to set the thread priority, we need to have all of the
2705 dnl following functions:
9a98a854
VZ
2706 dnl 1. pthread_attr_getschedpolicy
2707 dnl 2. sched_get_priority_min and sched_get_priority_max
f6bcfd97 2708 dnl (this one can be in either libpthread or libposix4 (under Solaris))
9a98a854 2709 dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam
f6bcfd97 2710 HAVE_PRIOR_FUNCS=0
9a98a854 2711 AC_CHECK_LIB($THREADS_LINK, pthread_attr_getschedpolicy,
f6bcfd97
BP
2712 AC_CHECK_LIB($THREADS_LINK, pthread_attr_setschedparam,
2713 AC_CHECK_LIB($THREADS_LINK, sched_get_priority_max,
2714 HAVE_PRIOR_FUNCS=1,
2715 AC_CHECK_LIB("posix4", sched_get_priority_max,
2716 [
2717 HAVE_PRIOR_FUNCS=1
2718 POSIX4_LINK="-lposix4"
2719 ],
2720 )
2721 )
2722 )
9a98a854
VZ
2723 )
2724
f6bcfd97
BP
2725 if test "$HAVE_PRIOR_FUNCS" = 1; then
2726 AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS)
2727 else
2728 AC_MSG_WARN(Setting thread priority will not work)
2729 fi
2730
9a98a854
VZ
2731 AC_CHECK_LIB($THREADS_LINK, pthread_cancel,
2732 AC_DEFINE(HAVE_PTHREAD_CANCEL),
2733 AC_MSG_WARN([wxThread::Kill() will not work properly]))
2734
2735 AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push,
2736 [
2737 AC_TRY_COMPILE([#include <pthread.h>],
2738 [
2739 pthread_cleanup_push(NULL, NULL);
2740 pthread_cleanup_pop(0);
2741 ], [
2742 wx_cv_func_pthread_cleanup_push=yes
9a98a854
VZ
2743 ], [
2744 wx_cv_func_pthread_cleanup_push=no
2745 ])
2746 ])
2747
d9b9876f
VZ
2748 if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then
2749 AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS)
2750 fi
2751
2752 dnl mutexattr_t initialization is done in quite different ways on different
2753 dnl platforms, so check for a few things:
2754 dnl
2755 dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes
2756 dnl HAVE_MUTEXATTR_SETTYPE means that we do it using
2757 dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not
2758 dnl defined, we do it by directly assigned
2759 dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr
2760
d9b9876f
VZ
2761 AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t,
2762 [
2763 AC_TRY_COMPILE([#include <pthread.h>],
2764 [
2765 pthread_mutexattr_t attr;
2766 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
2767 ], [
2768 wx_cv_type_pthread_mutexattr_t=yes
2769 ], [
2770 wx_cv_type_pthread_mutexattr_t=no
2771 ]
2772 )
2773 ])
2774
2775 if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then
2776 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T)
2777 else
2778 dnl don't despair, there may be another way to do it
2779 AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER],
2780 wx_cv_type_pthread_rec_mutex_init,
2781 [
2782 AC_TRY_COMPILE([#include <pthread.h>],
2783 [
2784 pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
2785 ], [
2786 wx_cv_type_pthread_rec_mutex_init=yes
2787 ], [
2788 wx_cv_type_pthread_rec_mutex_init=no
2789 ]
2790 )
2791 ])
2792 if test "$wx_cv_type_pthread_rec_mutex_init"="yes"; then
2793 AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
2794 else
2795 dnl this may break code working elsewhere, so at least warn about it
2796 AC_MSG_WARN([wxMutex won't be recursive on this platform])
2797 fi
2798 fi
2799
9a98a854 2800 THREADS_LINK="-l$THREADS_LINK"
186837b0
VZ
2801
2802 dnl building MT programs under Solaris with the native compiler requires -mt
2803 dnl switch
2804 if test "$USE_SOLARIS" = "yes" -a "$GCC" != "yes"; then
2805 CFLAGS="${CFLAGS} -mt"
2806 CXXFLAGS="${CXXFLAGS} -mt"
2807 LDFLAGS="${LDFLAGS} -mt"
2808 fi
9a98a854
VZ
2809fi
2810
b089607b 2811dnl from if !MSW
a9b5e89f
VZ
2812fi
2813
2814if test "$wxUSE_THREADS" = "yes"; then
2815 AC_DEFINE(wxUSE_THREADS)
2816
2c6025bc
GD
2817 dnl must define _REENTRANT for multithreaded code except for Mac OS X
2818 if test "$wxUSE_MAC" = "0"; then
2819 CFLAGS="${CFLAGS} -D_REENTRANT"
2820 CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
2821 fi
a9b5e89f
VZ
2822
2823 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread"
d64af447 2824else
b12915c1 2825 dnl on some systems, _REENTRANT should be defined if we want to use any _r()
d64af447
VZ
2826 dnl functions - add tests for other functions here as well
2827 if test "$ac_cv_func_strtok_r" = "yes"; then
ab9b9eab
VZ
2828 AC_MSG_CHECKING(if -D_REENTRANT is needed)
2829 if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then
2830 CFLAGS="${CFLAGS} -D_REENTRANT"
2831 CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
2832 AC_MSG_RESULT(yes)
2833 else
2834 AC_MSG_RESULT(no)
ee31c269 2835 fi
d64af447 2836 fi
a9b5e89f
VZ
2837fi
2838
6f72b082
OK
2839if test "$WXGTK20" = 1 ; then
2840 AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20)
13111b2a
VZ
2841 WXGTK12=1
2842fi
2843
9a98a854
VZ
2844if test "$WXGTK12" = 1 ; then
2845 AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12)
2846fi
2847
f6bcfd97
BP
2848if test "$WXGTK127" = 1 ; then
2849 AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127)
2850fi
2851
5a92d200
RR
2852if test "$WXWINE" = 1 ; then
2853 TOOLKIT_DEF="${TOOLKIT_DEF} -D__WXWINE__"
2854fi
2855
b4085ce6 2856if test "$wxUSE_MAC" = 1 ; then
2c6025bc 2857 TOOLKIT_DEF="${TOOLKIT_DEF} -D__UNIX__ -D__POWERPC__ -DTARGET_CARBON"
ea5999b9
GD
2858 CFLAGS="${CFLAGS} -fno-common -fpascal-strings"
2859 CPPFLAGS="${CPPFLAGS} -fno-common -fpascal-strings"
b4085ce6
GD
2860fi
2861
a9b5e89f
VZ
2862if test "$wxUSE_CYGWIN" = 1 ; then
2863 TOOLKIT_DEF="${TOOLKIT_DEF} -D__WIN95__"
2864fi
2865
9a98a854 2866WXDEBUG=
9a98a854
VZ
2867
2868if test "$wxUSE_DEBUG_INFO" = "yes" ; then
2869 WXDEBUG="-g"
2870 wxUSE_OPTIMISE=no
2871fi
2872
5586805b
RR
2873if test "$wxUSE_DEBUG_GDB" = "yes" ; then
2874 wxUSE_DEBUG_INFO=yes
2875 WXDEBUG="-ggdb"
2876fi
2877
9a98a854 2878if test "$wxUSE_DEBUG_FLAG" = "yes" ; then
77c85c2b
RR
2879 AC_DEFINE(WXDEBUG)
2880 WXDEBUG_DEFINE="-D__WXDEBUG__"
9a98a854 2881else
04338f96
RR
2882 if test "$wxUSE_GTK" = 1 ; then
2883 WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS"
2884 fi
9a98a854
VZ
2885fi
2886
2887if test "$wxUSE_MEM_TRACING" = "yes" ; then
77c85c2b
RR
2888 AC_DEFINE(wxUSE_MEMORY_TRACING)
2889 AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS)
47c13eb7 2890 AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS)
77c85c2b 2891 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck"
9a98a854
VZ
2892fi
2893
2894if test "$wxUSE_DMALLOC" = "yes" ; then
77c85c2b 2895 DMALLOC_LINK="-ldmalloc"
9a98a854
VZ
2896fi
2897
2898PROFILE=
2899if test "$wxUSE_PROFILE" = "yes" ; then
77c85c2b 2900 PROFILE="-pg"
9a98a854
VZ
2901fi
2902
5586805b 2903DEP_INFO_FLAGS=
caa2c79b 2904CODE_GEN_FLAGS=
0f3f1cbc 2905CODE_GEN_FLAGS_CXX=
f7bdcdd7
RR
2906if test "$GCC" = yes ; then
2907 if test "$wxUSE_NO_RTTI" = "yes" ; then
0f3f1cbc 2908 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS -fno-rtti"
f7bdcdd7
RR
2909 fi
2910 if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then
0f3f1cbc 2911 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS -fno-exceptions"
f7bdcdd7 2912 fi
5586805b 2913 if test "$wxUSE_PERMISSIVE" = "yes" ; then
caa2c79b 2914 CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive"
5586805b
RR
2915 fi
2916 if test "$wxUSE_NO_DEPS" = "no" ; then
2917 DEP_INFO_FLAGS="-MMD"
2918 fi
c596875e
RD
2919fi
2920
2921
9a98a854
VZ
2922CXXFLAGS=`echo "${CXXFLAGS}" | sed "s/\-O.//g" `
2923CFLAGS=`echo "${CFLAGS}" | sed "s/\-O.//g" `
2924if test "$wxUSE_OPTIMISE" = "no" ; then
77c85c2b 2925 OPTIMISE=
9a98a854 2926else
77c85c2b 2927 if test "$GCC" = yes ; then
04338f96 2928 OPTIMISE="-O2"
77c85c2b
RR
2929 case "${host}" in
2930 i586-*-*|i686-*-* )
2931 OPTIMISE="${OPTIMISE} "
2932 ;;
2933 esac
2934 else
2935 OPTIMISE="-O"
2936 fi
9a98a854
VZ
2937fi
2938
2939dnl ---------------------------------------------------------------------------
2940dnl Optional libraries
2941dnl ---------------------------------------------------------------------------
2942
7fbdec7b 2943ZLIB_INCLUDE=
422107f9 2944if test "$wxUSE_ZLIB" = "yes" -o "$wxUSE_ZLIB" = "sys" ; then
9a98a854 2945 AC_DEFINE(wxUSE_ZLIB)
422107f9
VZ
2946 if test "$wxUSE_ZLIB" = "yes" ; then
2947 ZLIB_INCLUDE="-I\${top_srcdir}/src/zlib"
2948 else
2949 ZLIB_LINK=
2950 AC_CHECK_HEADER(zlib.h, AC_CHECK_LIB(z, deflate, ZLIB_LINK="-lz"))
2951 if test "x$ZLIB_LINK" = "x" ; then
2952 AC_MSG_ERROR(system zlib compression library not found! Use --with-zlib=yes to use built-in zlib)
2953 fi
2954 fi
9a98a854
VZ
2955fi
2956
7fbdec7b 2957PNG_INCLUDE=
422107f9 2958if test "$wxUSE_LIBPNG" = "yes" -o "$wxUSE_LIBPNG" = "sys" ; then
9a98a854 2959 AC_DEFINE(wxUSE_LIBPNG)
422107f9
VZ
2960 dnl for the check below to have a chance to succeed, we must already have
2961 dnl libz somewhere
581e8516 2962 if test "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then
422107f9
VZ
2963 AC_MSG_WARN([--with-libpng=sys doesn't work without --with-zlib=sys, will compile the built-in libpng instead])
2964 wxUSE_LIBPNG=yes
2965 fi
2966
2967 if test "$wxUSE_LIBPNG" = "yes" ; then
2968 PNG_INCLUDE="-I\${top_srcdir}/src/png"
2969 else
2970 PNG_LINK=
2971 AC_CHECK_HEADER(png.h,
2972 AC_CHECK_LIB(png, png_check_sig,
2973 PNG_LINK="-lpng",
2974 ,
2975 [-lz -lm])
2976 )
2977 if test "x$PNG_LINK" = "x" ; then
0dcf9893 2978 AC_MSG_ERROR(system png library not found! Use --with-libpng=yes to use the built-in libpng)
422107f9
VZ
2979 fi
2980 fi
2981
9a98a854
VZ
2982 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
2983fi
2984
7fbdec7b 2985JPEG_INCLUDE=
422107f9 2986if test "$wxUSE_LIBJPEG" = "yes" -o "$wxUSE_LIBJPEG" = "sys" ; then
9a98a854 2987 AC_DEFINE(wxUSE_LIBJPEG)
422107f9
VZ
2988 if test "$wxUSE_LIBJPEG" = "yes" ; then
2989 JPEG_INCLUDE="-I\${top_srcdir}/src/jpeg"
2990 else
2991 JPEG_LINK=
2992 AC_CHECK_HEADER(jpeglib.h, AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK="-ljpeg"))
2993 if test "x$JPEG_LINK" = "x" ; then
0dcf9893 2994 AC_MSG_ERROR(system jpeg library not found! Use --with-libjpeg=yes to use the built-in one)
422107f9
VZ
2995 fi
2996 fi
9a98a854
VZ
2997fi
2998
c7a2bf27 2999TIFF_INCLUDE=
0dcf9893 3000if test "$wxUSE_LIBTIFF" = "yes" -o "$wxUSE_LIBTIFF" = "sys" ; then
c7a2bf27 3001 AC_DEFINE(wxUSE_LIBTIFF)
0dcf9893
VZ
3002 if test "$wxUSE_LIBTIFF" = "yes" ; then
3003 TIFF_INCLUDE="-I\${top_srcdir}/src/tiff"
3004 else
3005 TIFF_LINK=
3006 AC_CHECK_HEADER(tiffio.h, AC_CHECK_LIB(tiff, TIFFError,
3007 TIFF_LINK="-ltiff",
3008 ,
3009 -lm))
3010 if test "x$TIFF_LINK" = "x" ; then
3011 AC_MSG_ERROR(system tiff library not found! Use --with-libtiff=yes to use the built-in one)
3012 fi
3013 fi
c7a2bf27
RR
3014fi
3015
3fed1840
RR
3016FREETYPE_INCLUDE=
3017if test "$wxUSE_FREETYPE" = "yes" -o "$wxUSE_FREETYPE" = "sys" ; then
3018 AC_DEFINE(wxUSE_FREETYPE)
3019 if test "$wxUSE_FREETYPE" = "yes" ; then
3020 FREETYPE_INCLUDE="-I\${top_srcdir}/src/freetype"
3021 else
3022 FREETYPE_LINK=
3023 AC_CHECK_HEADER(freetype.h,
3024 AC_CHECK_LIB(freetype, FT_Render_Glyph,
3025 FREETYPE_LINK="-lfreetype",
3026 ,
3027 [-lm])
3028 )
3029 if test "x$FREETYPE_LINK" = "x" ; then
3030 AC_MSG_ERROR(system freetype library not found! Use --with-freetype=yes to use the built-in freetype)
3031 fi
3032 fi
3033fi
3034
9a98a854
VZ
3035if test "$wxUSE_OPENGL" = "yes"; then
3036 AC_CHECK_HEADER(GL/gl.h, [
bdad4e7e
RR
3037 AC_DEFINE(wxUSE_OPENGL)
3038 AC_DEFINE(wxUSE_GLCANVAS)
3039 AC_CHECK_LIB(GL, glFlush, [
f6bcfd97 3040 OPENGL_LINK="-lGL -lGLU"
9a98a854 3041 ],[
bdad4e7e 3042 AC_CHECK_LIB(MesaGL, glFlush, [
f6bcfd97 3043 OPENGL_LINK="-lMesaGL -lMesaGLU"
bdad4e7e
RR
3044 ],)
3045 ],)
9a98a854
VZ
3046 ],wxUSE_OPENGL=0)
3047fi
3048
3049dnl ---------------------------------------------------------------------------
3050dnl the library may be built without GUI classes at all
3051dnl ---------------------------------------------------------------------------
3052
3053if test "$wxUSE_GUI" = "yes"; then
3054 AC_DEFINE(wxUSE_GUI)
3055
3056 dnl the things we always pull in the GUI version of the library:
3057 dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the
3058 dnl library really can't be built without those)
3059 dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in
3060 dnl almost any program and the first 2 are needed to show a message box
3061 dnl which want to be always able to do)
3062 dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice
3063 dnl to compile without them (if the app doesn't do any drawing, it doesn't
3064 dnl need the dcs, pens, brushes, ...), this just can't be done now
3065 dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem
3066 dnl 5. misc stuff: timers, settings, message box
9a98a854
VZ
3067else
3068 AC_DEFINE(wxUSE_NOGUI)
3069fi
3070
3071dnl ---------------------------------------------------------------------------
3072dnl Unix/Windows
3073dnl ---------------------------------------------------------------------------
3074
3075if test "$wxUSE_UNIX" = "yes"; then
3076 AC_DEFINE(wxUSE_UNIX)
9a98a854
VZ
3077fi
3078
3079dnl ---------------------------------------------------------------------------
3080dnl Register non-GUI class options for makefiles and setup.h
3081dnl ---------------------------------------------------------------------------
3082
3083if test "$wxUSE_APPLE_IEEE" = "yes"; then
3084 AC_DEFINE(wxUSE_APPLE_IEEE)
9a98a854
VZ
3085fi
3086
2749089a
KB
3087if test "$wxUSE_WAVE" = "yes"; then
3088 AC_DEFINE(wxUSE_WAVE)
3089fi
3090
9a98a854
VZ
3091if test "$wxUSE_FILE" = "yes"; then
3092 AC_DEFINE(wxUSE_FILE)
9a98a854
VZ
3093fi
3094
24528b0c
VS
3095if test "$wxUSE_FILESYSTEM" = "yes"; then
3096 AC_DEFINE(wxUSE_FILESYSTEM)
3097fi
3098
e3e717ec
VZ
3099if test "$wxUSE_FS_INET" = "yes"; then
3100 AC_DEFINE(wxUSE_FS_INET)
3101fi
3102
3103if test "$wxUSE_FS_ZIP" = "yes"; then
3104 AC_DEFINE(wxUSE_FS_ZIP)
3105fi
3106
d78b3d64
VS
3107if test "$wxUSE_ZIPSTREAM" = "yes"; then
3108 AC_DEFINE(wxUSE_ZIPSTREAM)
3109fi
3110
eb4efbdc
VZ
3111if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then
3112 AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION)
3113fi
3114
d78b3d64
VS
3115if test "$wxUSE_BUSYINFO" = "yes"; then
3116 AC_DEFINE(wxUSE_BUSYINFO)
3117fi
3118
fd15d8f1
RR
3119if test "$wxUSE_STD_IOSTREAM" = "yes"; then
3120 AC_DEFINE(wxUSE_STD_IOSTREAM)
3121fi
3122
9a98a854
VZ
3123if test "$wxUSE_TEXTFILE" = "yes"; then
3124 if test "$wxUSE_FILE" != "yes"; then
3125 AC_MSG_WARN(wxTextFile requires wxFile and it won't be compiled without it)
3126 else
3127 AC_DEFINE(wxUSE_TEXTFILE)
9a98a854
VZ
3128 fi
3129fi
3130
3131if test "$wxUSE_CONFIG" = "yes" ; then
3132 if test "$wxUSE_TEXTFILE" != "yes"; then
3133 AC_MSG_WARN(wxConfig requires wxTextFile and it won't be compiled without it)
3134 else
3135 AC_DEFINE(wxUSE_CONFIG)
9a98a854
VZ
3136 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config"
3137 fi
3138fi
3139
3140if test "$wxUSE_INTL" = "yes" ; then
3141 if test "$wxUSE_FILE" != "yes"; then
3142 AC_MSG_WARN(I18n code requires wxFile and it won't be compiled without it)
3143 else
3144 AC_DEFINE(wxUSE_INTL)
9a98a854 3145 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat"
f6bcfd97 3146 GUIDIST="$GUIDIST INTL_DIST"
9a98a854
VZ
3147 fi
3148fi
3149
3150if test "$wxUSE_LOG" = "yes"; then
3151 AC_DEFINE(wxUSE_LOG)
9a98a854
VZ
3152fi
3153
3154if test "$wxUSE_LONGLONG" = "yes"; then
3155 AC_DEFINE(wxUSE_LONGLONG)
9a98a854
VZ
3156fi
3157
e8f65ba6
RR
3158if test "$wxUSE_GEOMETRY" = "yes"; then
3159 AC_DEFINE(wxUSE_GEOMETRY)
3160fi
3161
1c8515f9
KB
3162if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
3163 AC_DEFINE(wxUSE_DIALUP_MANAGER)
70f7a477 3164 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
1c8515f9
KB
3165fi
3166
9a98a854
VZ
3167if test "$wxUSE_STREAMS" = "yes" ; then
3168 AC_DEFINE(wxUSE_STREAMS)
9a98a854
VZ
3169fi
3170
afc31813
VZ
3171dnl ------------------------------------------------------------------------
3172dnl time/date functions
3173dnl ------------------------------------------------------------------------
3174
3175if test "$wxUSE_TIMEDATE" = "yes"; then
83307f33
VZ
3176 dnl check for strptime
3177 AC_CHECK_FUNCS(strptime)
3178
360d6699
VZ
3179 dnl check for timezone variable
3180 AC_CACHE_CHECK(for timezone variable in <time.h>,
3181 wx_cv_var_timezone,
3182 [
3183 AC_TRY_COMPILE(
3184 [
3185 #include <time.h>
3186 ],
3187 [
3188 int tz;
3189 tz = __timezone;
3190 ],
3191 [
3192 wx_cv_var_timezone=__timezone
3193 ],
3194 [
3195 AC_TRY_COMPILE(
3196 [
3197 #include <time.h>
3198 ],
3199 [
3200 int tz;
3201 tz = _timezone;
3202 ],
3203 [
3204 wx_cv_var_timezone=_timezone
3205 ],
5357c8e8
VZ
3206 [
3207 AC_TRY_COMPILE(
3208 [
3209 #include <time.h>
3210 ],
3211 [
3212 int tz;
3213 tz = timezone;
3214 ],
3215 [
3216 wx_cv_var_timezone=timezone
3217 ],
3218 AC_MSG_ERROR(no timezone variable)
3219 )
3220 ]
360d6699
VZ
3221 )
3222 ]
3223 )
3224 ]
3225 )
3226
3227 dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED
3228 AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone)
3229
3fcdd07b
VZ
3230 dnl check for localtime (it's POSIX, but the check can do no harm...)
3231 AC_CHECK_FUNCS(localtime)
afc31813 3232
0470b1e6
VZ
3233 if test "$ac_cv_func_localtime" = "yes"; then
3234 AC_CACHE_CHECK(for tm_gmtoff in struct tm,
3235 wx_cv_struct_tm_has_gmtoff,
3236 [
3237 AC_TRY_COMPILE(
3238 [
3239 #include <time.h>
3240 ],
3241 [
3242 struct tm tm;
3243 tm.tm_gmtoff++;
3244 ],
3245 [
f03a98d8 3246 wx_cv_struct_tm_has_gmtoff=yes
0470b1e6
VZ
3247 AC_DEFINE(WX_GMTOFF_IN_TM)
3248 ],
3249 wx_cv_struct_tm_has_gmtoff=no
3250 )
3251 ])
3fcdd07b
VZ
3252 fi
3253
3254 dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the
3255 dnl function to be used for high resolution timers
3256 AC_CHECK_FUNCS(gettimeofday ftime, break)
3257
3258 if test "$ac_cv_func_gettimeofday" = "yes"; then
afc31813
VZ
3259 AC_CACHE_CHECK([whether gettimeofday takes two arguments],
3260 wx_cv_func_gettimeofday_has_2_args,
3261 [
3262 dnl on some _really_ old systems it takes only 1 argument
3263 AC_LANG_SAVE
3264 AC_LANG_CPLUSPLUS
3265
3266 AC_TRY_COMPILE(
3267 [
3268 #include <sys/time.h>
3269 #include <unistd.h>
3270 ],
3271 [
3272 struct timeval tv;
3273 struct timezone tz;
3274 gettimeofday(&tv, &tz);
3275 ],
3276 wx_cv_func_gettimeofday_has_2_args=yes,
3277 AC_TRY_COMPILE(
3278 [
3279 #include <sys/time.h>
3280 #include <unistd.h>
3281 ],
3282 [
3283 struct timeval tv;
3284 gettimeofday(&tv);
3285 ],
3286 wx_cv_func_gettimeofday_has_2_args=no,
3287 wx_cv_func_gettimeofday_has_2_args=unknown
3288 )
3289 )
3290 AC_LANG_RESTORE
3291 ])
3292
3293 if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then
3294 AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ)
3295 fi
3296 fi
3297
3298 AC_DEFINE(wxUSE_TIMEDATE)
3299 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest"
3300fi
3301
9a98a854
VZ
3302dnl ------------------------------------------------------------------------
3303dnl wxSocket
3304dnl ------------------------------------------------------------------------
3305
b089607b
VZ
3306dnl under MSW we always have sockets
3307if test "$TOOLKIT" != "MSW"; then
3308
9a98a854 3309if test "$wxUSE_SOCKETS" = "yes"; then
afc31813
VZ
3310 dnl under Solaris, socket functions live in -lsocket
3311 AC_CHECK_FUNC(socket,,
3312 AC_CHECK_LIB(socket, socket,
3313 INET_LINK="$INET_LINK -lsocket",
3314 [
3315 AC_MSG_WARN([socket library not found - sockets will be disabled])
3316 wxUSE_SOCKETS=no
3317 ]
3318 )
3319 )
3320fi
3321
c521c494
RL
3322dnl this test may be appropriate if building under cygwin
3323dnl right now I'm assuming it also uses the winsock stuff
3324dnl like mingw does.. -- RL
b089607b 3325
afc31813 3326if test "$wxUSE_SOCKETS" = "yes" ; then
9a98a854 3327 dnl determine the type of third argument for getsockname
51a9faba
VZ
3328 AC_CACHE_CHECK([what is the type of the third argument of getsockname],
3329 wx_cv_type_getsockname3,
3330 [
3331 AC_LANG_SAVE
3332 AC_LANG_CPLUSPLUS
3333
9a98a854 3334 AC_TRY_COMPILE(
51a9faba 3335 [
4370c5b2 3336 #include <sys/types.h>
51a9faba
VZ
3337 #include <sys/socket.h>
3338 ],
3339 [
3340 socklen_t len;
3341 getsockname(0, 0, &len);
3342 ],
3343 wx_cv_type_getsockname3=socklen_t,
3344 AC_TRY_COMPILE(
3345 [
4370c5b2 3346 #include <sys/types.h>
51a9faba
VZ
3347 #include <sys/socket.h>
3348 ],
3349 [
3350 size_t len;
3351 getsockname(0, 0, &len);
3352 ],
3353 wx_cv_type_getsockname3=size_t,
3354 AC_TRY_COMPILE(
3355 [
4370c5b2 3356 #include <sys/types.h>
51a9faba
VZ
3357 #include <sys/socket.h>
3358 ],
3359 [
3360 int len;
3361 getsockname(0, 0, &len);
3362 ],
4370c5b2 3363 wx_cv_type_getsockname3=int,
51a9faba
VZ
3364 wx_cv_type_getsockname3=unknown
3365 )
3366 )
afc31813 3367 )
c63c7106 3368
51a9faba
VZ
3369 AC_LANG_RESTORE
3370 ])
3371
3372 if test "$wx_cv_type_getsockname3" = "unknown"; then
3373 wxUSE_SOCKETS=no
3374 AC_MSG_WARN([Couldn't find socklen_t synonym for this system])
3375 else
3376 AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3)
3377 fi
3378fi
3379
c521c494
RL
3380fi
3381dnl if !MSW
3382
51a9faba 3383if test "$wxUSE_SOCKETS" = "yes" ; then
afc31813 3384 AC_DEFINE(wxUSE_SOCKETS)
70f7a477 3385 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets"
afc31813 3386 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS protocol"
9a98a854
VZ
3387fi
3388
3389dnl ---------------------------------------------------------------------------
3390dnl Joystick support
3391dnl ---------------------------------------------------------------------------
3392
dc3d889d
VZ
3393if test "$wxUSE_GUI" = "yes"; then
3394
b089607b
VZ
3395dnl under MSW we always have joystick support
3396if test "$TOOLKIT" != "MSW"; then
3397
ceded8b9 3398if test "$wxUSE_JOYSTICK" = "yes"; then
9a98a854
VZ
3399 dnl joystick support is only for Linux 2.1.x or greater
3400 AC_CHECK_HEADERS(linux/joystick.h)
b089607b 3401 if test "$ac_cv_header_linux_joystick_h" != "yes"; then
ceded8b9 3402 wxUSE_JOYSTICK=no
dc3d889d 3403 AC_MSG_WARN(Joystick not supported by this system, disabled)
b089607b
VZ
3404 fi
3405fi
3406
3407fi
3408dnl if !MSW
3409
ceded8b9 3410if test "$wxUSE_JOYSTICK" = "yes"; then
9a98a854 3411 AC_DEFINE(wxUSE_JOYSTICK)
9a98a854 3412 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest"
9a98a854
VZ
3413fi
3414
dc3d889d
VZ
3415fi
3416dnl if wxUSE_GUI
3417
9a98a854
VZ
3418dnl ------------------------------------------------------------------------
3419dnl DLL support
3420dnl ------------------------------------------------------------------------
3421
b089607b
VZ
3422dnl under MSW we always have LoadLibrary/GetProcAddress
3423if test "$TOOLKIT" != "MSW"; then
3424
9a98a854
VZ
3425HAVE_DL_FUNCS=0
3426HAVE_SHL_FUNCS=0
3427if test "$wxUSE_DYNLIB_CLASS" = "yes"; then
b4085ce6
GD
3428 if test "$USE_MAC" = 1; then
3429 dnl Mac OS X needs dl_macosx.c to be compiled in to fake dlopen/dlerror
3430 HAVE_DL_FUNCS=1
3431 else
3432 dnl the test is a bit complicated because we check for dlopen() both with
3433 dnl and without -ldl and we also try to find shl_load() if there is no
3434 dnl dlopen() on this system
3435 AC_CHECK_FUNCS(dlopen,
37667812
VZ
3436 [
3437 AC_DEFINE(HAVE_DLOPEN)
3438 HAVE_DL_FUNCS=1
3439 ],
3440 [
3441 AC_CHECK_LIB(dl, dlopen,
3442 [
3443 AC_DEFINE(HAVE_DLOPEN)
3444 HAVE_DL_FUNCS=1
3445 LIBS="$LIBS -ldl"
3446 ],
3447 [
3448 AC_CHECK_FUNCS(shl_load,
3449 [
3450 AC_DEFINE(HAVE_SHL_LOAD)
3451 HAVE_SHL_FUNCS=1
f6bcfd97
BP
3452 ],
3453 [
3454 AC_CHECK_LIB(shl_load, dld,
3455 [
3456 HAVE_SHL_FUNCS=1
3457 LIBS="$LIBS -ldld"
3458 ])
37667812
VZ
3459 ])
3460 ])
3461 ])
9a98a854 3462
f6bcfd97
BP
3463 dnl check also for dlerror()
3464 if test "$HAVE_DL_FUNCS" = 1; then
3465 AC_CHECK_FUNCS(dlerror,
3466 AC_DEFINE(HAVE_DLERROR),
3467 AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)))
3468 fi
b4085ce6 3469 fi
f6bcfd97 3470
9a98a854 3471 if test "$HAVE_DL_FUNCS" = 0; then
37667812
VZ
3472 if test "$HAVE_SHL_FUNCS" = 0; then
3473 if test "$USE_UNIX" = 1; then
b12915c1 3474 AC_MSG_WARN([Missing dynamic loading support, several features will be disabled])
37667812
VZ
3475 wxUSE_DYNLIB_CLASS=no
3476 else
b12915c1 3477 AC_MSG_WARN([Assuming wxLibrary class works on this platform])
37667812 3478 fi
e90c1d2a 3479 fi
9a98a854
VZ
3480 fi
3481fi
3482
b089607b
VZ
3483fi
3484dnl if !MSW
3485
9a98a854 3486if test "$wxUSE_DYNLIB_CLASS" = "yes" ; then
b12915c1
VZ
3487 AC_DEFINE(wxUSE_DYNLIB_CLASS)
3488else
3489 wxUSE_ODBC=no
3490 wxUSE_SERIAL=no
9a98a854
VZ
3491fi
3492
3493dnl ---------------------------------------------------------------------------
ced859c3 3494dnl String stuff
9a98a854
VZ
3495dnl ---------------------------------------------------------------------------
3496
3497if test "$wxUSE_UNICODE" = "yes" ; then
3498 AC_DEFINE(wxUSE_UNICODE)
3499fi
3500
3501if test "$wxUSE_WCSRTOMBS" = "yes" ; then
3502 AC_DEFINE(wxUSE_WCSRTOMBS)
3503fi
3504
ced859c3
VZ
3505if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then
3506 AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF)
3507fi
3508
b12915c1
VZ
3509dnl ----------------------------------------------------------------
3510dnl serialization support
3511dnl ----------------------------------------------------------------
3512
3513if test "$wxUSE_SERIAL" = "yes" ; then
3514 AC_DEFINE(wxUSE_SERIAL)
3515fi
3516
9a98a854
VZ
3517dnl ----------------------------------------------------------------
3518dnl iODBC support
3519dnl ----------------------------------------------------------------
3520
3521IODBC_C_SRC=""
3522if test "$wxUSE_ODBC" = "yes" ; then
a0c79abb
VZ
3523 AC_DEFINE(wxUSE_ODBC)
3524 WXODBCFLAG="-D_IODBC_"
3525 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db"
9a98a854
VZ
3526fi
3527
3528dnl ----------------------------------------------------------------
3529dnl Register PostScript options for makefiles and setup.h
3530dnl ----------------------------------------------------------------
3531
3532if test "$wxUSE_POSTSCRIPT" = "yes" ; then
3533 AC_DEFINE(wxUSE_POSTSCRIPT)
9a98a854
VZ
3534fi
3535
3536AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT)
3537
3538AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS)
3539
3540dnl ---------------------------------------------------------------------------
3541dnl big GUI components: MDI, doc/view, printing, help, ...
3542dnl ---------------------------------------------------------------------------
3543
3544if test "$wxUSE_CONSTRAINTS" = "yes"; then
ce4169a4
RR
3545 AC_DEFINE(wxUSE_CONSTRAINTS)
3546 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout"
9a98a854
VZ
3547fi
3548
3549if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
ce4169a4
RR
3550 AC_DEFINE(wxUSE_MDI_ARCHITECTURE)
3551 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi"
9a98a854
VZ
3552fi
3553
3554if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
3555 AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE)
3556 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview"
3557 if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then
3558 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi"
3559 fi
9a98a854
VZ
3560fi
3561
3562if test "$wxUSE_HELP" = "yes"; then
ce4169a4
RR
3563 AC_DEFINE(wxUSE_HELP)
3564 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help"
9a98a854
VZ
3565fi
3566
3567if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then
ce4169a4
RR
3568 if test "$wxUSE_CONSTRAINTS" != "yes"; then
3569 AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it)
3570 else
3571 AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE)
3572 fi
3573 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing"
9a98a854
VZ
3574fi
3575
3576if test "$wxUSE_PROLOGIO" = "yes" ; then
ce4169a4 3577 AC_DEFINE(wxUSE_PROLOGIO)
9a98a854
VZ
3578fi
3579
3580if test "$wxUSE_RESOURCES" = "yes" ; then
ce4169a4
RR
3581 if test "$wxUSE_PROLOGIO" = "yes" ; then
3582 AC_DEFINE(wxUSE_RESOURCES)
3583 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource"
3584 else
3585 AC_MSG_WARN([wxWindows ressource system requires PrologIO and can't be compiled without it.])
3586 fi
9a98a854
VZ
3587fi
3588
3589if test "$wxUSE_X_RESOURCES" = "yes"; then
ce4169a4 3590 AC_DEFINE(wxUSE_X_RESOURCES)
9a98a854
VZ
3591fi
3592
3593dnl ---------------------------------------------------------------------------
77c85c2b 3594dnl IPC: IPC, Drag'n'Drop, Clipboard, ...
9a98a854
VZ
3595dnl ---------------------------------------------------------------------------
3596
3597if test "$wxUSE_IPC" = "yes"; then
eb4efbdc
VZ
3598 if test "$wxUSE_SOCKETS" != "yes"; then
3599 AC_MSG_WARN(wxWindows IPC classes require sockets, disabled)
3600 fi
3601
ce4169a4 3602 AC_DEFINE(wxUSE_IPC)
9a98a854
VZ
3603fi
3604
3605if test "$wxUSE_CLIPBOARD" = "yes"; then
ce4169a4 3606 AC_DEFINE(wxUSE_CLIPBOARD)
9a98a854
VZ
3607fi
3608
39c9d5ac 3609if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then
ce4169a4
RR
3610 if test "$wxUSE_GTK" = 1; then
3611 if test "$WXGTK12" != 1; then
fd9811b1 3612 AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2])
e90c1d2a 3613 wxUSE_DRAG_AND_DROP=no
ce4169a4 3614 fi
a9b5e89f 3615 fi
a9b5e89f 3616
ce4169a4
RR
3617 if test "$wxUSE_MOTIF" = 1; then
3618 AC_MSG_WARN([Drag and drop is not yet supported under Motif])
e90c1d2a 3619 wxUSE_DRAG_AND_DROP=no
ce4169a4 3620 fi
a9b5e89f 3621
2c6025bc
GD
3622 if test "$wxUSE_MAC" = 1; then
3623 AC_MSG_WARN([Drag and drop is not yet supported under Mac OS X])
3624 wxUSE_DRAG_AND_DROP=no
3625 fi
3626
4882bf1b
VZ
3627 if test "$USE_WIN32" = 1; then
3628 dnl check for ole headers and disable DnD if not present (earlier
3629 dnl versions of mingw32 don't have them)
c521c494 3630
4882bf1b 3631 AC_CHECK_HEADERS(ole2.h)
c521c494
RL
3632
3633 dnl for some reason this test always fails here??
3634 dnl if test "x$HAVE_OLE2_H" != x ; then
3635 dnl this one does the right thing though
3636 if test "$ac_cv_header_ole2_h" = "yes" ; then
3637 if test "$GCC" = yes ; then
b64f0a5f
RL
3638 ALL_OBJECTS="$ALL_OBJECTS \$(OLEOBJS)"
3639 ALL_DEPFILES="$ALL_DEPFILES \$(OLEDEPS)"
c521c494 3640 CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"
b64f0a5f
RL
3641 LIBS="$LIBS -lole32 -luuid"
3642
3643 dnl metafiles need the ole code, right?? if not this
3644 dnl doesn't need to be in here.
3645 if test "$wxUSE_METAFILE" = "yes"; then
3646 AC_DEFINE(wxUSE_METAFILE)
3647 dnl this one should probably be made separately configurable
3648 AC_DEFINE(wxUSE_ENH_METAFILE)
3649 fi
c521c494
RL
3650 fi
3651 else
4882bf1b
VZ
3652 AC_MSG_WARN(Drag and drop disabled because OLE headers not found)
3653 wxUSE_DRAG_AND_DROP=no
3654 fi
3655 fi
3656
ce4169a4
RR
3657 if test "$wxUSE_DRAG_AND_DROP" = "yes"; then
3658 AC_DEFINE(wxUSE_DRAG_AND_DROP)
3659 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd"
3660 fi
4882bf1b 3661
9a98a854
VZ
3662fi
3663
3664if test "$wxUSE_SPLINES" = "yes" ; then
3665 AC_DEFINE(wxUSE_SPLINES)
3666fi
3667
3668dnl ---------------------------------------------------------------------------
3669dnl GUI controls
3670dnl ---------------------------------------------------------------------------
3671
3672if test "$wxUSE_ACCEL" = "yes"; then
3673 AC_DEFINE(wxUSE_ACCEL)
9a98a854
VZ
3674fi
3675
3676if test "$wxUSE_CARET" = "yes"; then
3677 AC_DEFINE(wxUSE_CARET)
9a98a854
VZ
3678 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret"
3679fi
3680
3681if test "$wxUSE_COMBOBOX" = "yes"; then
3682 AC_DEFINE(wxUSE_COMBOBOX)
9a98a854
VZ
3683fi
3684
ce4169a4
RR
3685if test "$wxUSE_CHOICE" = "yes"; then
3686 AC_DEFINE(wxUSE_CHOICE)
3687fi
3688
9a98a854
VZ
3689if test "$wxUSE_BMPBUTTON" = "yes"; then
3690 AC_DEFINE(wxUSE_BMPBUTTON)
9a98a854
VZ
3691fi
3692
3693if test "$wxUSE_CHECKBOX" = "yes"; then
3694 AC_DEFINE(wxUSE_CHECKBOX)
9a98a854
VZ
3695fi
3696
3697if test "$wxUSE_CHECKLST" = "yes"; then
3698 AC_DEFINE(wxUSE_CHECKLISTBOX)
9a98a854
VZ
3699 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst"
3700fi
3701
3702if test "$wxUSE_GAUGE" = "yes"; then
3703 AC_DEFINE(wxUSE_GAUGE)
9a98a854
VZ
3704fi
3705
f85afd4e 3706if test "$wxUSE_NEW_GRID" = "yes"; then
d6a55c4b 3707 wxUSE_GRID="yes"
f85afd4e
MB
3708 AC_DEFINE(wxUSE_NEW_GRID)
3709 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS newgrid"
3710fi
3711
d6a55c4b
VZ
3712if test "$wxUSE_GRID" = "yes"; then
3713 AC_DEFINE(wxUSE_GRID)
3714 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid"
3715fi
3716
9a98a854 3717if test "$wxUSE_IMAGLIST" = "yes"; then
ce4169a4 3718 AC_DEFINE(wxUSE_IMAGLIST)
9a98a854
VZ
3719fi
3720
3721if test "$wxUSE_LISTBOX" = "yes"; then
ce4169a4 3722 AC_DEFINE(wxUSE_LISTBOX)
9a98a854
VZ
3723fi
3724
3725if test "$wxUSE_LISTCTRL" = "yes"; then
ce4169a4
RR
3726 if test "$wxUSE_IMAGLIST" = "yes"; then
3727 AC_DEFINE(wxUSE_LISTCTRL)
3728 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl"
3729 else
3730 AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it])
3731 fi
9a98a854
VZ
3732fi
3733
3734if test "$wxUSE_NOTEBOOK" = "yes"; then
ce4169a4
RR
3735 AC_DEFINE(wxUSE_NOTEBOOK)
3736 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook"
9a98a854
VZ
3737fi
3738
3739if test "$wxUSE_RADIOBOX" = "yes"; then
ce4169a4 3740 AC_DEFINE(wxUSE_RADIOBOX)
9a98a854
VZ
3741fi
3742
3743if test "$wxUSE_RADIOBTN" = "yes"; then
ce4169a4 3744 AC_DEFINE(wxUSE_RADIOBTN)
9a98a854
VZ
3745fi
3746
79b00c62 3747if test "$wxUSE_SASH" = "yes"; then
ce4169a4
RR
3748 AC_DEFINE(wxUSE_SASH)
3749 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest"
9a98a854
VZ
3750fi
3751
3752if test "$wxUSE_SCROLLBAR" = "yes"; then
ce4169a4 3753 AC_DEFINE(wxUSE_SCROLLBAR)
678b92a9 3754 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub"
9a98a854
VZ
3755fi
3756
3757if test "$wxUSE_SLIDER" = "yes"; then
ce4169a4 3758 AC_DEFINE(wxUSE_SLIDER)
9a98a854
VZ
3759fi
3760
3761if test "$wxUSE_SPINBTN" = "yes"; then
ce4169a4 3762 AC_DEFINE(wxUSE_SPINBTN)
9a98a854
VZ
3763fi
3764
66f38406
RR
3765if test "$wxUSE_SPINCTRL" = "yes"; then
3766 AC_DEFINE(wxUSE_SPINCTRL)
3767fi
3768
9a98a854 3769if test "$wxUSE_SPLITTER" = "yes"; then
ce4169a4
RR
3770 AC_DEFINE(wxUSE_SPLITTER)
3771 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter"
9a98a854
VZ
3772fi
3773
3774if test "$wxUSE_STATBMP" = "yes"; then
ce4169a4 3775 AC_DEFINE(wxUSE_STATBMP)
9a98a854
VZ
3776fi
3777
3778if test "$wxUSE_STATBOX" = "yes"; then
ce4169a4 3779 AC_DEFINE(wxUSE_STATBOX)
9a98a854
VZ
3780fi
3781
3782if test "$wxUSE_STATLINE" = "yes"; then
f53561f1
RR
3783 if test "$wxUSE_WINE" = 1 ; then
3784 AC_MSG_WARN([wxStaticLine is not supported under WINE])
3785 else
e90c1d2a 3786 AC_DEFINE(wxUSE_STATLINE)
f53561f1 3787 fi
9a98a854
VZ
3788fi
3789
3790if test "$wxUSE_STATUSBAR" = "yes"; then
ce4169a4 3791 AC_DEFINE(wxUSE_STATUSBAR)
2286341c
VZ
3792
3793 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar"
9a98a854
VZ
3794fi
3795
3796if test "$wxUSE_TABDIALOG" = "yes"; then
ce4169a4
RR
3797 AC_DEFINE(wxUSE_TAB_DIALOG)
3798 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab"
9a98a854
VZ
3799fi
3800
1db8dc4a
VZ
3801if test "$wxUSE_TOGGLEBTN" = "yes"; then
3802 AC_DEFINE(wxUSE_TOGGLEBTN)
3803fi
3804
360d6699
VZ
3805if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then
3806 AC_DEFINE(wxUSE_TOOLBAR_SIMPLE)
3807 wxUSE_TOOLBAR="yes"
3808fi
3809
9a98a854 3810if test "$wxUSE_TOOLBAR" = "yes"; then
ce4169a4 3811 AC_DEFINE(wxUSE_TOOLBAR)
360d6699
VZ
3812
3813 dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE
3814 if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then
3815 wxUSE_TOOLBAR_NATIVE="yes"
3816 fi
3817
ce4169a4 3818 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar"
9a98a854
VZ
3819fi
3820
360d6699
VZ
3821if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then
3822 AC_DEFINE(wxUSE_TOOLBAR_NATIVE)
3823fi
3824
39c9d5ac 3825if test "$wxUSE_TOOLTIPS" = "yes"; then
ced859c3 3826 if test "$wxUSE_MOTIF" = 1; then
bea74fbb 3827 AC_MSG_WARN(wxTooltip not supported yet under Motif)
9a98a854 3828 else
ce4169a4 3829 if test "$wxUSE_WINE" = 1; then
bea74fbb 3830 AC_MSG_WARN(wxTooltip not supported under WINE)
ce4169a4
RR
3831 else
3832 AC_DEFINE(wxUSE_TOOLTIPS)
3833 fi
9a98a854
VZ
3834 fi
3835fi
3836
3837if test "$wxUSE_TREECTRL" = "yes"; then
ce4169a4
RR
3838 if test "$wxUSE_IMAGLIST" = "yes"; then
3839 AC_DEFINE(wxUSE_TREECTRL)
3840 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl"
3841 else
3842 AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it])
3843 fi
9a98a854
VZ
3844fi
3845
3846dnl ---------------------------------------------------------------------------
3847dnl misc options
3848dnl ---------------------------------------------------------------------------
3849
ff684c98
VZ
3850dnl TODO this is unused for now...
3851dnl if test "$wxUSE_WXTREE" = "yes"; then
3852dnl AC_DEFINE(wxUSE_WXTREE)
3853dnl fi
9a98a854 3854
ce4169a4
RR
3855if test "$wxUSE_DIRDLG" = "yes"; then
3856 if test "$wxUSE_CONSTRAINTS" != "yes"; then
3857 AC_MSG_WARN(wxDirDialog requires constraints so it won't be compiled without them)
9a98a854 3858 else
ce4169a4
RR
3859 if test "$wxUSE_TREECTRL" != "yes"; then
3860 AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it)
3861 else
3862 AC_DEFINE(wxUSE_DIRDLG)
3863 fi
9a98a854 3864 fi
ce4169a4 3865fi
9a98a854 3866
c11584af
RR
3867if test "$wxUSE_TEXTDLG" = "yes"; then
3868 AC_DEFINE(wxUSE_TEXTDLG)
3869fi
3870
a641505f
VZ
3871if test "$wxUSE_STARTUP_TIPS" = "yes"; then
3872 if test "$wxUSE_CONSTRAINTS" != "yes"; then
3873 AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them)
3874 else
3875 AC_DEFINE(wxUSE_STARTUP_TIPS)
3876 fi
3877fi
3878
ce4169a4
RR
3879if test "$wxUSE_PROGRESSDLG" = "yes"; then
3880 if test "$wxUSE_CONSTRAINTS" != "yes"; then
3881 AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them)
3882 else
3883 AC_DEFINE(wxUSE_PROGRESSDLG)
3884 fi
9a98a854
VZ
3885fi
3886
3887if test "$wxUSE_MINIFRAME" = "yes"; then
ce4169a4
RR
3888 AC_DEFINE(wxUSE_MINIFRAME)
3889 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram"
9a98a854
VZ
3890fi
3891
5526e819
VS
3892if test "$wxUSE_HTML" = "yes"; then
3893 AC_DEFINE(wxUSE_HTML)
3894 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html"
77133f2d 3895 INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS html"
5526e819
VS
3896fi
3897
9a98a854 3898if test "$wxUSE_VALIDATORS" = "yes"; then
ce4169a4
RR
3899 AC_DEFINE(wxUSE_VALIDATORS)
3900 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
9a98a854
VZ
3901fi
3902
0046ff7c
VS
3903if test "$wxUSE_IMAGE" = "yes" ; then
3904 AC_DEFINE(wxUSE_IMAGE)
3905fi
3906
0940bcf7
HH
3907if test "$wxUSE_GIF" = "yes" ; then
3908 AC_DEFINE(wxUSE_GIF)
3909fi
3910
3911if test "$wxUSE_PCX" = "yes" ; then
3912 AC_DEFINE(wxUSE_PCX)
3913fi
3914
3915if test "$wxUSE_PNM" = "yes" ; then
3916 AC_DEFINE(wxUSE_PNM)
3917fi
3918
0046ff7c
VS
3919if test "$wxUSE_XPM" = "yes" ; then
3920 AC_DEFINE(wxUSE_XPM)
3921fi
3922
bdc72a22
VZ
3923dnl ---------------------------------------------------------------------------
3924dnl get the string with OS info - used by wxGetOsDescription()
3925dnl ---------------------------------------------------------------------------
3926
32832908
VZ
3927if test "$cross_compiling" = "yes"; then
3928 dnl Use best guess from host as we can't use uname when cross compiling
3929 OSINFO="\"$host\""
3930else
3931 dnl attualy work out OS version
3932 OSINFO=`uname -s -r -m`
3933 OSINFO="\"$OSINFO\""
3934fi
3935
bdc72a22
VZ
3936AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO)
3937
9a98a854
VZ
3938dnl ---------------------------------------------------------------------------
3939dnl Output the makefiles and such from the results found above
3940dnl ---------------------------------------------------------------------------
3941
f6bcfd97
BP
3942GUILIBS="$GUI_TK_LIBRARY $TOOLKIT_LINK"
3943OPENGL_LIBS="$OPENGL_LINK"
9a98a854
VZ
3944
3945dnl all additional libraries (except wxWindows itself) we link with
8916026b 3946dnl
b4085ce6
GD
3947dnl note that we always link with -lm except for Mac OS X
3948dnl extended.c uses floor() and is always linked in
ea5999b9 3949EXTRA_LIBS="$LIBS $POSIX4_LINK $INET_LINK $WCHAR_LINK $THREADS_LINK $DMALLOC_LINK $DL_LINK $ZLIB_LINK -lm"
b4085ce6 3950if test "$USE_MAC" = 1 ; then
ea5999b9 3951 EXTRA_LIBS="$EXTRA_LIBS -framework Carbon -framework System"
b4085ce6 3952fi
e90c1d2a 3953if test "$wxUSE_GUI" = "yes"; then
3fed1840 3954 EXTRA_LIBS="$GUILIBS $PNG_LINK $JPEG_LINK $TIFF_LINK $FREETYPE_LINK $EXTRA_LIBS"
e90c1d2a 3955fi
9a98a854 3956
8e877c19
RR
3957dnl all the libraries needed to link wxWindows programs when using the
3958dnl makefile system without libtool
3959LD_LIBS="\${top_builddir}/lib/${WX_LIBRARY_NAME_STATIC} $EXTRA_LIBS"
3960
9a98a854 3961dnl all -I options we must pass to the compiler
3fed1840 3962INCLUDES="-I. -I\${top_builddir}/include -I\${top_srcdir}/include $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TIFF_INCLUDE $FREETYPE_INCLUDE $TOOLKIT_INCLUDE"
9a98a854 3963
f6bcfd97
BP
3964dnl wxGTK does not need TOOLKIT includes in wx-config
3965if test "$wxUSE_GTK" = 1; then
3966 WXCONFIG_INCLUDE=""
3967else
3968 WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE"
3969fi
3970
9a98a854 3971dnl C/C++ compiler options used to compile wxWindows
bea74fbb 3972if test "$GXX" = yes ; then
ce4169a4
RR
3973 dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
3974 CXXWARNINGS="-Wall"
d6a55c4b 3975 dnl should enable this one day...
ce4169a4 3976 dnl CXXWARNINGS="-Wall -Werror"
9a98a854 3977fi
e115e771 3978EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE $INCLUDES"
9a98a854 3979
f6bcfd97 3980CFLAGS=`echo $CFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
ee31c269 3981CXXFLAGS=`echo $CXXFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
9a98a854 3982
e694c22c
VZ
3983LDFLAGS="$LDFLAGS $PROFILE"
3984
9a98a854 3985if test "$wxUSE_GUI" = "yes"; then
ce4169a4
RR
3986 dnl TODO add checks that these samples will really compile (i.e. all the
3987 dnl library features they need are present)
9a98a854 3988
ce4169a4 3989 dnl TODO some samples are never built so far:
70f7a477 3990 dnl ipc, mfc, nativdlg, oleauto, ownerdrw, proplist
6164f93c
VZ
3991 SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS controls dialogs dragimag \
3992 drawing dynamic event font fractal image menu \
3993 minimal richedit"
b12915c1
VZ
3994
3995 dnl this is needed to be able to find AFM files
19a9df09 3996 CPPFLAGS="$CPPFLAGS \$(EXTRADEFS) \$(APPEXTRADEFS)"
e90c1d2a
VZ
3997else
3998 SAMPLES_SUBDIRS=""
9a98a854
VZ
3999fi
4000
70d1b3cf
VZ
4001dnl for convenience, sort the samples in alphabetical order
4002dnl
4003dnl FIXME For some mysterious reasons, sometimes the directories are duplicated
4004dnl in this list - hence uniq. But normally, this shouldn't be needed!
d6a55c4b
VZ
4005dnl
4006dnl Unfortunately, there is a bug in OS/2's tr, such that
d51e8205
SN
4007dnl tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' '
4008dnl only removes the Unix-like part of the introduced line break.
4009SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`"
4010
4011dnl makefile variables
4012AC_SUBST(LEX_STEM)
4013AC_SUBST(PATH_IFS)
70d1b3cf 4014
9a98a854
VZ
4015dnl global options
4016AC_SUBST(WX_MAJOR_VERSION_NUMBER)
4017AC_SUBST(WX_MINOR_VERSION_NUMBER)
4018AC_SUBST(WX_RELEASE_NUMBER)
70d1b3cf 4019AC_SUBST(WX_LIBRARY_NAME)
48b1d0ff
RR
4020AC_SUBST(WX_LIBRARY_NAME_STATIC)
4021AC_SUBST(WX_LIBRARY_NAME_SHARED)
2b6f061f 4022AC_SUBST(WX_LIBRARY)
48b1d0ff
RR
4023AC_SUBST(WX_TARGET_LIBRARY)
4024AC_SUBST(WX_LIBRARY_LINK1)
4025AC_SUBST(WX_LIBRARY_LINK2)
4026AC_SUBST(WX_LIBRARY_LINK3)
80d895cd 4027AC_SUBST(PROGRAM_EXT)
48b1d0ff 4028
bdad4e7e
RR
4029dnl global gl options
4030AC_SUBST(WX_LIBRARY_NAME_GL)
4031AC_SUBST(WX_LIBRARY_NAME_STATIC_GL)
4032AC_SUBST(WX_LIBRARY_NAME_SHARED_GL)
4033AC_SUBST(WX_LIBRARY_GL)
4034AC_SUBST(WX_TARGET_LIBRARY_GL)
4035AC_SUBST(WX_LIBRARY_LINK1_GL)
4036AC_SUBST(WX_LIBRARY_LINK2_GL)
4037AC_SUBST(WX_LIBRARY_LINK3_GL)
4038
48b1d0ff 4039dnl are we supposed to create the links?
de87c353
RR
4040AC_SUBST(WX_ALL)
4041AC_SUBST(WX_ALL_INSTALLED)
9a98a854 4042
48b1d0ff
RR
4043AC_SUBST(SHARED_LD)
4044AC_SUBST(PIC_FLAG)
5586805b 4045AC_SUBST(DEP_INFO_FLAGS)
caa2c79b 4046AC_SUBST(CODE_GEN_FLAGS)
0f3f1cbc 4047AC_SUBST(CODE_GEN_FLAGS_CXX)
1d62a8b4 4048AC_SUBST(BURNT_LIBRARY_NAME)
bdad4e7e 4049AC_SUBST(BURNT_LIBRARY_NAME_GL)
f6bcfd97 4050AC_SUBST(WX_TARGET_LIBRARY_SONAME)
3711412e 4051AC_SUBST(WX_TARGET_LIBRARY_TYPE)
48b1d0ff 4052
9a98a854
VZ
4053dnl debugging options
4054AC_SUBST(WXDEBUG_DEFINE)
4055
4056dnl toolkit options
dad6c0ea
VZ
4057AC_SUBST(USE_GUI)
4058AC_SUBST(AFMINSTALL)
9a98a854
VZ
4059AC_SUBST(TOOLKIT)
4060AC_SUBST(TOOLKIT_DEF)
4061AC_SUBST(TOOLKIT_DIR)
f6bcfd97 4062AC_SUBST(TOOLKIT_NAME)
9a98a854 4063AC_SUBST(TOOLKIT_INCLUDE)
f6bcfd97 4064AC_SUBST(WXCONFIG_INCLUDE)
9a98a854 4065
073478b3 4066dnl what to compile
e90c1d2a
VZ
4067AC_SUBST(ALL_OBJECTS)
4068AC_SUBST(ALL_DEPFILES)
2224580a
VZ
4069
4070dnl distribution vars
a4aad961 4071AC_SUBST(GUIDIST)
2224580a
VZ
4072AC_SUBST(PORT_FILES)
4073AC_SUBST(DISTDIR)
4074AC_SUBST(RPM_SPEC)
4075AC_SUBST(RPM_FILES)
073478b3 4076
9a98a854 4077dnl additional subdirectories where we will build
bcd2b961 4078AC_SUBST(SRC_SUBDIRS)
ff684c98 4079AC_SUBST(INCLUDE_SUBDIRS)
9a98a854
VZ
4080AC_SUBST(UTILS_SUBDIRS)
4081AC_SUBST(DOCS_SUBDIRS)
4082AC_SUBST(SAMPLES_SUBDIRS)
4083AC_SUBST(USER_SUBDIRS)
4084
e694c22c
VZ
4085dnl additional libraries and linker settings
4086AC_SUBST(LDFLAGS)
9a98a854 4087AC_SUBST(EXTRA_LIBS)
f6bcfd97 4088AC_SUBST(OPENGL_LIBS)
b12915c1 4089AC_SUBST(EXTRADEFS)
9a98a854 4090AC_SUBST(LIBS)
8e877c19 4091AC_SUBST(LD_LIBS)
9a98a854 4092
32832908
VZ
4093dnl additional resurces settings
4094AC_SUBST(RCINPUTSWITCH)
4095AC_SUBST(RCOUTPUTSWITCH)
4096AC_SUBST(RESPROGRAM)
4097AC_SUBST(RESCOMP)
4098AC_SUBST(RESFLAGS)
4099
4100dnl These seam to be missing
4101AC_SUBST(DLLTOOL)
4102AC_SUBST(AS)
4103AC_SUBST(NM)
4104AC_SUBST(LD)
4105AC_SUBST(MAKEINFO)
4106
4107
9a98a854
VZ
4108dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE
4109dnl itself (this is macro is required if SUBDIRS variable is used in Makefile.am
4110dnl - and we do use it)
4111AC_PROG_MAKE_SET
4112
00cf1208
RR
4113dnl move setup.h back if available
4114if test -d include; then
4115 if test -d include/wx; then
4116 if test -d include/wx/${TOOLKIT_DIR}; then
4117 if test -f include/wx/${TOOLKIT_DIR}/setup.h; then
4118 mv -f include/wx/${TOOLKIT_DIR}/setup.h setup.h
4119 fi
4120 fi
4121 fi
4122fi
4123
2aa88730
RR
4124AC_CONFIG_HEADER(setup.h:setup.h.in)
4125
2224580a
VZ
4126dnl some more GUI only things
4127if test "$wxUSE_GUI" = "yes"; then
e8482f24 4128 dnl we need to pass SAMPLES_SUBDIRS (and some other) to the configure in
ec90f5e5
VZ
4129 dnl samples and the only way to do it is, again, use the cache
4130 wx_cv_path_samplesubdirs=$SAMPLES_SUBDIRS
e8482f24
GL
4131 wx_cv_path_ifs=$PATH_IFS
4132 wx_cv_program_ext=$PROGRAM_EXT
4133 wx_cv_target_library=$WX_TARGET_LIBRARY
3711412e 4134 wx_cv_target_libtype=$WX_TARGET_LIBRARY_TYPE
e8482f24 4135 AC_CONFIG_SUBDIRS(demos samples utils contrib)
d39356d5 4136fi
2224580a 4137dnl from wxUSE_GUI
2aa88730 4138
9a98a854
VZ
4139dnl create each of the files in the space separated list from the file.in
4140dnl (the original file name may be overriden by appending another name after a
4141dnl colon)
4142AC_OUTPUT([
ff684c98 4143 wx-config
e90c1d2a
VZ
4144 src/make.env
4145 src/makeprog.env
4146 src/makelib.env
bcd2b961 4147 Makefile
9a98a854 4148 ],
a2cddd63
VZ
4149 [
4150 chmod +x wx-config
f6bcfd97
BP
4151 mv wx-config wx${TOOLKIT_NAME}-config
4152 ${LN_S} wx${TOOLKIT_NAME}-config wx-config
00cf1208 4153
f6bcfd97
BP
4154 dnl the debian build process wants setup.h in the lib subdir so we
4155 dnl can pretend wxWin is already installed, so we *copy* it there
f3c067d2 4156
00cf1208
RR
4157 if test ! -d lib; then
4158 mkdir lib
4159 fi
4160 if test ! -d lib/wx; then
4161 mkdir lib/wx
4162 fi
4163 if test ! -d lib/wx/include; then
4164 mkdir lib/wx/include
4165 fi
4166 if test ! -d lib/wx/include/wx; then
4167 mkdir lib/wx/include/wx
4168 fi
f6bcfd97
BP
4169 if test ! -d lib/wx/include/wx/${TOOLKIT_NAME}; then
4170 mkdir lib/wx/include/wx/${TOOLKIT_NAME}
00cf1208
RR
4171 fi
4172 if test -f setup.h; then
066b00aa 4173 cp -fp setup.h lib/wx/include/wx/${TOOLKIT_NAME}/setup.h
00cf1208 4174 fi
07eb77a6 4175
00cf1208 4176 dnl *move* setup.h to its final place
07eb77a6 4177
e90c1d2a
VZ
4178 if test ! -d include; then
4179 mkdir include
4180 fi
4181 if test ! -d include/wx; then
4182 mkdir include/wx
4183 fi
4184 if test ! -d include/wx/${TOOLKIT_DIR}; then
4185 mkdir include/wx/${TOOLKIT_DIR}
4186 fi
afc31813 4187 if test -f setup.h; then
066b00aa 4188 cp -fp setup.h include/wx/${TOOLKIT_DIR}/setup.h
afc31813 4189 fi
00cf1208 4190
a2cddd63
VZ
4191 ],
4192 [
c7114f59 4193 TOOLKIT_DIR="${TOOLKIT_DIR}"
f6bcfd97 4194 TOOLKIT_NAME="${TOOLKIT_NAME}"
07eb77a6 4195 LN_S="${LN_S}"
a2cddd63
VZ
4196 ]
4197 )
9a98a854 4198