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