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