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