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