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