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