]>
Commit | Line | Data |
---|---|---|
9a98a854 VZ |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_REVISION($Id$)dnl | |
3 | ||
44309ea1 | 4 | AC_PREREQ(2.58) |
e6cc62c6 | 5 | |
9a98a854 VZ |
6 | dnl --------------------------------------------------------------------------- |
7 | dnl | |
77ffb593 | 8 | dnl Top-level configure.in for wxWidgets by Robert Roebling, Phil Blecker, |
3a922bb4 | 9 | dnl Vadim Zeitlin and Ron Lee |
9a98a854 | 10 | dnl |
77ffb593 | 11 | dnl This script is under the wxWidgets licence. |
9a98a854 VZ |
12 | dnl |
13 | dnl Version: $Id$ | |
bcd2b961 | 14 | dnl --------------------------------------------------------------------------- |
9a98a854 VZ |
15 | |
16 | dnl --------------------------------------------------------------------------- | |
17 | dnl initialization | |
18 | dnl --------------------------------------------------------------------------- | |
19 | ||
8c9f8f91 | 20 | AC_INIT([wxWidgets], [2.5.5], [wx-dev@lists.wxwidgets.org]) |
e6cc62c6 VS |
21 | |
22 | dnl the file passed to AC_CONFIG_SRCDIR should be specific to our package | |
23 | AC_CONFIG_SRCDIR([wx-config.in]) | |
9a98a854 | 24 | |
e59890c3 | 25 | dnl sets build, host, target variables and the same with _alias |
e6cc62c6 VS |
26 | AC_CANONICAL_BUILD |
27 | AC_CANONICAL_HOST | |
28 | AC_CANONICAL_TARGET | |
29 | ||
7c66a493 VZ |
30 | |
31 | dnl When making releases do: | |
32 | dnl | |
ceec2216 | 33 | dnl wx_release_number += 1 |
2b6f061f | 34 | dnl |
ceec2216 | 35 | dnl ..and update WX_CURRENT, WX_REVISION and WX_AGE according to the |
6426998c | 36 | dnl following rules: |
2b6f061f | 37 | dnl |
6426998c RL |
38 | dnl If any changes have been made to the public interface, that is if any |
39 | dnl exported class, method, global or global type has been added, removed | |
40 | dnl or changed in any way, then do: WX_CURRENT += 1 | |
41 | dnl | |
42 | dnl If source changes have been made that *do not* alter the public | |
43 | dnl interface then do: WX_REVISION += 1 | |
44 | dnl If WX_CURRENT was incremented (as above) instead do: WX_REVISION = 0 | |
45 | dnl | |
46 | dnl If any public interface was added, do: WX_AGE += 1 | |
47 | dnl If any public interface was removed (or altered in a way effectively | |
48 | dnl removing the previous definition), instead do: WX_AGE = 0 | |
49 | dnl | |
50 | dnl When the major or minor version numbers are incremented, all the above | |
51 | dnl variables should be reset to 0. | |
52 | dnl | |
53 | dnl The resulting library name will be of the form: | |
54 | dnl libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE) | |
9a98a854 | 55 | |
ceec2216 RL |
56 | wx_major_version_number=2 |
57 | wx_minor_version_number=5 | |
8c9f8f91 JS |
58 | wx_release_number=5 |
59 | wx_subrelease_number=0 | |
9a98a854 | 60 | |
ceec2216 RL |
61 | WX_RELEASE=$wx_major_version_number.$wx_minor_version_number |
62 | WX_VERSION=$WX_RELEASE.$wx_release_number | |
63 | WX_SUBVERSION=$WX_VERSION.$wx_subrelease_number | |
6426998c | 64 | |
ceec2216 | 65 | WX_MSW_VERSION=$wx_major_version_number$wx_minor_version_number$wx_release_number |
978f1259 | 66 | |
8c9f8f91 | 67 | WX_CURRENT=5 |
6426998c | 68 | WX_REVISION=0 |
8c9f8f91 | 69 | WX_AGE=5 |
6426998c | 70 | |
9a98a854 VZ |
71 | |
72 | dnl ------------------------------------------------------------------------ | |
73 | dnl Check platform (host system) | |
74 | dnl ------------------------------------------------------------------------ | |
75 | ||
4a8900f2 | 76 | dnl OS (assume Unix) |
9a98a854 | 77 | USE_UNIX=1 |
5cc55caf | 78 | USE_OS2=0 |
4882bf1b | 79 | USE_WIN32=0 |
f9bc1684 | 80 | USE_DOS=0 |
b12915c1 | 81 | USE_BEOS=0 |
1216f52d | 82 | USE_MAC=0 |
b12915c1 | 83 | |
4a8900f2 | 84 | dnl Unix kind |
9a98a854 | 85 | USE_AIX= |
32b38f99 VZ |
86 | USE_BSD= dnl any BSD |
87 | USE_DARWIN= dnl a.k.a. Mac OS X | |
9a98a854 | 88 | USE_FREEBSD= |
32b38f99 | 89 | USE_GNU= dnl GNU/Hurd |
4a8900f2 VZ |
90 | USE_HPUX= |
91 | USE_LINUX= | |
f6bcfd97 | 92 | USE_NETBSD= |
4a8900f2 | 93 | USE_OPENBSD= |
32b38f99 | 94 | USE_OSF= dnl OSF/1 (obsolete?) |
4a8900f2 | 95 | USE_SGI= |
32b38f99 VZ |
96 | USE_SOLARIS= dnl Solaris ("SunOS" >= 5) |
97 | USE_SUN= dnl SunOS or Solaris | |
98 | USE_SUNOS= dnl old/real SunOS (obsolete) | |
99 | USE_SVR4= dnl SysV R4 | |
100 | USE_SYSV= dnl any System V | |
9a98a854 VZ |
101 | USE_VMS= |
102 | USE_ULTRIX= | |
4a8900f2 VZ |
103 | USE_UNIXWARE= |
104 | ||
105 | dnl hardware platform | |
106 | USE_ALPHA= | |
9a98a854 | 107 | |
ab9b9eab VZ |
108 | dnl on some platforms xxx_r() functions are declared inside "#ifdef |
109 | dnl _REENTRANT" and it's easier to just define this symbol for these platforms | |
110 | dnl than checking it during run-time | |
111 | NEEDS_D_REENTRANT_FOR_R_FUNCS=0 | |
112 | ||
ced859c3 | 113 | dnl the list of all available toolkits |
1e6feb95 VZ |
114 | dnl |
115 | dnl update NUM_TOOLKITS calculation below when adding a new toolkit here! | |
ac0c4cc3 | 116 | ALL_TOOLKITS="COCOA GTK MAC MGL MICROWIN MOTIF MSW PM X11" |
ced859c3 | 117 | |
9a98a854 VZ |
118 | dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones |
119 | dnl which are either yes or no | |
ac0c4cc3 | 120 | DEFAULT_wxUSE_COCOA=0 |
9a98a854 | 121 | DEFAULT_wxUSE_GTK=0 |
1e6feb95 VZ |
122 | DEFAULT_wxUSE_MAC=0 |
123 | DEFAULT_wxUSE_MGL=0 | |
1725144d | 124 | DEFAULT_wxUSE_MICROWIN=0 |
9a98a854 VZ |
125 | DEFAULT_wxUSE_MOTIF=0 |
126 | DEFAULT_wxUSE_MSW=0 | |
e07802fc | 127 | DEFAULT_wxUSE_PM=0 |
7f5c07ab | 128 | DEFAULT_wxUSE_X11=0 |
9a98a854 | 129 | |
143121c5 VZ |
130 | dnl these are the values which are really default for the given platform - |
131 | dnl they're not cached and are only used if no --with-toolkit was given *and* | |
132 | dnl nothing was found in the cache | |
ac0c4cc3 | 133 | DEFAULT_DEFAULT_wxUSE_COCOA=0 |
143121c5 | 134 | DEFAULT_DEFAULT_wxUSE_GTK=0 |
1e6feb95 VZ |
135 | DEFAULT_DEFAULT_wxUSE_MAC=0 |
136 | DEFAULT_DEFAULT_wxUSE_MGL=0 | |
1725144d | 137 | DEFAULT_DEFAULT_wxUSE_MICROWIN=0 |
143121c5 VZ |
138 | DEFAULT_DEFAULT_wxUSE_MOTIF=0 |
139 | DEFAULT_DEFAULT_wxUSE_MSW=0 | |
e07802fc | 140 | DEFAULT_DEFAULT_wxUSE_PM=0 |
7f5c07ab | 141 | DEFAULT_DEFAULT_wxUSE_X11=0 |
143121c5 | 142 | |
d6a55c4b | 143 | PROGRAM_EXT= |
3a922bb4 | 144 | SO_SUFFIX=so |
fe0895cf | 145 | SAMPLES_RPATH_FLAG= |
ef0add05 | 146 | SAMPLES_RPATH_POSTLINK= |
d6a55c4b | 147 | |
b12915c1 VZ |
148 | dnl to support a new system, you need to add its canonical name (as determined |
149 | dnl by config.sub or specified by the configure command line) to this "case" | |
150 | dnl and also define the shared library flags below - search for | |
151 | dnl SHARED_LIB_SETUP to find the exact place | |
9a98a854 VZ |
152 | case "${host}" in |
153 | *-hp-hpux* ) | |
154 | USE_HPUX=1 | |
143121c5 | 155 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
ab9b9eab | 156 | NEEDS_D_REENTRANT_FOR_R_FUNCS=1 |
3a922bb4 | 157 | SO_SUFFIX=sl |
9a98a854 VZ |
158 | AC_DEFINE(__HPUX__) |
159 | ;; | |
160 | *-*-linux* ) | |
161 | USE_LINUX=1 | |
162 | AC_DEFINE(__LINUX__) | |
163 | TMP=`uname -m` | |
164 | if test "x$TMP" = "xalpha"; then | |
165 | USE_ALPHA=1 | |
166 | AC_DEFINE(__ALPHA__) | |
167 | fi | |
143121c5 | 168 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
9a98a854 | 169 | ;; |
e1293dcf | 170 | *-*-gnu* | *-*-k*bsd*-gnu ) |
32b38f99 | 171 | USE_GNU=1 |
32b38f99 VZ |
172 | TMP=`uname -m` |
173 | if test "x$TMP" = "xalpha"; then | |
174 | USE_ALPHA=1 | |
175 | AC_DEFINE(__ALPHA__) | |
176 | fi | |
177 | DEFAULT_DEFAULT_wxUSE_GTK=1 | |
178 | ;; | |
9a98a854 VZ |
179 | *-*-irix5* | *-*-irix6* ) |
180 | USE_SGI=1 | |
181 | USE_SVR4=1 | |
182 | AC_DEFINE(__SGI__) | |
183 | AC_DEFINE(__SVR4__) | |
143121c5 | 184 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
185 | ;; |
186 | *-*-solaris2* ) | |
187 | USE_SUN=1 | |
188 | USE_SOLARIS=1 | |
189 | USE_SVR4=1 | |
190 | AC_DEFINE(__SUN__) | |
191 | AC_DEFINE(__SOLARIS__) | |
192 | AC_DEFINE(__SVR4__) | |
143121c5 | 193 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
ab9b9eab | 194 | NEEDS_D_REENTRANT_FOR_R_FUNCS=1 |
9a98a854 VZ |
195 | ;; |
196 | *-*-sunos4* ) | |
197 | USE_SUN=1 | |
198 | USE_SUNOS=1 | |
199 | USE_BSD=1 | |
200 | AC_DEFINE(__SUN__) | |
201 | AC_DEFINE(__SUNOS__) | |
202 | AC_DEFINE(__BSD__) | |
143121c5 | 203 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 | 204 | ;; |
f6bcfd97 | 205 | *-*-freebsd*) |
9a98a854 VZ |
206 | USE_BSD=1 |
207 | USE_FREEBSD=1 | |
208 | AC_DEFINE(__FREEBSD__) | |
209 | AC_DEFINE(__BSD__) | |
143121c5 | 210 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
9a98a854 | 211 | ;; |
1cf8c0a9 VZ |
212 | *-*-openbsd*) |
213 | USE_BSD=1 | |
214 | USE_OPENBSD=1 | |
1cf8c0a9 | 215 | AC_DEFINE(__OPENBSD__) |
2b5f62a0 | 216 | AC_DEFINE(__BSD__) |
1cf8c0a9 VZ |
217 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
218 | ;; | |
f6bcfd97 BP |
219 | *-*-netbsd*) |
220 | USE_BSD=1 | |
221 | USE_NETBSD=1 | |
f6bcfd97 | 222 | AC_DEFINE(__NETBSD__) |
2b5f62a0 | 223 | AC_DEFINE(__BSD__) |
f6bcfd97 BP |
224 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
225 | ;; | |
9a98a854 VZ |
226 | *-*-osf* ) |
227 | USE_ALPHA=1 | |
228 | USE_OSF=1 | |
229 | AC_DEFINE(__ALPHA__) | |
230 | AC_DEFINE(__OSF__) | |
143121c5 | 231 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
f6bcfd97 | 232 | NEEDS_D_REENTRANT_FOR_R_FUNCS=1 |
9a98a854 VZ |
233 | ;; |
234 | *-*-dgux5* ) | |
235 | USE_ALPHA=1 | |
236 | USE_SVR4=1 | |
237 | AC_DEFINE(__ALPHA__) | |
238 | AC_DEFINE(__SVR4__) | |
143121c5 | 239 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
240 | ;; |
241 | *-*-sysv5* ) | |
242 | USE_SYSV=1 | |
243 | USE_SVR4=1 | |
244 | AC_DEFINE(__SYSV__) | |
245 | AC_DEFINE(__SVR4__) | |
143121c5 | 246 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
247 | ;; |
248 | *-*-aix* ) | |
249 | USE_AIX=1 | |
250 | USE_SYSV=1 | |
251 | USE_SVR4=1 | |
2b5f62a0 VZ |
252 | dnl quoting from http://www-1.ibm.com/servers/esdd/articles/gnu.html: |
253 | dnl | |
254 | dnl Both archive libraries and shared libraries on AIX have an .a | |
255 | dnl extension. This will explain why you can't link with an .so and | |
1542ea39 | 256 | dnl why it works with the name changed to .a. |
321d2b14 | 257 | SO_SUFFIX=a |
9a98a854 VZ |
258 | AC_DEFINE(__AIX__) |
259 | AC_DEFINE(__SYSV__) | |
260 | AC_DEFINE(__SVR4__) | |
143121c5 | 261 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 | 262 | ;; |
a9b5e89f | 263 | |
4a8900f2 VZ |
264 | *-*-*UnixWare*) |
265 | USE_SYSV=1 | |
266 | USE_SVR4=1 | |
267 | USE_UNIXWARE=1 | |
268 | AC_DEFINE(__UNIXWARE__) | |
269 | ;; | |
270 | ||
1c8183e2 | 271 | *-*-cygwin* | *-*-mingw32* ) |
17234b26 MB |
272 | dnl MBN: some of the defines have been moved after toolkit detection |
273 | dnl because for wxMotif/wxGTK/wxX11 to build on Cygwin | |
274 | dnl USE_UNIX must be set and not USE_WIN32 | |
3a922bb4 | 275 | SO_SUFFIX=dll |
cf27ef00 | 276 | PROGRAM_EXT=".exe" |
7b7a7637 | 277 | RESCOMP=windres |
a9b5e89f VZ |
278 | DEFAULT_DEFAULT_wxUSE_MSW=1 |
279 | ;; | |
280 | ||
f9bc1684 VS |
281 | *-pc-msdosdjgpp ) |
282 | USE_UNIX=0 | |
283 | USE_DOS=1 | |
284 | AC_DEFINE(__DOS__) | |
285 | PROGRAM_EXT=".exe" | |
286 | DEFAULT_DEFAULT_wxUSE_MGL=1 | |
24f5e003 VS |
287 | dnl DJGPP needs explicit -lstdc++ for some reason (VS: mayb some versions only?) |
288 | LIBS="$LIBS -lstdc++" | |
f9bc1684 VS |
289 | ;; |
290 | ||
9829f277 | 291 | *-pc-os2_emx | *-pc-os2-emx ) |
91b8de8d | 292 | AC_DEFINE(__EMX__) |
5cc55caf | 293 | USE_OS2=1 |
ff398597 | 294 | AC_DEFINE(__OS2__) |
cf27ef00 | 295 | PROGRAM_EXT=".exe" |
e07802fc | 296 | DEFAULT_DEFAULT_wxUSE_PM=1 |
35c49c4b SN |
297 | dnl "c++" wrapper is not always available, so always use plain gcc. |
298 | CXX=gcc | |
dc4118b8 | 299 | LDFLAGS="$LDFLAGS -Zcrtdll" |
e223b099 SN |
300 | dnl |
301 | dnl Some special code that's automatically added by autoconf-2.57 for OS/2 | |
302 | dnl and hopefully also by autoconf-2.58 and newer on all other platforms. | |
303 | dnl For now however, we still need it to make sure the configure script | |
304 | dnl works on OS/2 no matter what platform it is generated on. | |
305 | ac_executable_extensions=".exe" | |
306 | export ac_executable_extensions | |
307 | dnl This strange code is necessary to deal with handling of | |
308 | dnl backslashes by ksh and pdksh's sh variant. | |
309 | ac_save_IFS="$IFS" | |
4199367e | 310 | IFS='\\' |
e223b099 SN |
311 | ac_TEMP_PATH= |
312 | for ac_dir in $PATH; do | |
313 | IFS=$ac_save_IFS | |
314 | if test -z "$ac_TEMP_PATH"; then | |
315 | ac_TEMP_PATH="$ac_dir" | |
316 | else | |
317 | ac_TEMP_PATH="$ac_TEMP_PATH/$ac_dir" | |
318 | fi | |
319 | done | |
320 | export PATH="$ac_TEMP_PATH" | |
321 | unset ac_TEMP_PATH | |
91b8de8d | 322 | ;; |
a9b5e89f | 323 | |
d08b457b GD |
324 | powerpc-*-darwin* ) |
325 | dnl PowerPC Darwin based distributions (including Mac OS X) | |
b4085ce6 | 326 | USE_BSD=1 |
f11bdd03 | 327 | USE_DARWIN=1 |
3a922bb4 | 328 | SO_SUFFIX=dylib |
b4085ce6 | 329 | AC_DEFINE(__BSD__) |
f11bdd03 | 330 | AC_DEFINE(__DARWIN__) |
82d43113 | 331 | AC_DEFINE(TARGET_CARBON) |
b4085ce6 GD |
332 | DEFAULT_DEFAULT_wxUSE_MAC=1 |
333 | ;; | |
031e9160 DE |
334 | powerpc-apple-macos* ) |
335 | dnl Classic Mac OS (< X) | |
336 | USE_UNIX=0 | |
337 | dnl For some reason the test that should be cross-compiler capable fails | |
338 | dnl However, there is no doubt that MacOS PowerPC is big endian. | |
339 | ac_cv_c_bigendian=yes | |
340 | SO_SUFFIX=shlib | |
341 | dnl AC_DEFINE(TARGET_CARBON) | |
342 | dnl platform.h needs TARGET_CARBON before setup.h, we'll add it to CPPFLAGS | |
343 | DEFAULT_DEFAULT_wxUSE_MAC=1 | |
344 | ;; | |
b4085ce6 | 345 | |
b12915c1 VZ |
346 | *-*-beos* ) |
347 | dnl leave USE_UNIX on - BeOS is sufficiently Unix-like for this | |
348 | USE_BEOS=1 | |
349 | AC_DEFINE(__BEOS__) | |
350 | ;; | |
351 | ||
9a98a854 | 352 | *) |
a9b5e89f | 353 | AC_MSG_ERROR(unknown system type ${host}.) |
9a98a854 VZ |
354 | esac |
355 | ||
9a98a854 VZ |
356 | dnl --------------------------------------------------------------------------- |
357 | dnl command line options for configure | |
358 | dnl --------------------------------------------------------------------------- | |
359 | ||
360 | dnl the default values for all options - we collect them all here to simplify | |
361 | dnl modification of the default values (for example, if the defaults for some | |
362 | dnl platform should be changed, it can be done here too) | |
363 | dnl | |
364 | dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above | |
365 | ||
143121c5 VZ |
366 | WX_ARG_CACHE_INIT |
367 | ||
9a98a854 VZ |
368 | dnl useful to test the compilation with minimum options, define as 0 for normal |
369 | dnl usage | |
370 | DEBUG_CONFIGURE=0 | |
371 | if test $DEBUG_CONFIGURE = 1; then | |
1e6feb95 | 372 | DEFAULT_wxUSE_UNIVERSAL=no |
df5168c4 | 373 | DEFAULT_wxUSE_STL=no |
1e6feb95 | 374 | |
6ec507fd JS |
375 | DEFAULT_wxUSE_NANOX=no |
376 | ||
9a98a854 VZ |
377 | DEFAULT_wxUSE_THREADS=yes |
378 | ||
2aa88730 | 379 | DEFAULT_wxUSE_SHARED=yes |
1e6feb95 | 380 | DEFAULT_wxUSE_OPTIMISE=no |
9a98a854 | 381 | DEFAULT_wxUSE_PROFILE=no |
5586805b | 382 | DEFAULT_wxUSE_NO_DEPS=no |
8f4a9a10 RR |
383 | DEFAULT_wxUSE_NO_RTTI=no |
384 | DEFAULT_wxUSE_NO_EXCEPTIONS=no | |
ffa0583f | 385 | DEFAULT_wxUSE_RPATH=yes |
5586805b | 386 | DEFAULT_wxUSE_PERMISSIVE=no |
9a98a854 VZ |
387 | DEFAULT_wxUSE_DEBUG_FLAG=yes |
388 | DEFAULT_wxUSE_DEBUG_INFO=yes | |
389 | DEFAULT_wxUSE_DEBUG_GDB=yes | |
390 | DEFAULT_wxUSE_MEM_TRACING=no | |
143121c5 | 391 | DEFAULT_wxUSE_DEBUG_CONTEXT=no |
9a98a854 VZ |
392 | DEFAULT_wxUSE_DMALLOC=no |
393 | DEFAULT_wxUSE_APPLE_IEEE=no | |
394 | ||
4199367e | 395 | DEFAULT_wxUSE_EXCEPTIONS=no |
9a98a854 | 396 | DEFAULT_wxUSE_LOG=yes |
1e6feb95 VZ |
397 | DEFAULT_wxUSE_LOGWINDOW=no |
398 | DEFAULT_wxUSE_LOGGUI=no | |
69d27ff7 | 399 | DEFAULT_wxUSE_LOGDIALOG=no |
9a98a854 VZ |
400 | |
401 | DEFAULT_wxUSE_GUI=yes | |
1e6feb95 | 402 | DEFAULT_wxUSE_CONTROLS=no |
9a98a854 | 403 | |
3e44f09d | 404 | DEFAULT_wxUSE_REGEX=no |
672abd7a VS |
405 | DEFAULT_wxUSE_XML=no |
406 | DEFAULT_wxUSE_EXPAT=no | |
9a98a854 VZ |
407 | DEFAULT_wxUSE_ZLIB=no |
408 | DEFAULT_wxUSE_LIBPNG=no | |
9a98a854 | 409 | DEFAULT_wxUSE_LIBJPEG=no |
c7a2bf27 | 410 | DEFAULT_wxUSE_LIBTIFF=no |
89fe663f | 411 | DEFAULT_wxUSE_LIBXPM=no |
f93ca9fd VS |
412 | DEFAULT_wxUSE_LIBMSPACK=no |
413 | DEFAULT_wxUSE_LIBSDL=no | |
7c72311f | 414 | DEFAULT_wxUSE_LIBGNOMEPRINT=no |
9a98a854 | 415 | DEFAULT_wxUSE_ODBC=no |
bdad4e7e | 416 | DEFAULT_wxUSE_OPENGL=no |
9a98a854 | 417 | |
eb4efbdc | 418 | DEFAULT_wxUSE_ON_FATAL_EXCEPTION=no |
eaff0f0d | 419 | DEFAULT_wxUSE_STACKWALKER=no |
36b6448c | 420 | DEFAULT_wxUSE_DEBUGREPORT=no |
4f3c5f06 | 421 | DEFAULT_wxUSE_SNGLINST_CHECKER=no |
fd15d8f1 | 422 | DEFAULT_wxUSE_STD_IOSTREAM=no |
668d55c9 | 423 | DEFAULT_wxUSE_STD_STRING=no |
1e6feb95 VZ |
424 | DEFAULT_wxUSE_CMDLINE_PARSER=no |
425 | DEFAULT_wxUSE_DATETIME=no | |
1e6feb95 VZ |
426 | DEFAULT_wxUSE_TIMER=no |
427 | DEFAULT_wxUSE_STOPWATCH=no | |
9a98a854 | 428 | DEFAULT_wxUSE_FILE=no |
1e6feb95 | 429 | DEFAULT_wxUSE_FFILE=no |
07158944 | 430 | DEFAULT_wxUSE_STDPATHS=no |
a3a584a7 | 431 | DEFAULT_wxUSE_TEXTBUFFER=no |
9a98a854 | 432 | DEFAULT_wxUSE_TEXTFILE=no |
002ed9af | 433 | DEFAULT_wxUSE_SOUND=no |
103e7595 | 434 | DEFAULT_wxUSE_MEDIACTRL=no |
35b58141 | 435 | DEFAULT_wxUSE_DIRECTSHOW=no |
9a98a854 VZ |
436 | DEFAULT_wxUSE_INTL=no |
437 | DEFAULT_wxUSE_CONFIG=no | |
1e6feb95 | 438 | DEFAULT_wxUSE_FONTMAP=no |
9a98a854 VZ |
439 | DEFAULT_wxUSE_STREAMS=no |
440 | DEFAULT_wxUSE_SOCKETS=no | |
3bce6687 JS |
441 | DEFAULT_wxUSE_OLE=no |
442 | DEFAULT_wxUSE_DATAOBJ=no | |
1c8515f9 | 443 | DEFAULT_wxUSE_DIALUP_MANAGER=no |
9a98a854 | 444 | DEFAULT_wxUSE_JOYSTICK=no |
6bff71f8 | 445 | DEFAULT_wxUSE_DYNLIB_CLASS=no |
0b9ab0bd | 446 | DEFAULT_wxUSE_DYNAMIC_LOADER=no |
9a98a854 | 447 | DEFAULT_wxUSE_LONGLONG=no |
e8f65ba6 | 448 | DEFAULT_wxUSE_GEOMETRY=no |
9a98a854 VZ |
449 | |
450 | DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no | |
451 | DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no | |
452 | DEFAULT_wxUSE_POSTSCRIPT=no | |
453 | ||
9a98a854 VZ |
454 | DEFAULT_wxUSE_CLIPBOARD=no |
455 | DEFAULT_wxUSE_TOOLTIPS=no | |
456 | DEFAULT_wxUSE_DRAG_AND_DROP=no | |
24fd6d87 | 457 | DEFAULT_wxUSE_DRAGIMAGE=no |
9a98a854 VZ |
458 | DEFAULT_wxUSE_SPLINES=no |
459 | ||
efd17a1d | 460 | DEFAULT_wxUSE_MDI=no |
9a98a854 VZ |
461 | DEFAULT_wxUSE_MDI_ARCHITECTURE=no |
462 | DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no | |
463 | DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no | |
464 | ||
9a98a854 VZ |
465 | DEFAULT_wxUSE_RESOURCES=no |
466 | DEFAULT_wxUSE_CONSTRAINTS=no | |
467 | DEFAULT_wxUSE_IPC=no | |
468 | DEFAULT_wxUSE_HELP=no | |
29fd3c0c | 469 | DEFAULT_wxUSE_MS_HTML_HELP=no |
3379ed37 | 470 | DEFAULT_wxUSE_WXHTML_HELP=no |
24176f2c | 471 | DEFAULT_wxUSE_TREELAYOUT=no |
9a98a854 | 472 | DEFAULT_wxUSE_METAFILE=no |
1e6feb95 | 473 | DEFAULT_wxUSE_MIMETYPE=no |
4cdb0ab0 VS |
474 | DEFAULT_wxUSE_SYSTEM_OPTIONS=no |
475 | DEFAULT_wxUSE_PROTOCOL=no | |
476 | DEFAULT_wxUSE_PROTOCOL_HTTP=no | |
477 | DEFAULT_wxUSE_PROTOCOL_FTP=no | |
478 | DEFAULT_wxUSE_PROTOCOL_FILE=no | |
479 | DEFAULT_wxUSE_URL=no | |
3bd8fb5f | 480 | |
9a98a854 | 481 | DEFAULT_wxUSE_COMMONDLGS=no |
1e6feb95 VZ |
482 | DEFAULT_wxUSE_CHOICEDLG=no |
483 | DEFAULT_wxUSE_COLOURDLG=no | |
ce4169a4 | 484 | DEFAULT_wxUSE_DIRDLG=no |
1e6feb95 | 485 | DEFAULT_wxUSE_FILEDLG=no |
8db37e06 | 486 | DEFAULT_wxUSE_FINDREPLDLG=no |
1e6feb95 VZ |
487 | DEFAULT_wxUSE_FONTDLG=no |
488 | DEFAULT_wxUSE_MSGDLG=no | |
489 | DEFAULT_wxUSE_NUMBERDLG=no | |
c11584af | 490 | DEFAULT_wxUSE_TEXTDLG=no |
cbca9943 | 491 | DEFAULT_wxUSE_SPLASH=no |
a641505f | 492 | DEFAULT_wxUSE_STARTUP_TIPS=no |
ce4169a4 | 493 | DEFAULT_wxUSE_PROGRESSDLG=no |
b1f5d087 VZ |
494 | DEFAULT_wxUSE_WIZARDDLG=no |
495 | ||
1e6feb95 | 496 | DEFAULT_wxUSE_MENUS=no |
9a98a854 | 497 | DEFAULT_wxUSE_MINIFRAME=no |
5526e819 | 498 | DEFAULT_wxUSE_HTML=no |
9a8f0513 | 499 | DEFAULT_wxUSE_XRC=no |
ec9f9256 | 500 | DEFAULT_wxUSE_WEBKIT=no |
24528b0c | 501 | DEFAULT_wxUSE_FILESYSTEM=no |
e3e717ec VZ |
502 | DEFAULT_wxUSE_FS_INET=no |
503 | DEFAULT_wxUSE_FS_ZIP=no | |
d78b3d64 | 504 | DEFAULT_wxUSE_BUSYINFO=no |
9e8e867f | 505 | DEFAULT_wxUSE_ARCHIVE_STREAMS=no |
d78b3d64 | 506 | DEFAULT_wxUSE_ZIPSTREAM=no |
1e6feb95 | 507 | DEFAULT_wxUSE_VALIDATORS=no |
9a98a854 VZ |
508 | |
509 | DEFAULT_wxUSE_ACCEL=no | |
1e6feb95 | 510 | DEFAULT_wxUSE_BUTTON=no |
9a98a854 | 511 | DEFAULT_wxUSE_BMPBUTTON=no |
1e6feb95 VZ |
512 | DEFAULT_wxUSE_CALCTRL=no |
513 | DEFAULT_wxUSE_CARET=no | |
9a98a854 VZ |
514 | DEFAULT_wxUSE_CHECKBOX=no |
515 | DEFAULT_wxUSE_CHECKLST=no | |
1e6feb95 | 516 | DEFAULT_wxUSE_CHOICE=no |
92bbdbcd | 517 | DEFAULT_wxUSE_CHOICEBOOK=no |
9a98a854 | 518 | DEFAULT_wxUSE_COMBOBOX=no |
da98e9be | 519 | DEFAULT_wxUSE_DATEPICKCTRL=no |
ddb4769e | 520 | DEFAULT_wxUSE_DISPLAY=no |
9a98a854 VZ |
521 | DEFAULT_wxUSE_GAUGE=no |
522 | DEFAULT_wxUSE_GRID=no | |
523 | DEFAULT_wxUSE_IMAGLIST=no | |
e9c0df38 | 524 | DEFAULT_wxUSE_LISTBOOK=no |
9a98a854 VZ |
525 | DEFAULT_wxUSE_LISTBOX=no |
526 | DEFAULT_wxUSE_LISTCTRL=no | |
527 | DEFAULT_wxUSE_NOTEBOOK=no | |
528 | DEFAULT_wxUSE_RADIOBOX=no | |
529 | DEFAULT_wxUSE_RADIOBTN=no | |
e602002e | 530 | DEFAULT_wxUSE_SASH=no |
9a98a854 VZ |
531 | DEFAULT_wxUSE_SCROLLBAR=no |
532 | DEFAULT_wxUSE_SLIDER=no | |
533 | DEFAULT_wxUSE_SPINBTN=no | |
66f38406 | 534 | DEFAULT_wxUSE_SPINCTRL=no |
9a98a854 VZ |
535 | DEFAULT_wxUSE_SPLITTER=no |
536 | DEFAULT_wxUSE_STATBMP=no | |
537 | DEFAULT_wxUSE_STATBOX=no | |
538 | DEFAULT_wxUSE_STATLINE=no | |
1e6feb95 | 539 | DEFAULT_wxUSE_STATTEXT=no |
9a98a854 VZ |
540 | DEFAULT_wxUSE_STATUSBAR=yes |
541 | DEFAULT_wxUSE_TABDIALOG=no | |
1e6feb95 | 542 | DEFAULT_wxUSE_TEXTCTRL=no |
1db8dc4a | 543 | DEFAULT_wxUSE_TOGGLEBTN=no |
9a98a854 | 544 | DEFAULT_wxUSE_TOOLBAR=no |
360d6699 VZ |
545 | DEFAULT_wxUSE_TOOLBAR_NATIVE=no |
546 | DEFAULT_wxUSE_TOOLBAR_SIMPLE=no | |
9a98a854 | 547 | DEFAULT_wxUSE_TREECTRL=no |
9f41d601 | 548 | DEFAULT_wxUSE_POPUPWIN=no |
0b01706f | 549 | DEFAULT_wxUSE_TIPWINDOW=no |
9a98a854 VZ |
550 | |
551 | DEFAULT_wxUSE_UNICODE=no | |
a72a4bfa | 552 | DEFAULT_wxUSE_UNICODE_MSLU=no |
9a98a854 | 553 | DEFAULT_wxUSE_WCSRTOMBS=no |
e90c1d2a | 554 | |
d275c7eb | 555 | DEFAULT_wxUSE_PALETTE=no |
0046ff7c | 556 | DEFAULT_wxUSE_IMAGE=no |
0940bcf7 HH |
557 | DEFAULT_wxUSE_GIF=no |
558 | DEFAULT_wxUSE_PCX=no | |
559 | DEFAULT_wxUSE_PNM=no | |
4b6b4dfc | 560 | DEFAULT_wxUSE_IFF=no |
0046ff7c | 561 | DEFAULT_wxUSE_XPM=no |
658974ae | 562 | DEFAULT_wxUSE_ICO_CUR=no |
7bb2947d | 563 | DEFAULT_wxUSE_ACCESSIBILITY=no |
08b3ac36 | 564 | |
e9e0dc15 | 565 | DEFAULT_wxUSE_MONOLITHIC=no |
f93ca9fd | 566 | DEFAULT_wxUSE_PLUGINS=no |
029b47ad | 567 | DEFAULT_wxUSE_OFFICIAL_BUILD=no |
9a98a854 | 568 | else |
1e6feb95 | 569 | DEFAULT_wxUSE_UNIVERSAL=no |
df5168c4 | 570 | DEFAULT_wxUSE_STL=no |
1e6feb95 | 571 | |
6ec507fd JS |
572 | DEFAULT_wxUSE_NANOX=no |
573 | ||
9a98a854 VZ |
574 | DEFAULT_wxUSE_THREADS=yes |
575 | ||
2aa88730 | 576 | DEFAULT_wxUSE_SHARED=yes |
9a98a854 VZ |
577 | DEFAULT_wxUSE_OPTIMISE=yes |
578 | DEFAULT_wxUSE_PROFILE=no | |
5586805b | 579 | DEFAULT_wxUSE_NO_DEPS=no |
8f4a9a10 RR |
580 | DEFAULT_wxUSE_NO_RTTI=no |
581 | DEFAULT_wxUSE_NO_EXCEPTIONS=no | |
ffa0583f | 582 | DEFAULT_wxUSE_RPATH=yes |
5586805b | 583 | DEFAULT_wxUSE_PERMISSIVE=no |
9a98a854 VZ |
584 | DEFAULT_wxUSE_DEBUG_FLAG=no |
585 | DEFAULT_wxUSE_DEBUG_INFO=no | |
586 | DEFAULT_wxUSE_DEBUG_GDB=no | |
587 | DEFAULT_wxUSE_MEM_TRACING=no | |
143121c5 | 588 | DEFAULT_wxUSE_DEBUG_CONTEXT=no |
9a98a854 VZ |
589 | DEFAULT_wxUSE_DMALLOC=no |
590 | DEFAULT_wxUSE_APPLE_IEEE=yes | |
591 | ||
4199367e | 592 | DEFAULT_wxUSE_EXCEPTIONS=yes |
9a98a854 | 593 | DEFAULT_wxUSE_LOG=yes |
d73be714 VZ |
594 | DEFAULT_wxUSE_LOGWINDOW=yes |
595 | DEFAULT_wxUSE_LOGGUI=yes | |
69d27ff7 | 596 | DEFAULT_wxUSE_LOGDIALOG=yes |
9a98a854 VZ |
597 | |
598 | DEFAULT_wxUSE_GUI=yes | |
599 | ||
aa2d9ecc | 600 | DEFAULT_wxUSE_REGEX=yes |
672abd7a | 601 | DEFAULT_wxUSE_XML=yes |
aa2d9ecc VZ |
602 | DEFAULT_wxUSE_EXPAT=yes |
603 | DEFAULT_wxUSE_ZLIB=yes | |
604 | DEFAULT_wxUSE_LIBPNG=yes | |
605 | DEFAULT_wxUSE_LIBJPEG=yes | |
606 | DEFAULT_wxUSE_LIBTIFF=yes | |
607 | DEFAULT_wxUSE_LIBXPM=yes | |
3527f29c | 608 | DEFAULT_wxUSE_LIBMSPACK=yes |
f93ca9fd | 609 | DEFAULT_wxUSE_LIBSDL=no |
7c72311f | 610 | DEFAULT_wxUSE_LIBGNOMEPRINT=no |
16b52fa1 | 611 | DEFAULT_wxUSE_ODBC=no |
bdad4e7e | 612 | DEFAULT_wxUSE_OPENGL=no |
9a98a854 | 613 | |
eb4efbdc | 614 | DEFAULT_wxUSE_ON_FATAL_EXCEPTION=yes |
eaff0f0d | 615 | DEFAULT_wxUSE_STACKWALKER=yes |
61639efb | 616 | DEFAULT_wxUSE_DEBUGREPORT=yes |
4f3c5f06 | 617 | DEFAULT_wxUSE_SNGLINST_CHECKER=yes |
073478b3 | 618 | DEFAULT_wxUSE_STD_IOSTREAM=no |
668d55c9 | 619 | DEFAULT_wxUSE_STD_STRING=no |
1e6feb95 VZ |
620 | DEFAULT_wxUSE_CMDLINE_PARSER=yes |
621 | DEFAULT_wxUSE_DATETIME=yes | |
1e6feb95 VZ |
622 | DEFAULT_wxUSE_TIMER=yes |
623 | DEFAULT_wxUSE_STOPWATCH=yes | |
9a98a854 | 624 | DEFAULT_wxUSE_FILE=yes |
1e6feb95 | 625 | DEFAULT_wxUSE_FFILE=yes |
07158944 | 626 | DEFAULT_wxUSE_STDPATHS=yes |
a3a584a7 | 627 | DEFAULT_wxUSE_TEXTBUFFER=yes |
9a98a854 | 628 | DEFAULT_wxUSE_TEXTFILE=yes |
002ed9af | 629 | DEFAULT_wxUSE_SOUND=yes |
103e7595 | 630 | DEFAULT_wxUSE_MEDIACTRL=no |
1e1ef900 | 631 | DEFAULT_wxUSE_DIRECTSHOW=no |
9a98a854 VZ |
632 | DEFAULT_wxUSE_INTL=yes |
633 | DEFAULT_wxUSE_CONFIG=yes | |
1e6feb95 | 634 | DEFAULT_wxUSE_FONTMAP=yes |
9a98a854 VZ |
635 | DEFAULT_wxUSE_STREAMS=yes |
636 | DEFAULT_wxUSE_SOCKETS=yes | |
3bce6687 JS |
637 | DEFAULT_wxUSE_OLE=yes |
638 | DEFAULT_wxUSE_DATAOBJ=yes | |
1c8515f9 | 639 | DEFAULT_wxUSE_DIALUP_MANAGER=yes |
9a98a854 | 640 | DEFAULT_wxUSE_JOYSTICK=yes |
6bff71f8 | 641 | DEFAULT_wxUSE_DYNLIB_CLASS=yes |
9337b578 | 642 | DEFAULT_wxUSE_DYNAMIC_LOADER=yes |
b685cd9b | 643 | DEFAULT_wxUSE_LONGLONG=yes |
e8f65ba6 | 644 | DEFAULT_wxUSE_GEOMETRY=yes |
9a98a854 VZ |
645 | |
646 | DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes | |
647 | DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes | |
648 | DEFAULT_wxUSE_POSTSCRIPT=yes | |
649 | ||
9a98a854 VZ |
650 | DEFAULT_wxUSE_CLIPBOARD=yes |
651 | DEFAULT_wxUSE_TOOLTIPS=yes | |
652 | DEFAULT_wxUSE_DRAG_AND_DROP=yes | |
24fd6d87 | 653 | DEFAULT_wxUSE_DRAGIMAGE=yes |
9a98a854 VZ |
654 | DEFAULT_wxUSE_SPLINES=yes |
655 | ||
efd17a1d | 656 | DEFAULT_wxUSE_MDI=yes |
9a98a854 VZ |
657 | DEFAULT_wxUSE_MDI_ARCHITECTURE=yes |
658 | DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes | |
659 | DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes | |
660 | ||
2b5f62a0 | 661 | DEFAULT_wxUSE_RESOURCES=no |
9a98a854 VZ |
662 | DEFAULT_wxUSE_CONSTRAINTS=yes |
663 | DEFAULT_wxUSE_IPC=yes | |
664 | DEFAULT_wxUSE_HELP=yes | |
29fd3c0c | 665 | DEFAULT_wxUSE_MS_HTML_HELP=yes |
3379ed37 | 666 | DEFAULT_wxUSE_WXHTML_HELP=yes |
24176f2c | 667 | DEFAULT_wxUSE_TREELAYOUT=yes |
9a98a854 | 668 | DEFAULT_wxUSE_METAFILE=yes |
1e6feb95 | 669 | DEFAULT_wxUSE_MIMETYPE=yes |
0cbff120 | 670 | DEFAULT_wxUSE_SYSTEM_OPTIONS=yes |
4cdb0ab0 VS |
671 | DEFAULT_wxUSE_PROTOCOL=yes |
672 | DEFAULT_wxUSE_PROTOCOL_HTTP=yes | |
673 | DEFAULT_wxUSE_PROTOCOL_FTP=yes | |
674 | DEFAULT_wxUSE_PROTOCOL_FILE=yes | |
675 | DEFAULT_wxUSE_URL=yes | |
9a98a854 VZ |
676 | |
677 | DEFAULT_wxUSE_COMMONDLGS=yes | |
1e6feb95 VZ |
678 | DEFAULT_wxUSE_CHOICEDLG=yes |
679 | DEFAULT_wxUSE_COLOURDLG=yes | |
ce4169a4 | 680 | DEFAULT_wxUSE_DIRDLG=yes |
1e6feb95 | 681 | DEFAULT_wxUSE_FILEDLG=yes |
8db37e06 | 682 | DEFAULT_wxUSE_FINDREPLDLG=yes |
1e6feb95 VZ |
683 | DEFAULT_wxUSE_FONTDLG=yes |
684 | DEFAULT_wxUSE_MSGDLG=yes | |
685 | DEFAULT_wxUSE_NUMBERDLG=yes | |
c11584af | 686 | DEFAULT_wxUSE_TEXTDLG=yes |
cbca9943 | 687 | DEFAULT_wxUSE_SPLASH=yes |
a641505f | 688 | DEFAULT_wxUSE_STARTUP_TIPS=yes |
ce4169a4 | 689 | DEFAULT_wxUSE_PROGRESSDLG=yes |
f33f19dd VZ |
690 | DEFAULT_wxUSE_WIZARDDLG=yes |
691 | ||
1e6feb95 | 692 | DEFAULT_wxUSE_MENUS=yes |
9a98a854 | 693 | DEFAULT_wxUSE_MINIFRAME=yes |
d4c241b9 | 694 | DEFAULT_wxUSE_HTML=yes |
9a8f0513 | 695 | DEFAULT_wxUSE_XRC=yes |
ec9f9256 | 696 | DEFAULT_wxUSE_WEBKIT=yes |
24528b0c | 697 | DEFAULT_wxUSE_FILESYSTEM=yes |
d4c241b9 RR |
698 | DEFAULT_wxUSE_FS_INET=yes |
699 | DEFAULT_wxUSE_FS_ZIP=yes | |
700 | DEFAULT_wxUSE_BUSYINFO=yes | |
9e8e867f | 701 | DEFAULT_wxUSE_ARCHIVE_STREAMS=yes |
d4c241b9 | 702 | DEFAULT_wxUSE_ZIPSTREAM=yes |
9a98a854 VZ |
703 | DEFAULT_wxUSE_VALIDATORS=yes |
704 | ||
705 | DEFAULT_wxUSE_ACCEL=yes | |
1e6feb95 | 706 | DEFAULT_wxUSE_BUTTON=yes |
9a98a854 | 707 | DEFAULT_wxUSE_BMPBUTTON=yes |
1e6feb95 VZ |
708 | DEFAULT_wxUSE_CALCTRL=yes |
709 | DEFAULT_wxUSE_CARET=yes | |
9a98a854 VZ |
710 | DEFAULT_wxUSE_CHECKBOX=yes |
711 | DEFAULT_wxUSE_CHECKLST=yes | |
ce4169a4 | 712 | DEFAULT_wxUSE_CHOICE=yes |
92bbdbcd | 713 | DEFAULT_wxUSE_CHOICEBOOK=yes |
9a98a854 | 714 | DEFAULT_wxUSE_COMBOBOX=yes |
da98e9be | 715 | DEFAULT_wxUSE_DATEPICKCTRL=yes |
45b7f819 | 716 | DEFAULT_wxUSE_DISPLAY=yes |
9a98a854 VZ |
717 | DEFAULT_wxUSE_GAUGE=yes |
718 | DEFAULT_wxUSE_GRID=yes | |
719 | DEFAULT_wxUSE_IMAGLIST=yes | |
e9c0df38 | 720 | DEFAULT_wxUSE_LISTBOOK=yes |
9a98a854 VZ |
721 | DEFAULT_wxUSE_LISTBOX=yes |
722 | DEFAULT_wxUSE_LISTCTRL=yes | |
723 | DEFAULT_wxUSE_NOTEBOOK=yes | |
724 | DEFAULT_wxUSE_RADIOBOX=yes | |
725 | DEFAULT_wxUSE_RADIOBTN=yes | |
e602002e | 726 | DEFAULT_wxUSE_SASH=yes |
9a98a854 VZ |
727 | DEFAULT_wxUSE_SCROLLBAR=yes |
728 | DEFAULT_wxUSE_SLIDER=yes | |
729 | DEFAULT_wxUSE_SPINBTN=yes | |
66f38406 | 730 | DEFAULT_wxUSE_SPINCTRL=yes |
9a98a854 VZ |
731 | DEFAULT_wxUSE_SPLITTER=yes |
732 | DEFAULT_wxUSE_STATBMP=yes | |
733 | DEFAULT_wxUSE_STATBOX=yes | |
734 | DEFAULT_wxUSE_STATLINE=yes | |
1e6feb95 | 735 | DEFAULT_wxUSE_STATTEXT=yes |
9a98a854 VZ |
736 | DEFAULT_wxUSE_STATUSBAR=yes |
737 | DEFAULT_wxUSE_TABDIALOG=no | |
1e6feb95 | 738 | DEFAULT_wxUSE_TEXTCTRL=yes |
1db8dc4a | 739 | DEFAULT_wxUSE_TOGGLEBTN=yes |
9a98a854 | 740 | DEFAULT_wxUSE_TOOLBAR=yes |
360d6699 VZ |
741 | DEFAULT_wxUSE_TOOLBAR_NATIVE=yes |
742 | DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes | |
9a98a854 | 743 | DEFAULT_wxUSE_TREECTRL=yes |
9f41d601 | 744 | DEFAULT_wxUSE_POPUPWIN=yes |
0b01706f | 745 | DEFAULT_wxUSE_TIPWINDOW=yes |
9a98a854 VZ |
746 | |
747 | DEFAULT_wxUSE_UNICODE=no | |
a72a4bfa | 748 | DEFAULT_wxUSE_UNICODE_MSLU=yes |
9a98a854 | 749 | DEFAULT_wxUSE_WCSRTOMBS=no |
e90c1d2a | 750 | |
d275c7eb | 751 | DEFAULT_wxUSE_PALETTE=yes |
0046ff7c | 752 | DEFAULT_wxUSE_IMAGE=yes |
0940bcf7 HH |
753 | DEFAULT_wxUSE_GIF=yes |
754 | DEFAULT_wxUSE_PCX=yes | |
cc0e8480 | 755 | DEFAULT_wxUSE_IFF=no |
0940bcf7 | 756 | DEFAULT_wxUSE_PNM=yes |
0046ff7c | 757 | DEFAULT_wxUSE_XPM=yes |
658974ae | 758 | DEFAULT_wxUSE_ICO_CUR=yes |
7bb2947d | 759 | DEFAULT_wxUSE_ACCESSIBILITY=no |
08b3ac36 | 760 | |
e9e0dc15 | 761 | DEFAULT_wxUSE_MONOLITHIC=no |
f93ca9fd | 762 | DEFAULT_wxUSE_PLUGINS=no |
029b47ad | 763 | DEFAULT_wxUSE_OFFICIAL_BUILD=no |
9f45f08e VS |
764 | |
765 | dnl Appliable only when --with-gtk was used: | |
766 | DEFAULT_wxUSE_GTK2=yes | |
9a98a854 VZ |
767 | fi |
768 | ||
143121c5 | 769 | dnl WX_ARG_WITH should be used to select whether an external package will be |
9a98a854 | 770 | dnl used or not, to configure compile-time features of this package itself, |
143121c5 | 771 | dnl use WX_ARG_ENABLE instead |
9a98a854 VZ |
772 | |
773 | dnl ============================ | |
774 | dnl external package dependecies | |
775 | dnl ============================ | |
776 | ||
143121c5 VZ |
777 | dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache |
778 | dnl these values manually | |
ced859c3 | 779 | for toolkit in `echo $ALL_TOOLKITS`; do |
d74f4b5a VZ |
780 | LINE=`grep "wxUSE_$toolkit=" ${wx_arg_cache_file}` |
781 | if test "x$LINE" != "x" ; then | |
143121c5 VZ |
782 | has_toolkit_in_cache=1 |
783 | eval "DEFAULT_$LINE" | |
ced859c3 | 784 | eval "CACHE_$toolkit=1" |
143121c5 VZ |
785 | fi |
786 | done | |
787 | ||
e90c1d2a | 788 | dnl --------------------------------------------------------------------------- |
77ffb593 | 789 | dnl --disable-gui will build only non-GUI part of wxWidgets: check for this |
e90c1d2a VZ |
790 | dnl first to disable many other switches if it's given |
791 | dnl | |
792 | dnl NB: this is still in testing stage, don't use if you don't know what you're | |
793 | dnl doing | |
794 | dnl --------------------------------------------------------------------------- | |
795 | ||
796 | WX_ARG_ENABLE(gui, [ --enable-gui use GUI classes], wxUSE_GUI) | |
77ffb593 JS |
797 | WX_ARG_ENABLE(monolithic, [ --enable-monolithic build wxWidgets as single library], wxUSE_MONOLITHIC) |
798 | WX_ARG_ENABLE(plugins, [ --enable-plugins build parts of wxWidgets as loadable components], wxUSE_PLUGINS) | |
e90c1d2a | 799 | |
b12915c1 | 800 | if test "$wxUSE_GUI" = "yes"; then |
e90c1d2a | 801 | |
77ffb593 | 802 | WX_ARG_ENABLE(universal, [ --enable-universal use wxWidgets GUI controls instead of native ones], wxUSE_UNIVERSAL) |
ced859c3 VZ |
803 | AC_ARG_WITH(gtk, [ --with-gtk use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1]) |
804 | AC_ARG_WITH(motif, [ --with-motif use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1]) | |
c228d3a4 RN |
805 | AC_ARG_WITH(mac, [ --with-mac use Mac OS X], [wxUSE_MAC="$withval" CACHE_MAC=1 TOOLKIT_GIVEN=1]) |
806 | AC_ARG_WITH(cocoa, [ --with-cocoa use Cocoa], [wxUSE_COCOA="$withval" CACHE_COCOA=1 TOOLKIT_GIVEN=1]) | |
d1188635 | 807 | AC_ARG_WITH(wine, [ --with-wine use Wine], [wxUSE_WINE="$withval" CACHE_WINE=1]) |
b4efce5e | 808 | AC_ARG_WITH(msw, [ --with-msw use MS-Windows], [wxUSE_MSW="$withval" CACHE_MSW=1 TOOLKIT_GIVEN=1]) |
e07802fc | 809 | AC_ARG_WITH(pm, [ --with-pm use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1]) |
6c657b52 | 810 | AC_ARG_WITH(mgl, [ --with-mgl use SciTech MGL], [wxUSE_MGL="$withval" wxUSE_UNIVERSAL="yes" CACHE_MGL=1 TOOLKIT_GIVEN=1]) |
1725144d | 811 | AC_ARG_WITH(microwin, [ --with-microwin use MicroWindows], [wxUSE_MICROWIN="$withval" CACHE_MICROWIN=1 TOOLKIT_GIVEN=1]) |
3c011993 | 812 | AC_ARG_WITH(x11, [ --with-x11 use X11], [wxUSE_X11="$withval" wxUSE_UNIVERSAL="yes" CACHE_X11=1 TOOLKIT_GIVEN=1]) |
ba875e66 | 813 | WX_ARG_ENABLE(nanox, [ --enable-nanox use NanoX], wxUSE_NANOX) |
143121c5 | 814 | |
9f45f08e | 815 | WX_ARG_ENABLE(gtk2, [ --disable-gtk2 use GTK+ 1.2 instead of 2.0], wxUSE_GTK2) |
16bd311d | 816 | WX_ARG_ENABLE(gpe, [ --enable-gpe use GNOME PDA Environment features if possible], wxUSE_GPE) |
a9b5e89f | 817 | |
422107f9 VZ |
818 | WX_ARG_SYS_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG) |
819 | WX_ARG_SYS_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG) | |
0dcf9893 | 820 | WX_ARG_SYS_WITH(libtiff, [ --with-libtiff use libtiff (TIFF file format)], wxUSE_LIBTIFF) |
c8818622 | 821 | WX_ARG_SYS_WITH(libxpm, [ --with-libxpm use libxpm (XPM file format)], wxUSE_LIBXPM) |
3527f29c | 822 | WX_ARG_WITH(libmspack, [ --with-libmspack use libmspack (CHM help files loading)], wxUSE_LIBMSPACK) |
f93ca9fd | 823 | WX_ARG_WITH(sdl, [ --with-sdl use SDL for audio on Unix], wxUSE_LIBSDL) |
369b9aad | 824 | WX_ARG_WITH(gnomeprint, [ --with-gnomeprint use GNOME print for printing under Unix], wxUSE_LIBGNOMEPRINT) |
143121c5 | 825 | WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL) |
b12915c1 VZ |
826 | |
827 | fi | |
828 | dnl for GUI only | |
829 | ||
d0e9b150 | 830 | WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (http://dmalloc.com/)], wxUSE_DMALLOC) |
3e44f09d | 831 | WX_ARG_SYS_WITH(regex, [ --with-regex enable support for wxRegEx class], wxUSE_REGEX) |
422107f9 | 832 | WX_ARG_SYS_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB) |
8647bec6 | 833 | WX_ARG_SYS_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC) |
672abd7a | 834 | WX_ARG_SYS_WITH(expat, [ --with-expat enable XML support using expat parser], wxUSE_EXPAT) |
9a98a854 | 835 | |
9a98a854 VZ |
836 | dnl --------------------------------------------------------------------------- |
837 | dnl compile options | |
838 | dnl --------------------------------------------------------------------------- | |
839 | ||
2aa88730 | 840 | WX_ARG_ENABLE(shared, [ --enable-shared create shared library code], wxUSE_SHARED) |
143121c5 | 841 | WX_ARG_ENABLE(optimise, [ --enable-optimise create optimised code], wxUSE_OPTIMISE) |
143121c5 | 842 | WX_ARG_ENABLE(debug, [ --enable-debug same as debug_flag and debug_info], wxUSE_DEBUG) |
df5168c4 | 843 | WX_ARG_ENABLE(stl, [ --enable-stl use STL for containers], wxUSE_STL) |
3cceb09b | 844 | if test "$USE_OS2" = "1"; then |
f47af52b | 845 | DEFAULT_wxUSE_OMF=no |
3cceb09b SN |
846 | WX_ARG_ENABLE(omf, [ --enable-omf use OMF object format], wxUSE_OMF) |
847 | fi | |
70d1b3cf VZ |
848 | |
849 | if test "$wxUSE_DEBUG" = "yes"; then | |
850 | DEFAULT_wxUSE_DEBUG_FLAG=yes | |
851 | DEFAULT_wxUSE_DEBUG_INFO=yes | |
6c67131a | 852 | BUILD=debug |
70d1b3cf VZ |
853 | elif test "$wxUSE_DEBUG" = "no"; then |
854 | DEFAULT_wxUSE_DEBUG_FLAG=no | |
855 | DEFAULT_wxUSE_DEBUG_INFO=no | |
6c67131a | 856 | BUILD=release |
70d1b3cf VZ |
857 | fi |
858 | ||
f7bdcdd7 RR |
859 | WX_ARG_ENABLE(debug_flag, [ --enable-debug_flag set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG) |
860 | WX_ARG_ENABLE(debug_info, [ --enable-debug_info create code with debugging information], wxUSE_DEBUG_INFO) | |
861 | WX_ARG_ENABLE(debug_gdb, [ --enable-debug_gdb create code with extra GDB debugging information], wxUSE_DEBUG_GDB) | |
862 | WX_ARG_ENABLE(debug_cntxt, [ --enable-debug_cntxt use wxDebugContext], wxUSE_DEBUG_CONTEXT) | |
863 | WX_ARG_ENABLE(mem_tracing, [ --enable-mem_tracing create code with memory tracing], wxUSE_MEM_TRACING) | |
864 | WX_ARG_ENABLE(profile, [ --enable-profile create code with profiling information], wxUSE_PROFILE) | |
865 | WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI) | |
b3e8d00a | 866 | WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS) |
5586805b RR |
867 | WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE) |
868 | WX_ARG_ENABLE(no_deps, [ --enable-no_deps create code without dependency information], wxUSE_NO_DEPS) | |
9a98a854 | 869 | |
77ffb593 JS |
870 | WX_ARG_ENABLE(compat22, [ --enable-compat22 enable wxWidgets 2.2 compatibility], WXWIN_COMPATIBILITY_2_2) |
871 | WX_ARG_ENABLE(compat24, [ --disable-compat24 disable wxWidgets 2.4 compatibility], WXWIN_COMPATIBILITY_2_4, disable) | |
54276ccf | 872 | |
ffa0583f | 873 | WX_ARG_ENABLE(rpath, [ --disable-rpath disable use of rpath for uninstalled builds], wxUSE_RPATH) |
3bd8fb5f RD |
874 | |
875 | ||
9a98a854 VZ |
876 | dnl --------------------------------------------------------------------------- |
877 | dnl (small) optional non GUI classes | |
878 | dnl --------------------------------------------------------------------------- | |
879 | ||
fd15d8f1 RR |
880 | WX_ARG_ENABLE(intl, [ --enable-intl use internationalization system], wxUSE_INTL) |
881 | WX_ARG_ENABLE(config, [ --enable-config use wxConfig (and derived) classes], wxUSE_CONFIG) | |
b12915c1 | 882 | |
a5d46b73 VZ |
883 | WX_ARG_ENABLE(protocols, [ --enable-protocols use wxProtocol and derived classes], wxUSE_PROTOCOL) |
884 | WX_ARG_ENABLE(ftp, [ --enable-ftp use wxFTP (requires wxProtocol], wxUSE_PROTOCOL_FTP) | |
885 | WX_ARG_ENABLE(http, [ --enable-http use wxHTTP (requires wxProtocol], wxUSE_PROTOCOL_HTTP) | |
886 | WX_ARG_ENABLE(fileproto, [ --enable-fileproto use wxFileProto class (requires wxProtocol], wxUSE_PROTOCOL_FILE) | |
fd15d8f1 | 887 | WX_ARG_ENABLE(sockets, [ --enable-sockets use socket/network classes], wxUSE_SOCKETS) |
4199367e | 888 | WX_ARG_ENABLE(ole, [ --enable-ole use OLE classes (Win32 only)], wxUSE_OLE) |
3bce6687 | 889 | WX_ARG_ENABLE(dataobj, [ --enable-dataobj use data object classes], wxUSE_DATAOBJ) |
b12915c1 | 890 | |
fd15d8f1 | 891 | WX_ARG_ENABLE(ipc, [ --enable-ipc use interprocess communication (wxSocket etc.)], wxUSE_IPC) |
eb4efbdc | 892 | |
4199367e VZ |
893 | dnl please keep the settings below in alphabetical order |
894 | WX_ARG_ENABLE(apple_ieee, [ --enable-apple_ieee use the Apple IEEE codec], wxUSE_APPLE_IEEE) | |
9e8e867f | 895 | WX_ARG_ENABLE(arcstream, [ --enable-arcstream use wxArchive streams], wxUSE_ARCHIVE_STREAMS) |
eaff0f0d | 896 | WX_ARG_ENABLE(backtrace, [ --enable-backtrace use wxStackWalker class for getting backtraces], wxUSE_STACKWALKER) |
36b6448c | 897 | WX_ARG_ENABLE(catch_segvs, [ --enable-catch_segvs catch signals in wxApp::OnFatalException (Unix only)], wxUSE_ON_FATAL_EXCEPTION) |
1e6feb95 VZ |
898 | WX_ARG_ENABLE(cmdline, [ --enable-cmdline use wxCmdLineParser class], wxUSE_CMDLINE_PARSER) |
899 | WX_ARG_ENABLE(datetime, [ --enable-datetime use wxDateTime class], wxUSE_DATETIME) | |
36b6448c | 900 | WX_ARG_ENABLE(debugreport, [ --enable-debugreport use wxDebugReport class], wxUSE_DEBUGREPORT) |
eb4efbdc | 901 | WX_ARG_ENABLE(dialupman, [ --enable-dialupman use dialup network classes], wxUSE_DIALUP_MANAGER) |
fd15d8f1 | 902 | WX_ARG_ENABLE(dynlib, [ --enable-dynlib use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS) |
0b9ab0bd | 903 | WX_ARG_ENABLE(dynamicloader, [ --enable-dynamicloader use (new) wxDynamicLibrary class], wxUSE_DYNAMIC_LOADER) |
4199367e VZ |
904 | WX_ARG_ENABLE(exceptions, [ --enable-exceptions build exception-safe library], wxUSE_EXCEPTIONS) |
905 | WX_ARG_ENABLE(ffile, [ --enable-ffile use wxFFile class], wxUSE_FFILE) | |
906 | WX_ARG_ENABLE(file, [ --enable-file use wxFile class], wxUSE_FILE) | |
907 | WX_ARG_ENABLE(filesystem, [ --enable-filesystem use virtual file systems classes], wxUSE_FILESYSTEM) | |
908 | WX_ARG_ENABLE(fontmap, [ --enable-fontmap use font encodings conversion classes], wxUSE_FONTMAP) | |
909 | WX_ARG_ENABLE(fs_inet, [ --enable-fs_inet use virtual HTTP/FTP filesystems], wxUSE_FS_INET) | |
910 | WX_ARG_ENABLE(fs_zip, [ --enable-fs_zip use virtual ZIP filesystems], wxUSE_FS_ZIP) | |
e8f65ba6 | 911 | WX_ARG_ENABLE(geometry, [ --enable-geometry use geometry class], wxUSE_GEOMETRY) |
fd15d8f1 | 912 | WX_ARG_ENABLE(log, [ --enable-log use logging system], wxUSE_LOG) |
4199367e VZ |
913 | WX_ARG_ENABLE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG) |
914 | WX_ARG_ENABLE(mimetype, [ --enable-mimetype use wxMimeTypesManager], wxUSE_MIMETYPE) | |
915 | WX_ARG_ENABLE(mslu, [ --enable-mslu use MS Layer for Unicode on Windows 9x (Win32 only)], wxUSE_UNICODE_MSLU) | |
916 | WX_ARG_ENABLE(snglinst, [ --enable-snglinst use wxSingleInstanceChecker class], wxUSE_SNGLINST_CHECKER) | |
4199367e | 917 | WX_ARG_ENABLE(std_iostreams, [ --enable-std_iostreams use standard C++ stream classes], wxUSE_STD_IOSTREAM) |
668d55c9 | 918 | WX_ARG_ENABLE(std_string, [ --enable-std_string use standard C++ string classes], wxUSE_STD_STRING) |
07158944 | 919 | WX_ARG_ENABLE(stdpaths, [ --enable-stdpaths use wxStandardPaths class], wxUSE_STDPATHS) |
4199367e | 920 | WX_ARG_ENABLE(stopwatch, [ --enable-stopwatch use wxStopWatch class], wxUSE_STOPWATCH) |
07158944 | 921 | WX_ARG_ENABLE(streams, [ --enable-streams use wxStream etc classes], wxUSE_STREAMS) |
4199367e | 922 | WX_ARG_ENABLE(system_options,[ --enable-sysoptions use wxSystemOptions], wxUSE_SYSTEM_OPTIONS) |
a3a584a7 VZ |
923 | WX_ARG_ENABLE(textbuf, [ --enable-textbuf use wxTextBuffer class], wxUSE_TEXTBUFFER) |
924 | WX_ARG_ENABLE(textfile, [ --enable-textfile use wxTextFile class], wxUSE_TEXTFILE) | |
4199367e | 925 | WX_ARG_ENABLE(timer, [ --enable-timer use wxTimer class], wxUSE_TIMER) |
fd15d8f1 | 926 | WX_ARG_ENABLE(unicode, [ --enable-unicode compile wxString with Unicode support], wxUSE_UNICODE) |
002ed9af | 927 | WX_ARG_ENABLE(sound, [ --enable-sound use wxSound class], wxUSE_SOUND) |
103e7595 | 928 | WX_ARG_ENABLE(mediactrl, [ --enable-mediactrl use wxMediaCtrl class], wxUSE_MEDIACTRL) |
77ffb593 | 929 | WX_ARG_ENABLE(wxprintfv, [ --enable-wxprintfv use wxWidgets implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF) |
81f90336 | 930 | WX_ARG_ENABLE(zipstream, [ --enable-zipstream use wxZip streams], wxUSE_ZIPSTREAM) |
9a98a854 | 931 | |
4cdb0ab0 VS |
932 | WX_ARG_ENABLE(url, [ --enable-url use wxURL class], wxUSE_URL) |
933 | WX_ARG_ENABLE(protocol, [ --enable-protocol use wxProtocol class], wxUSE_PROTOCOL) | |
934 | WX_ARG_ENABLE(protocol_http, [ --enable-protocol-http HTTP support in wxProtocol], wxUSE_PROTOCOL_HTTP) | |
935 | WX_ARG_ENABLE(protocol_ftp, [ --enable-protocol-ftp FTP support in wxProtocol], wxUSE_PROTOCOL_FTP) | |
936 | WX_ARG_ENABLE(protocol_file, [ --enable-protocol-file FILE support in wxProtocol], wxUSE_PROTOCOL_FILE) | |
937 | ||
938 | ||
9a98a854 VZ |
939 | dnl --------------------------------------------------------------------------- |
940 | dnl "big" options (i.e. those which change a lot of things throughout the library) | |
941 | dnl --------------------------------------------------------------------------- | |
942 | ||
143121c5 | 943 | WX_ARG_ENABLE(threads, [ --enable-threads use threads], wxUSE_THREADS) |
9a98a854 | 944 | |
b12915c1 VZ |
945 | if test "$wxUSE_GUI" = "yes"; then |
946 | ||
9a98a854 VZ |
947 | dnl --------------------------------------------------------------------------- |
948 | dnl "big" GUI options | |
949 | dnl --------------------------------------------------------------------------- | |
950 | ||
143121c5 | 951 | WX_ARG_ENABLE(docview, [ --enable-docview use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE) |
3379ed37 | 952 | WX_ARG_ENABLE(help, [ --enable-help use help subsystem], wxUSE_HELP) |
29fd3c0c | 953 | WX_ARG_ENABLE(mshtmlhelp, [ --enable-mshtmlhelp use MS HTML Help (win32)], wxUSE_MS_HTML_HELP) |
3379ed37 VZ |
954 | WX_ARG_ENABLE(html, [ --enable-html use wxHTML sub-library], wxUSE_HTML) |
955 | WX_ARG_ENABLE(htmlhelp, [ --enable-htmlhelp use wxHTML-based help], wxUSE_WXHTML_HELP) | |
9a8f0513 | 956 | WX_ARG_ENABLE(xrc, [ --enable-xrc use XRC resources sub-library], wxUSE_XRC) |
143121c5 VZ |
957 | WX_ARG_ENABLE(constraints, [ --enable-constraints use layout-constraints system], wxUSE_CONSTRAINTS) |
958 | WX_ARG_ENABLE(printarch, [ --enable-printarch use printing architecture], wxUSE_PRINTING_ARCHITECTURE) | |
efd17a1d VZ |
959 | WX_ARG_ENABLE(mdi, [ --enable-mdi use multiple document interface architecture], wxUSE_MDI) |
960 | WX_ARG_ENABLE(mdidoc, [ --enable-mdidoc use docview architecture with MDI], wxUSE_MDI_ARCHITECTURE) | |
1e6feb95 VZ |
961 | WX_ARG_ENABLE(loggui, [ --enable-loggui use standard GUI logger], wxUSE_LOGGUI) |
962 | WX_ARG_ENABLE(logwin, [ --enable-logwin use wxLogWindow], wxUSE_LOGWINDOW) | |
69d27ff7 | 963 | WX_ARG_ENABLE(logdialog, [ --enable-logdialog use wxLogDialog], wxUSE_LOGDIALOG) |
ec9f9256 | 964 | WX_ARG_ENABLE(webkit, [ --enable-webkit use wxWebKitCtrl (Mac)], wxUSE_WEBKIT) |
9a98a854 VZ |
965 | |
966 | dnl --------------------------------------------------------------------------- | |
967 | dnl PostScript options | |
968 | dnl --------------------------------------------------------------------------- | |
143121c5 | 969 | WX_ARG_ENABLE(postscript, [ --enable-postscript use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT) |
9a98a854 VZ |
970 | |
971 | dnl VZ: these options seem to be always on, if someone wants to change it please do | |
143121c5 VZ |
972 | dnl WX_ARG_ENABLE(PS-normalized, [ --enable-PS-normalized use normalized PS fonts], dnl wxUSE_NORMALIZED_PS_FONTS) |
973 | dnl WX_ARG_ENABLE(afmfonts, [ --enable-afmfonts use Adobe Font Metric Font table], dnl wxUSE_AFM_FOR_POSTSCRIPT) | |
9a98a854 VZ |
974 | |
975 | dnl --------------------------------------------------------------------------- | |
976 | dnl resources | |
977 | dnl --------------------------------------------------------------------------- | |
1e6feb95 | 978 | |
1b86c3ac VZ |
979 | WX_ARG_ENABLE(prologio, [ --enable-prologio not available; see contrib], wxUSE_PROLOGIO) |
980 | WX_ARG_ENABLE(resources, [ --enable-resources not available; see contrib], wxUSE_RESOURCES) | |
143121c5 | 981 | |
9a98a854 VZ |
982 | dnl --------------------------------------------------------------------------- |
983 | dnl IPC &c | |
984 | dnl --------------------------------------------------------------------------- | |
9a98a854 | 985 | |
ddb4769e | 986 | WX_ARG_ENABLE(clipboard, [ --enable-clipboard use wxClipboard class], wxUSE_CLIPBOARD) |
143121c5 | 987 | WX_ARG_ENABLE(dnd, [ --enable-dnd use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP) |
b64f0a5f | 988 | WX_ARG_ENABLE(metafile, [ --enable-metafile use win32 metafiles], wxUSE_METAFILE) |
143121c5 | 989 | |
2fc9385a | 990 | dnl WX_ARG_ENABLE(treelayout, [ --enable-treelayout use wxTreeLayout class], wxUSE_TREELAYOUT) |
9a98a854 VZ |
991 | |
992 | dnl --------------------------------------------------------------------------- | |
993 | dnl optional GUI controls (in alphabetical order except the first one) | |
994 | dnl --------------------------------------------------------------------------- | |
995 | ||
143121c5 | 996 | WX_ARG_ENABLE(controls, [ --enable-controls use all usual controls], wxUSE_CONTROLS) |
9a98a854 VZ |
997 | |
998 | dnl even with --enable-controls, some may be disabled by giving | |
999 | dnl --disable-<control> later on the command line - but by default all will be | |
1000 | dnl used (and vice versa) | |
1001 | if test "$wxUSE_CONTROLS" = "yes"; then | |
1002 | DEFAULT_wxUSE_ACCEL=yes | |
1e6feb95 VZ |
1003 | DEFAULT_wxUSE_BMPBUTTON=yes |
1004 | DEFAULT_wxUSE_BUTTON=yes | |
da98e9be | 1005 | DEFAULT_wxUSE_CALCTRL=yes |
9a98a854 VZ |
1006 | DEFAULT_wxUSE_CARET=yes |
1007 | DEFAULT_wxUSE_COMBOBOX=yes | |
9a98a854 VZ |
1008 | DEFAULT_wxUSE_CHECKBOX=yes |
1009 | DEFAULT_wxUSE_CHECKLISTBOX=yes | |
ce4169a4 | 1010 | DEFAULT_wxUSE_CHOICE=yes |
92bbdbcd | 1011 | DEFAULT_wxUSE_CHOICEBOOK=yes |
da98e9be | 1012 | DEFAULT_wxUSE_DATEPICKCTRL=yes |
9a98a854 VZ |
1013 | DEFAULT_wxUSE_GAUGE=yes |
1014 | DEFAULT_wxUSE_GRID=yes | |
1015 | DEFAULT_wxUSE_IMAGLIST=yes | |
e9c0df38 | 1016 | DEFAULT_wxUSE_LISTBOOK=yes |
9a98a854 VZ |
1017 | DEFAULT_wxUSE_LISTBOX=yes |
1018 | DEFAULT_wxUSE_LISTCTRL=yes | |
1019 | DEFAULT_wxUSE_NOTEBOOK=yes | |
1020 | DEFAULT_wxUSE_RADIOBOX=yes | |
1021 | DEFAULT_wxUSE_RADIOBTN=yes | |
1022 | DEFAULT_wxUSE_SASH=yes | |
1023 | DEFAULT_wxUSE_SCROLLBAR=yes | |
1024 | DEFAULT_wxUSE_SLIDER=yes | |
1025 | DEFAULT_wxUSE_SPINBTN=yes | |
66f38406 | 1026 | DEFAULT_wxUSE_SPINCTRL=yes |
9a98a854 VZ |
1027 | DEFAULT_wxUSE_SPLITTER=yes |
1028 | DEFAULT_wxUSE_STATBMP=yes | |
1029 | DEFAULT_wxUSE_STATBOX=yes | |
1030 | DEFAULT_wxUSE_STATLINE=yes | |
1031 | DEFAULT_wxUSE_STATUSBAR=yes | |
1032 | DEFAULT_wxUSE_TAB_DIALOG=yes | |
1db8dc4a | 1033 | DEFAULT_wxUSE_TOGGLEBTN=yes |
9a98a854 | 1034 | DEFAULT_wxUSE_TOOLBAR=yes |
360d6699 VZ |
1035 | DEFAULT_wxUSE_TOOLBAR_NATIVE=yes |
1036 | DEFAULT_wxUSE_TOOLBAR_SIMPLE=yes | |
9a98a854 VZ |
1037 | DEFAULT_wxUSE_TOOLTIPS=yes |
1038 | DEFAULT_wxUSE_TREECTRL=yes | |
9f41d601 | 1039 | DEFAULT_wxUSE_POPUPWIN=yes |
0b01706f | 1040 | DEFAULT_wxUSE_TIPWINDOW=yes |
9a98a854 VZ |
1041 | elif test "$wxUSE_CONTROLS" = "no"; then |
1042 | DEFAULT_wxUSE_ACCEL=no | |
1e6feb95 VZ |
1043 | DEFAULT_wxUSE_BMPBUTTON=no |
1044 | DEFAULT_wxUSE_BUTTON=no | |
1045 | DEFAULT_wxUSE_CALCTRL=no | |
9a98a854 VZ |
1046 | DEFAULT_wxUSE_CARET=no |
1047 | DEFAULT_wxUSE_COMBOBOX=no | |
9a98a854 VZ |
1048 | DEFAULT_wxUSE_CHECKBOX=no |
1049 | DEFAULT_wxUSE_CHECKLISTBOX=no | |
ce4169a4 | 1050 | DEFAULT_wxUSE_CHOICE=no |
92bbdbcd | 1051 | DEFAULT_wxUSE_CHOICEBOOK=no |
da98e9be | 1052 | DEFAULT_wxUSE_DATEPICKCTRL=no |
9a98a854 VZ |
1053 | DEFAULT_wxUSE_GAUGE=no |
1054 | DEFAULT_wxUSE_GRID=no | |
1055 | DEFAULT_wxUSE_IMAGLIST=no | |
e9c0df38 | 1056 | DEFAULT_wxUSE_LISTBOOK=no |
9a98a854 VZ |
1057 | DEFAULT_wxUSE_LISTBOX=no |
1058 | DEFAULT_wxUSE_LISTCTRL=no | |
1059 | DEFAULT_wxUSE_NOTEBOOK=no | |
1060 | DEFAULT_wxUSE_RADIOBOX=no | |
1061 | DEFAULT_wxUSE_RADIOBTN=no | |
1062 | DEFAULT_wxUSE_SASH=no | |
1063 | DEFAULT_wxUSE_SCROLLBAR=no | |
1064 | DEFAULT_wxUSE_SLIDER=no | |
1065 | DEFAULT_wxUSE_SPINBTN=no | |
66f38406 | 1066 | DEFAULT_wxUSE_SPINCTRL=no |
9a98a854 VZ |
1067 | DEFAULT_wxUSE_SPLITTER=no |
1068 | DEFAULT_wxUSE_STATBMP=no | |
1069 | DEFAULT_wxUSE_STATBOX=no | |
1070 | DEFAULT_wxUSE_STATLINE=no | |
1071 | DEFAULT_wxUSE_STATUSBAR=no | |
1072 | DEFAULT_wxUSE_TAB_DIALOG=no | |
1db8dc4a | 1073 | DEFAULT_wxUSE_TOGGLEBTN=no |
9a98a854 | 1074 | DEFAULT_wxUSE_TOOLBAR=no |
360d6699 VZ |
1075 | DEFAULT_wxUSE_TOOLBAR_NATIVE=no |
1076 | DEFAULT_wxUSE_TOOLBAR_SIMPLE=no | |
9a98a854 VZ |
1077 | DEFAULT_wxUSE_TOOLTIPS=no |
1078 | DEFAULT_wxUSE_TREECTRL=no | |
9f41d601 | 1079 | DEFAULT_wxUSE_POPUPWIN=no |
0b01706f | 1080 | DEFAULT_wxUSE_TIPWINDOW=no |
9a98a854 VZ |
1081 | fi |
1082 | ||
143121c5 | 1083 | WX_ARG_ENABLE(accel, [ --enable-accel use accelerators], wxUSE_ACCEL) |
1e6feb95 | 1084 | WX_ARG_ENABLE(button, [ --enable-button use wxButton class], wxUSE_BUTTON) |
143121c5 | 1085 | WX_ARG_ENABLE(bmpbutton, [ --enable-bmpbutton use wxBitmapButton class], wxUSE_BMPBUTTON) |
1e6feb95 VZ |
1086 | WX_ARG_ENABLE(calendar, [ --enable-calendar use wxCalendarCtrl class], wxUSE_CALCTRL) |
1087 | WX_ARG_ENABLE(caret, [ --enable-caret use wxCaret class], wxUSE_CARET) | |
143121c5 VZ |
1088 | WX_ARG_ENABLE(checkbox, [ --enable-checkbox use wxCheckBox class], wxUSE_CHECKBOX) |
1089 | WX_ARG_ENABLE(checklst, [ --enable-checklst use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST) | |
ce4169a4 | 1090 | WX_ARG_ENABLE(choice, [ --enable-choice use wxChoice class], wxUSE_CHOICE) |
92bbdbcd | 1091 | WX_ARG_ENABLE(choicebook, [ --enable-choicebook use wxChoicebook class], wxUSE_CHOICEBOOK) |
ddb4769e | 1092 | WX_ARG_ENABLE(combobox, [ --enable-combobox use wxComboBox class], wxUSE_COMBOBOX) |
da98e9be | 1093 | WX_ARG_ENABLE(datepick, [ --enable-datepick use wxDatePickerCtrl class], wxUSE_DATEPICKCTRL) |
ddb4769e | 1094 | WX_ARG_ENABLE(display, [ --enable-display use wxDisplay class], wxUSE_DISPLAY) |
143121c5 VZ |
1095 | WX_ARG_ENABLE(gauge, [ --enable-gauge use wxGauge class], wxUSE_GAUGE) |
1096 | WX_ARG_ENABLE(grid, [ --enable-grid use wxGrid class], wxUSE_GRID) | |
1097 | WX_ARG_ENABLE(imaglist, [ --enable-imaglist use wxImageList class], wxUSE_IMAGLIST) | |
e9c0df38 | 1098 | WX_ARG_ENABLE(listbook, [ --enable-listbook use wxListbook class], wxUSE_LISTBOOK) |
143121c5 VZ |
1099 | WX_ARG_ENABLE(listbox, [ --enable-listbox use wxListBox class], wxUSE_LISTBOX) |
1100 | WX_ARG_ENABLE(listctrl, [ --enable-listctrl use wxListCtrl class], wxUSE_LISTCTRL) | |
1101 | WX_ARG_ENABLE(notebook, [ --enable-notebook use wxNotebook class], wxUSE_NOTEBOOK) | |
1102 | WX_ARG_ENABLE(radiobox, [ --enable-radiobox use wxRadioBox class], wxUSE_RADIOBOX) | |
1103 | WX_ARG_ENABLE(radiobtn, [ --enable-radiobtn use wxRadioButton class], wxUSE_RADIOBTN) | |
1104 | WX_ARG_ENABLE(sash, [ --enable-sash use wxSashWindow class], wxUSE_SASH) | |
1105 | WX_ARG_ENABLE(scrollbar, [ --enable-scrollbar use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR) | |
1106 | WX_ARG_ENABLE(slider, [ --enable-slider use wxSlider class], wxUSE_SLIDER) | |
1107 | WX_ARG_ENABLE(spinbtn, [ --enable-spinbtn use wxSpinButton class], wxUSE_SPINBTN) | |
66f38406 | 1108 | WX_ARG_ENABLE(spinctrl, [ --enable-spinctrl use wxSpinCtrl class], wxUSE_SPINCTRL) |
143121c5 VZ |
1109 | WX_ARG_ENABLE(splitter, [ --enable-splitter use wxSplitterWindow class], wxUSE_SPLITTER) |
1110 | WX_ARG_ENABLE(statbmp, [ --enable-statbmp use wxStaticBitmap class], wxUSE_STATBMP) | |
1111 | WX_ARG_ENABLE(statbox, [ --enable-statbox use wxStaticBox class], wxUSE_STATBOX) | |
1112 | WX_ARG_ENABLE(statline, [ --enable-statline use wxStaticLine class], wxUSE_STATLINE) | |
1e6feb95 | 1113 | WX_ARG_ENABLE(stattext, [ --enable-stattext use wxStaticText class], wxUSE_STATTEXT) |
143121c5 VZ |
1114 | WX_ARG_ENABLE(statusbar, [ --enable-statusbar use wxStatusBar class], wxUSE_STATUSBAR) |
1115 | WX_ARG_ENABLE(tabdialog, [ --enable-tabdialog use wxTabControl class], wxUSE_TABDIALOG) | |
1e6feb95 | 1116 | WX_ARG_ENABLE(textctrl, [ --enable-textctrl use wxTextCtrl class], wxUSE_TEXTCTRL) |
1db8dc4a | 1117 | WX_ARG_ENABLE(togglebtn, [ --enable-togglebtn use wxToggleButton class], wxUSE_TOGGLEBTN) |
143121c5 | 1118 | WX_ARG_ENABLE(toolbar, [ --enable-toolbar use wxToolBar class], wxUSE_TOOLBAR) |
360d6699 VZ |
1119 | WX_ARG_ENABLE(tbarnative, [ --enable-tbarnative use native wxToolBar class], wxUSE_TOOLBAR_NATIVE) |
1120 | WX_ARG_ENABLE(tbarsmpl, [ --enable-tbarsmpl use wxToolBarSimple class], wxUSE_TOOLBAR_SIMPLE) | |
143121c5 | 1121 | WX_ARG_ENABLE(treectrl, [ --enable-treectrl use wxTreeCtrl class], wxUSE_TREECTRL) |
0b01706f | 1122 | WX_ARG_ENABLE(tipwindow, [ --enable-tipwindow use wxTipWindow class], wxUSE_TIPWINDOW) |
9f41d601 | 1123 | WX_ARG_ENABLE(popupwin, [ --enable-popupwin use wxPopUpWindow class], wxUSE_POPUPWIN) |
9a98a854 VZ |
1124 | |
1125 | dnl --------------------------------------------------------------------------- | |
b1f5d087 | 1126 | dnl common dialogs |
9a98a854 VZ |
1127 | dnl --------------------------------------------------------------------------- |
1128 | ||
b3e8d00a | 1129 | WX_ARG_ENABLE(commondlg, [ --enable-commondlg use all common dialogs], wxUSE_COMMONDLGS) |
1e6feb95 VZ |
1130 | WX_ARG_ENABLE(choicedlg, [ --enable-choicedlg use wxChoiceDialog], wxUSE_CHOICEDLG) |
1131 | WX_ARG_ENABLE(coldlg, [ --enable-coldlg use wxColourDialog], wxUSE_COLOURDLG) | |
1132 | WX_ARG_ENABLE(filedlg, [ --enable-filedlg use wxFileDialog], wxUSE_FILEDLG) | |
69d27ff7 | 1133 | WX_ARG_ENABLE(finddlg, [ --enable-finddlg use wxFindReplaceDialog], wxUSE_FINDREPLDLG) |
1e6feb95 | 1134 | WX_ARG_ENABLE(fontdlg, [ --enable-fontdlg use wxFontDialog], wxUSE_FONTDLG) |
ce4169a4 | 1135 | WX_ARG_ENABLE(dirdlg, [ --enable-dirdlg use wxDirDialog], wxUSE_DIRDLG) |
1e6feb95 VZ |
1136 | WX_ARG_ENABLE(msgdlg, [ --enable-msgdlg use wxMessageDialog], wxUSE_MSGDLG) |
1137 | WX_ARG_ENABLE(numberdlg, [ --enable-numberdlg use wxNumberEntryDialog], wxUSE_NUMBERDLG) | |
cbca9943 | 1138 | WX_ARG_ENABLE(splash, [ --enable-splash use wxSplashScreen], wxUSE_SPLASH) |
c11584af | 1139 | WX_ARG_ENABLE(textdlg, [ --enable-textdlg use wxTextDialog], wxUSE_TEXTDLG) |
a641505f | 1140 | WX_ARG_ENABLE(tipdlg, [ --enable-tipdlg use startup tips], wxUSE_STARTUP_TIPS) |
ce4169a4 | 1141 | WX_ARG_ENABLE(progressdlg, [ --enable-progressdlg use wxProgressDialog], wxUSE_PROGRESSDLG) |
b1f5d087 VZ |
1142 | WX_ARG_ENABLE(wizarddlg, [ --enable-wizarddlg use wxWizard], wxUSE_WIZARDDLG) |
1143 | ||
1144 | dnl --------------------------------------------------------------------------- | |
1145 | dnl misc GUI options | |
1146 | dnl --------------------------------------------------------------------------- | |
1147 | ||
1e6feb95 | 1148 | WX_ARG_ENABLE(menus, [ --enable-menus use wxMenu/wxMenuBar/wxMenuItem classes], wxUSE_MENUS) |
143121c5 VZ |
1149 | WX_ARG_ENABLE(miniframe, [ --enable-miniframe use wxMiniFrame class], wxUSE_MINIFRAME) |
1150 | WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUSE_TOOLTIPS) | |
1151 | WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES) | |
1152 | WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS) | |
d78b3d64 | 1153 | WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO) |
4cb1d3da | 1154 | WX_ARG_ENABLE(joystick, [ --enable-joystick use wxJoystick], wxUSE_JOYSTICK) |
1e6feb95 | 1155 | WX_ARG_ENABLE(metafile, [ --enable-metafiles use wxMetaFile (Windows only)], wxUSE_METAFILE) |
24fd6d87 | 1156 | WX_ARG_ENABLE(dragimage, [ --enable-dragimage use wxDragImage], wxUSE_DRAGIMAGE) |
7bb2947d | 1157 | WX_ARG_ENABLE(accessibility,[ --enable-accessibility enable accessibility support], wxUSE_ACCESSIBILITY) |
143121c5 | 1158 | |
0940bcf7 HH |
1159 | dnl --------------------------------------------------------------------------- |
1160 | dnl support for image formats that do not rely on external library | |
1161 | dnl --------------------------------------------------------------------------- | |
1162 | ||
d275c7eb | 1163 | WX_ARG_ENABLE(palette, [ --enable-palette use wxPalette class], wxUSE_PALETTE) |
0046ff7c | 1164 | WX_ARG_ENABLE(image, [ --enable-image use wxImage class], wxUSE_IMAGE) |
6b5286d1 HH |
1165 | WX_ARG_ENABLE(gif, [ --enable-gif use gif images (GIF file format)], wxUSE_GIF) |
1166 | WX_ARG_ENABLE(pcx, [ --enable-pcx use pcx images (PCX file format)], wxUSE_PCX) | |
4b6b4dfc | 1167 | WX_ARG_ENABLE(iff, [ --enable-iff use iff images (IFF file format)], wxUSE_IFF) |
6b5286d1 | 1168 | WX_ARG_ENABLE(pnm, [ --enable-pnm use pnm images (PNM file format)], wxUSE_PNM) |
69d27ff7 | 1169 | WX_ARG_ENABLE(xpm, [ --enable-xpm use xpm images (XPM file format)], wxUSE_XPM) |
c7206e64 | 1170 | WX_ARG_ENABLE(ico_cur, [ --enable-icocur use Windows ICO and CUR formats], wxUSE_ICO_CUR) |
0940bcf7 | 1171 | |
b12915c1 | 1172 | fi |
590b1a4d | 1173 | |
ceec2216 RL |
1174 | dnl --------------------------------------------------------------------------- |
1175 | dnl flavour support | |
1176 | dnl --------------------------------------------------------------------------- | |
1177 | ||
1178 | dnl Should this be --enable? I flip-flopped a couple of times and this seems | |
1179 | dnl in the spirit if not the letter, we have gtk-prefix and the like in this group. | |
1180 | dnl It doesn't actually change anything but the output file names. | |
1181 | AC_ARG_WITH(flavour, [ --with-flavour=NAME specify a name to identify this build], [WX_FLAVOUR="$withval"]) | |
1182 | ||
029b47ad VS |
1183 | dnl --------------------------------------------------------------------------- |
1184 | dnl some win32 settings | |
1185 | dnl --------------------------------------------------------------------------- | |
1186 | ||
77ffb593 | 1187 | WX_ARG_ENABLE(official_build, [ --enable-official_build official build of wxWidgets (win32 DLL only)], wxUSE_OFFICIAL_BUILD) |
029b47ad VS |
1188 | AC_ARG_ENABLE(vendor, [ --enable-vendor=VENDOR vendor name (win32 DLL only)], [VENDOR="$enableval"]) |
1189 | if test "x$VENDOR" = "x"; then | |
1190 | VENDOR="custom" | |
1191 | fi | |
1192 | ||
590b1a4d | 1193 | |
b12915c1 VZ |
1194 | dnl for GUI only |
1195 | ||
143121c5 VZ |
1196 | dnl cache the options values before (may be) aborting below |
1197 | WX_ARG_CACHE_FLUSH | |
9a98a854 VZ |
1198 | |
1199 | dnl check that no more than one toolkit is given and that if none are given that | |
1200 | dnl we have a default one | |
efeb0365 | 1201 | |
143121c5 VZ |
1202 | AC_MSG_CHECKING(for toolkit) |
1203 | ||
d1188635 JS |
1204 | # In Wine, we need to default to MSW, not GTK or MOTIF |
1205 | if test "$wxUSE_WINE" = "yes"; then | |
1206 | DEFAULT_DEFAULT_wxUSE_GTK=0 | |
1207 | DEFAULT_DEFAULT_wxUSE_MOTIF=0 | |
1208 | DEFAULT_DEFAULT_wxUSE_MSW=1 | |
d030c68a | 1209 | wxUSE_SHARED=no |
d1188635 JS |
1210 | fi |
1211 | ||
e90c1d2a VZ |
1212 | if test "$wxUSE_GUI" = "yes"; then |
1213 | ||
3a922bb4 RL |
1214 | if test "$USE_BEOS" = 1; then |
1215 | AC_MSG_ERROR([BeOS GUI is not supported yet, use --disable-gui]) | |
1216 | fi | |
b12915c1 | 1217 | |
3a922bb4 RL |
1218 | if test "$TOOLKIT_GIVEN" = 1; then |
1219 | dnl convert "yes" to 1 and "no" to 0 | |
1220 | for toolkit in `echo $ALL_TOOLKITS`; do | |
1221 | var=wxUSE_$toolkit | |
1222 | eval "value=\$${var}" | |
1223 | eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`" | |
1224 | done | |
143121c5 | 1225 | else |
3a922bb4 RL |
1226 | dnl try to guess the most apropriate toolkit for this platform |
1227 | for toolkit in `echo $ALL_TOOLKITS`; do | |
1228 | if test "$has_toolkit_in_cache" != 1; then | |
1229 | var=DEFAULT_DEFAULT_wxUSE_$toolkit | |
1230 | else | |
1231 | var=DEFAULT_wxUSE_$toolkit | |
1232 | fi | |
1233 | eval "wxUSE_$toolkit=\$${var}" | |
1234 | done | |
143121c5 | 1235 | fi |
4c0ed911 | 1236 | |
3a922bb4 RL |
1237 | dnl we suppose that expr is available (maybe there is a better way to do |
1238 | dnl this? what about using ALL_TOOLKITS? TODO) | |
ac0c4cc3 DE |
1239 | NUM_TOOLKITS=`expr ${wxUSE_COCOA:-0} + ${wxUSE_GTK:-0} + ${wxUSE_MAC:-0} \ |
1240 | + ${wxUSE_MGL:-0} + ${wxUSE_MICROWIN:-0} \ | |
1241 | + ${wxUSE_MOTIF:-0} + ${wxUSE_MSW:-0} + ${wxUSE_X11:-0}` | |
9a98a854 | 1242 | |
3a922bb4 | 1243 | dnl Allow wxUSE_PM only for OS/2 with EMX. |
3a922bb4 | 1244 | case "${host}" in |
9829f277 | 1245 | *-pc-os2_emx | *-pc-os2-emx ) |
3a922bb4 | 1246 | NUM_TOOLKITS=`expr ${NUM_TOOLKITS} + ${wxUSE_PM:-0}` |
3a922bb4 | 1247 | esac |
9a98a854 | 1248 | |
3a922bb4 RL |
1249 | case "$NUM_TOOLKITS" in |
1250 | 1) | |
1251 | ;; | |
1252 | 0) | |
d74f4b5a | 1253 | AC_MSG_ERROR(Please specify a toolkit -- cannot determine the default for ${host}) |
3a922bb4 RL |
1254 | ;; |
1255 | *) | |
d74f4b5a | 1256 | AC_MSG_ERROR(Please specify at most one toolkit (maybe some are cached in configarg.cache?)) |
3a922bb4 | 1257 | esac |
143121c5 | 1258 | |
3a922bb4 RL |
1259 | dnl cache the wxUSE_<TOOLKIT> values too |
1260 | for toolkit in `echo $ALL_TOOLKITS`; do | |
1261 | var=wxUSE_$toolkit | |
1262 | eval "value=\$${var}" | |
1263 | if test "x$value" != x; then | |
1264 | cache_var=CACHE_$toolkit | |
1265 | eval "cache=\$${cache_var}" | |
1266 | if test "$cache" = 1; then | |
1267 | echo "$var=$value" >> ${wx_arg_cache_file} | |
1268 | fi | |
1269 | if test "$value" = 1; then | |
aa961a51 | 1270 | toolkit_echo=`echo $toolkit | tr "[[A-Z]]" "[[a-z]]"` |
3a922bb4 RL |
1271 | AC_MSG_RESULT($toolkit_echo) |
1272 | fi | |
1273 | fi | |
1274 | done | |
e90c1d2a | 1275 | else |
9de9b8f0 VZ |
1276 | if test "x$host_alias" != "x"; then |
1277 | AC_MSG_RESULT(base ($host_alias hosted) only) | |
1278 | else | |
1279 | AC_MSG_RESULT(base only) | |
1280 | fi | |
e90c1d2a VZ |
1281 | fi |
1282 | ||
17234b26 MB |
1283 | dnl --------------------------------------------------------------------------- |
1284 | dnl When we are using Cygwin with Motif/GTK+, we want it to appear like | |
1285 | dnl 'just' a POSIX platform, so the Win32 API must not be available | |
1286 | dnl --------------------------------------------------------------------------- | |
43d99b6d VS |
1287 | dnl (Windows-only piece) |
1288 | wants_win32=0 | |
1289 | doesnt_want_win32=0 | |
17234b26 MB |
1290 | case "${host}" in |
1291 | *-*-cygwin*) | |
1292 | if test "$wxUSE_MSW" = 1 ; then | |
43d99b6d VS |
1293 | wants_win32=1 |
1294 | else | |
1295 | doesnt_want_win32=1 | |
17234b26 MB |
1296 | fi |
1297 | ;; | |
1298 | *-*-mingw*) | |
43d99b6d | 1299 | wants_win32=1 |
17234b26 MB |
1300 | ;; |
1301 | esac | |
1302 | ||
d1188635 JS |
1303 | dnl --------------------------------------------------------------------------- |
1304 | dnl Wine is a virtual platform, we need to patch things up a bit | |
1305 | dnl --------------------------------------------------------------------------- | |
1306 | if test "$wxUSE_WINE" = "yes"; then | |
1307 | wants_win32=1 | |
1308 | dnl FIXME: we should do a better job of testing for these | |
1309 | CC=winegcc | |
1310 | CXX=wineg++ | |
1311 | RESCOMP=wrc | |
06b042dc | 1312 | LDFLAGS_GUI="-mwindows" |
d1188635 JS |
1313 | fi |
1314 | ||
43d99b6d VS |
1315 | dnl NB: The two tests bellow are *NOT* mutually exclusive! They should only |
1316 | dnl take effect on Cygwin/Mingw and not other platforms. | |
1317 | if test "$wants_win32" = 1 ; then | |
17234b26 MB |
1318 | USE_UNIX=0 |
1319 | USE_WIN32=1 | |
1320 | AC_DEFINE(__WIN32__) | |
1321 | AC_DEFINE(__WIN95__) | |
1322 | AC_DEFINE(__WINDOWS__) | |
1323 | AC_DEFINE(__GNUWIN32__) | |
1324 | AC_DEFINE(STRICT) | |
1325 | AC_DEFINE(WINVER, 0x0400) | |
43d99b6d VS |
1326 | fi |
1327 | if test "$doesnt_want_win32" = 1 ; then | |
17234b26 MB |
1328 | USE_UNIX=1 |
1329 | USE_WIN32=0 | |
1330 | fi | |
43d99b6d | 1331 | dnl (end of Windows-only piece) |
17234b26 MB |
1332 | |
1333 | if test "$USE_UNIX" = 1 ; then | |
1334 | wxUSE_UNIX=yes | |
1335 | AC_DEFINE(__UNIX__) | |
1336 | fi | |
1337 | ||
9a98a854 VZ |
1338 | dnl --------------------------------------------------------------------------- |
1339 | dnl Checks for programs | |
1340 | dnl --------------------------------------------------------------------------- | |
1341 | ||
1342 | dnl flush the cache because checking for programs might abort | |
1343 | AC_CACHE_SAVE | |
1344 | ||
1345 | dnl cross-compiling support: we're cross compiling if the build system is | |
1346 | dnl different from the target one (assume host and target be always the same) | |
e59890c3 | 1347 | if test "$build" != "$host" ; then |
031e9160 | 1348 | if test "$USE_WIN32" = 1 -o "$USE_DOS" = 1 -o "$USE_UNIX" = 1; then |
3a922bb4 RL |
1349 | CC=$host_alias-gcc |
1350 | CXX=$host_alias-c++ | |
1351 | AR=$host_alias-ar | |
1352 | RANLIB=$host_alias-ranlib | |
1353 | DLLTOOL=$host_alias-dlltool | |
1354 | RESCOMP=$host_alias-windres | |
3a922bb4 | 1355 | STRIP=$host_alias-strip |
031e9160 DE |
1356 | elif test "x$CC" '!=' "x"; then |
1357 | echo "You set CC, I assume you know what you are doing." | |
3a922bb4 RL |
1358 | else |
1359 | AC_MSG_ERROR($build_alias -> $host_alias cross compilation not supported yet.) | |
1360 | fi | |
9a98a854 VZ |
1361 | fi |
1362 | ||
1363 | dnl C-compiler checks | |
1364 | dnl defines CC with the compiler to use | |
1365 | dnl defines GCC with yes if using gcc | |
1366 | dnl defines GCC empty if not using gcc | |
1367 | dnl defines CFLAGS | |
04727afd VZ |
1368 | dnl |
1369 | dnl this magic incantation is needed to prevent AC_PROG_CC from setting the | |
2b5f62a0 | 1370 | dnl default CFLAGS (something like "-g -O2") -- we don't need this as we add |
04727afd | 1371 | dnl -g and -O flags ourselves below |
ec603395 | 1372 | CFLAGS=${CFLAGS:=} |
6dcfc289 | 1373 | AC_BAKEFILE_PROG_CC |
9a98a854 | 1374 | |
9a98a854 VZ |
1375 | dnl is -traditional needed for correct compilations |
1376 | dnl adds -traditional for gcc if needed | |
1377 | AC_PROG_GCC_TRADITIONAL | |
1378 | ||
1379 | AC_LANG_SAVE | |
1380 | AC_LANG_CPLUSPLUS | |
1381 | ||
1382 | dnl C++-compiler checks | |
1383 | dnl defines CXX with the compiler to use | |
1384 | dnl defines GXX with yes if using gxx | |
1385 | dnl defines GXX empty if not using gxx | |
1386 | dnl defines CXXFLAGS | |
04727afd VZ |
1387 | dnl |
1388 | dnl see CFLAGS line above | |
ec603395 | 1389 | CXXFLAGS=${CXXFLAGS:=} |
6dcfc289 | 1390 | AC_BAKEFILE_PROG_CXX |
9a98a854 | 1391 | |
9a98a854 VZ |
1392 | AC_LANG_RESTORE |
1393 | ||
1394 | dnl ranlib command | |
1395 | dnl defines RANLIB with the appropriate command | |
1396 | AC_PROG_RANLIB | |
1397 | ||
1398 | dnl ar command | |
1399 | dnl defines AR with the appropriate command | |
911740e7 VS |
1400 | AC_CHECK_PROG(AR, ar, ar) |
1401 | if test "x$AR" = "x" ; then | |
77ffb593 | 1402 | AC_MSG_ERROR([ar is needed to build wxWidgets]) |
911740e7 | 1403 | fi |
9a98a854 VZ |
1404 | |
1405 | dnl install checks | |
1406 | dnl defines INSTALL with the appropriate command | |
6054113a | 1407 | AC_PROG_INSTALL |
2e033fd1 | 1408 | |
ab9f788e SN |
1409 | dnl make install path absolute (if not already); |
1410 | dnl will fail with (some) MSDOS paths | |
2e033fd1 CE |
1411 | case ${INSTALL} in |
1412 | /* ) # Absolute | |
1413 | ;; | |
ab9f788e SN |
1414 | ?:* ) # Drive letter, considered as absolute. |
1415 | ;; | |
3bd8fb5f | 1416 | *) |
2e033fd1 CE |
1417 | INSTALL=`pwd`/${INSTALL} ;; |
1418 | esac | |
1419 | ||
1420 | ||
d6853540 RL |
1421 | case "${host}" in |
1422 | ||
b5853384 GD |
1423 | dnl The other BSD's should probably go in here too, since this is |
1424 | dnl to workaround a strange static lib BSDism. | |
1425 | dnl Mac OS X install seems to ignore -p option... | |
d6853540 | 1426 | powerpc-*-darwin* ) |
eb99ae0b GD |
1427 | INSTALL_PROGRAM="cp -fp" |
1428 | INSTALL_DATA="cp -fp" | |
d6853540 RL |
1429 | ;; |
1430 | *) | |
6054113a | 1431 | ;; |
d6853540 | 1432 | esac |
9a98a854 | 1433 | |
9a98a854 VZ |
1434 | dnl strip command |
1435 | dnl defines STRIP as strip or nothing if not found | |
1436 | AC_CHECK_PROG(STRIP, strip, strip, true) | |
1437 | ||
414eab6d VZ |
1438 | dnl does make support "-include" (only GNU make does AFAIK)? |
1439 | AC_CACHE_CHECK([if make is GNU make], wx_cv_prog_makeisgnu, | |
1440 | [ | |
1441 | if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null | | |
c13b1125 | 1442 | egrep -s GNU > /dev/null); then |
414eab6d VZ |
1443 | wx_cv_prog_makeisgnu="yes" |
1444 | else | |
1445 | wx_cv_prog_makeisgnu="no" | |
1446 | fi | |
1447 | ]) | |
1448 | ||
1449 | if test "x$wx_cv_prog_makeisgnu" = "xyes"; then | |
1450 | IF_GNU_MAKE="" | |
1451 | else | |
1452 | IF_GNU_MAKE="#" | |
1453 | fi | |
1454 | ||
1455 | AC_SUBST(IF_GNU_MAKE) | |
1456 | ||
1457 | dnl we don't need to check for VPATH support in GNU make - it does have it | |
1458 | if test "x$wx_cv_prog_makeisgnu" != "xyes"; then | |
9a98a854 | 1459 | dnl check if VPATH works |
04e7a216 | 1460 | AC_CACHE_CHECK([if make supports VPATH], wx_cv_prog_makevpath, [ |
9a98a854 VZ |
1461 | dnl create Makefile |
1462 | cat - << EOF > confMake | |
1463 | check : file | |
1464 | cp \$? \$@ | |
1465 | cp \$? final_file | |
1466 | EOF | |
1467 | ||
1468 | if test ! -d sub ; then | |
1469 | mkdir sub | |
1470 | fi | |
1471 | echo dummy > sub/file | |
f6bcfd97 | 1472 | ${MAKE-make} -f confMake VPATH=sub 2>&5 > /dev/null |
9a98a854 VZ |
1473 | RESULT=$? |
1474 | rm -f sub/file check final_file confMake | |
1475 | rmdir sub | |
1476 | if test "$RESULT" = 0; then | |
04e7a216 | 1477 | wx_cv_prog_makevpath="yes" |
9a98a854 | 1478 | else |
04e7a216 VZ |
1479 | wx_cv_prog_makevpath="no" |
1480 | fi | |
1481 | ]) | |
1482 | ||
1483 | if test "x$wx_cv_prog_makevpath" != "xyes"; then | |
1484 | AC_MSG_ERROR([ | |
9a98a854 VZ |
1485 | You need a make-utility that is able to use the variable |
1486 | VPATH correctly. | |
1487 | If your version of make does not support VPATH correctly, | |
1488 | please install GNU-make (possibly as gmake), and start | |
1489 | configure with the following command: | |
1490 | export MAKE=gmake; ./configure for sh-type shells | |
1491 | setenv MAKE gmake; ./configure for csh-type shells | |
1492 | Also please do remember to use gmake in this case every time | |
1493 | you are trying to compile. | |
1e487827 | 1494 | ]) |
414eab6d VZ |
1495 | fi dnl make without VPATH |
1496 | fi dnl not GNU make | |
613d0995 | 1497 | |
c7114f59 VZ |
1498 | dnl needed for making link to setup.h |
1499 | AC_PROG_LN_S | |
1500 | ||
a3603620 SN |
1501 | dnl ------------------------------------------------------------------------ |
1502 | dnl Platform specific tests | |
1503 | dnl ------------------------------------------------------------------------ | |
1504 | ||
9273ffba DE |
1505 | dnl xlC needs -qunique (at least on AIX) so that one source file can be |
1506 | dnl compiled to multiple object files and safely linked together. | |
1507 | if test "x$XLCXX" = "xyes"; then | |
1508 | CXXFLAGS="$CXXFLAGS -qunique" | |
1509 | fi | |
1510 | ||
1511 | ||
4d7ec9f1 DE |
1512 | dnl This case is for OS X vs. everything else |
1513 | case "${host}" in | |
1514 | powerpc-*-darwin* ) | |
1515 | AC_MSG_CHECKING([if __POWERPC__ is already defined]) | |
1516 | AC_TRY_COMPILE([],[#ifndef __POWERPC__ | |
1517 | choke me for lack of PowerPC | |
1518 | #endif | |
1519 | ], | |
1520 | [AC_MSG_RESULT([yes])], | |
1521 | [AC_MSG_RESULT([no]) | |
1522 | AC_DEFINE(__POWERPC__) | |
1523 | ]) | |
1524 | AC_MSG_CHECKING([if CoreFoundation/CFBase.h is usable]) | |
1525 | AC_TRY_COMPILE([#include <CoreFoundation/CFBase.h> | |
1526 | ],[], | |
1527 | [AC_MSG_RESULT([yes])], | |
1528 | [AC_MSG_RESULT([no]) | |
1529 | AC_MSG_CHECKING([if __CF_USE_FRAMEWORK_INCLUDES__ is required]) | |
1530 | AC_TRY_COMPILE([#define __CF_USE_FRAMEWORK_INCLUDES__ | |
1531 | #include <CoreFoundation/CFBase.h> | |
1532 | ],[], | |
1533 | [AC_MSG_RESULT([yes]) | |
1534 | dnl We must use -D so source files that don't include wx/setup.h | |
1535 | dnl but do include CFBase will work. | |
1536 | CPPFLAGS="$CPPFLAGS -D__CF_USE_FRAMEWORK_INCLUDES__"], | |
1537 | [AC_MSG_FAILURE([no. CoreFoundation not available.])] | |
1538 | ) | |
1539 | ] | |
1540 | ) | |
1541 | ;; | |
1542 | esac | |
1543 | ||
1544 | dnl This case is for OS/2 vs. everything else | |
2b5f62a0 VZ |
1545 | case "${host}" in |
1546 | *-pc-os2_emx | *-pc-os2-emx ) | |
a3603620 SN |
1547 | dnl --------------------------------------------------------------------- |
1548 | dnl When we are using gcc on OS/2, we want to be either using resources | |
1549 | dnl (PM) or a more complete POSIX emulation for Motif/GTK+/X11. | |
1550 | dnl Moreover we need to link explicitly against either stdcpp.a or | |
1551 | dnl stdcxx.a (depending on compiler version), since we are using "gcc", | |
1552 | dnl not "g++/c++". | |
1553 | dnl --------------------------------------------------------------------- | |
1554 | dnl (OS/2-only piece) | |
2b5f62a0 VZ |
1555 | if test "$wxUSE_MOTIF" = 1 -o "$wxUSE_GTK" = 1 -o "$wxUSE_X11" = 1; then |
1556 | dnl More complete Unix emulation for unix-like ports | |
1557 | dnl by linking in POSIX/2's cExt (if available). | |
1558 | AC_CHECK_LIB(cExt, drand48, LIBS="$LIBS -lcExt") | |
1559 | else | |
1560 | dnl Include resources for the "native" port (wxPM). | |
1561 | RESPROGRAMOBJ="\${top_srcdir}/include/wx/os2/wx.res" | |
1562 | fi | |
7f8c0d74 SN |
1563 | dnl Check for the gcc version (and thereby for the C runtime library). |
1564 | dnl wx_cv_gccversion = EMX2 -> Standard EMX environment | |
1565 | dnl wx_cv_gccversion = EMX3 -> EMX with gcc-3.0.3 or gcc-3.2.1 | |
1566 | dnl wx_cv_gccversion = Innotek5 -> gcc-3.2.2 with Innotek libc5 | |
1567 | dnl wx_cv_gccversion = Innotek6 -> gcc-3.3.5 with Innotek libc6. | |
f47af52b | 1568 | AC_CACHE_CHECK([for gcc/libc version], wx_cv_gccversion,[ |
7f8c0d74 SN |
1569 | AC_TRY_RUN( |
1570 | dnl Check the gcc version macro. | |
4cbbb631 | 1571 | [ |
7f8c0d74 SN |
1572 | #include <stdio.h> |
1573 | ||
1574 | int main() | |
1575 | { | |
1576 | FILE *f=fopen("conftestval", "w"); | |
1577 | if (!f) exit(1); | |
1578 | fprintf(f, | |
4cbbb631 | 1579 | #if (__GNUC__ < 3) |
7f8c0d74 SN |
1580 | "EMX2" |
1581 | #elif (__GNUC__==3) && ((__GNUC_MINOR__ < 2) || ((__GNUC_MINOR__==2) && (__GNUC_PATCHLEVEL__<2))) | |
1582 | "EMX3" | |
1583 | #elif (__GNUC__==3) && (__GNUC_MINOR__==2) && (__GNUC_PATCHLEVEL__==2) | |
1584 | "Innotek5" | |
1585 | #else | |
1586 | "Innotek6" | |
4cbbb631 | 1587 | #endif |
7f8c0d74 SN |
1588 | ); |
1589 | exit(0); | |
1590 | } | |
4cbbb631 | 1591 | ], |
7f8c0d74 SN |
1592 | wx_cv_gccversion=`cat conftestval`, |
1593 | wx_cv_gccversion="EMX2", | |
1594 | dnl Compilation error: Assuming standard EMX environment | |
1595 | wx_cv_gccversion="EMX2" | |
4cbbb631 SN |
1596 | ) |
1597 | ]) | |
7f8c0d74 | 1598 | if test "$wx_cv_gccversion" = "EMX2"; then |
4cbbb631 | 1599 | LIBS="$LIBS -lstdcpp" |
dc4118b8 | 1600 | LDFLAGS="$LDFLAGS -Zsysv-signals" |
4cbbb631 | 1601 | else |
7f8c0d74 | 1602 | if test "$wx_cv_gccversion" = "EMX3"; then |
dc4118b8 SN |
1603 | LIBS="$LIBS -lstdcxx" |
1604 | LDFLAGS="$LDFLAGS -Zsysv-signals" | |
1605 | else | |
1606 | LIBS="$LIBS -lstdc++" | |
1607 | fi | |
4cbbb631 | 1608 | fi |
f6a9b35e SN |
1609 | if test "$wxUSE_SHARED" = "yes" -a "$wxUSE_OMF" = "no"; then |
1610 | AC_MSG_WARN([Building DLLs requires OMF mode, enabled]) | |
1611 | wxUSE_OMF=yes | |
e201b348 | 1612 | enable_omf=yes |
f6a9b35e | 1613 | fi |
a3603620 SN |
1614 | dnl (end of OS/2-only piece) |
1615 | ;; | |
1616 | *) | |
1617 | dnl --------------------------------------------------------------------- | |
1618 | dnl look for strcasecmp() in string.h and then strings.h if it's not | |
1619 | dnl there. Don't do this on OS/2, where "stricmp" is the function to be | |
1620 | dnl used. | |
1621 | dnl --------------------------------------------------------------------- | |
1622 | dnl (non-OS/2-only piece) | |
1623 | ||
1624 | AC_LANG_SAVE | |
1625 | AC_LANG_CPLUSPLUS | |
1626 | ||
1627 | AC_CACHE_CHECK([for strcasecmp() in string.h], ac_cv_string_strcasecmp, [ | |
1628 | AC_TRY_LINK([ | |
1629 | #include <string.h> | |
1630 | ], | |
1631 | [ | |
1632 | strcasecmp("foo", "bar"); | |
1633 | ], | |
1634 | ac_cv_string_strcasecmp=yes, | |
1635 | ac_cv_string_strcasecmp=no | |
1636 | ) | |
1637 | ]) | |
1638 | ||
1639 | if test x"$ac_cv_string_strcasecmp" = "xyes"; then | |
1640 | AC_DEFINE(HAVE_STRCASECMP_IN_STRING_H) | |
1641 | else | |
1642 | AC_CACHE_CHECK([for strcasecmp() in strings.h], ac_cv_strings_strcasecmp, [ | |
1643 | AC_TRY_LINK([ | |
1644 | #include <strings.h> | |
1645 | ], | |
1646 | [ | |
1647 | strcasecmp("foo", "bar"); | |
1648 | ], | |
1649 | ac_cv_strings_strcasecmp=yes, | |
1650 | ac_cv_strings_strcasecmp=no | |
1651 | ) | |
1652 | ]) | |
1653 | ||
858e1e7c | 1654 | if test x"$ac_cv_strings_strcasecmp" = "xyes"; then |
a3603620 SN |
1655 | AC_DEFINE(HAVE_STRCASECMP_IN_STRINGS_H) |
1656 | else | |
1657 | AC_MSG_ERROR([No case-insensitive string comparison function found.]) | |
1658 | fi | |
1659 | fi | |
1660 | ||
1661 | AC_LANG_RESTORE | |
1662 | dnl (end of non-OS/2-only piece) | |
2b5f62a0 VZ |
1663 | ;; |
1664 | esac | |
2b5f62a0 | 1665 | |
21d1c967 GD |
1666 | dnl ------------------------------------------------------------------------ |
1667 | dnl Check for headers | |
1668 | dnl ------------------------------------------------------------------------ | |
1669 | ||
21d1c967 GD |
1670 | dnl defines HAVE_STDLIB_H |
1671 | AC_CHECK_HEADERS(stdlib.h) | |
1672 | dnl defines HAVE_MALLOC_H | |
1673 | AC_CHECK_HEADERS(malloc.h) | |
1674 | dnl defines HAVE_UNISTD_H | |
1675 | AC_CHECK_HEADERS(unistd.h) | |
1676 | dnl defines HAVE_WCHAR_H | |
1677 | AC_CHECK_HEADERS(wchar.h) | |
1678 | ||
1679 | dnl maybe wchar_t is in wcstr.h if we don't have wchar.h? | |
1680 | if test "$ac_cv_header_wchar_h" != "yes"; then | |
1681 | dnl defines HAVE_WCSTR_H | |
1682 | AC_CHECK_HEADERS(wcstr.h) | |
1683 | fi | |
1684 | ||
21d1c967 GD |
1685 | dnl defines HAVE_FNMATCH_H |
1686 | AC_CHECK_HEADERS(fnmatch.h) | |
1687 | ||
1688 | if test "x$ac_cv_header_fnmatch_h" = "xyes"; then | |
1689 | AC_CHECK_FUNCS(fnmatch) | |
1690 | fi | |
1691 | ||
1692 | dnl defines HAVE_LANGINFO_H (GNU libc locale parameters) | |
1693 | AC_CHECK_HEADERS(langinfo.h) | |
1694 | ||
ab9f788e SN |
1695 | case "${host}" in |
1696 | *-pc-os2_emx | *-pc-os2-emx ) | |
7f8c0d74 SN |
1697 | dnl Explicitly link -lintl if langinfo.h is available |
1698 | dnl and intl not yet included in libc | |
1699 | if test $ac_cv_header_langinfo_h = "yes" \ | |
1700 | -a \( "$wx_cv_gccversion" = "EMX2" \ | |
1701 | -o "$wx_cv_gccversion" = "EMX3" \ | |
1702 | -o "$wx_cv_gccversion" = "Innotek5" \); then | |
ab9f788e SN |
1703 | LIBS="$LIBS -lintl" |
1704 | fi | |
1705 | ;; | |
1706 | esac | |
1542ea39 | 1707 | |
21d1c967 | 1708 | if test "$wxUSE_GUI" = "yes"; then |
4cbbb631 | 1709 | if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_PM" != 1; then |
21d1c967 | 1710 | dnl defines HAVE_X11_XKBLIB_H |
35c49c4b SN |
1711 | AC_CHECK_HEADERS(X11/Xlib.h) |
1712 | AC_CHECK_HEADERS([X11/XKBlib.h], [], [], | |
1713 | [ | |
1714 | #if HAVE_X11_XLIB_H | |
1715 | #include <X11/Xlib.h> | |
1716 | #endif | |
1717 | ]) | |
21d1c967 GD |
1718 | fi |
1719 | fi | |
1720 | ||
90dd450c VZ |
1721 | dnl --------------------------------------------------------------------------- |
1722 | dnl Checks for compiler characteristics | |
1723 | dnl --------------------------------------------------------------------------- | |
1724 | ||
1725 | dnl defines const to be empty if c-compiler does not support const fully | |
1726 | AC_C_CONST | |
1727 | dnl defines inline to a sensible value for the c-compiler | |
1728 | AC_C_INLINE | |
1729 | ||
1730 | dnl check the sizes of integral types (give some reasonable default values for | |
1731 | dnl cross-compiling) | |
1732 | dnl defines the size of certain types of variables in SIZEOF_<TYPE> | |
1733 | AC_CHECK_SIZEOF(char, 1) | |
1734 | AC_CHECK_SIZEOF(short, 2) | |
1735 | AC_CHECK_SIZEOF(void *, 4) | |
1736 | AC_CHECK_SIZEOF(int, 4) | |
1737 | AC_CHECK_SIZEOF(long, 4) | |
a369f7c8 | 1738 | AC_CHECK_SIZEOF(size_t, 4) |
90dd450c VZ |
1739 | |
1740 | case "${host}" in | |
1741 | arm-*-linux* ) | |
1742 | AC_CHECK_SIZEOF(long long, 8) | |
1743 | ;; | |
4f57cf11 GD |
1744 | *-hp-hpux* ) |
1745 | AC_CHECK_SIZEOF(long long, 0) | |
1746 | if test "$ac_cv_sizeof_long_long" != "0"; then | |
1747 | dnl HPUX 10.20 headers need this define in order to use long long definitions | |
1748 | CPPFLAGS="$CPPFLAGS -D_INCLUDE_LONGLONG" | |
1749 | fi | |
1750 | ;; | |
90dd450c VZ |
1751 | * ) |
1752 | AC_CHECK_SIZEOF(long long, 0) | |
1753 | esac | |
1754 | ||
238ecede MW |
1755 | dnl SGI/Irix's stdio.h does not include wchar_t. Mac OS X does not provide |
1756 | dnl wchar.h and wchar_t is defined by stdlib.h (GD) | |
1757 | AC_CHECK_SIZEOF(wchar_t, 0, | |
1758 | [ | |
1759 | /* DJGPP only has fake wchar_t: */ | |
1760 | #ifdef __DJGPP__ | |
1761 | # error "fake wchar_t" | |
1762 | #endif | |
1763 | #ifdef HAVE_WCHAR_H | |
1764 | # ifdef __CYGWIN__ | |
1765 | # include <stddef.h> | |
1766 | # endif | |
1767 | # include <wchar.h> | |
1768 | #endif | |
1769 | #ifdef HAVE_STDLIB_H | |
1770 | # include <stdlib.h> | |
1771 | #endif | |
1772 | #include <stdio.h> | |
1773 | ] | |
1774 | ) | |
90dd450c | 1775 | |
8fa53e0e VZ |
1776 | dnl checks needed to define wxVaCopy |
1777 | AC_CACHE_CHECK([for va_copy], | |
1778 | wx_cv_func_va_copy, | |
1779 | [ | |
ba3d13e1 | 1780 | AC_LINK_IFELSE([ |
8fa53e0e VZ |
1781 | #include <stdarg.h> |
1782 | void foo(char *f, ...) | |
1783 | { | |
1784 | va_list ap1, ap2; | |
1785 | va_start(ap1, f); | |
1786 | va_copy(ap2, ap1); | |
1787 | va_end(ap2); | |
1788 | va_end(ap1); | |
5886b072 VZ |
1789 | } |
1790 | int main() | |
1791 | { | |
b902e639 VZ |
1792 | foo("hi", 17); |
1793 | return 0; | |
8fa53e0e VZ |
1794 | }], |
1795 | wx_cv_func_va_copy=yes, | |
1796 | wx_cv_func_va_copy=no | |
1797 | ) | |
1798 | ] | |
1799 | ) | |
1800 | ||
1801 | if test $wx_cv_func_va_copy = "yes"; then | |
1802 | AC_DEFINE(HAVE_VA_COPY) | |
1803 | else | |
1804 | dnl try to understand how can we copy va_lists | |
1805 | AC_CACHE_CHECK([if va_list can be copied by value], | |
1806 | wx_cv_type_va_list_lvalue, | |
1807 | [ | |
1808 | AC_RUN_IFELSE([ | |
1809 | #include <stdarg.h> | |
1810 | int foo(char *f, ...) | |
1811 | { | |
1812 | va_list ap1, ap2; | |
1813 | va_start(ap1, f); | |
1814 | ap2 = ap1; | |
1815 | if ( va_arg(ap1, int) != 17 || va_arg(ap2, int) != 17 ) | |
1816 | return 1; | |
1817 | va_end(ap2); | |
1818 | va_end(ap1); | |
1819 | return 0; | |
1820 | } | |
1821 | int main() | |
1822 | { | |
1823 | return foo("hi", 17); | |
1824 | }], | |
1825 | wx_cv_type_va_list_lvalue=yes, | |
1826 | wx_cv_type_va_list_lvalue=no, | |
1827 | dnl assume most common case for cross-compiling... | |
1828 | wx_cv_type_va_list_lvalue=yes | |
1829 | ) | |
1830 | ] | |
1831 | ) | |
1832 | ||
1833 | if test $wx_cv_type_va_list_lvalue != "yes"; then | |
1834 | dnl we suppose that the only thing which can't be copied like this | |
1835 | dnl are arrays... only experience will show whether this is really true | |
1836 | AC_DEFINE(VA_LIST_IS_ARRAY) | |
1837 | fi | |
1838 | fi | |
1839 | ||
90dd450c VZ |
1840 | dnl check for large file support |
1841 | AC_SYS_LARGEFILE | |
1842 | ||
f02444d0 VZ |
1843 | dnl we need to define _FILE_OFFSET_BITS or _LARGE_FILES on the compiler command |
1844 | dnl line because otherwise the system headers risk being included before | |
1845 | dnl wx/defs.h which defines these constants leading to inconsistent | |
1846 | dnl sizeof(off_t) in different source files of the same program and linking | |
1847 | dnl problems | |
1848 | if test "x$wx_largefile" = "xyes"; then | |
e26c13cf RD |
1849 | if test "x$ac_cv_sys_file_offset_bits" = "x64"; then |
1850 | WX_LARGEFILE_FLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES" | |
f02444d0 | 1851 | else |
e26c13cf | 1852 | WX_LARGEFILE_FLAGS="-D_LARGE_FILES" |
f02444d0 | 1853 | fi |
026d8152 SN |
1854 | dnl AC_FUNC_FSEEKO sets HAVE_FSEEKO and $ac_cv_sys_largefile_source |
1855 | AC_FUNC_FSEEKO | |
1856 | if test "$ac_cv_sys_largefile_source" != no; then | |
1857 | WX_LARGEFILE_FLAGS="$WX_LARGEFILE_FLAGS -D_LARGEFILE_SOURCE=$ac_cv_sys_largefile_source" | |
1858 | fi | |
e26c13cf | 1859 | CPPFLAGS="$CPPFLAGS $WX_LARGEFILE_FLAGS" |
f02444d0 VZ |
1860 | fi |
1861 | ||
90dd450c VZ |
1862 | dnl check for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling) |
1863 | WX_C_BIGENDIAN | |
1864 | ||
1865 | dnl check for iostream (as opposed to iostream.h) standard header | |
1866 | WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH)) | |
1867 | ||
1868 | dnl check whether C++ compiler supports bool built-in type | |
1869 | WX_CPP_BOOL | |
1870 | ||
986ecc86 VZ |
1871 | dnl check whether C++ compiler supports explicit keyword |
1872 | WX_CPP_EXPLICIT | |
1873 | ||
521196a2 MB |
1874 | dnl check whether C++ compiler supports C++ casts |
1875 | AC_CXX_CONST_CAST | |
4ebb542f | 1876 | AC_CXX_REINTERPRET_CAST |
ecfd48ca | 1877 | AC_CXX_STATIC_CAST |
5df6b3dc VZ |
1878 | dnl we don't use HAVE_DYNAMIC_CAST anywhere right now... |
1879 | dnl AC_CXX_DYNAMIC_CAST | |
521196a2 | 1880 | |
e87b7833 MB |
1881 | dnl check various STL features |
1882 | if test "$wxUSE_STL" = "yes"; then | |
1883 | AC_LANG_PUSH(C++) | |
1884 | ||
1885 | dnl check for basic STL functionality | |
1886 | AC_MSG_CHECKING([for basic STL functionality]) | |
1887 | AC_TRY_COMPILE([#include <string> | |
1888 | #include <functional> | |
1889 | #include <algorithm> | |
1890 | #include <vector> | |
1891 | #include <list>], | |
1892 | [std::vector<int> moo; | |
1893 | std::list<int> foo; | |
1894 | std::vector<int>::iterator it = | |
1895 | std::find_if(moo.begin(), moo.end(), | |
1896 | std::bind2nd(std::less<int>(), 3));], | |
1897 | [AC_MSG_RESULT([yes])], | |
1898 | [AC_MSG_RESULT([no]) | |
1899 | AC_MSG_ERROR([Basic STL functionality missing])]) | |
1900 | ||
1901 | dnl check if <string> declares std::wstring | |
1902 | AC_MSG_CHECKING([for std::wstring in <string>]) | |
1903 | AC_TRY_COMPILE([#include <string>], | |
1904 | [std::wstring foo;], | |
1905 | [AC_MSG_RESULT(yes) | |
1906 | AC_DEFINE(HAVE_STD_WSTRING)], | |
1907 | [AC_MSG_RESULT(no)]) | |
1908 | ||
1909 | dnl check for compliant std::string::compare | |
1910 | AC_MSG_CHECKING([for compliant std::string::compare]) | |
1911 | AC_TRY_COMPILE([#include <string>], | |
1912 | [std::string foo, bar; | |
1913 | foo.compare(bar); | |
1914 | foo.compare(1, 1, bar); | |
1915 | foo.compare(1, 1, bar, 1, 1); | |
1916 | foo.compare(""); | |
1917 | foo.compare(1, 1, ""); | |
1918 | foo.compare(1, 1, "", 2);], | |
1919 | [AC_MSG_RESULT(yes) | |
1920 | AC_DEFINE(HAVE_STD_STRING_COMPARE)], | |
1921 | [AC_MSG_RESULT(no)]) | |
1922 | ||
bdcade0a MB |
1923 | dnl check for hash_map and hash_set headers |
1924 | AC_CHECK_HEADER([hash_map], | |
1925 | [AC_MSG_CHECKING([for hash_map and hash_set]) | |
1926 | AC_TRY_COMPILE([#include <hash_map> | |
1927 | #include <hash_set>], | |
1928 | [std::hash_map<double*, char*, std::hash<double*>, std::equal_to<double*> > test1; | |
1929 | std::hash_set<char*, std::hash<char*>, std::equal_to<char*> > test2;], | |
1930 | [AC_MSG_RESULT(yes) | |
1931 | AC_DEFINE(HAVE_HASH_MAP) | |
1932 | AC_DEFINE(HAVE_STD_HASH_MAP)], | |
1933 | [AC_MSG_RESULT(no)]) | |
1934 | ]) | |
1935 | ||
1936 | AC_CHECK_HEADER([ext/hash_map], | |
1937 | [AC_MSG_CHECKING([for hash_map and hash_set]) | |
1938 | AC_TRY_COMPILE([#include <ext/hash_map> | |
1939 | #include <ext/hash_set>], | |
1940 | [__gnu_cxx::hash_map<double*, char*, __gnu_cxx::hash<double*>, std::equal_to<double*> > test1; | |
1941 | __gnu_cxx::hash_set<char*, __gnu_cxx::hash<char*>, std::equal_to<char*> > test2;], | |
1942 | [AC_MSG_RESULT(yes) | |
1943 | AC_DEFINE(HAVE_EXT_HASH_MAP) | |
1944 | AC_DEFINE(HAVE_GNU_CXX_HASH_MAP)], | |
1945 | [AC_MSG_RESULT(no)]) | |
1946 | ]) | |
1947 | ||
e87b7833 MB |
1948 | AC_LANG_POP |
1949 | fi | |
1950 | ||
9a98a854 VZ |
1951 | dnl --------------------------------------------------------------------------- |
1952 | dnl Define search path for includes and libraries: all headers and libs will be | |
1953 | dnl looked for in all directories of this path | |
1954 | dnl --------------------------------------------------------------------------- | |
1955 | ||
2b5f62a0 VZ |
1956 | dnl Notice that /usr/include should *not* be in this list, otherwise it breaks |
1957 | dnl compilation on Solaris/AIX/... with gcc because standard (non ANSI C) | |
1958 | dnl headers are included instead of the "fixed" (ANSI-fied) gcc ones. | |
afc31813 VZ |
1959 | dnl |
1960 | dnl Also try to put all directories which may contain X11R6 before those which | |
1961 | dnl may contain X11R5/4 - we want to use R6 on machines which have both! | |
789c5f4a VZ |
1962 | dnl |
1963 | dnl In the same vein. Motif 2.1 should be tried before Motif 1.2 for the | |
1964 | dnl systems which have both (AIX 4.x does) | |
9a98a854 | 1965 | SEARCH_INCLUDE="\ |
ee31c269 VZ |
1966 | /usr/local/include \ |
1967 | \ | |
9a98a854 | 1968 | /usr/Motif-2.1/include \ |
789c5f4a | 1969 | /usr/Motif-1.2/include \ |
9a98a854 VZ |
1970 | /usr/include/Motif1.2 \ |
1971 | /opt/xpm/include/X11 \ | |
8636aed8 RR |
1972 | /opt/GBxpm/include/ \ |
1973 | /opt/GBxpm/X11/include/ \ | |
9a98a854 | 1974 | \ |
9a98a854 | 1975 | /usr/dt/include \ |
afc31813 VZ |
1976 | /usr/openwin/include \ |
1977 | \ | |
9a98a854 VZ |
1978 | /usr/include/Xm \ |
1979 | \ | |
1980 | /usr/X11R6/include \ | |
afc31813 | 1981 | /usr/X11R6.4/include \ |
9a98a854 VZ |
1982 | /usr/X11R5/include \ |
1983 | /usr/X11R4/include \ | |
1984 | \ | |
9a98a854 VZ |
1985 | /usr/include/X11R6 \ |
1986 | /usr/include/X11R5 \ | |
1987 | /usr/include/X11R4 \ | |
1988 | \ | |
1989 | /usr/local/X11R6/include \ | |
1990 | /usr/local/X11R5/include \ | |
1991 | /usr/local/X11R4/include \ | |
1992 | \ | |
1993 | /usr/local/include/X11R6 \ | |
1994 | /usr/local/include/X11R5 \ | |
1995 | /usr/local/include/X11R4 \ | |
1996 | \ | |
1997 | /usr/X11/include \ | |
1998 | /usr/include/X11 \ | |
1999 | /usr/local/X11/include \ | |
2000 | /usr/local/include/X11 \ | |
2001 | \ | |
2002 | /usr/X386/include \ | |
2003 | /usr/x386/include \ | |
2004 | /usr/XFree86/include/X11 \ | |
2005 | \ | |
4c0ed911 | 2006 | X:/XFree86/include \ |
d51e8205 SN |
2007 | X:/XFree86/include/X11 \ |
2008 | \ | |
9a98a854 | 2009 | /usr/include/gtk \ |
5a92d200 | 2010 | /usr/local/include/gtk \ |
9a98a854 | 2011 | /usr/include/glib \ |
5a92d200 RR |
2012 | /usr/local/include/glib \ |
2013 | \ | |
2014 | /usr/include/qt \ | |
2015 | /usr/local/include/qt \ | |
2016 | \ | |
16bd311d RR |
2017 | /usr/local/arm/3.3.2/include \ |
2018 | \ | |
a9b5e89f | 2019 | /usr/include/windows \ |
5a92d200 RR |
2020 | /usr/include/wine \ |
2021 | /usr/local/include/wine \ | |
2022 | \ | |
9a98a854 VZ |
2023 | /usr/unsupported/include \ |
2024 | /usr/athena/include \ | |
2025 | /usr/local/x11r5/include \ | |
2026 | /usr/lpp/Xamples/include \ | |
2027 | \ | |
2b5f62a0 | 2028 | /usr/openwin/share/include" |
9a98a854 | 2029 | |
b62e750d VZ |
2030 | dnl prepend lib and lib32 for IRIX where the files in these directories should |
2031 | dnl be found before the ones in lib64 for 32bit compilation -- of course, this | |
2032 | dnl probably/surely breaks 64bit compilation... IMO the only real solution is to | |
2033 | dnl stop using WX_PATH_FIND_LIBRARIES() at all and use AC_CHECK_LIB() instead | |
2034 | dnl | |
f12a2bcf VZ |
2035 | dnl also put 64 bit versions for Linux on AMD, they must come before the usual |
2036 | dnl locations or 64 bit compilation failed | |
2037 | SEARCH_LIB="/usr/lib /usr/lib32 /usr/lib64 /usr/X11R6/lib64 `echo "$SEARCH_INCLUDE" | sed s/include/lib/g`" | |
9a98a854 VZ |
2038 | |
2039 | dnl ------------------------------------------------------------------------ | |
2040 | dnl Check for libraries | |
2041 | dnl ------------------------------------------------------------------------ | |
2042 | ||
143121c5 | 2043 | dnl flush the cache because checking for libraries below might abort |
9a98a854 VZ |
2044 | AC_CACHE_SAVE |
2045 | ||
19bc6aad | 2046 | dnl check for glibc version |
efdc61a6 VZ |
2047 | dnl |
2048 | dnl VZ: I have no idea why had this check been there originally, but now | |
5c0a20c3 | 2049 | dnl we could probably do without it by just always adding _GNU_SOURCE |
32b38f99 | 2050 | if test "$USE_LINUX" = 1 -o "$USE_GNU" = 1; then |
19bc6aad VZ |
2051 | AC_CACHE_CHECK([for glibc 2.1 or later], wx_cv_lib_glibc21,[ |
2052 | AC_TRY_COMPILE([#include <features.h>], | |
2053 | [ | |
efdc61a6 | 2054 | #if (__GLIBC__ < 2) || (__GLIBC_MINOR__ < 1) |
19bc6aad VZ |
2055 | #error not glibc2.1 |
2056 | #endif | |
2057 | ], | |
2058 | [ | |
2059 | wx_cv_lib_glibc21=yes | |
2060 | ], | |
2061 | [ | |
2062 | wx_cv_lib_glibc21=no | |
2063 | ] | |
2064 | ) | |
2065 | ]) | |
2066 | if test "$wx_cv_lib_glibc21" = "yes"; then | |
2067 | AC_DEFINE(wxHAVE_GLIBC2) | |
2068 | fi | |
2069 | fi | |
2070 | ||
5c0a20c3 VZ |
2071 | dnl we may need _GNU_SOURCE for 2 things: |
2072 | dnl | |
2073 | dnl 1. to get PTHREAD_MUTEX_RECURSIVE with glibc 2.1+ (strictly speaking we | |
2074 | dnl only need _XOPEN_SOURCE=500 but just defining this disables _BSD_SOURCE | |
2075 | dnl which breaks libtiff compilation, so it is simpler to just define | |
2076 | dnl _GNU_SOURCE to get everything) | |
2077 | dnl | |
2078 | dnl 2. for Unicode functions | |
2079 | if test "x$wx_cv_lib_glibc21" = "xyes"; then | |
2080 | if test "$wxUSE_UNICODE" = "yes" -o "$wxUSE_THREADS" = "yes"; then | |
2081 | AC_DEFINE(_GNU_SOURCE) | |
2082 | fi | |
2083 | fi | |
2084 | ||
4f14bcd8 GD |
2085 | dnl --------------------------------------------------------------------------- |
2086 | dnl Optional libraries | |
2087 | dnl | |
2088 | dnl --with-<lib>=sys | |
2089 | dnl looks for system library and fails if not found | |
2090 | dnl | |
2091 | dnl --with-<lib> | |
2092 | dnl --with-<lib>=yes | |
2093 | dnl looks for system library and, if not found, prints a warning, | |
2094 | dnl falls back to the builtin wx version, and continues configuration | |
2095 | dnl | |
2096 | dnl --with-<lib>=builtin | |
2097 | dnl uses builtin wx version without searching for system library | |
2098 | dnl | |
2099 | dnl --with-<lib>=no | |
2100 | dnl --without-<lib> | |
2101 | dnl do not use library (neither system nor builtin wx version) | |
2102 | dnl | |
2103 | dnl --------------------------------------------------------------------------- | |
2104 | ||
18dbb1f6 VZ |
2105 | dnl ------------------------------------------------------------------------ |
2106 | dnl Check for regex libraries | |
2107 | dnl ------------------------------------------------------------------------ | |
2108 | ||
18dbb1f6 | 2109 | if test "$wxUSE_REGEX" != "no"; then |
4f14bcd8 | 2110 | AC_DEFINE(wxUSE_REGEX) |
30f2fa6c VS |
2111 | |
2112 | if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_REGEX" = "yes"; then | |
4996f261 | 2113 | AC_MSG_WARN([Defaulting to the the builtin regex library for Unicode build.]) |
30f2fa6c VS |
2114 | wxUSE_REGEX=builtin |
2115 | fi | |
4f14bcd8 GD |
2116 | |
2117 | if test "$wxUSE_REGEX" = "sys" -o "$wxUSE_REGEX" = "yes" ; then | |
2118 | dnl according to Unix 98 specs, regcomp() is in libc but I believe that | |
2119 | dnl on some old systems it may be in libregex - check for it too? | |
ef33c576 | 2120 | AC_CHECK_HEADER(regex.h, [AC_CHECK_FUNCS(regcomp)]) |
4f14bcd8 GD |
2121 | |
2122 | if test "x$ac_cv_func_regcomp" != "xyes"; then | |
2123 | if test "$wxUSE_REGEX" = "sys" ; then | |
2124 | AC_MSG_ERROR([system regex library not found! Use --with-regex to use built-in version]) | |
2125 | else | |
a3df447d | 2126 | AC_MSG_WARN([system regex library not found, will use built-in instead]) |
4f14bcd8 GD |
2127 | wxUSE_REGEX=builtin |
2128 | fi | |
2129 | else | |
2130 | dnl we are using the system library | |
2131 | wxUSE_REGEX=sys | |
4996f261 VS |
2132 | dnl only the built-in supports advanced REs |
2133 | AC_DEFINE(WX_NO_REGEX_ADVANCED) | |
18dbb1f6 | 2134 | fi |
4f14bcd8 | 2135 | fi |
4f14bcd8 | 2136 | fi |
18dbb1f6 | 2137 | |
4f14bcd8 GD |
2138 | dnl ------------------------------------------------------------------------ |
2139 | dnl Check for zlib compression library | |
2140 | dnl ------------------------------------------------------------------------ | |
2141 | ||
4f14bcd8 GD |
2142 | ZLIB_LINK= |
2143 | if test "$wxUSE_ZLIB" != "no" ; then | |
2144 | AC_DEFINE(wxUSE_ZLIB) | |
2145 | ||
2146 | if test "$wxUSE_ZLIB" = "sys" -o "$wxUSE_ZLIB" = "yes" ; then | |
d775acfa VZ |
2147 | dnl don't test for zlib under Mac -- its verson there is 1.1.3 but we |
2148 | dnl should still use it because hopefully (can someone confirm this?) | |
2149 | dnl Apple did fix the security problem in it and not using the system | |
2150 | dnl library results in a whole bunch of warnings when linking with | |
2151 | dnl Carbon framework | |
2152 | if test "$USE_DARWIN" = 1; then | |
2153 | system_zlib_h_ok="yes" | |
2154 | else | |
2155 | dnl we have troubles with ancient zlib versions (e.g. 1.0.4 is | |
2156 | dnl known to not work) and although I don't know which is | |
2157 | dnl the minimal required version it's safer to test for 1.1.4 as | |
2158 | dnl it fixes a security problem in 1.1.3 -- and hopefully nobody | |
2159 | dnl has anything more ancient (1.1.3 was released in July 1998) | |
2160 | dnl anyhow | |
2161 | AC_CACHE_CHECK([for zlib.h >= 1.1.4], ac_cv_header_zlib_h, | |
ef33c576 VZ |
2162 | [AC_TRY_RUN( |
2163 | dnl zlib.h defines ZLIB_VERSION="x.y.z" | |
d775acfa | 2164 | [ |
d775acfa VZ |
2165 | #include <zlib.h> |
2166 | #include <stdio.h> | |
2167 | ||
d775acfa VZ |
2168 | int main() |
2169 | { | |
2170 | FILE *f=fopen("conftestval", "w"); | |
2171 | if (!f) exit(1); | |
2172 | fprintf(f, "%s", | |
2173 | ZLIB_VERSION[0] == '1' && | |
2174 | (ZLIB_VERSION[2] > '1' || | |
2175 | (ZLIB_VERSION[2] == '1' && | |
2176 | ZLIB_VERSION[4] >= '4')) ? "yes" : "no"); | |
2177 | exit(0); | |
2178 | } | |
d775acfa VZ |
2179 | ], |
2180 | ac_cv_header_zlib_h=`cat conftestval`, | |
2181 | ac_cv_header_zlib_h=no, | |
d1188635 JS |
2182 | dnl cross-compiling: don't have an answer, try later |
2183 | unset ac_cv_header_zlib_h | |
ef33c576 | 2184 | )] |
d643b80e | 2185 | ) |
d1188635 JS |
2186 | dnl If the test above did not come up with a value (e.g. cross |
2187 | dnl compiling) then this should give a definitive answer | |
2188 | AC_CHECK_HEADER(zlib.h) | |
d643b80e | 2189 | |
d775acfa VZ |
2190 | system_zlib_h_ok=$ac_cv_header_zlib_h |
2191 | fi | |
2192 | ||
2193 | if test "$system_zlib_h_ok" = "yes"; then | |
d643b80e VZ |
2194 | AC_CHECK_LIB(z, deflate, ZLIB_LINK=" -lz") |
2195 | fi | |
4f14bcd8 GD |
2196 | |
2197 | if test "x$ZLIB_LINK" = "x" ; then | |
2198 | if test "$wxUSE_ZLIB" = "sys" ; then | |
d643b80e | 2199 | AC_MSG_ERROR([zlib library not found or too old! Use --with-zlib=builtin to use built-in version]) |
4f14bcd8 | 2200 | else |
d643b80e | 2201 | AC_MSG_WARN([zlib library not found or too old, will use built-in instead]) |
4f14bcd8 GD |
2202 | wxUSE_ZLIB=builtin |
2203 | fi | |
2204 | else | |
2205 | dnl we are using the system library | |
2206 | wxUSE_ZLIB=sys | |
2207 | fi | |
2208 | fi | |
4f14bcd8 GD |
2209 | fi |
2210 | ||
2211 | dnl ------------------------------------------------------------------------ | |
2212 | dnl Check for png library | |
2213 | dnl ------------------------------------------------------------------------ | |
2214 | ||
4f14bcd8 GD |
2215 | PNG_LINK= |
2216 | if test "$wxUSE_LIBPNG" != "no" ; then | |
2217 | AC_DEFINE(wxUSE_LIBPNG) | |
3bd8fb5f | 2218 | |
81809c07 VS |
2219 | if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBPNG" = "builtin" ; then |
2220 | AC_MSG_WARN([wxMGL doesn't work with builtin png library, will use MGL one instead]) | |
2221 | wxUSE_LIBPNG=sys | |
2222 | fi | |
4f14bcd8 GD |
2223 | |
2224 | dnl for the check below to have a chance to succeed, we must already have | |
81809c07 VS |
2225 | dnl libz somewhere (don't do this when bulding wxMGL since its libpng |
2226 | dnl doesn't depend on zlib) | |
2227 | if test "$wxUSE_MGL" != 1 -a "$wxUSE_LIBPNG" = "sys" -a "$wxUSE_ZLIB" != "sys" ; then | |
a3df447d | 2228 | AC_MSG_WARN([system png library doesn't work without system zlib, will use built-in instead]) |
4f14bcd8 GD |
2229 | wxUSE_LIBPNG=builtin |
2230 | fi | |
2231 | ||
81809c07 VS |
2232 | if test "$wxUSE_MGL" != 1 ; then |
2233 | dnl Don't check for libpng when building wxMGL, libmgl contains it | |
2234 | if test "$wxUSE_LIBPNG" = "sys" -o "$wxUSE_LIBPNG" = "yes" ; then | |
5d3f766d VZ |
2235 | dnl libpng version 0.9 is known to not work, if an even newer |
2236 | dnl version is required, just bump it up in the test below | |
2237 | AC_CACHE_CHECK([for png.h > 0.90], ac_cv_header_png_h, | |
ef33c576 VZ |
2238 | [AC_TRY_RUN( |
2239 | dnl png.h defines PNG_LIBPNG_VER=number | |
5d3f766d | 2240 | [ |
5d3f766d VZ |
2241 | #include <png.h> |
2242 | #include <stdio.h> | |
2243 | ||
2244 | int main() | |
2245 | { | |
2246 | FILE *f=fopen("conftestval", "w"); | |
2247 | if (!f) exit(1); | |
2248 | fprintf(f, "%s", | |
2249 | PNG_LIBPNG_VER > 90 ? "yes" : "no"); | |
2250 | exit(0); | |
2251 | } | |
2252 | ], | |
2253 | ac_cv_header_png_h=`cat conftestval`, | |
2254 | ac_cv_header_png_h=no, | |
d1188635 JS |
2255 | dnl cross-compiling: test (later) if we have any png.h |
2256 | unset ac_cv_header_png_h | |
ef33c576 | 2257 | )] |
5d3f766d | 2258 | ) |
d1188635 | 2259 | AC_CHECK_HEADER(png.h) |
5d3f766d VZ |
2260 | |
2261 | if test "$ac_cv_header_png_h" = "yes"; then | |
b3c7058a | 2262 | AC_CHECK_LIB(png, png_check_sig, PNG_LINK=" -lpng -lz", , [-lz -lm]) |
5d3f766d | 2263 | fi |
81809c07 VS |
2264 | |
2265 | if test "x$PNG_LINK" = "x" ; then | |
2266 | if test "$wxUSE_LIBPNG" = "sys" ; then | |
0c98a14e | 2267 | AC_MSG_ERROR([system png library not found or too old! Use --with-libpng=builtin to use built-in version]) |
81809c07 | 2268 | else |
0c98a14e | 2269 | AC_MSG_WARN([system png library not found or too old, will use built-in instead]) |
81809c07 VS |
2270 | wxUSE_LIBPNG=builtin |
2271 | fi | |
4f14bcd8 | 2272 | else |
81809c07 | 2273 | dnl we are using the system library |
2b5f62a0 | 2274 | wxUSE_LIBPNG=sys |
4f14bcd8 | 2275 | fi |
4f14bcd8 GD |
2276 | fi |
2277 | fi | |
2278 | ||
4f14bcd8 GD |
2279 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png" |
2280 | fi | |
2281 | ||
2282 | dnl ------------------------------------------------------------------------ | |
2283 | dnl Check for jpeg library | |
2284 | dnl ------------------------------------------------------------------------ | |
2285 | ||
4f14bcd8 GD |
2286 | JPEG_LINK= |
2287 | if test "$wxUSE_LIBJPEG" != "no" ; then | |
2288 | AC_DEFINE(wxUSE_LIBJPEG) | |
2289 | ||
81809c07 VS |
2290 | if test "$wxUSE_MGL" = 1 -a "$wxUSE_LIBJPEG" = "builtin" ; then |
2291 | AC_MSG_WARN([wxMGL doesn't work with builtin jpeg library, will use MGL one instead]) | |
2292 | wxUSE_LIBJPEG=sys | |
2293 | fi | |
2294 | ||
2295 | if test "$wxUSE_MGL" != 1 ; then | |
2296 | dnl Don't check for libjpeg when building wxMGL, libmgl contains it | |
2297 | if test "$wxUSE_LIBJPEG" = "sys" -o "$wxUSE_LIBJPEG" = "yes" ; then | |
2298 | dnl can't use AC_CHECK_HEADER as jconfig.h defines things like | |
2299 | dnl HAVE_STDLIB_H which are already defined and this provokes | |
2300 | dnl a compiler warning which configure considers as an error... | |
2301 | AC_MSG_CHECKING(for jpeglib.h) | |
2302 | AC_CACHE_VAL(ac_cv_header_jpeglib_h, | |
2303 | AC_TRY_COMPILE( | |
2304 | [ | |
2305 | #undef HAVE_STDLIB_H | |
2306 | #include <stdio.h> | |
2307 | #include <jpeglib.h> | |
2308 | ], | |
2309 | [ | |
2310 | ], | |
2311 | ac_cv_header_jpeglib_h=yes, | |
2312 | ac_cv_header_jpeglib_h=no | |
2313 | ) | |
4f14bcd8 | 2314 | ) |
81809c07 | 2315 | AC_MSG_RESULT($ac_cv_header_jpeglib_h) |
4f14bcd8 | 2316 | |
81809c07 VS |
2317 | if test "$ac_cv_header_jpeglib_h" = "yes"; then |
2318 | AC_CHECK_LIB(jpeg, jpeg_read_header, JPEG_LINK=" -ljpeg") | |
2319 | fi | |
4f14bcd8 | 2320 | |
81809c07 VS |
2321 | if test "x$JPEG_LINK" = "x" ; then |
2322 | if test "$wxUSE_LIBJPEG" = "sys" ; then | |
2323 | AC_MSG_ERROR([system jpeg library not found! Use --with-libjpeg=builtin to use built-in version]) | |
2324 | else | |
2325 | AC_MSG_WARN([system jpeg library not found, will use built-in instead]) | |
2326 | wxUSE_LIBJPEG=builtin | |
2327 | fi | |
4f14bcd8 | 2328 | else |
81809c07 VS |
2329 | dnl we are using the system library |
2330 | wxUSE_LIBJPEG=sys | |
4f14bcd8 | 2331 | fi |
4f14bcd8 GD |
2332 | fi |
2333 | fi | |
4f14bcd8 GD |
2334 | fi |
2335 | ||
2336 | dnl ------------------------------------------------------------------------ | |
2337 | dnl Check for tiff library | |
2338 | dnl ------------------------------------------------------------------------ | |
2339 | ||
4f14bcd8 | 2340 | TIFF_LINK= |
2b5f62a0 | 2341 | TIFF_PREREQ_LINKS=-lm |
4f14bcd8 GD |
2342 | if test "$wxUSE_LIBTIFF" != "no" ; then |
2343 | AC_DEFINE(wxUSE_LIBTIFF) | |
2344 | ||
2345 | if test "$wxUSE_LIBTIFF" = "sys" -o "$wxUSE_LIBTIFF" = "yes" ; then | |
2b5f62a0 VZ |
2346 | dnl libtiff may depend on libjpeg and libz so use them in the test |
2347 | dnl below or it would fail | |
2348 | if test "$wxUSE_LIBJPEG" = "sys"; then | |
2349 | TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $JPEG_LINK" | |
2350 | fi | |
2351 | if test "$wxUSE_ZLIB" = "sys"; then | |
2352 | TIFF_PREREQ_LINKS="$TIFF_PREREQ_LINKS $ZLIB_LINK" | |
2353 | fi | |
4f14bcd8 | 2354 | AC_CHECK_HEADER(tiffio.h, |
4c15b7af SN |
2355 | [ |
2356 | AC_CHECK_LIB(tiff, TIFFError, | |
2357 | TIFF_LINK=" -ltiff", | |
2358 | , | |
2359 | $TIFF_PREREQ_LINKS) | |
2360 | ] | |
4f14bcd8 GD |
2361 | ) |
2362 | ||
2363 | if test "x$TIFF_LINK" = "x" ; then | |
2364 | if test "$wxUSE_LIBTIFF" = "sys" ; then | |
2365 | AC_MSG_ERROR([system tiff library not found! Use --with-libtiff=builtin to use built-in version]) | |
2366 | else | |
a3df447d | 2367 | AC_MSG_WARN([system tiff library not found, will use built-in instead]) |
4f14bcd8 GD |
2368 | wxUSE_LIBTIFF=builtin |
2369 | fi | |
2370 | else | |
2371 | dnl we are using the system library | |
2372 | wxUSE_LIBTIFF=sys | |
2373 | fi | |
2374 | fi | |
4f14bcd8 GD |
2375 | fi |
2376 | ||
672abd7a VS |
2377 | dnl ------------------------------------------------------------------------ |
2378 | dnl Check for expat libraries | |
2379 | dnl ------------------------------------------------------------------------ | |
2380 | ||
2381 | if test "$wxUSE_EXPAT" != "no"; then | |
8bcf2d20 | 2382 | wxUSE_XML=yes |
672abd7a VS |
2383 | AC_DEFINE(wxUSE_EXPAT) |
2384 | AC_DEFINE(wxUSE_XML) | |
2385 | ||
2386 | if test "$wxUSE_EXPAT" = "sys" -o "$wxUSE_EXPAT" = "yes" ; then | |
5f0b6dff VS |
2387 | AC_CHECK_HEADER([expat.h], [found_expat_h=1]) |
2388 | if test "x$found_expat_h" = "x1"; then | |
2389 | dnl Expat 1.95.6 comes with broken expat.h: | |
2390 | AC_CACHE_CHECK([if expat.h is valid C++ header], | |
2391 | wx_cv_expat_is_not_broken, | |
2392 | [ | |
2393 | AC_LANG_SAVE | |
2394 | AC_LANG_CPLUSPLUS | |
2395 | AC_TRY_COMPILE([#include <expat.h>],[], | |
2396 | wx_cv_expat_is_not_broken=yes, | |
2397 | wx_cv_expat_is_not_broken=no | |
2398 | ) | |
2399 | AC_LANG_RESTORE | |
2400 | ] | |
2401 | ) | |
2402 | if test "$wx_cv_expat_is_not_broken" = "yes" ; then | |
2403 | AC_CHECK_LIB(expat, XML_ParserCreate, EXPAT_LINK=" -lexpat") | |
2404 | fi | |
672abd7a VS |
2405 | fi |
2406 | if test "x$EXPAT_LINK" = "x" ; then | |
2407 | if test "$wxUSE_EXPAT" = "sys" ; then | |
2408 | AC_MSG_ERROR([system expat library not found! Use --with-expat=builtin to use built-in version]) | |
2409 | else | |
2410 | AC_MSG_WARN([system expat library not found, will use built-in instead]) | |
2411 | wxUSE_EXPAT=builtin | |
2412 | fi | |
2413 | else | |
2414 | dnl we are using the system library | |
2415 | wxUSE_EXPAT=sys | |
2416 | fi | |
2417 | fi | |
2418 | if test "$wxUSE_EXPAT" = "builtin" ; then | |
2419 | dnl Expat needs this: | |
2420 | AC_CONFIG_SUBDIRS([src/expat]) | |
2421 | fi | |
2422 | fi | |
2423 | ||
2424 | ||
3527f29c VS |
2425 | dnl ------------------------------------------------------------------------ |
2426 | dnl Check for libmspack | |
2427 | dnl ------------------------------------------------------------------------ | |
2428 | ||
2429 | if test "$wxUSE_LIBMSPACK" != "no"; then | |
3527f29c VS |
2430 | AC_CHECK_HEADER([mspack.h], [found_mspack_h=1]) |
2431 | if test "x$found_mspack_h" = "x1"; then | |
2432 | AC_CHECK_LIB(mspack, mspack_create_chm_decompressor, | |
2433 | MSPACK_LINK=" -lmspack") | |
2434 | fi | |
2435 | if test "x$MSPACK_LINK" = "x" ; then | |
2436 | wxUSE_LIBMSPACK=no | |
3527f29c VS |
2437 | fi |
2438 | fi | |
2439 | ||
dd3a2d96 VZ |
2440 | if test "$wxUSE_LIBMSPACK" != "no"; then |
2441 | AC_DEFINE(wxUSE_LIBMSPACK) | |
dd3a2d96 VZ |
2442 | fi |
2443 | ||
3527f29c | 2444 | |
9a98a854 VZ |
2445 | dnl ---------------------------------------------------------------- |
2446 | dnl search for toolkit (widget sets) | |
2447 | dnl ---------------------------------------------------------------- | |
2448 | ||
dad6c0ea | 2449 | AFMINSTALL= |
2b5f62a0 | 2450 | WIN32INSTALL= |
dad6c0ea | 2451 | |
3a922bb4 RL |
2452 | TOOLKIT= |
2453 | TOOLKIT_INCLUDE= | |
2454 | WIDGET_SET= | |
e90c1d2a | 2455 | |
3a922bb4 RL |
2456 | dnl are we building for a win32 target environment? |
2457 | dnl If so, setup common stuff needed for both GUI and Base libs. | |
2458 | if test "$USE_WIN32" = 1 ; then | |
2459 | AC_CHECK_HEADERS(w32api.h) | |
2460 | AC_CHECK_HEADER(windows.h, [], | |
2461 | [ | |
2462 | AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h) | |
2463 | ]) | |
dad6c0ea | 2464 | |
3a922bb4 RL |
2465 | dnl --- FIXME: This is still a somewhat random list of libs, |
2466 | dnl --- some of them should probably be included conditionally. | |
b3dfbbc9 | 2467 | LIBS="$LIBS -lwinspool -lwinmm -lshell32 -lcomctl32 -lcomdlg32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32" |
9a98a854 | 2468 | |
7bb2947d MB |
2469 | if test "$wxUSE_ACCESSIBILITY" = "yes" ; then |
2470 | LIBS="$LIBS -loleacc" | |
2471 | fi | |
2472 | ||
77e13408 RL |
2473 | case "${host}" in |
2474 | *-*-cygwin* ) | |
2475 | dnl Cygwin doesn't include these by default | |
b3dfbbc9 | 2476 | LIBS="$LIBS -lkernel32 -luser32" |
77e13408 RL |
2477 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WIN95__" |
2478 | esac | |
7b7a7637 | 2479 | |
3a922bb4 | 2480 | dnl add extra odbc libs if we have compiled in odbc |
8647bec6 RG |
2481 | if test "$wxUSE_ODBC" = "sys" ; then |
2482 | wxUSE_ODBC = "yes" | |
2483 | fi | |
3a922bb4 | 2484 | if test "$wxUSE_ODBC" = "yes" ; then |
a72a4bfa | 2485 | LIBS=" -lodbc32 -lole32 -loleaut32 $LIBS" |
8647bec6 | 2486 | AC_DEFINE(wxUSE_ODBC) |
3a922bb4 | 2487 | fi |
8647bec6 | 2488 | dnl We might want to abort here if wxUSE_ODBC="builtin" isn't supported on msw. |
9a98a854 | 2489 | |
3a922bb4 RL |
2490 | RESFLAGS="--include-dir \$(top_srcdir)/include --include-dir \$(top_srcdir)/\$(program_dir) --define __WIN32__ --define __WIN95__ --define __GNUWIN32__" |
2491 | RESPROGRAMOBJ="\$(PROGRAM)_resources.o" | |
2b5f62a0 VZ |
2492 | |
2493 | dnl install Win32-specific files in "make install" | |
2494 | WIN32INSTALL=win32install | |
3a922bb4 | 2495 | fi |
3f0f0161 | 2496 | |
3a922bb4 RL |
2497 | if test "$wxUSE_GUI" = "yes"; then |
2498 | USE_GUI=1 | |
a9b5e89f | 2499 | |
3a922bb4 | 2500 | GUI_TK_LIBRARY= |
32832908 | 2501 | |
3a922bb4 RL |
2502 | WXGTK12= |
2503 | WXGTK127= | |
2504 | WXGTK20= | |
16bd311d | 2505 | WXGPE= |
32832908 | 2506 | |
207bc66c RN |
2507 | if test "$wxUSE_COCOA" = 1 ; then |
2508 | if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes"; then | |
2509 | AC_MSG_WARN([Printing not supported under wxCocoa yet, disabled]) | |
2510 | wxUSE_PRINTING_ARCHITECTURE=no | |
2511 | fi | |
2512 | if test "$wxUSE_DRAG_AND_DROP" = "yes"; then | |
2513 | AC_MSG_WARN([Drag and Drop not supported under wxCocoa yet, disabled]) | |
2514 | wxUSE_DRAG_AND_DROP=no | |
2515 | fi | |
2516 | if test "$wxUSE_DRAGIMAGE" = "yes"; then | |
2517 | AC_MSG_WARN([Drag Image and DandD not supported under wxCocoa yet, disabled]) | |
2518 | wxUSE_DRAGIMAGE=no | |
2519 | fi | |
2520 | fi | |
2521 | ||
77e13408 | 2522 | if test "$wxUSE_MSW" = 1 ; then |
1e6feb95 VZ |
2523 | TOOLKIT=MSW |
2524 | GUIDIST=MSW_DIST | |
ffef10f6 VS |
2525 | |
2526 | dnl -mwindows causes a heap of other default gui libs to be linked in. | |
ffef10f6 VS |
2527 | case "${host}" in |
2528 | *-*-mingw32* ) | |
2529 | WXCONFIG_LDFLAGS_GUI="$LDFLAGS -Wl,--subsystem,windows -mwindows" | |
2530 | esac | |
7e99ad86 VZ |
2531 | fi |
2532 | ||
1e6feb95 | 2533 | if test "$wxUSE_GTK" = 1; then |
8168de4c | 2534 | AC_MSG_CHECKING([for GTK+ version]) |
b9fa850d | 2535 | |
8168de4c VZ |
2536 | gtk_version_cached=1 |
2537 | AC_CACHE_VAL(wx_cv_lib_gtk, | |
2538 | [ | |
2539 | dnl stupid GTK+ AM macros produce their own messages, so we | |
2540 | dnl have to pass to the next line | |
2541 | gtk_version_cached=0 | |
d48ad9bd | 2542 | AC_MSG_RESULT() |
8168de4c | 2543 | |
3f345b47 VZ |
2544 | dnl we must link against lgthread unless the user |
2545 | dnl used --disable-threads | |
2546 | GTK_MODULES= | |
2547 | if test "$wxUSE_THREADS" = "yes"; then | |
2548 | GTK_MODULES=gthread | |
2549 | fi | |
2550 | ||
2b5f62a0 VZ |
2551 | dnl note that if we fail to find GTK2 we abort and don't fall |
2552 | dnl back to GTK1.x | |
8168de4c VZ |
2553 | wx_cv_lib_gtk= |
2554 | if test "x$wxUSE_GTK2" = "xyes"; then | |
1ae7bd02 | 2555 | AM_PATH_GTK_2_0(2.0.0, wx_cv_lib_gtk=2.0, , $GTK_MODULES) |
2b5f62a0 | 2556 | else |
3f345b47 | 2557 | AM_PATH_GTK(1.2.7, wx_cv_lib_gtk=1.2.7, , $GTK_MODULES) |
8168de4c | 2558 | |
2b5f62a0 VZ |
2559 | if test -z "$wx_cv_lib_gtk"; then |
2560 | AM_PATH_GTK(1.2.3, wx_cv_lib_gtk=1.2.3, , $GTK_MODULES) | |
2561 | fi | |
8168de4c VZ |
2562 | fi |
2563 | ||
2564 | if test -z "$wx_cv_lib_gtk"; then | |
2565 | dnl looks better in AC_MSG_RESULT | |
2566 | wx_cv_lib_gtk=none | |
138be253 VZ |
2567 | else |
2568 | dnl we need to cache GTK_CFLAGS and GTK_LIBS for the | |
2569 | dnl subsequent runs | |
2570 | wx_cv_cflags_gtk=$GTK_CFLAGS | |
2571 | wx_cv_libs_gtk=$GTK_LIBS | |
8168de4c VZ |
2572 | fi |
2573 | ] | |
2574 | ) | |
b9fa850d | 2575 | |
8168de4c VZ |
2576 | dnl if it wasn't cached, the messages from AM_PATH_GTK() above are |
2577 | dnl enough | |
2578 | if test "$gtk_version_cached" = 1; then | |
2579 | AC_MSG_RESULT($wx_cv_lib_gtk) | |
2580 | fi | |
b9fa850d | 2581 | |
8168de4c VZ |
2582 | case "$wx_cv_lib_gtk" in |
2583 | 2.0) WXGTK20=1 | |
2b5f62a0 | 2584 | TOOLKIT_VERSION=2 |
8168de4c VZ |
2585 | ;; |
2586 | 1.2.7) WXGTK127=1 | |
d1a8d972 | 2587 | WXGTK12=1 |
8168de4c VZ |
2588 | ;; |
2589 | 1.2.3) WXGTK12=1 | |
2590 | ;; | |
2591 | *) AC_MSG_ERROR([ | |
2592 | Please check that gtk-config is in path, the directory | |
2593 | where GTK+ libraries are installed (returned by | |
2594 | 'gtk-config --libs' command) is in LD_LIBRARY_PATH or | |
2595 | equivalent variable and GTK+ is version 1.2.3 or above. | |
2596 | ]) | |
2597 | ;; | |
2598 | esac | |
c596875e | 2599 | |
b13cd66e | 2600 | if test "$WXGTK20" = 1; then |
304205f1 VS |
2601 | save_CFLAGS="$CFLAGS" |
2602 | save_LIBS="$LIBS" | |
9d271838 VZ |
2603 | CFLAGS="$CFLAGS $wx_cv_cflags_gtk" |
2604 | LIBS="$LIBS $wx_cv_lib_gtk" | |
9755e73b | 2605 | |
304205f1 | 2606 | AC_CHECK_FUNCS([pango_font_family_is_monospace]) |
9755e73b VS |
2607 | |
2608 | dnl test if we have at least GTK+ 2.4: | |
2609 | AC_MSG_CHECKING([if GTK+ is version >= 2.4]) | |
2610 | AC_TRY_COMPILE([ | |
2611 | #include <gtk/gtk.h> | |
2612 | ], | |
2613 | [ | |
2614 | #if !GTK_CHECK_VERSION(2,4,0) | |
2615 | #error "Not GTK+ 2.4" | |
2616 | #endif | |
2617 | ], | |
2618 | [ | |
2619 | AC_DEFINE(__WXGTK24__) | |
2620 | AC_MSG_RESULT([yes]) | |
2621 | ], | |
2622 | [ | |
2623 | AC_MSG_RESULT([no]) | |
2624 | ]) | |
2625 | ||
304205f1 VS |
2626 | CFLAGS="$save_CFLAGS" |
2627 | LIBS="$save_LIBS" | |
2b5f62a0 VZ |
2628 | else |
2629 | if test "$wxUSE_UNICODE" = "yes"; then | |
2630 | AC_MSG_WARN([Unicode configuration not supported with GTK+ 1.x]) | |
2631 | wxUSE_UNICODE=no | |
2632 | fi | |
2633 | fi | |
2634 | ||
2635 | dnl we need poll() in src/gtk/app.cpp (we know that Darwin doesn't | |
2636 | dnl have it but we do the check for the others) | |
2637 | if test "$USE_DARWIN" != 1; then | |
2638 | AC_CHECK_FUNCS(poll) | |
f09359cf VS |
2639 | fi |
2640 | ||
138be253 | 2641 | TOOLKIT_INCLUDE="$wx_cv_cflags_gtk" |
c74dc163 | 2642 | GUI_TK_LIBRARY="$wx_cv_libs_gtk $GUI_TK_LIBRARY" |
7799a2d7 | 2643 | |
1e6feb95 VZ |
2644 | AFMINSTALL=afminstall |
2645 | TOOLKIT=GTK | |
2646 | GUIDIST=GTK_DIST | |
9a98a854 | 2647 | |
1e6feb95 VZ |
2648 | dnl test for XIM support in libgdk |
2649 | AC_CHECK_LIB(gdk, gdk_im_open, AC_DEFINE(HAVE_XIM)) | |
16bd311d RR |
2650 | |
2651 | ||
2652 | dnl test for external libxpm if we're configured to use it | |
2653 | if test "$wxUSE_GPE" = "yes"; then | |
2654 | AC_MSG_CHECKING(for gpewidget library) | |
2655 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpewidget) | |
2656 | if test "$ac_find_libraries" != "" ; then | |
2657 | WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) | |
2658 | dnl -lgpewidget must be before all GTK libs and | |
2659 | dnl we guess its path from the prefix | |
2660 | GUI_TK_LIBRARY="-L${prefix}/lib -lgpewidget $GUI_TK_LIBRARY" | |
2661 | WXGPE=1 | |
2662 | AC_MSG_RESULT(found at $ac_find_libraries) | |
2663 | else | |
2664 | AC_MSG_RESULT(not found) | |
2665 | fi | |
2666 | ||
2667 | dnl AC_MSG_CHECKING(for gpe library) | |
2668 | dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpe) | |
2669 | dnl if test "$ac_find_libraries" != "" ; then | |
2670 | dnl WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) | |
2671 | dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lgpe" | |
2672 | dnl AC_MSG_RESULT(found at $ac_find_libraries) | |
2673 | dnl else | |
2674 | dnl AC_MSG_RESULT(not found) | |
2675 | dnl fi | |
2676 | fi | |
5a92d200 RR |
2677 | fi |
2678 | ||
1e6feb95 | 2679 | if test "$wxUSE_MGL" = 1; then |
63a76696 | 2680 | AC_MSG_CHECKING(for SciTech MGL library) |
1e6feb95 VZ |
2681 | if test "x$MGL_ROOT" = x ; then |
2682 | AC_MSG_RESULT(not found) | |
2683 | AC_MSG_ERROR([Cannot find MGL library. Make sure MGL_ROOT is set.]) | |
2684 | else | |
2685 | AC_MSG_RESULT($MGL_ROOT) | |
2686 | fi | |
5a92d200 | 2687 | |
63a76696 | 2688 | AC_MSG_CHECKING(for libmgl location) |
f9bc1684 | 2689 | dnl Find MGL library that we want |
e46d2a18 VS |
2690 | dnl FIXME_MGL - test for MGL variants for freebsd etc.; |
2691 | dnl and for non-x86 versions | |
f9bc1684 VS |
2692 | case "${host}" in |
2693 | *-*-linux* ) | |
e46d2a18 VS |
2694 | dnl glibc.so, glibc are for older versions of MGL, |
2695 | dnl x86/a, x86/so are used by >= 5.0 R11 | |
63a76696 | 2696 | if test "x$wxUSE_SHARED" = xyes ; then |
e46d2a18 | 2697 | mgl_os_candidates="linux/gcc/x86/so linux/gcc/x86/a linux/gcc/glibc.so linux/gcc/glibc" |
63a76696 | 2698 | else |
e46d2a18 | 2699 | mgl_os_candidates="linux/gcc/x86/a linux/gcc/x86/so linux/gcc/glibc linux/gcc/glibc.so" |
63a76696 | 2700 | fi |
f9bc1684 VS |
2701 | ;; |
2702 | *-pc-msdosdjgpp ) | |
63a76696 | 2703 | mgl_os_candidates="dos32/dj2" |
f9bc1684 VS |
2704 | ;; |
2705 | *) | |
2706 | AC_MSG_ERROR(This system type ${host} is not yet supported by wxMGL.) | |
2707 | esac | |
2708 | ||
3a922bb4 | 2709 | mgl_lib_type="" |
63a76696 VS |
2710 | mgl_os="" |
2711 | ||
2712 | for mgl_os_i in $mgl_os_candidates ; do | |
2713 | if test "x$mgl_os" = x ; then | |
2714 | if test "$wxUSE_DEBUG_FLAG" = yes ; then | |
2715 | if test -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.a -o \ | |
2716 | -f $MGL_ROOT/lib/debug/$mgl_os_i/libmgl.so; then | |
2717 | mgl_lib_type=debug | |
2718 | mgl_os=$mgl_os_i | |
2719 | fi | |
2720 | fi | |
2721 | if test "x$mgl_lib_type" = x ; then | |
2722 | if test -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.a -o \ | |
2723 | -f $MGL_ROOT/lib/release/$mgl_os_i/libmgl.so; then | |
2724 | mgl_lib_type=release | |
2725 | mgl_os=$mgl_os_i | |
2726 | fi | |
2727 | fi | |
1e6feb95 | 2728 | fi |
63a76696 | 2729 | done |
264de0cc | 2730 | |
63a76696 VS |
2731 | if test "x$mgl_os" = x ; then |
2732 | AC_MSG_RESULT(not found) | |
2733 | AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.]) | |
2734 | fi | |
2735 | AC_MSG_RESULT("$MGL_ROOT/lib/$mgl_lib_type/$mgl_os") | |
1542ea39 | 2736 | |
1d1b75ac VZ |
2737 | wxUSE_UNIVERSAL="yes" |
2738 | ||
1e6feb95 | 2739 | TOOLKIT_INCLUDE="-I$MGL_ROOT/include" |
3a922bb4 | 2740 | GUI_TK_LIBRARY="-L$MGL_ROOT/lib/$mgl_lib_type/$mgl_os -lmgl -lmglcpp -lpm" |
d607e6c3 | 2741 | |
1e6feb95 VZ |
2742 | AFMINSTALL=afminstall |
2743 | TOOLKIT=MGL | |
2744 | GUIDIST=MGL_DIST | |
d607e6c3 | 2745 | fi |
143121c5 | 2746 | |
1725144d RR |
2747 | if test "$wxUSE_MICROWIN" = 1; then |
2748 | AC_MSG_CHECKING(for MicroWindows) | |
2749 | if test "x$MICROWINDOWS" = x ; then | |
2750 | AC_MSG_RESULT(not found) | |
2751 | AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWINDOWS is set.]) | |
2752 | else | |
2753 | AC_MSG_RESULT($MICROWINDOWS) | |
2754 | fi | |
2755 | ||
2756 | if test -f $MICROWINDOWS/lib/libmwin.a; then | |
2757 | AC_MSG_RESULT(MicroWindows' libraries found.) | |
2758 | else | |
2759 | AC_MSG_ERROR([Cannot find MicroWindows libraries, make sure they are compiled.]) | |
2760 | fi | |
2761 | ||
2762 | TOOLKIT_INCLUDE="-I$MICROWINDOWS/include" | |
2763 | GUI_TK_LIBRARY="-L$MICROWINDOWS/lib -lmwin -lmwengine -mwfonts -mwdrivers -mwinlib" | |
2764 | ||
1d1b75ac VZ |
2765 | wxUSE_UNIVERSAL="yes" |
2766 | ||
1725144d RR |
2767 | AFMINSTALL=afminstall |
2768 | TOOLKIT=MICROWIN | |
2769 | GUIDIST=MICROWIN_DIST | |
1d1b75ac VZ |
2770 | |
2771 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXMSW__ -D__WIN95__ -D__WIN32__ -DMWIN -DMICROWIN_NOCONTROLS -DMICROWIN_TODO=1" | |
1725144d RR |
2772 | fi |
2773 | ||
0acc5a40 VZ |
2774 | dnl common part of X11 and Motif port checks |
2775 | if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then | |
2776 | dnl use standard macros to check for X headers/libs, this brings | |
2777 | dnl support for the standard configure options --x-includes, | |
2778 | dnl --x-libraries and --no-x | |
7f5c07ab JS |
2779 | AC_PATH_XTRA |
2780 | ||
2781 | if test "$no_x" = "yes"; then | |
2782 | AC_MSG_ERROR(X11 not found, please use --x-includes and/or --x-libraries options) | |
2783 | fi | |
2784 | ||
0acc5a40 VZ |
2785 | dnl for some reason AC_PATH_XTRA seems to add -INONE and -LNONE (and |
2786 | dnl also sometimes -RNONE) to X_CFLAGS and X_LIBS respectively, filter | |
2787 | dnl this junk out | |
2788 | GUI_TK_LIBRARY=`echo $X_LIBS | sed 's/ -LNONE//' | sed 's/ -RNONE//'` | |
2789 | TOOLKIT_INCLUDE=`echo $X_CFLAGS | sed 's/ -INONE//'` | |
7f5c07ab JS |
2790 | AFMINSTALL=afminstall |
2791 | COMPILED_X_PROGRAM=0 | |
2792 | ||
0acc5a40 VZ |
2793 | fi |
2794 | ||
2795 | if test "$wxUSE_X11" = 1; then | |
256d631a | 2796 | if test "$wxUSE_NANOX" = "yes"; then |
6ec507fd JS |
2797 | AC_MSG_CHECKING(for MicroWindows/NanoX distribution) |
2798 | if test "x$MICROWIN" = x ; then | |
2799 | AC_MSG_RESULT(not found) | |
2800 | AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWIN is set.]) | |
2801 | else | |
2802 | AC_MSG_RESULT($MICROWIN) | |
c79a329d | 2803 | AC_DEFINE(wxUSE_NANOX) |
6ec507fd JS |
2804 | fi |
2805 | fi | |
2806 | ||
2b5f62a0 VZ |
2807 | if test "$wxUSE_UNICODE" = "yes"; then |
2808 | PKG_CHECK_MODULES(PANGOX, pangox, | |
2809 | [ | |
2810 | CXXFLAGS="$CXXFLAGS $PANGOX_CFLAGS" | |
c74dc163 | 2811 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOX_LIBS" |
2b5f62a0 VZ |
2812 | ], |
2813 | [ | |
2814 | AC_MSG_ERROR([pangox library not found, library cannot be compiled in Unicode mode]) | |
2815 | ] | |
2816 | ) | |
2817 | PKG_CHECK_MODULES(PANGOFT2, pangoft2, | |
2818 | [ | |
2819 | CXXFLAGS="$CXXFLAGS $PANGOFT2_CFLAGS" | |
c74dc163 | 2820 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOFT2_LIBS" |
2b5f62a0 VZ |
2821 | ], |
2822 | [ | |
2823 | AC_MSG_WARN([pangoft2 library not found, library will be compiled without printing support]) | |
2824 | wxUSE_PRINTING_ARCHITECTURE="no" | |
2825 | ] | |
2826 | ) | |
2827 | PKG_CHECK_MODULES(PANGOXFT, pangoxft, | |
2828 | [ | |
4ae1af05 | 2829 | AC_DEFINE(HAVE_PANGO_XFT) |
2b5f62a0 | 2830 | CXXFLAGS="$CXXFLAGS $PANGOXFT_CFLAGS" |
c74dc163 | 2831 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY $PANGOXFT_LIBS" |
2b5f62a0 VZ |
2832 | ], |
2833 | [ | |
2834 | AC_MSG_WARN([pangoxft library not found, library will be compiled without anti-aliasing support]) | |
2835 | ] | |
2836 | ) | |
304205f1 VS |
2837 | save_CFLAGS="$CFLAGS" |
2838 | save_LIBS="$LIBS" | |
2839 | CFLAGS="$CFLAGS $PANGOX_CFLAGS" | |
2840 | LIBS="$LIBS $PANGOX_LIBS" | |
2841 | AC_CHECK_FUNCS([pango_font_family_is_monospace]) | |
2842 | CFLAGS="$save_CFLAGS" | |
2843 | LIBS="$save_LIBS" | |
2b5f62a0 VZ |
2844 | fi |
2845 | ||
1d1b75ac VZ |
2846 | wxUSE_UNIVERSAL="yes" |
2847 | ||
256d631a | 2848 | if test "$wxUSE_NANOX" = "yes"; then |
4e5a4800 | 2849 | TOOLKIT_INCLUDE="-I\$(top_srcdir)/include/wx/x11/nanox -I\$(MICROWIN)/src/include $TOOLKIT_INCLUDE" |
32b38f99 | 2850 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__NANOX__ -DMWPIXEL_FORMAT=MWPF_TRUECOLOR0888 -DHAVE_FILEIO -DHAVE_BMP_SUPPORT=1 -DHAVE_GIF_SUPPORT=1 -DHAVE_PNM_SUPPORT=1 -DHAVE_XPM_SUPPORT=1 -DUNIX=1 -DUSE_EXPOSURE -DSCREEN_HEIGHT=480 -DSCREEN_WIDTH=640 -DSCREEN_DEPTH=4 -DX11=1" |
461e93f9 | 2851 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY \$(MICROWIN)/src/lib/libnano-X.a" |
6ec507fd | 2852 | else |
93a543aa | 2853 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lX11" |
6ec507fd JS |
2854 | fi |
2855 | ||
7f5c07ab JS |
2856 | TOOLKIT=X11 |
2857 | GUIDIST=X11_DIST | |
7f5c07ab JS |
2858 | fi |
2859 | ||
1e6feb95 | 2860 | if test "$wxUSE_MOTIF" = 1; then |
1e6feb95 VZ |
2861 | AC_MSG_CHECKING(for Motif/Lesstif headers) |
2862 | WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h) | |
2863 | if test "$ac_find_includes" != "" ; then | |
dd0e4a90 VZ |
2864 | AC_MSG_RESULT(found in $ac_find_includes) |
2865 | WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE) | |
2866 | TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE$ac_path_to_include" | |
cd6d6d5b | 2867 | else |
cd6d6d5b VZ |
2868 | AC_TRY_COMPILE( |
2869 | [ | |
2870 | #include <Xm/Xm.h> | |
2871 | ], | |
2872 | [ | |
2873 | int version; | |
cd6d6d5b VZ |
2874 | version = xmUseVersion; |
2875 | ], | |
2876 | [ | |
2877 | AC_MSG_RESULT(found in default search path) | |
2878 | COMPILED_X_PROGRAM=1 | |
2879 | ], | |
2880 | [ | |
2881 | AC_MSG_RESULT(no) | |
1e6feb95 | 2882 | AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h) |
cd6d6d5b VZ |
2883 | ] |
2884 | ) | |
2885 | fi | |
9a98a854 | 2886 | |
1e6feb95 VZ |
2887 | if test "$COMPILED_X_PROGRAM" = 0; then |
2888 | AC_MSG_CHECKING(for Motif/Lesstif library) | |
2889 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm) | |
2890 | if test "$ac_find_libraries" != "" ; then | |
dd0e4a90 | 2891 | AC_MSG_RESULT(found at $ac_find_libraries) |
1e6feb95 | 2892 | |
dd0e4a90 | 2893 | WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY) |
62d0491b | 2894 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link" |
1e6feb95 | 2895 | else |
dd0e4a90 VZ |
2896 | dnl it might happen that we found headers in one of the |
2897 | dnl standard paths but the libs are elsewhere - we do need to | |
2898 | dnl try to compile a sample program then here | |
2899 | save_CFLAGS=$CFLAGS | |
2900 | CFLAGS="$CFLAGS $TOOLKIT_INCLUDE" | |
2901 | ||
1e6feb95 VZ |
2902 | AC_TRY_COMPILE( |
2903 | [ | |
2904 | #include <Xm/Xm.h> | |
2905 | ], | |
2906 | [ | |
2907 | int version; | |
1e6feb95 VZ |
2908 | version = xmUseVersion; |
2909 | ], | |
2910 | [ | |
2911 | AC_MSG_RESULT(found in default search path) | |
2912 | COMPILED_X_PROGRAM=1 | |
2913 | ], | |
2914 | [ | |
2915 | AC_MSG_RESULT(no) | |
2916 | AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm) | |
2917 | ] | |
2918 | ) | |
dd0e4a90 VZ |
2919 | |
2920 | CFLAGS=$save_CFLAGS | |
1e6feb95 VZ |
2921 | fi |
2922 | fi | |
2923 | ||
6a30f1c8 MB |
2924 | AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE]) |
2925 | libp_link="" | |
2926 | libsm_ice_link="" | |
2927 | libs_found=0 | |
2928 | for libp in "" " -lXp"; do | |
2929 | if test "$libs_found" = "0"; then | |
ccabcd49 | 2930 | for libsm_ice in "" " -lSM -lICE"; do |
e26c13cf | 2931 | if test "$libs_found" = "0"; then |
6a30f1c8 | 2932 | save_LIBS="$LIBS" |
93a543aa | 2933 | LIBS="$GUI_TK_LIBRARY -lXm ${libp} -lXmu -lXext -lXt${libsm_ice} -lX11" |
dd0e4a90 VZ |
2934 | save_CFLAGS=$CFLAGS |
2935 | CFLAGS="$CFLAGS $TOOLKIT_INCLUDE" | |
2936 | ||
6a30f1c8 MB |
2937 | AC_TRY_LINK( |
2938 | [ | |
2939 | #include <Xm/Xm.h> | |
2940 | #include <Xm/List.h> | |
2941 | ], | |
2942 | [ | |
2943 | XmString string = NULL; | |
2944 | Widget w = NULL; | |
2945 | int position = 0; | |
2946 | XmListAddItem(w, string, position); | |
2947 | ], | |
2948 | [ | |
2949 | libp_link="$libp" | |
2950 | libsm_ice_link="$libsm_ice" | |
2951 | AC_MSG_RESULT( | |
2952 | [need${libp_link}${libsm_ice_link}]) | |
2953 | libs_found=1 | |
2954 | ], [] | |
2955 | ) | |
dd0e4a90 | 2956 | |
6a30f1c8 | 2957 | LIBS="$save_LIBS" |
dd0e4a90 | 2958 | CFLAGS=$save_CFLAGS |
6a30f1c8 MB |
2959 | fi |
2960 | done | |
2961 | fi | |
2962 | done | |
2963 | ||
2964 | if test "$libs_found" = "0"; then | |
2965 | AC_MSG_RESULT([can't find the right libraries]) | |
2966 | AC_MSG_ERROR([can't link a simple motif program]) | |
2967 | fi | |
17234b26 | 2968 | |
da494b40 MB |
2969 | save_CFLAGS=$CFLAGS |
2970 | CFLAGS="$CFLAGS $TOOLKIT_INCLUDE" | |
2971 | AC_MSG_CHECKING([for Motif 2]) | |
2972 | AC_TRY_COMPILE([ | |
2973 | #include <Xm/Xm.h> | |
2974 | ], | |
2975 | [ | |
2976 | #if XmVersion < 2000 | |
2977 | #error "Not Motif 2" | |
2978 | #endif | |
2979 | ], | |
2980 | [ | |
2981 | AC_DEFINE(__WXMOTIF20__,1) | |
2982 | AC_MSG_RESULT([found]) | |
2983 | ], | |
2984 | [ | |
2985 | AC_DEFINE(__WXMOTIF20__,0) | |
2986 | AC_MSG_RESULT([not found]) | |
2987 | ]) | |
2988 | CFLAGS=$save_CFLAGS | |
2989 | ||
93a543aa | 2990 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXm${libp_link} -lXmu -lXext -lXt${libsm_ice_link} -lX11" |
1e6feb95 VZ |
2991 | TOOLKIT=MOTIF |
2992 | GUIDIST=MOTIF_DIST | |
f7f78039 MB |
2993 | fi |
2994 | ||
0acc5a40 | 2995 | dnl more tests common to X11 and Motif: |
c8818622 VZ |
2996 | if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then |
2997 | dnl test for external libxpm if we're configured to use it | |
2998 | if test "$wxUSE_LIBXPM" = "sys"; then | |
2999 | AC_MSG_CHECKING(for Xpm library) | |
3000 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm) | |
3001 | if test "$ac_find_libraries" != "" ; then | |
3002 | WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) | |
3003 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link" | |
3004 | AC_MSG_RESULT(found at $ac_find_libraries) | |
f7f78039 | 3005 | |
89fe663f VZ |
3006 | AC_CACHE_CHECK([for X11/xpm.h], |
3007 | wx_cv_x11_xpm_h, | |
c8818622 | 3008 | [ |
89fe663f VZ |
3009 | save_CFLAGS=$CFLAGS |
3010 | CFLAGS="$CFLAGS $TOOLKIT_INCLUDE" | |
3011 | ||
3012 | AC_TRY_COMPILE( | |
3013 | [ | |
3014 | #include <X11/xpm.h> | |
3015 | ], | |
3016 | [ | |
3017 | int version; | |
3018 | version = XpmLibraryVersion(); | |
3019 | ], | |
3020 | wx_cv_x11_xpm_h=yes, | |
3021 | wx_cv_x11_xpm_h=no | |
3022 | ) | |
3023 | ||
3024 | CFLAGS=$save_CFLAGS | |
c8818622 VZ |
3025 | ] |
3026 | ) | |
3027 | ||
89fe663f | 3028 | if test $wx_cv_x11_xpm_h = "yes"; then |
93a543aa | 3029 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXpm" |
89fe663f VZ |
3030 | AC_DEFINE(wxHAVE_LIB_XPM) |
3031 | else | |
3032 | AC_MSG_WARN([built-in less efficient XPM decoder will be used]) | |
3033 | fi | |
c8818622 VZ |
3034 | fi |
3035 | ||
3036 | fi | |
3037 | ||
3038 | dnl XShapeQueryExtension checks: first the library, then prototype | |
3039 | AC_CHECK_LIB([Xext], [XShapeQueryExtension], | |
3040 | [ | |
3041 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXext" | |
3042 | wxHAVE_XEXT_LIB=1 | |
3043 | ], | |
3044 | [], [$GUI_TK_LIBRARY -lX11]) | |
3045 | ||
3046 | if test "$wxHAVE_XEXT_LIB" = 1; then | |
3047 | save_CFLAGS="$CFLAGS" | |
3048 | CFLAGS="$CFLAGS $TOOLKIT_INCLUDE" | |
3049 | ||
3050 | AC_MSG_CHECKING([for X11/extensions/shape.h]) | |
3051 | AC_TRY_COMPILE([ | |
3052 | #include <X11/Xlib.h> | |
3053 | #include <X11/extensions/shape.h> | |
3054 | ], | |
3055 | [ | |
3056 | int dummy1, dummy2; | |
3057 | XShapeQueryExtension((Display*)NULL, | |
3058 | (int*)NULL, (int*)NULL); | |
3059 | ], | |
3060 | [ | |
3061 | AC_DEFINE(HAVE_XSHAPE) | |
3062 | AC_MSG_RESULT([found]) | |
3063 | ], | |
3064 | [ | |
3065 | AC_MSG_RESULT([not found]) | |
3066 | ]) | |
3067 | CFLAGS="$save_CFLAGS" | |
3068 | ||
3069 | fi | |
1e6feb95 | 3070 | fi |
b4085ce6 | 3071 | |
1e6feb95 | 3072 | if test "$wxUSE_MAC" = 1; then |
8e91c6f3 VZ |
3073 | AC_MSG_CHECKING([for compiler syntax to enable Pascal strings]) |
3074 | if test "$GCC" = yes; then | |
3075 | AC_MSG_RESULT([gcc]) | |
3076 | CPPFLAGS_PASCAL="-fpascal-strings" | |
3077 | elif test "`echo $CXX | sed -e 's@.*/@@'`" = "xlC"; then | |
3078 | AC_MSG_RESULT([xlc]) | |
3079 | CPPFLAGS_PASCAL="-qmacpstr" | |
3080 | else | |
3081 | AC_MSG_RESULT([none]) | |
3082 | fi | |
3083 | ||
031e9160 DE |
3084 | if test "x$wxUSE_UNIX" = "xyes"; then |
3085 | CPPFLAGS="$CPPFLAGS $CPPFLAGS_PASCAL -I\${top_srcdir}/src/mac/carbon/morefilex -I/Developer/Headers/FlatCarbon" | |
3086 | else | |
3087 | dnl platform.h needs TARGET_CARBON before setup.h | |
3088 | CPPFLAGS="$CPPFLAGS $CPPFLAGS_PASCAL -I\${top_srcdir}/src/mac/carbon/morefilex -DTARGET_CARBON" | |
3089 | fi | |
d08b457b | 3090 | |
1e6feb95 | 3091 | TOOLKIT=MAC |
683dccda | 3092 | dnl we can't call this MAC_DIST or autoconf thinks its a macro |
1e6feb95 | 3093 | GUIDIST=MACX_DIST |
cf615ebb VS |
3094 | dnl wxMac version of wxBase and wxCocoa or wxBase-only built on Darwin |
3095 | dnl are different, so they need different names: | |
dd21ced8 | 3096 | WXBASEPORT="_carbon" |
1e6feb95 | 3097 | fi |
e07802fc | 3098 | |
ac0c4cc3 | 3099 | if test "$wxUSE_COCOA" = 1; then |
ac0c4cc3 DE |
3100 | TOOLKIT=COCOA |
3101 | GUIDIST=COCOA_DIST | |
3102 | fi | |
3103 | ||
1e6feb95 VZ |
3104 | if test "$wxUSE_PM" = 1; then |
3105 | TOOLKIT=PM | |
0ed330b4 SN |
3106 | GUIDIST=PM_DIST |
3107 | AC_CACHE_CHECK([for type SPBCDATA], | |
3108 | wx_cv_spbcdata, | |
3109 | [ | |
3110 | AC_TRY_COMPILE( | |
3111 | [ | |
3112 | #define INCL_PM | |
3113 | #include <os2.h> | |
3114 | ], | |
3115 | [ | |
3116 | SPBCDATA test; | |
3117 | ], | |
3118 | wx_cv_spbcdata=yes, | |
3119 | wx_cv_spbcdata=no | |
3120 | ) | |
3121 | ] | |
3122 | ) | |
3123 | ||
3124 | if test $wx_cv_spbcdata = "yes"; then | |
3125 | AC_DEFINE(HAVE_SPBCDATA) | |
3126 | fi | |
1e6feb95 VZ |
3127 | fi |
3128 | ||
3129 | dnl the name of the directory where the files for this toolkit live | |
3a922bb4 | 3130 | if test "$TOOLKIT" = "PM" ; then |
1e6feb95 | 3131 | TOOLKIT_DIR="os2" |
f6bcfd97 | 3132 | else |
aa961a51 | 3133 | TOOLKIT_DIR=`echo ${TOOLKIT} | tr "[[A-Z]]" "[[a-z]]"` |
1e6feb95 | 3134 | fi |
9a98a854 | 3135 | |
1e6feb95 | 3136 | if test "$wxUSE_UNIVERSAL" = "yes"; then |
3a922bb4 RL |
3137 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__" |
3138 | WIDGET_SET=univ | |
d9d8273d | 3139 | fi |
2224580a | 3140 | |
2224580a VZ |
3141 | dnl distribute samples/demos/utils with GUI versions |
3142 | GUIDIST="${GUIDIST} SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST" | |
3143 | DISTDIR="wx\$(TOOLKIT)" | |
e90c1d2a | 3144 | else |
dad6c0ea VZ |
3145 | USE_GUI=0 |
3146 | ||
3a922bb4 RL |
3147 | dnl this doesn't quite work right for wxBase, but the places |
3148 | dnl where it is wrong aren't fatal (yet) though. | |
07eb77a6 | 3149 | TOOLKIT_DIR="base" |
f6bcfd97 | 3150 | |
e90c1d2a | 3151 | dnl the sources, their dependenices and the headers |
3a922bb4 | 3152 | if test "$USE_WIN32" = 1 ; then |
3a922bb4 RL |
3153 | dnl yes, the toolkit for wxBase on win32 is actually MSW |
3154 | dnl wxBase on unix does not need a 'TOOLKIT' defined. | |
3155 | TOOLKIT="MSW" | |
a20b6d3a VZ |
3156 | fi |
3157 | ||
2224580a VZ |
3158 | dnl distribute only wxBase sources/headers |
3159 | GUIDIST="BASE_DIST" | |
3160 | DISTDIR="wxBase" | |
e90c1d2a VZ |
3161 | fi |
3162 | ||
4f14bcd8 GD |
3163 | dnl --------------------------------------------------------------------------- |
3164 | dnl Optional libraries included when system library is not used | |
3165 | dnl --------------------------------------------------------------------------- | |
e45387bf | 3166 | |
8647bec6 RG |
3167 | |
3168 | dnl ---------------------------------------------------------------- | |
3169 | dnl iODBC support | |
3170 | dnl ---------------------------------------------------------------- | |
3171 | ||
3172 | IODBC_C_SRC="" | |
3173 | ||
3174 | ||
3175 | dnl ODBC is handled seperately for MSW | |
3176 | if test "$TOOLKIT" != "MSW" ; then | |
3177 | ||
bb41dcbe VS |
3178 | if test "$wxUSE_ODBC" = "sys" -o "$wxUSE_ODBC" = "yes" ; then |
3179 | dnl This is not ideal we really ough to use the unixodbc-config | |
3180 | dnl or iodbc-config if they exist. | |
3181 | ||
3182 | AC_CHECK_HEADER([sql.h], [found_sql_h=1]) | |
3183 | if test "x$found_sql_h" = "x1" ; then | |
84dfd58f | 3184 | AC_CHECK_LIB(iodbc, SQLAllocEnv, ODBC_LINK=" -liodbc", |
bb41dcbe | 3185 | [ |
84dfd58f | 3186 | AC_CHECK_LIB(unixodbc, SQLAllocEnv, ODBC_LINK=" -lunixodbc", |
bb41dcbe | 3187 | [ |
84dfd58f | 3188 | AC_CHECK_LIB(odbc, SQLAllocEnv, ODBC_LINK=" -lodbc") |
bb41dcbe VS |
3189 | ]) |
3190 | ]) | |
3191 | fi | |
3192 | if test "x$ODBC_LINK" = "x" ; then | |
3193 | if test "$wxUSE_ODBC" = "sys" ; then | |
3194 | AC_MSG_ERROR([system ODBC library not found! Use --with-odbc=builtin to use built-in version]) | |
3195 | else | |
3196 | AC_MSG_WARN([system ODBC library not found, will use built-in instead]) | |
3197 | wxUSE_ODBC=builtin | |
3198 | fi | |
3199 | else | |
3200 | dnl we are using the system library | |
3201 | wxUSE_ODBC=sys | |
3202 | fi | |
3203 | fi | |
a8e4cf25 VZ |
3204 | |
3205 | if test "$wxUSE_ODBC" = "builtin" ; then | |
3206 | AC_DEFINE(wxUSE_BUILTIN_IODBC) | |
8647bec6 | 3207 | fi |
e45387bf VZ |
3208 | fi |
3209 | ||
a8e4cf25 VZ |
3210 | if test "$wxUSE_ODBC" != "no" ; then |
3211 | AC_DEFINE(wxUSE_ODBC) | |
3212 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db" | |
3213 | ||
3214 | dnl is this still necessary? | |
3215 | WXODBCFLAG="-D_IODBC_" | |
3216 | fi | |
3a922bb4 | 3217 | |
b3bfe4e5 | 3218 | dnl --------------------------------------------------------------------------- |
01cb68df | 3219 | dnl wxDisplay Sanity checks |
b3bfe4e5 | 3220 | dnl --------------------------------------------------------------------------- |
01cb68df | 3221 | |
b3bfe4e5 | 3222 | if test "$wxUSE_DISPLAY" = "yes"; then |
01cb68df RG |
3223 | dnl --------------------------------------------------------------------------- |
3224 | dnl Xinerama (for unix ) - Brian Victor | |
3225 | dnl --------------------------------------------------------------------------- | |
2a5d7a98 | 3226 | if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then |
b3bfe4e5 RN |
3227 | AC_MSG_CHECKING([for Xinerama]) |
3228 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xinerama) | |
3229 | if test "$ac_find_libraries" != "" ; then | |
3230 | WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) | |
3231 | if test "$ac_path_to_link" != " -L/usr/lib" ; then | |
3232 | LDFLAGS="$LDFLAGS $ac_path_to_link" | |
3233 | fi | |
3234 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXinerama" | |
3235 | AC_MSG_RESULT([yes]) | |
505c8ccd VS |
3236 | |
3237 | AC_MSG_CHECKING([for Xxf86vm extension]) | |
3238 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xxf86vm) | |
3239 | if test "$ac_find_libraries" != "" ; then | |
3240 | AC_MSG_RESULT([yes]) | |
3241 | AC_CHECK_HEADERS([X11/extensions/xf86vmode.h], | |
3242 | [ | |
3243 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXxf86vm" | |
3244 | ], | |
3245 | [], | |
3246 | [ | |
3247 | #if HAVE_X11_XLIB_H | |
3248 | #include <X11/Xlib.h> | |
3249 | #endif | |
3250 | ]) | |
3251 | else | |
3252 | AC_MSG_RESULT([no]) | |
3253 | fi | |
3254 | ||
b3bfe4e5 RN |
3255 | else |
3256 | AC_MSG_RESULT([no]) | |
dcc1b6ad | 3257 | AC_MSG_WARN([Xinerama not found; disabling wxDisplay]) |
b3bfe4e5 RN |
3258 | wxUSE_DISPLAY="no" |
3259 | fi | |
01cb68df RG |
3260 | elif test "$wxUSE_MSW" = 1; then |
3261 | dnl --------------------------------------------------------------------------- | |
3262 | dnl DirectDraw / Multimon for MSW | |
3263 | dnl --------------------------------------------------------------------------- | |
dc9dadac VZ |
3264 | AC_CHECK_HEADERS([multimon.h ddraw.h], [], |
3265 | [ | |
3266 | wxUSE_DISPLAY="no" | |
3267 | AC_MSG_WARN([ddraw.h or multimon.h not found; disabling wxDisplay]) | |
3268 | ], | |
3269 | [#include <windows.h>]) | |
b3bfe4e5 RN |
3270 | fi |
3271 | fi | |
3272 | ||
4f14bcd8 GD |
3273 | dnl --------------------------------------------------------------------------- |
3274 | dnl OpenGL libraries | |
3275 | dnl --------------------------------------------------------------------------- | |
be505a65 | 3276 | |
4d264332 | 3277 | USE_OPENGL=0 |
3a922bb4 | 3278 | if test "$wxUSE_OPENGL" = "yes"; then |
ac0c4cc3 | 3279 | if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = "1"; then |
62d0491b | 3280 | OPENGL_LIBS="-framework OpenGL -framework AGL" |
be505a65 VZ |
3281 | elif test "$wxUSE_MSW" = 1; then |
3282 | OPENGL_LIBS="-lopengl32 -lglu32" | |
62d0491b | 3283 | else |
01aa5863 VS |
3284 | dnl David Elliott: Without this snippet AC_CHECK_HEADER fails to find |
3285 | dnl GL/gl.h on Mac OS X where it is located in | |
3286 | dnl /usr/X11R6/include/GL/gl.h: | |
3287 | ||
3288 | WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, GL/gl.h) | |
3289 | if test "$ac_find_includes" != "" ; then | |
3290 | AC_MSG_RESULT(found in $ac_find_includes) | |
01aa5863 VS |
3291 | WX_INCLUDE_PATH_EXIST($ac_find_includes, $CPPFLAGS) |
3292 | CPPFLAGS="$CPPFLAGS$ac_path_to_include" | |
01aa5863 VS |
3293 | fi |
3294 | ||
62d0491b RL |
3295 | AC_CHECK_HEADER(GL/gl.h, |
3296 | [ | |
021fde89 VZ |
3297 | found_gl=0 |
3298 | ||
1352efdf | 3299 | AC_MSG_CHECKING([for -lGL]) |
021fde89 | 3300 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GL) |
62d0491b | 3301 | if test "$ac_find_libraries" != "" ; then |
69120ee4 VZ |
3302 | AC_MSG_RESULT([yes]) |
3303 | ||
62d0491b | 3304 | WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) |
021fde89 VZ |
3305 | if test "$ac_path_to_link" != " -L/usr/lib" ; then |
3306 | LDFLAGS_GL="$ac_path_to_link" | |
4b6b4dfc | 3307 | fi |
021fde89 VZ |
3308 | |
3309 | dnl don't suppose that libGL and libGLU are always in the | |
3310 | dnl same directory -- this is not true for some common | |
3311 | dnl distributions | |
69120ee4 | 3312 | AC_MSG_CHECKING([for -lGLU]) |
021fde89 VZ |
3313 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GLU) |
3314 | if test "$ac_find_libraries" != "" ; then | |
3315 | WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) | |
3316 | if test "$ac_path_to_link" != " -L/usr/lib" -a \ | |
3317 | "$ac_path_to_link" != "$LDFLAGS_GL"; then | |
3318 | LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link" | |
3319 | fi | |
3320 | ||
3321 | found_gl=1 | |
3322 | OPENGL_LIBS="-lGL -lGLU" | |
3323 | AC_MSG_RESULT([yes]) | |
69120ee4 VZ |
3324 | else |
3325 | AC_MSG_RESULT([no]) | |
021fde89 | 3326 | fi |
69120ee4 VZ |
3327 | else |
3328 | AC_MSG_RESULT([no]) | |
021fde89 VZ |
3329 | fi |
3330 | ||
bb41dcbe | 3331 | if test "$found_gl" != 1; then |
1352efdf | 3332 | AC_MSG_CHECKING([for -lMesaGL]) |
021fde89 | 3333 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],MesaGL) |
62d0491b RL |
3334 | if test "$ac_find_libraries" != "" ; then |
3335 | WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) | |
3336 | LDFLAGS_GL="$LDFLAGS$ac_path_to_link" | |
3337 | OPENGL_LIBS="-lMesaGL -lMesaGLU" | |
1352efdf RL |
3338 | AC_MSG_RESULT([yes]) |
3339 | else | |
3340 | AC_MSG_RESULT([no]) | |
62d0491b RL |
3341 | fi |
3342 | fi | |
3343 | ]) | |
fb56368a | 3344 | |
62d0491b RL |
3345 | if test "x$OPENGL_LIBS" = "x"; then |
3346 | dnl it should be an error and not a warning because OpenGL is not on | |
3347 | dnl by default and so if it had been explicitely requested, we | |
3348 | dnl shouldn't just fall back to compiling the library without it | |
3349 | AC_MSG_ERROR(OpenGL libraries not available) | |
3350 | fi | |
6f754473 | 3351 | fi |
6f754473 | 3352 | |
62d0491b | 3353 | if test "$wxUSE_OPENGL" = "yes"; then |
4d264332 | 3354 | USE_OPENGL=1 |
62d0491b RL |
3355 | AC_DEFINE(wxUSE_OPENGL) |
3356 | AC_DEFINE(wxUSE_GLCANVAS) | |
520755bb | 3357 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS opengl opengl/cube opengl/penguin opengl/isosurf" |
62d0491b | 3358 | fi |
3a922bb4 RL |
3359 | fi |
3360 | ||
3a922bb4 RL |
3361 | |
3362 | dnl the symbol which allows conditional compilation for the given toolkit | |
3363 | if test -n "$TOOLKIT" ; then | |
3364 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WX${TOOLKIT}__" | |
3365 | fi | |
3366 | ||
978f1259 | 3367 | |
3a922bb4 | 3368 | dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP --- |
55e80573 | 3369 | |
4222829b VS |
3370 | if test "$wxUSE_SHARED" = "yes"; then |
3371 | case "${host}" in | |
4222829b VS |
3372 | *-pc-msdosdjgpp ) |
3373 | dnl only static for now | |
3374 | wxUSE_SHARED=no | |
3375 | AC_MSG_WARN([Host system doesn't support shared libraries, disabling]) | |
3376 | ;; | |
3377 | esac | |
3378 | fi | |
3379 | ||
3a922bb4 | 3380 | if test "$wxUSE_SHARED" = "yes"; then |
55e80573 | 3381 | |
2b5f62a0 | 3382 | dnl use versioned symbols if available on the platform |
e6cc62c6 | 3383 | WX_VERSIONED_SYMBOLS([\$(top_builddir)version-script]) |
2b5f62a0 | 3384 | |
55e80573 | 3385 | case "${host}" in |
32b38f99 | 3386 | *-*-linux* | *-*-gnu* ) |
e6cc62c6 | 3387 | SAMPLES_RPATH_FLAG="-Wl,-rpath,\$(top_builddir)lib" |
ffa0583f | 3388 | WXCONFIG_RPATH="-Wl,-rpath,\$libdir" |
345b8952 | 3389 | ;; |
55e80573 | 3390 | |
de87c353 RR |
3391 | *-*-solaris2* ) |
3392 | if test "$GCC" = yes ; then | |
f6bcfd97 BP |
3393 | dnl newer versions of gcc need -isystem to compile X headers on |
3394 | dnl Solaris (which use old style C syntax) | |
3395 | CPPFLAGS="$CPPFLAGS -isystem /usr/openwin/include" | |
fe0895cf VS |
3396 | |
3397 | dnl gcc may use Sun's ld, in which case -rpath gives a confusing | |
3398 | dnl error message. We have to try both -Wl,-rpath and -Wl,-R: | |
3399 | saveLdflags="$LDFLAGS" | |
3400 | LDFLAGS="$saveLdflags -Wl,-rpath,/" | |
3401 | AC_MSG_CHECKING([if the linker accepts -rpath]) | |
3402 | AC_TRY_LINK( | |
3403 | [],[], | |
3404 | [ | |
3405 | AC_MSG_RESULT([yes]) | |
e6cc62c6 | 3406 | SAMPLES_RPATH_FLAG="-Wl,-rpath,\$(top_builddir)lib" |
ffa0583f RL |
3407 | WXCONFIG_RPATH="-Wl,-rpath,\$libdir" |
3408 | ],[ | |
fe0895cf VS |
3409 | AC_MSG_RESULT([no]) |
3410 | AC_MSG_CHECKING([if the linker accepts -R]) | |
3411 | LDFLAGS="$saveLdflags -Wl,-R,/" | |
3412 | AC_TRY_LINK( | |
3413 | [],[], | |
3414 | [ | |
ffa0583f RL |
3415 | AC_MSG_RESULT([yes]) |
3416 | SAMPLES_RPATH_FLAG="-Wl,-R,\$(top_builddir)lib" | |
3417 | WXCONFIG_RPATH="-Wl,-R,\$libdir" | |
3418 | ],[ | |
fe0895cf VS |
3419 | AC_MSG_RESULT([no]) |
3420 | ]) | |
3421 | ]) | |
3422 | LDFLAGS="$saveLdflags" | |
de87c353 | 3423 | else |
e6cc62c6 | 3424 | SAMPLES_RPATH_FLAG="-R\$(top_builddir)lib" |
ffa0583f | 3425 | WXCONFIG_RPATH="-R\$libdir" |
de87c353 | 3426 | fi |
de87c353 | 3427 | ;; |
ef0add05 VS |
3428 | |
3429 | powerpc-*-darwin* ) | |
3430 | SAMPLES_RPATH_POSTLINK="\$(top_builddir)change-install-names \$(LIBDIRNAME) \$(prefix) \$@" | |
3431 | cat <<EOF >change-install-names | |
3432 | #!/bin/sh | |
3433 | libnames=\`cd \${1} ; ls -1 | grep '\.[[0-9]][[0-9]]*\.dylib\$'\` | |
3434 | inst_cmd="install_name_tool " | |
3435 | for i in \${libnames} ; do | |
3436 | inst_cmd="\${inst_cmd} -change \${2}/lib/\${i} \${1}/\${i}" | |
3437 | done | |
3438 | \${inst_cmd} \${3} | |
3439 | EOF | |
3440 | chmod +x change-install-names | |
3441 | ;; | |
3442 | ||
e194780e VS |
3443 | *-*-cygwin* | *-*-mingw32* ) |
3444 | TOOLCHAIN_DLL_DEFS="${TOOLCHAIN_DLL_DEFS} -DWXUSINGDLL=1" | |
3445 | ;; | |
3446 | ||
2fc79cf2 MW |
3447 | *-*-hpux* ) |
3448 | SAMPLES_RPATH_FLAG="-Wl,+b,\$(top_builddir)lib" | |
3449 | WXCONFIG_RPATH="-Wl,+b,\$libdir" | |
3450 | ;; | |
3451 | ||
de87c353 | 3452 | esac |
f6bcfd97 | 3453 | |
ffa0583f RL |
3454 | if test $wxUSE_RPATH = "no"; then |
3455 | SAMPLES_RPATH_FLAG='' | |
3456 | SAMPLES_RPATH_POSTLINK='' | |
3457 | WXCONFIG_RPATH='' | |
3458 | fi | |
3459 | ||
3460 | SHARED=1 | |
3461 | ||
3462 | else | |
3463 | ||
ceec2216 RL |
3464 | config_linkage_component="-static" |
3465 | SHARED=0 | |
ffa0583f | 3466 | |
ceec2216 | 3467 | fi |
f6bcfd97 | 3468 | |
f6bcfd97 | 3469 | |
ceec2216 RL |
3470 | UNICODE=0 |
3471 | lib_unicode_suffix= | |
3472 | WX_CHARTYPE="ansi" | |
3473 | if test "$wxUSE_UNICODE" = "yes"; then | |
3474 | lib_unicode_suffix=u | |
3475 | WX_CHARTYPE="unicode" | |
3476 | UNICODE=1 | |
3477 | fi | |
6fa882bd | 3478 | |
ceec2216 RL |
3479 | lib_debug_suffix= |
3480 | WX_DEBUGTYPE="release" | |
3481 | DEBUG_FLAG=0 | |
3482 | if test "$wxUSE_DEBUG_FLAG" = "yes"; then | |
3483 | lib_debug_suffix=d | |
3484 | WX_DEBUGTYPE="debug" | |
3485 | DEBUG_FLAG=1 | |
3486 | fi | |
3a922bb4 | 3487 | |
ceec2216 RL |
3488 | WX_FLAVOUR=${WX_FLAVOUR:+-$WX_FLAVOUR} |
3489 | WX_LIB_FLAVOUR=`echo $WX_FLAVOUR | tr '-' '_'` | |
3a922bb4 | 3490 | |
ceec2216 RL |
3491 | DEBUG_INFO=0 |
3492 | if test "$wxUSE_DEBUG_INFO" = "yes"; then | |
3493 | DEBUG_INFO=1 | |
3494 | fi | |
2bffed64 | 3495 | |
ceec2216 RL |
3496 | WX_VERSION_TAG=`echo WX${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}_${WX_RELEASE} | tr "[[a-z]]" "[[A-Z]]"` |
3497 | ||
3498 | TOOLCHAIN_NAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}-${WX_RELEASE}" | |
3499 | ||
3500 | TOOLCHAIN_FULLNAME="${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}-${WX_CHARTYPE}-${WX_DEBUGTYPE}${config_linkage_component}-${WX_RELEASE}${WX_FLAVOUR}" | |
3501 | ||
3502 | if test "$cross_compiling" = "yes"; then | |
3503 | HOST_SUFFIX="-$host_alias" | |
3504 | TOOLCHAIN_NAME="$TOOLCHAIN_NAME$HOST_SUFFIX" | |
3505 | TOOLCHAIN_FULLNAME="${host_alias}-$TOOLCHAIN_FULLNAME" | |
517a619d RR |
3506 | fi |
3507 | ||
ceec2216 RL |
3508 | dnl library link name |
3509 | dnl These just save us from exporting lib_{unicode,debug,flavour}_suffix. | |
3510 | dnl If we ever need to do that, we won't need to keep these. | |
dd21ced8 | 3511 | WX_LIBRARY_BASENAME_NOGUI="wx_base${WXBASEPORT}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}" |
ceec2216 RL |
3512 | WX_LIBRARY_BASENAME_GUI="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}" |
3513 | ||
3514 | ||
3515 | ||
1d1af5ea DE |
3516 | if test "$wxUSE_COCOA" = 1; then |
3517 | AC_LANG_SAVE | |
3518 | AC_WX_LANG_OBJECTIVEC | |
3519 | dnl Recent AppKit/NSEvent.h include parts of IOKit which eventually | |
3520 | dnl gets IOKit/graphics/IOGraphicsTypes.h included which typedefs | |
3521 | dnl Point but only if MacTypes.h was not included first. Of course, | |
3522 | dnl if MacTypes.h is included later then you're screwed when it | |
3523 | dnl tries to typedef Point. Defining __Point__ will cause IOGraphicsTypes.h | |
3524 | dnl to not typedef Point and thus fix the problem. | |
3525 | AC_MSG_CHECKING([if AppKit/NSEvent.h conflicts with CoreFoundation]) | |
3526 | AC_TRY_COMPILE([#include <AppKit/NSEvent.h> | |
3527 | #include <CoreFoundation/CoreFoundation.h> | |
3528 | ],[], | |
3529 | [AC_MSG_RESULT([no])], | |
3530 | [AC_MSG_RESULT([yes]) | |
3531 | AC_MSG_CHECKING([if defining __Point__ will fix it]) | |
3532 | AC_TRY_COMPILE([#define __Point__ 1 | |
3533 | #include <AppKit/NSEvent.h> | |
3534 | #include <CoreFoundation/CoreFoundation.h> | |
3535 | ],[], | |
3536 | [AC_MSG_RESULT([yes]) | |
3537 | AC_DEFINE(__Point__) | |
3538 | ], | |
3539 | [AC_MSG_FAILURE([no])] | |
3540 | )] | |
3541 | ) | |
3542 | AC_LANG_RESTORE | |
3543 | fi | |
3544 | ||
09d3439c | 3545 | if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1; then |
ceec2216 RL |
3546 | dnl base name of the resource file for wxMac must be the same |
3547 | dnl as library installation base name (-install_name) | |
abb9aae7 VZ |
3548 | WX_RESOURCES_MACOSX_ASCII="libwx_${TOOLCHAIN_NAME}.${wx_release_number}.r" |
3549 | WX_RESOURCES_MACOSX_DATA="libwx_${TOOLCHAIN_NAME}.${wx_release_number}.rsrc" | |
ceec2216 | 3550 | |
d08b457b | 3551 | dnl add the resources target for wxMac |
e6cc62c6 | 3552 | LIBWXMACRES="\$(top_builddir)lib/${WX_RESOURCES_MACOSX_ASCII}" |
09d3439c | 3553 | |
d08b457b | 3554 | AC_CHECK_PROG(RESCOMP, Rez, Rez, /Developer/Tools/Rez) |
9f8148b1 | 3555 | AC_CHECK_PROG(DEREZ, DeRez, DeRez, /Developer/Tools/DeRez) |
36825681 | 3556 | AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile) |
09d3439c VZ |
3557 | |
3558 | MACSETFILE="\$(SETFILE)" | |
3559 | ||
2b5f62a0 VZ |
3560 | dnl resources are bundled both with shared library and applications |
3561 | dnl since the carb resource *must* be included in the application | |
09d3439c VZ |
3562 | if test "$wxUSE_MAC" = 1; then |
3563 | MACRESCOMP="\$(RESCOMP) -d __DARWIN__ -t APPL Carbon.r ${LIBWXMACRES} -o" | |
3564 | ||
3565 | dnl this command is used to implement `wx-config --rezflags` and it is | |
3566 | dnl eval'd there so escape any metacharacters inside | |
3567 | MACRESWXCONFIG="${RESCOMP} -d __DARWIN__ -t APPL Carbon.r \\\${exec_prefix}/lib/${WX_RESOURCES_MACOSX_ASCII} -o" | |
3568 | else | |
3569 | MACRESCOMP="echo -n | \$(RESCOMP) -d __DARWIN__ -t APPL ${LIBWXMACRES} -o" | |
3570 | MACRESWXCONFIG="echo -n \\\| ${RESCOMP} -d __DARWIN__ -t APPL \\\${exec_prefix}/lib/${WX_RESOURCES_MACOSX_ASCII} -o" | |
3571 | fi | |
590b1a4d | 3572 | else |
09d3439c | 3573 | dnl default value is to (silently) do nothing in the makefile |
68e24a7b VZ |
3574 | MACSETFILE="@true" |
3575 | MACRESWXCONFIG="@true" | |
09d3439c VZ |
3576 | |
3577 | dnl confusingly, wxOS2 also uses MACRESCOMP in its post-link step | |
590b1a4d | 3578 | if test "$wxUSE_PM" = 1; then |
36825681 | 3579 | MACRESCOMP="emxbind -ep" |
09d3439c | 3580 | else |
68e24a7b | 3581 | MACRESCOMP="@true" |
590b1a4d | 3582 | fi |
d08b457b GD |
3583 | fi |
3584 | ||
f93ca9fd | 3585 | |
9a98a854 VZ |
3586 | dnl --------------------------------------------------------------------------- |
3587 | dnl Checks for typedefs | |
3588 | dnl --------------------------------------------------------------------------- | |
3589 | ||
3590 | dnl defines mode_t if not already defined | |
3591 | AC_TYPE_MODE_T | |
3592 | dnl defines off_t if not already defined | |
3593 | AC_TYPE_OFF_T | |
3594 | dnl defines pid_t if not already defined | |
3595 | AC_TYPE_PID_T | |
3596 | dnl defines size_t if not already defined | |
3597 | AC_TYPE_SIZE_T | |
3598 | dnl defines uid_t and gid_t if not already defined | |
3599 | AC_TYPE_UID_T | |
3600 | ||
d51253e8 RL |
3601 | dnl sets HAVE_SSIZE_T if ssize_t is defined |
3602 | AC_CHECK_TYPES(ssize_t) | |
3603 | ||
d836ee96 | 3604 | dnl check what exactly size_t is on this machine - this is necessary to avoid |
ef33c576 | 3605 | dnl ambiguous overloads in several places, notably wx/string.h and wx/array.h |
19af3b06 VZ |
3606 | AC_LANG_SAVE |
3607 | AC_LANG_CPLUSPLUS | |
d836ee96 VZ |
3608 | AC_CACHE_CHECK([if size_t is unsigned int], |
3609 | wx_cv_size_t_is_uint, | |
ef33c576 | 3610 | [ |
dd2c8b7c VZ |
3611 | dnl an obvious check like AC_TRY_COMPILE[struct Foo { ... };] doesn't work |
3612 | dnl with egcs (at least) up to 1.1.1 as it allows you to compile duplicate | |
3613 | dnl methods in a local class (i.e. class inside a function) declaration | |
3614 | dnl without any objections!! | |
3615 | dnl | |
3616 | dnl hence the hack below: we must have Foo at global scope! | |
d836ee96 VZ |
3617 | AC_TRY_COMPILE([#include <stddef.h>], |
3618 | [ | |
dd2c8b7c VZ |
3619 | return 0; } |
3620 | ||
d836ee96 | 3621 | struct Foo { void foo(size_t); void foo(unsigned int); }; |
dd2c8b7c VZ |
3622 | |
3623 | int bar() { | |
d836ee96 VZ |
3624 | ], |
3625 | wx_cv_size_t_is_uint=no, | |
3626 | wx_cv_size_t_is_uint=yes | |
3627 | ) | |
ef33c576 | 3628 | ] |
d836ee96 VZ |
3629 | ) |
3630 | ||
3631 | if test "$wx_cv_size_t_is_uint" = "yes"; then | |
3632 | AC_DEFINE(wxSIZE_T_IS_UINT) | |
3633 | else | |
3634 | AC_CACHE_CHECK([if size_t is unsigned long], | |
3635 | wx_cv_size_t_is_ulong, | |
3636 | AC_TRY_COMPILE([#include <stddef.h>], | |
3637 | [ | |
dd2c8b7c VZ |
3638 | return 0; } |
3639 | ||
d836ee96 | 3640 | struct Foo { void foo(size_t); void foo(unsigned long); }; |
dd2c8b7c VZ |
3641 | |
3642 | int bar() { | |
d836ee96 VZ |
3643 | ], |
3644 | wx_cv_size_t_is_ulong=no, | |
3645 | wx_cv_size_t_is_ulong=yes | |
3646 | ) | |
3647 | ) | |
3648 | ||
3649 | if test "$wx_cv_size_t_is_ulong" = "yes"; then | |
3650 | AC_DEFINE(wxSIZE_T_IS_ULONG) | |
3651 | fi | |
3652 | fi | |
3653 | ||
19af3b06 VZ |
3654 | AC_LANG_RESTORE |
3655 | ||
9a98a854 VZ |
3656 | dnl --------------------------------------------------------------------------- |
3657 | dnl Checks for structures | |
3658 | dnl --------------------------------------------------------------------------- | |
3659 | ||
b12915c1 VZ |
3660 | dnl does passwd struct has the pw_gecos field? |
3661 | AC_CACHE_CHECK([for pw_gecos in struct passwd], wx_cv_struct_pw_gecos, | |
3662 | [ | |
3663 | AC_TRY_COMPILE([#include <pwd.h>], | |
3664 | [ | |
3665 | char *p; | |
3666 | struct passwd *pw; | |
3667 | p = pw->pw_gecos; | |
3668 | ], | |
3669 | [ | |
3670 | wx_cv_struct_pw_gecos=yes | |
b12915c1 VZ |
3671 | ], |
3672 | [ | |
3673 | wx_cv_struct_pw_gecos=no | |
3674 | ] | |
3675 | ) | |
3676 | ] | |
3677 | ) | |
3678 | ||
bd3277fe VZ |
3679 | if test "$wx_cv_struct_pw_gecos" = "yes"; then |
3680 | AC_DEFINE(HAVE_PW_GECOS) | |
3681 | fi | |
3682 | ||
9a98a854 | 3683 | dnl --------------------------------------------------------------------------- |
9a98a854 VZ |
3684 | dnl Check for functions |
3685 | dnl --------------------------------------------------------------------------- | |
3686 | ||
d29b553b | 3687 | dnl don't check for wchar_t functions if we haven't got wchar_t itself |
238ecede | 3688 | if test "$ac_cv_sizeof_wchar_t" != "0"; then |
d74f4b5a VZ |
3689 | AC_DEFINE(wxUSE_WCHAR_T) |
3690 | ||
3691 | dnl check for wcslen in all possible places | |
3692 | WCSLEN_FOUND=0 | |
d29b553b | 3693 | WCHAR_LINK= |
d74f4b5a | 3694 | AC_CHECK_FUNCS(wcslen, WCSLEN_FOUND=1) |
d29b553b | 3695 | |
d74f4b5a | 3696 | if test "$WCSLEN_FOUND" = 0; then |
7a30264c | 3697 | if test "$TOOLKIT" = "MSW"; then |
d74f4b5a | 3698 | AC_CHECK_LIB(msvcrt, wcslen, WCHAR_OK=1) |
7a30264c VZ |
3699 | else |
3700 | AC_CHECK_LIB(w, wcslen, [ | |
7a30264c | 3701 | WCHAR_LINK=" -lw" |
d74f4b5a | 3702 | WCSLEN_FOUND=1 |
7a30264c VZ |
3703 | ]) |
3704 | fi | |
d29b553b | 3705 | fi |
9a98a854 | 3706 | |
d74f4b5a VZ |
3707 | if test "$WCSLEN_FOUND" = 1; then |
3708 | AC_DEFINE(HAVE_WCSLEN) | |
3709 | fi | |
d29b553b | 3710 | |
2fc79cf2 MW |
3711 | dnl on HP-UX aCC and g++ need this define to find mbstrtowcs() &c |
3712 | if test "$USE_HPUX" = 1; then | |
acaffac9 VZ |
3713 | CPPFLAGS="$CPPFLAGS -D_INCLUDE__STDC_A1_SOURCE " |
3714 | fi | |
3715 | ||
d74f4b5a | 3716 | dnl try to use wcsrtombs instead of wcstombs which is buggy in old GNU |
d29b553b VZ |
3717 | dnl libc versions if possible |
3718 | AC_CHECK_FUNCS(wcsrtombs) | |
3719 | else | |
d74f4b5a | 3720 | AC_MSG_WARN([Wide character support is unavailable]) |
d29b553b | 3721 | fi |
b3e8d00a | 3722 | |
247f5006 VZ |
3723 | dnl *printf() functions sometimes are available in the library but not |
3724 | dnl prototyped -- if this is the case, we can't use them from C++ code, but to | |
3725 | dnl detect this we have to use C++ compiler for testing | |
3726 | AC_LANG_SAVE | |
3727 | AC_LANG_CPLUSPLUS | |
aea02638 | 3728 | |
247f5006 | 3729 | dnl check for vsnprintf() -- a safe version of vsprintf()) |
ec0d6da3 VZ |
3730 | dnl |
3731 | dnl the trouble here is that on some systems (notable HP-UX) this function is | |
3732 | dnl present in libc but not in the system headers and so AC_CHECK_FUNCS (which, | |
3733 | dnl stupidly, provides a dummy function declaration inside its extension) | |
77ffb593 | 3734 | dnl succeeds, even with C++ compiler, but the compilation of wxWidgets fails |
ec0d6da3 VZ |
3735 | dnl |
3736 | dnl so we first check if the function is in the library | |
247f5006 | 3737 | AC_CHECK_FUNCS(vsnprintf) |
9d8deca0 | 3738 | |
ec0d6da3 VZ |
3739 | if test "$ac_cv_func_vsnprintf" = "yes"; then |
3740 | dnl yes it is -- now check if it is in the headers | |
3741 | AC_CACHE_CHECK([for vsnprintf declaration], wx_cv_func_vsnprintf_decl, | |
3742 | [ | |
3743 | AC_TRY_COMPILE( | |
3744 | [ | |
3745 | #include <stdio.h> | |
3746 | #include <stdarg.h> | |
3747 | ], | |
3748 | [ | |
3749 | char *buf; | |
3750 | va_list ap; | |
3751 | vsnprintf(buf, 10u, "%s", ap); | |
3752 | ], | |
3753 | wx_cv_func_vsnprintf_decl=yes, | |
c122b164 DE |
3754 | [ |
3755 | dnl Metrowerks does provide a vsnprintf declaration | |
3756 | dnl but in C++ mode it's always in std namespace. | |
3757 | dnl FIXME: Do we have any UNIX C++ compilers that would | |
3758 | dnl fail this test if using namespace std; was | |
3759 | dnl simply always included? | |
3760 | AC_TRY_COMPILE( | |
3761 | [ | |
3762 | #include <stdio.h> | |
3763 | #include <stdarg.h> | |
3764 | using namespace std; | |
3765 | ], | |
3766 | [ | |
3767 | char *buf; | |
3768 | va_list ap; | |
3769 | vsnprintf(buf, 10u, "%s", ap); | |
3770 | ], | |
3771 | wx_cv_func_vsnprintf_decl=yes, | |
3772 | wx_cv_func_vsnprintf_decl=no | |
3773 | ) | |
3774 | ] | |
ec0d6da3 VZ |
3775 | ) |
3776 | ] | |
3777 | ) | |
3778 | ||
3779 | if test "$wx_cv_func_vsnprintf_decl" = "yes"; then | |
3780 | AC_DEFINE(HAVE_VSNPRINTF_DECL) | |
3781 | fi | |
3782 | fi | |
3783 | ||
d74f4b5a | 3784 | if test "$wxUSE_UNICODE" = yes; then |
247f5006 | 3785 | dnl also look if we have wide char IO functions |
fbe47c7b | 3786 | AC_CHECK_FUNCS(wputc wputchar putws fputws wprintf vswprintf) |
ec0d6da3 | 3787 | |
79668cae MB |
3788 | dnl MinGW has a vswprintf with a different prototype, and |
3789 | dnl a _vsnwprintf with the correct prototype, but AC_CHECK_FUNCS | |
3790 | dnl finds it even if it is not declared in some versions... | |
3791 | AC_MSG_CHECKING([for _vsnwprintf]) | |
3792 | AC_TRY_COMPILE([#include <wchar.h>], | |
3793 | [&_vsnwprintf;], | |
3794 | [AC_MSG_RESULT([yes]) | |
3795 | AC_DEFINE(HAVE__VSNWPRINTF)], | |
3796 | [AC_MSG_RESULT([no])]); | |
d74f4b5a VZ |
3797 | fi |
3798 | ||
247f5006 VZ |
3799 | AC_LANG_RESTORE |
3800 | ||
3801 | ||
3802 | ||
f6bcfd97 | 3803 | dnl the following tests are for Unix(like) systems only |
b089607b | 3804 | if test "$TOOLKIT" != "MSW"; then |
a0c79abb | 3805 | |
95c8801c VS |
3806 | dnl check for available version of iconv() |
3807 | ||
3808 | AC_LANG_SAVE | |
3809 | AC_LANG_CPLUSPLUS | |
b040e242 VS |
3810 | AM_ICONV |
3811 | LIBS="$LIBICONV $LIBS" | |
95c8801c | 3812 | AC_LANG_RESTORE |
95c8801c | 3813 | |
eb4efbdc VZ |
3814 | dnl check for POSIX signals if we need them |
3815 | if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes" -a "$wxUSE_UNIX" = "yes"; then | |
3816 | AC_CHECK_FUNCS(sigaction) | |
3817 | ||
3818 | if test "$ac_cv_func_sigaction" = "no"; then | |
3819 | AC_MSG_WARN([No POSIX signal functions on this system, wxApp::OnFatalException will not be called]) | |
3820 | wxUSE_ON_FATAL_EXCEPTION=no | |
3821 | fi | |
f6bcfd97 BP |
3822 | |
3823 | if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then | |
3824 | AC_LANG_SAVE | |
3825 | AC_LANG_CPLUSPLUS | |
3826 | ||
3827 | AC_CACHE_CHECK([for sa_handler type], wx_cv_type_sa_handler, | |
3828 | [ | |
3829 | AC_TRY_COMPILE([#include <signal.h>], | |
3830 | [ | |
3831 | extern void testSigHandler(int); | |
3832 | ||
3833 | struct sigaction sa; | |
3834 | sa.sa_handler = testSigHandler; | |
3835 | ], [ | |
3836 | wx_cv_type_sa_handler=int | |
3837 | ], [ | |
3838 | wx_cv_type_sa_handler=void | |
3839 | ]) | |
3840 | ]) | |
3841 | ||
3842 | AC_LANG_RESTORE | |
3843 | ||
3844 | AC_DEFINE_UNQUOTED(wxTYPE_SA_HANDLER, $wx_cv_type_sa_handler) | |
3845 | fi | |
eb4efbdc VZ |
3846 | fi |
3847 | ||
eaff0f0d VZ |
3848 | dnl backtrace() and backtrace_symbols() for wxStackWalker |
3849 | if test "$wxUSE_STACKWALKER" = "yes" -a "$wxUSE_UNIX" = "yes"; then | |
3850 | AC_LANG_SAVE | |
3851 | AC_LANG_CPLUSPLUS | |
3852 | ||
3853 | AC_CACHE_CHECK([for backtrace() in <execinfo.h>], wx_cv_func_backtrace, | |
3854 | [ | |
3855 | AC_TRY_COMPILE([#include <execinfo.h>], | |
3856 | [ | |
3857 | void *trace[1]; | |
3858 | char **messages; | |
3859 | ||
3860 | backtrace(trace, 1); | |
3861 | messages = backtrace_symbols(trace, 1); | |
3862 | ], | |
3863 | wx_cv_func_backtrace=yes, | |
3864 | wx_cv_func_backtrace=no | |
3865 | ) | |
3866 | ] | |
3867 | ) | |
3868 | ||
3869 | ||
3870 | if test "$wx_cv_func_backtrace" = "no"; then | |
3871 | AC_MSG_WARN([backtrace() is not available, wxStackWalker will not be available]) | |
3872 | wxUSE_STACKWALKER=no | |
3873 | else | |
3874 | AC_CACHE_CHECK([for __cxa_demangle() in <cxxabi.h>], wx_cv_func_cxa_demangle, | |
3875 | [ | |
dfe0c803 | 3876 | AC_TRY_LINK([#include <cxxabi.h>], |
eaff0f0d VZ |
3877 | [ |
3878 | int rc; | |
3879 | __cxxabiv1::__cxa_demangle("foo", 0, 0, &rc); | |
3880 | ], | |
3881 | wx_cv_func_cxa_demangle=yes, | |
3882 | wx_cv_func_cxa_demangle=no | |
3883 | ) | |
3884 | ] | |
3885 | ) | |
3886 | ||
3887 | if test "$wx_cv_func_cxa_demangle" = "yes"; then | |
3888 | AC_DEFINE(HAVE_CXA_DEMANGLE) | |
3889 | fi | |
3890 | fi | |
3891 | ||
3892 | AC_LANG_RESTORE | |
3893 | fi | |
3894 | ||
898beab1 DE |
3895 | if test "$wxUSE_STACKWALKER" = "yes" -a "$USE_WIN32" != "1" -a "$USE_UNIX" != "1"; then |
3896 | AC_MSG_WARN([wxStackWalker is only available on Win32 and UNIX... disabled]) | |
3897 | wxUSE_STACKWALKER=no | |
3898 | fi | |
3899 | ||
3900 | ||
ade35f11 VZ |
3901 | dnl check for the function for temp files creation |
3902 | AC_CHECK_FUNCS(mkstemp mktemp, break) | |
3903 | ||
9952adac VZ |
3904 | dnl get the library function to use for wxGetDiskSpace(): it is statfs() under |
3905 | dnl Linux and *BSD and statvfs() under Solaris | |
52e8b690 VZ |
3906 | AC_CACHE_CHECK(for statfs, wx_cv_func_statfs, |
3907 | AC_TRY_COMPILE( | |
3908 | [ | |
9952adac | 3909 | #if defined(__BSD__) |
d08b457b GD |
3910 | #include <sys/param.h> |
3911 | #include <sys/mount.h> | |
3912 | #else | |
3913 | #include <sys/vfs.h> | |
3914 | #endif | |
52e8b690 VZ |
3915 | ], |
3916 | [ | |
3917 | long l; | |
3918 | struct statfs fs; | |
3919 | statfs("/", &fs); | |
3920 | l = fs.f_bsize; | |
3921 | l += fs.f_blocks; | |
3922 | l += fs.f_bavail; | |
3923 | ], | |
3924 | [ | |
3925 | wx_cv_func_statfs=yes | |
3926 | ], | |
3927 | [ | |
3928 | wx_cv_func_statfs=no | |
3929 | ] | |
3930 | ) | |
3931 | ) | |
3932 | ||
3933 | if test "$wx_cv_func_statfs" = "yes"; then | |
54ab82b3 | 3934 | wx_cv_type_statvfs_t="struct statfs" |
52e8b690 VZ |
3935 | AC_DEFINE(HAVE_STATFS) |
3936 | else | |
9952adac VZ |
3937 | AC_CACHE_CHECK(for statvfs, wx_cv_func_statvfs, |
3938 | AC_TRY_COMPILE( | |
3939 | [ | |
54ab82b3 VZ |
3940 | #include <stddef.h> |
3941 | #include <sys/statvfs.h> | |
9952adac VZ |
3942 | ], |
3943 | [ | |
54ab82b3 | 3944 | statvfs("/", NULL); |
9952adac | 3945 | ], |
54ab82b3 VZ |
3946 | wx_cv_func_statvfs=yes, |
3947 | wx_cv_func_statvfs=no | |
9952adac | 3948 | ) |
af15babd | 3949 | ) |
9952adac VZ |
3950 | |
3951 | if test "$wx_cv_func_statvfs" = "yes"; then | |
54ab82b3 VZ |
3952 | dnl we also have to check whether we should use statvfs_t (works under |
3953 | dnl Solaris 8, doesn't work under Solaris 7) or "struct statvfs" (vice | |
3954 | dnl versa) as the argument for statvfs in 64 bit off_t mode (in 32 bit | |
3955 | dnl mode both work fine) | |
3956 | dnl | |
3957 | dnl for this check C++ compiler has to be used as passing incompatible | |
3958 | dnl pointers is just a warning and not an error in C | |
3959 | AC_LANG_SAVE | |
3960 | AC_LANG_CPLUSPLUS | |
3961 | ||
3962 | AC_CACHE_CHECK(for statvfs argument type, wx_cv_type_statvfs_t, | |
3963 | AC_TRY_COMPILE( | |
3964 | [ | |
3965 | #include <sys/statvfs.h> | |
3966 | ], | |
3967 | [ | |
3968 | long l; | |
3969 | statvfs_t fs; | |
3970 | statvfs("/", &fs); | |
3971 | l = fs.f_bsize; | |
3972 | l += fs.f_blocks; | |
3973 | l += fs.f_bavail; | |
3974 | ], | |
3975 | wx_cv_type_statvfs_t=statvfs_t, | |
3976 | [ | |
3977 | AC_TRY_COMPILE( | |
3978 | [ | |
3979 | #include <sys/statvfs.h> | |
3980 | ], | |
3981 | [ | |
3982 | long l; | |
e107213f | 3983 | struct statvfs fs; |
54ab82b3 VZ |
3984 | statvfs("/", &fs); |
3985 | l = fs.f_bsize; | |
3986 | l += fs.f_blocks; | |
3987 | l += fs.f_bavail; | |
3988 | ], | |
3989 | wx_cv_type_statvfs_t="struct statvfs", | |
3990 | wx_cv_type_statvfs_t="unknown" | |
3991 | ) | |
3992 | ] | |
3993 | ) | |
3994 | ) | |
3995 | ||
3996 | AC_LANG_RESTORE | |
3997 | ||
3998 | if test "$wx_cv_type_statvfs_t" != "unknown"; then | |
3999 | AC_DEFINE(HAVE_STATVFS) | |
4000 | fi | |
9952adac | 4001 | else |
54ab82b3 VZ |
4002 | dnl set it for the test below |
4003 | wx_cv_type_statvfs_t="unknown" | |
9952adac | 4004 | fi |
52e8b690 VZ |
4005 | fi |
4006 | ||
54ab82b3 VZ |
4007 | if test "$wx_cv_type_statvfs_t" != "unknown"; then |
4008 | AC_DEFINE_UNQUOTED(WX_STATFS_T, $wx_cv_type_statvfs_t) | |
4009 | else | |
4010 | AC_MSG_WARN([wxGetDiskSpace() function won't work without statfs()]) | |
4011 | fi | |
4012 | ||
4f3c5f06 VZ |
4013 | dnl check for fcntl() or at least flock() needed by Unix implementation of |
4014 | dnl wxSingleInstanceChecker | |
4015 | if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then | |
4016 | AC_CHECK_FUNCS(fcntl flock, break) | |
4017 | ||
4018 | if test "$ac_cv_func_fcntl" != "yes" -a "$ac_cv_func_flock" != "yes"; then | |
4019 | AC_MSG_WARN(wxSingleInstanceChecker not available) | |
4020 | wxUSE_SNGLINST_CHECKER=no | |
4021 | fi | |
4022 | fi | |
4023 | ||
270a909e VZ |
4024 | dnl check for timegm() used by datetime.cpp |
4025 | AC_CHECK_FUNCS(timegm) | |
4026 | ||
4f3c5f06 | 4027 | dnl look for a function to modify the environment |
8fd0d89b VZ |
4028 | AC_CHECK_FUNCS(putenv setenv, break) |
4029 | ||
b12915c1 VZ |
4030 | HAVE_SOME_SLEEP_FUNC=0 |
4031 | if test "$USE_BEOS" = 1; then | |
4032 | dnl BeOS has its own (wonder where did they get it from) sleep() function | |
4033 | dnl in unistd.h | |
4034 | AC_DEFINE(HAVE_SLEEP) | |
4035 | HAVE_SOME_SLEEP_FUNC=1 | |
4036 | fi | |
4037 | ||
f11bdd03 | 4038 | if test "$USE_DARWIN" = 1; then |
b2fee376 | 4039 | dnl Mac OS X/Darwin has both nanosleep and usleep |
b4085ce6 GD |
4040 | dnl but only usleep is defined in unistd.h |
4041 | AC_DEFINE(HAVE_USLEEP) | |
4042 | HAVE_SOME_SLEEP_FUNC=1 | |
4043 | fi | |
4044 | ||
b12915c1 VZ |
4045 | if test "$HAVE_SOME_SLEEP_FUNC" != 1; then |
4046 | dnl try nanosleep() in libc and libposix4, if this fails - usleep() | |
4047 | POSIX4_LINK= | |
4048 | AC_CHECK_FUNCS(nanosleep, | |
4049 | AC_DEFINE(HAVE_NANOSLEEP), | |
4050 | [ | |
4051 | AC_CHECK_LIB(posix4, nanosleep, | |
4052 | [ | |
4053 | AC_DEFINE(HAVE_NANOSLEEP) | |
3d63bc3a | 4054 | POSIX4_LINK=" -lposix4" |
b12915c1 VZ |
4055 | ], |
4056 | [ | |
b4085ce6 | 4057 | AC_CHECK_FUNCS(usleep, |
4f3c5f06 VZ |
4058 | AC_DEFINE(HAVE_USLEEP), |
4059 | AC_MSG_WARN([wxSleep() function will not work]) | |
4060 | ) | |
b12915c1 VZ |
4061 | ] |
4062 | ) | |
4063 | ] | |
4064 | ) | |
4065 | fi | |
9a98a854 VZ |
4066 | |
4067 | dnl check for uname (POSIX) and gethostname (BSD) | |
4068 | AC_CHECK_FUNCS(uname gethostname, break) | |
4069 | ||
6098c7f9 VZ |
4070 | dnl check for MT-safe version of strtok (on DEC Alpha, it's ok for C compiler |
4071 | dnl but not for C++ one - hence change language) | |
4072 | AC_LANG_SAVE | |
4073 | AC_LANG_CPLUSPLUS | |
4074 | ||
e90c1d2a VZ |
4075 | AC_CHECK_FUNCS(strtok_r) |
4076 | ||
6098c7f9 VZ |
4077 | AC_LANG_RESTORE |
4078 | ||
c63c7106 | 4079 | dnl check for inet_addr and inet_aton (these may live either in libc, or in |
c6712985 | 4080 | dnl libnsl or libresolv or libsocket) |
c63c7106 VZ |
4081 | INET_LINK= |
4082 | AC_CHECK_FUNCS(inet_addr, | |
4083 | AC_DEFINE(HAVE_INET_ADDR), | |
4084 | [ | |
4085 | AC_CHECK_LIB(nsl, inet_addr, | |
270a909e | 4086 | INET_LINK="nsl", |
4c15b7af SN |
4087 | [ |
4088 | AC_CHECK_LIB(resolv, inet_addr, | |
4089 | INET_LINK="resolv", | |
4090 | [ | |
4091 | AC_CHECK_LIB(socket, inet_addr, | |
4092 | INET_LINK="socket" | |
4093 | ) | |
4094 | ] | |
c6712985 | 4095 | ) |
4c15b7af | 4096 | ] |
c63c7106 VZ |
4097 | ) |
4098 | ] | |
4099 | ) | |
4100 | ||
4101 | AC_CHECK_FUNCS(inet_aton, | |
4102 | AC_DEFINE(HAVE_INET_ATON), | |
4103 | [ | |
4104 | dnl only check it in the same lib | |
4105 | AC_CHECK_LIB($INET_LINK, inet_aton, AC_DEFINE(HAVE_INET_ATON)) | |
4106 | ]) | |
4107 | ||
4108 | if test "x$INET_LINK" != "x"; then | |
4109 | AC_DEFINE(HAVE_INET_ADDR) | |
3d63bc3a | 4110 | INET_LINK=" -l$INET_LINK" |
c63c7106 | 4111 | fi |
e96ac54e | 4112 | |
a0c79abb | 4113 | fi |
b089607b | 4114 | dnl if !MSW |
a0c79abb | 4115 | |
e6cc62c6 VS |
4116 | |
4117 | dnl ------------------------------------------ | |
4118 | dnl Checks specific to contrib libs (MMedia) | |
4119 | dnl ------------------------------------------ | |
4120 | ||
4121 | dnl Check for ESD: | |
edd891e2 VS |
4122 | EXTRALIBS_ESD= |
4123 | AC_CHECK_LIB(esd, esd_close, [ | |
4124 | AC_CHECK_HEADERS([esd.h], [ | |
4125 | EXTRALIBS_ESD="-lesd" | |
e6cc62c6 VS |
4126 | ]) |
4127 | ]) | |
edd891e2 | 4128 | AC_SUBST(EXTRALIBS_ESD) |
e6cc62c6 | 4129 | |
d19d1899 MB |
4130 | dnl check for known CD-ROM interface |
4131 | AC_MSG_CHECKING([for known CD-ROM interface]) | |
4132 | AC_TRY_COMPILE([#ifdef __linux__ | |
4133 | #include <linux/cdrom.h> | |
4134 | #else | |
4135 | /* For Solaris */ | |
4136 | #include <sys/cdio.h> | |
4137 | #endif | |
4138 | ], | |
4139 | [struct cdrom_tocentry entry, old_entry;], | |
4140 | [AC_MSG_RESULT([yes]) | |
4141 | AC_DEFINE(HAVE_KNOWN_CDROM_INTERFACE)], | |
4142 | [AC_MSG_RESULT([no])]) | |
e6cc62c6 | 4143 | |
9a98a854 VZ |
4144 | dnl =========================================================================== |
4145 | dnl Now we have all the info we need - use it! | |
4146 | dnl =========================================================================== | |
4147 | ||
4148 | dnl flush the cache | |
4149 | AC_CACHE_SAVE | |
4150 | ||
4151 | dnl --------------------------------------------------------------------------- | |
5cc55caf SN |
4152 | dnl thread support for Unix (for Win32 and OS/2 see past |
4153 | dnl the next matching "else") | |
9a98a854 VZ |
4154 | dnl --------------------------------------------------------------------------- |
4155 | ||
a0b9e27f | 4156 | dnl under MSW (except mingw32) we always have thread support |
009fead0 | 4157 | CPP_MT_FLAG= |
5cc55caf | 4158 | if test "$TOOLKIT" != "MSW" -a "$USE_OS2" != 1; then |
a9b5e89f | 4159 | |
7274f1c7 | 4160 | dnl the code below: |
009fead0 VZ |
4161 | dnl |
4162 | dnl defines THREADS_LINK and THREADS_CFLAGS which are the options | |
4163 | dnl necessary to build the MT programs for the linker and compiler | |
4164 | dnl respectively | |
4165 | dnl | |
4166 | dnl sets wxUSE_THREADS=1 if thread support is activated | |
7274f1c7 RL |
4167 | |
4168 | THREADS_LINK= | |
009fead0 | 4169 | THREADS_CFLAGS= |
7274f1c7 RL |
4170 | |
4171 | if test "$wxUSE_THREADS" = "yes" ; then | |
d1188635 | 4172 | if test "$USE_BEOS" = 1; then |
156b2523 | 4173 | AC_MSG_WARN([BeOS threads are not yet supported... disabled]) |
7274f1c7 RL |
4174 | wxUSE_THREADS="no" |
4175 | fi | |
77c85c2b | 4176 | fi |
39c9d5ac | 4177 | |
7274f1c7 RL |
4178 | if test "$wxUSE_THREADS" = "yes" ; then |
4179 | dnl find if POSIX threads are available | |
009fead0 VZ |
4180 | dnl |
4181 | dnl the tests here are based on ACX_PTHREAD macro from autoconf macro | |
4182 | dnl archive from http://ac-archive.sourceforge.net/ | |
4183 | dnl | |
4184 | dnl thanks to Steven G. Johnson <stevenj@alum.mit.edu> and Alejandro | |
4185 | dnl Forero Cuervo <bachue@bachue.com> for the original code | |
4186 | ||
4187 | dnl TODO: cache the result | |
4188 | ||
4189 | dnl define the list of the thread options to try in the loop below | |
4190 | dnl with the convention that anything starting with '-' is a cpp flag | |
4191 | dnl while anything else is a library (i.e. there is an implicit "-l") | |
4192 | THREAD_OPTS="-pthread" | |
4193 | case "${host}" in | |
4194 | *-*-solaris2* | *-*-sunos4* ) | |
4195 | if test "x$GCC" = "xyes"; then | |
126be6b4 VZ |
4196 | dnl Solaris/gcc combination use this one for some reason |
4197 | THREAD_OPTS="-pthreads $THREAD_OPTS" | |
009fead0 VZ |
4198 | else |
4199 | THREAD_OPTS="-mt $THREAD_OPTS" | |
4200 | fi | |
4201 | ;; | |
4202 | *-*-freebsd*) | |
4203 | dnl look, in order, for the kernel threads, then Linux threads | |
4204 | dnl and finally the userland threads | |
4205 | THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r" | |
4206 | ;; | |
17234b26 | 4207 | *-*-darwin* | *-*-cygwin* ) |
4101db81 | 4208 | dnl Darwin / Mac OS X just uses -lpthread tested below |
17234b26 | 4209 | dnl and so does Cygwin |
4101db81 GD |
4210 | THREAD_OPTS="" |
4211 | ;; | |
4212 | *-*-aix*) | |
009fead0 VZ |
4213 | dnl AIX calls the library libpthreads - thanks IBM! |
4214 | THREAD_OPTS="pthreads" | |
4215 | ;; | |
4f5a7f74 VZ |
4216 | *-hp-hpux* ) |
4217 | dnl HP-UX aCC only gives a warning, not an error about | |
4218 | dnl -pthread but it doesn't work and we have to use -lpthread | |
4219 | dnl there | |
4220 | if test "x$GCC" != "xyes"; then | |
4221 | THREAD_OPTS="" | |
4222 | fi | |
89e3b3e4 | 4223 | ;; |
260d6849 VZ |
4224 | |
4225 | *-*-irix* ) | |
4226 | dnl gcc under IRIX doesn't seem to like -pthread, but it | |
4227 | dnl doesn't give an error for it neither, just a warning | |
4228 | dnl message -- but this is still very annoying | |
4229 | if test "x$GCC" = "xyes"; then | |
4230 | THREAD_OPTS="" | |
4231 | fi | |
4232 | ;; | |
4233 | ||
4234 | *-*-*UnixWare*) | |
4235 | dnl flying by man pages here: Caldera online docs use this | |
4236 | if test "x$GCC" != "xyes"; then | |
4237 | THREAD_OPTS="-Ethread" | |
4238 | fi | |
4239 | ;; | |
009fead0 | 4240 | esac |
c596875e | 4241 | |
595e0e44 VZ |
4242 | dnl simply linking with libpthread should make the test below work but |
4243 | dnl it's far from certain that the threaded programs compiled without | |
4244 | dnl any special switches actually work, so try it after all the others | |
02a1dfba | 4245 | THREAD_OPTS="$THREAD_OPTS pthread none" |
595e0e44 | 4246 | |
009fead0 VZ |
4247 | dnl now test for all possibilities |
4248 | THREADS_OK=no | |
4249 | for flag in $THREAD_OPTS; do | |
4250 | case $flag in | |
4251 | none) | |
4252 | AC_MSG_CHECKING([whether pthreads work without any flags]) | |
4253 | ;; | |
f6bcfd97 | 4254 | |
009fead0 VZ |
4255 | -*) |
4256 | AC_MSG_CHECKING([whether pthreads work with $flag]) | |
4257 | THREADS_CFLAGS="$flag" | |
4258 | ;; | |
9a98a854 | 4259 | |
009fead0 VZ |
4260 | *) |
4261 | AC_MSG_CHECKING([for the pthreads library -l$flag]) | |
4262 | THREADS_LINK="-l$flag" | |
4263 | ;; | |
4264 | esac | |
4265 | ||
4266 | save_LIBS="$LIBS" | |
4267 | save_CFLAGS="$CFLAGS" | |
4268 | LIBS="$THREADS_LINK $LIBS" | |
04727afd | 4269 | CFLAGS="$THREADS_CFLAGS $CFLAGS" |
009fead0 VZ |
4270 | |
4271 | AC_TRY_LINK([#include <pthread.h>], | |
4272 | [pthread_create(0,0,0,0);], | |
4273 | THREADS_OK=yes) | |
4274 | ||
4275 | LIBS="$save_LIBS" | |
4276 | CFLAGS="$save_CFLAGS" | |
4277 | ||
4278 | AC_MSG_RESULT($THREADS_OK) | |
4279 | if test "x$THREADS_OK" = "xyes"; then | |
4280 | break; | |
4281 | fi | |
4282 | ||
4283 | THREADS_LINK="" | |
4284 | THREADS_CFLAGS="" | |
4285 | done | |
4286 | ||
4287 | if test "x$THREADS_OK" != "xyes"; then | |
4288 | wxUSE_THREADS=no | |
4289 | AC_MSG_WARN([No thread support on this system... disabled]) | |
4290 | else | |
fe5a9cab VZ |
4291 | dnl yes, these special compiler flags should be used with the |
4292 | dnl linker as well | |
db82f09e VZ |
4293 | LDFLAGS="$THREADS_CFLAGS $LDFLAGS" |
4294 | LIBS="$THREADS_LINK $LIBS" | |
fe5a9cab | 4295 | |
009fead0 VZ |
4296 | AC_MSG_CHECKING([if more special flags are required for pthreads]) |
4297 | flag=no | |
4298 | case "${host}" in | |
2b5f62a0 VZ |
4299 | *-aix*) |
4300 | dnl again quoting from | |
4301 | dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html: | |
4302 | dnl | |
4303 | dnl When compiling and linking with -pthread, the library | |
4304 | dnl search path should include -L/usr/lib/threads at the | |
4305 | dnl beginning of the path. | |
4306 | LDFLAGS="-L/usr/lib/threads $LDFLAGS" | |
4307 | flag="-D_THREAD_SAFE" | |
4308 | ;; | |
4309 | *-freebsd*) | |
009fead0 VZ |
4310 | flag="-D_THREAD_SAFE" |
4311 | ;; | |
06313569 GD |
4312 | *-hp-hpux* ) |
4313 | flag="-D_REENTRANT" | |
4f5a7f74 VZ |
4314 | if test "x$GCC" != "xyes"; then |
4315 | dnl see http://docs.hp.com/hpux/onlinedocs/2213/threads.htm | |
4316 | flag="$flag -D_RWSTD_MULTI_THREAD" | |
4317 | fi | |
06313569 | 4318 | ;; |
009fead0 VZ |
4319 | *solaris* | alpha*-osf*) |
4320 | flag="-D_REENTRANT" | |
4321 | ;; | |
4322 | esac | |
4323 | AC_MSG_RESULT(${flag}) | |
4324 | if test "x$flag" != xno; then | |
04727afd | 4325 | THREADS_CFLAGS="$THREADS_CFLAGS $flag" |
009fead0 VZ |
4326 | fi |
4327 | ||
009fead0 | 4328 | if test "x$THREADS_CFLAGS" != "x"; then |
fe5a9cab | 4329 | dnl don't add these options to CPPFLAGS as cpp might not know them |
009fead0 VZ |
4330 | CFLAGS="$CFLAGS $THREADS_CFLAGS" |
4331 | CXXFLAGS="$CXXFLAGS $THREADS_CFLAGS" | |
4332 | fi | |
4333 | fi | |
aea02638 | 4334 | fi |
9a98a854 | 4335 | |
7274f1c7 RL |
4336 | dnl do other tests only if we are using threads |
4337 | if test "$wxUSE_THREADS" = "yes" ; then | |
4338 | AC_CHECK_FUNCS(thr_setconcurrency) | |
4339 | ||
7274f1c7 | 4340 | AC_CHECK_HEADERS(sched.h) |
009fead0 VZ |
4341 | if test "$ac_cv_header_sched_h" = "yes"; then |
4342 | AC_CHECK_FUNC(sched_yield, | |
4343 | AC_DEFINE(HAVE_SCHED_YIELD), | |
4344 | [ | |
4345 | AC_CHECK_LIB(posix4, | |
4346 | sched_yield, | |
4347 | [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK=" -lposix4"], | |
4348 | AC_MSG_WARN(wxThread::Yield will not work properly) | |
4349 | ) | |
4350 | ] | |
4351 | ) | |
4352 | fi | |
9a98a854 | 4353 | |
7274f1c7 RL |
4354 | dnl to be able to set the thread priority, we need to have all of the |
4355 | dnl following functions: | |
4356 | dnl 1. pthread_attr_getschedpolicy | |
4357 | dnl 2. sched_get_priority_min and sched_get_priority_max | |
4358 | dnl (this one can be in either libpthread or libposix4 (under Solaris)) | |
4359 | dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam | |
4360 | HAVE_PRIOR_FUNCS=0 | |
009fead0 | 4361 | AC_CHECK_FUNC(pthread_attr_getschedpolicy, |
ef33c576 VZ |
4362 | [AC_CHECK_FUNC(pthread_attr_setschedparam, |
4363 | [AC_CHECK_FUNC(sched_get_priority_max, | |
7274f1c7 | 4364 | HAVE_PRIOR_FUNCS=1, |
ef33c576 | 4365 | [AC_CHECK_LIB([posix4], sched_get_priority_max, |
7274f1c7 RL |
4366 | [ |
4367 | HAVE_PRIOR_FUNCS=1 | |
4368 | POSIX4_LINK=" -lposix4" | |
4369 | ], | |
ef33c576 VZ |
4370 | )] |
4371 | )] | |
4372 | )] | |
7274f1c7 | 4373 | ) |
f6bcfd97 | 4374 | |
7274f1c7 RL |
4375 | if test "$HAVE_PRIOR_FUNCS" = 1; then |
4376 | AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS) | |
4377 | else | |
4378 | AC_MSG_WARN(Setting thread priority will not work) | |
4379 | fi | |
9a98a854 | 4380 | |
009fead0 VZ |
4381 | AC_CHECK_FUNC(pthread_cancel, |
4382 | AC_DEFINE(HAVE_PTHREAD_CANCEL), | |
4383 | AC_MSG_WARN([wxThread::Kill() will not work properly])) | |
9a98a854 | 4384 | |
759b3c7e VZ |
4385 | dnl we don't use pthread_cleanup_push/pop() any more in the code, but I |
4386 | dnl the code here for now in case we need it again soon; otherwise it | |
4387 | dnl should be removed in a couple of months (VZ in Sep 2003) | |
4388 | dnl | |
4389 | dnl AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push, | |
4390 | dnl [ | |
4391 | dnl AC_TRY_COMPILE([#include <pthread.h>], | |
4392 | dnl [ | |
4393 | dnl pthread_cleanup_push(NULL, NULL); | |
4394 | dnl pthread_cleanup_pop(0); | |
4395 | dnl ], [ | |
4396 | dnl wx_cv_func_pthread_cleanup_push=yes | |
4397 | dnl ], [ | |
4398 | dnl wx_cv_func_pthread_cleanup_push=no | |
4399 | dnl ]) | |
4400 | dnl ]) | |
4401 | dnl | |
4402 | dnl if test "$wx_cv_func_pthread_cleanup_push" = "yes"; then | |
4403 | dnl AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS) | |
4404 | dnl fi | |
ab252f7b | 4405 | |
7274f1c7 RL |
4406 | dnl mutexattr_t initialization is done in quite different ways on different |
4407 | dnl platforms, so check for a few things: | |
4408 | dnl | |
4409 | dnl HAVE_MUTEX_RECURSIVE means that we can create recursive mutexes | |
4410 | dnl HAVE_MUTEXATTR_SETTYPE means that we do it using | |
4411 | dnl pthread_mutexattr_settype(PTHREAD_MUTEX_RECURSIVE) and if it is not | |
4412 | dnl defined, we do it by directly assigned | |
4413 | dnl PTHREAD_MUTEX_RECURSIVE_MUTEX_INITIALIZER_NP to attr | |
4414 | ||
7274f1c7 RL |
4415 | AC_CACHE_CHECK([for pthread_mutexattr_t], wx_cv_type_pthread_mutexattr_t, |
4416 | [ | |
d9b9876f VZ |
4417 | AC_TRY_COMPILE([#include <pthread.h>], |
4418 | [ | |
7274f1c7 RL |
4419 | pthread_mutexattr_t attr; |
4420 | pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); | |
d9b9876f | 4421 | ], [ |
7274f1c7 | 4422 | wx_cv_type_pthread_mutexattr_t=yes |
d9b9876f | 4423 | ], [ |
7274f1c7 | 4424 | wx_cv_type_pthread_mutexattr_t=no |
d9b9876f VZ |
4425 | ] |
4426 | ) | |
7274f1c7 | 4427 | ]) |
d9b9876f | 4428 | |
7274f1c7 RL |
4429 | if test "$wx_cv_type_pthread_mutexattr_t" = "yes"; then |
4430 | AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_T) | |
4431 | else | |
4432 | dnl don't despair, there may be another way to do it | |
4433 | AC_CACHE_CHECK([for PTHREAD_RECURSIVE_MUTEX_INITIALIZER], | |
4434 | wx_cv_type_pthread_rec_mutex_init, | |
4435 | [ | |
4436 | AC_TRY_COMPILE([#include <pthread.h>], | |
4437 | [ | |
4438 | pthread_mutex_t attr = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; | |
4439 | ], [ | |
4440 | wx_cv_type_pthread_rec_mutex_init=yes | |
4441 | ], [ | |
4442 | wx_cv_type_pthread_rec_mutex_init=no | |
4443 | ] | |
4444 | ) | |
4445 | ]) | |
4446 | if test "$wx_cv_type_pthread_rec_mutex_init" = "yes"; then | |
4447 | AC_DEFINE(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER) | |
4448 | else | |
4449 | dnl this may break code working elsewhere, so at least warn about it | |
4450 | AC_MSG_WARN([wxMutex won't be recursive on this platform]) | |
4451 | fi | |
4452 | fi | |
7274f1c7 | 4453 | fi |
9a98a854 | 4454 | |
b089607b | 4455 | dnl from if !MSW |
a0b9e27f MB |
4456 | else |
4457 | if test "$wxUSE_THREADS" = "yes" ; then | |
4458 | case "${host}" in | |
4459 | *-*-mingw32* ) | |
ca8e52b3 VZ |
4460 | dnl check if the compiler accepts -mthreads |
4461 | AC_CACHE_CHECK([if compiler supports -mthreads], | |
4462 | wx_cv_cflags_mthread, | |
4463 | [ | |
4464 | CFLAGS_OLD="$CFLAGS" | |
4465 | CFLAGS="$CFLAGS -mthreads" | |
4466 | AC_TRY_COMPILE([], [], | |
4467 | wx_cv_cflags_mthread=yes, | |
4468 | wx_cv_cflags_mthread=no | |
4469 | ) | |
4470 | ] | |
4471 | ) | |
4472 | ||
4473 | if test "$wx_cv_cflags_mthread" = "yes"; then | |
4474 | dnl it does, use it | |
4475 | CXXFLAGS="$CXXFLAGS -mthreads" | |
4476 | TOOLCHAIN_DEFS="$TOOLCHAIN_DEFS -mthreads" | |
4477 | LDFLAGS="$LDFLAGS -mthreads" | |
4478 | else | |
4479 | dnl it doesn't | |
4480 | CFLAGS="$CFLAGS_OLD" | |
4481 | fi | |
a0b9e27f | 4482 | ;; |
5cc55caf | 4483 | *-pc-os2*emx ) |
4cbbb631 SN |
4484 | CFLAGS="$CFLAGS -Zmt -D__ST_MT_ERRNO__" |
4485 | CXXFLAGS="$CXXFLAGS -Zmt -D__ST_MT_ERRNO__" | |
5cc55caf SN |
4486 | LDFLAGS="$LDFLAGS -Zmt" |
4487 | ;; | |
a0b9e27f MB |
4488 | esac |
4489 | fi | |
a9b5e89f VZ |
4490 | fi |
4491 | ||
4492 | if test "$wxUSE_THREADS" = "yes"; then | |
4493 | AC_DEFINE(wxUSE_THREADS) | |
4494 | ||
a9b5e89f | 4495 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread" |
d64af447 | 4496 | else |
b12915c1 | 4497 | dnl on some systems, _REENTRANT should be defined if we want to use any _r() |
d64af447 VZ |
4498 | dnl functions - add tests for other functions here as well |
4499 | if test "$ac_cv_func_strtok_r" = "yes"; then | |
ab9b9eab VZ |
4500 | AC_MSG_CHECKING(if -D_REENTRANT is needed) |
4501 | if test "$NEEDS_D_REENTRANT_FOR_R_FUNCS" = 1; then | |
3a922bb4 | 4502 | TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D_REENTRANT" |
ab9b9eab VZ |
4503 | AC_MSG_RESULT(yes) |
4504 | else | |
4505 | AC_MSG_RESULT(no) | |
ee31c269 | 4506 | fi |
d64af447 | 4507 | fi |
a9b5e89f VZ |
4508 | fi |
4509 | ||
6f72b082 OK |
4510 | if test "$WXGTK20" = 1 ; then |
4511 | AC_DEFINE_UNQUOTED(__WXGTK20__,$WXGTK20) | |
13111b2a VZ |
4512 | WXGTK12=1 |
4513 | fi | |
4514 | ||
9a98a854 VZ |
4515 | if test "$WXGTK12" = 1 ; then |
4516 | AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12) | |
4517 | fi | |
4518 | ||
f6bcfd97 BP |
4519 | if test "$WXGTK127" = 1 ; then |
4520 | AC_DEFINE_UNQUOTED(__WXGTK127__,$WXGTK127) | |
4521 | fi | |
4522 | ||
16bd311d RR |
4523 | if test "$WXGPE" = 1 ; then |
4524 | AC_DEFINE_UNQUOTED(__WXGPE__,$WXGPE) | |
4525 | fi | |
4526 | ||
9a98a854 | 4527 | WXDEBUG= |
9a98a854 VZ |
4528 | |
4529 | if test "$wxUSE_DEBUG_INFO" = "yes" ; then | |
4530 | WXDEBUG="-g" | |
4531 | wxUSE_OPTIMISE=no | |
4532 | fi | |
4533 | ||
5586805b RR |
4534 | if test "$wxUSE_DEBUG_GDB" = "yes" ; then |
4535 | wxUSE_DEBUG_INFO=yes | |
4536 | WXDEBUG="-ggdb" | |
4537 | fi | |
4538 | ||
9a98a854 | 4539 | if test "$wxUSE_DEBUG_FLAG" = "yes" ; then |
77c85c2b RR |
4540 | AC_DEFINE(WXDEBUG) |
4541 | WXDEBUG_DEFINE="-D__WXDEBUG__" | |
9a98a854 | 4542 | else |
04338f96 RR |
4543 | if test "$wxUSE_GTK" = 1 ; then |
4544 | WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS" | |
4545 | fi | |
9a98a854 VZ |
4546 | fi |
4547 | ||
4548 | if test "$wxUSE_MEM_TRACING" = "yes" ; then | |
77c85c2b RR |
4549 | AC_DEFINE(wxUSE_MEMORY_TRACING) |
4550 | AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS) | |
47c13eb7 | 4551 | AC_DEFINE(wxUSE_DEBUG_NEW_ALWAYS) |
77c85c2b | 4552 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck" |
9a98a854 VZ |
4553 | fi |
4554 | ||
4555 | if test "$wxUSE_DMALLOC" = "yes" ; then | |
3d63bc3a | 4556 | DMALLOC_LIBS="-ldmalloc" |
9a98a854 VZ |
4557 | fi |
4558 | ||
4559 | PROFILE= | |
4560 | if test "$wxUSE_PROFILE" = "yes" ; then | |
3d63bc3a | 4561 | PROFILE=" -pg" |
9a98a854 VZ |
4562 | fi |
4563 | ||
009fead0 VZ |
4564 | CODE_GEN_FLAGS= |
4565 | CODE_GEN_FLAGS_CXX= | |
88e30f2b | 4566 | if test "$GCC" = "yes" ; then |
f7bdcdd7 | 4567 | if test "$wxUSE_NO_RTTI" = "yes" ; then |
3a922bb4 | 4568 | CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-rtti" |
f7bdcdd7 RR |
4569 | fi |
4570 | if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then | |
3a922bb4 | 4571 | CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fno-exceptions" |
f7bdcdd7 | 4572 | fi |
5586805b | 4573 | if test "$wxUSE_PERMISSIVE" = "yes" ; then |
d08b457b | 4574 | CODE_GEN_FLAGS="$CODE_GEN_FLAGS -fpermissive" |
5586805b | 4575 | fi |
1d1b75ac VZ |
4576 | |
4577 | dnl Ian Brown <ian.brown@printsoft.de> reports that versions of gcc before | |
4578 | dnl 3.0 overflow the table of contents on rs6000 as they create an entry | |
4579 | dnl for each subroutine by default -- using the switch below only creates | |
4580 | dnl one entry per file instead at the price of minor performance penalty | |
4581 | dnl | |
2b5f62a0 VZ |
4582 | dnl As of wx2.4 a bug in the hppa gcc compiler causes a similar problem |
4583 | dnl without -ffunction-sections. No idea how long we'll need to maintain | |
4584 | dnl this, or even the extent of gcc/wx version combinations affected, but | |
4585 | dnl also as above, this 'fix' does not come without side effects. | |
4586 | dnl | |
1d1b75ac VZ |
4587 | dnl TODO: test for the gcc version here (how?) |
4588 | case "${host}" in | |
4589 | powerpc*-*-aix* ) | |
4590 | CODE_GEN_FLAGS="$CODE_GEN_FLAGS -mminimal-toc" | |
4591 | ;; | |
2b5f62a0 VZ |
4592 | *-hppa* ) |
4593 | CODE_GEN_FLAGS="$CODE_GEN_FLAGS -ffunction-sections" | |
4594 | ;; | |
1d1b75ac | 4595 | esac |
c596875e RD |
4596 | fi |
4597 | ||
af7b5345 | 4598 | OPTIMISE= |
9a98a854 | 4599 | if test "$wxUSE_OPTIMISE" = "no" ; then |
af7b5345 VZ |
4600 | if test "$GCC" = yes ; then |
4601 | dnl use -O0 because compiling with it is faster than compiling with no | |
4602 | dnl optimization options at all (at least with g++ 3.2) | |
4603 | OPTIMISE="-O0" | |
4604 | fi | |
9a98a854 | 4605 | else |
77c85c2b | 4606 | if test "$GCC" = yes ; then |
04338f96 | 4607 | OPTIMISE="-O2" |
af7b5345 VZ |
4608 | |
4609 | dnl VZ: does anybody know what does this do?? | |
77c85c2b RR |
4610 | case "${host}" in |
4611 | i586-*-*|i686-*-* ) | |
4612 | OPTIMISE="${OPTIMISE} " | |
4613 | ;; | |
4614 | esac | |
4615 | else | |
4616 | OPTIMISE="-O" | |
4617 | fi | |
9a98a854 VZ |
4618 | fi |
4619 | ||
677eb52d VZ |
4620 | dnl --------------------------------------------------------------------------- |
4621 | dnl compatibility level | |
4622 | dnl --------------------------------------------------------------------------- | |
4623 | ||
65d8ef1e | 4624 | if test "x$WXWIN_COMPATIBILITY_2_2" = "xyes"; then |
54276ccf | 4625 | AC_DEFINE(WXWIN_COMPATIBILITY_2_2) |
677eb52d VZ |
4626 | |
4627 | WXWIN_COMPATIBILITY_2_4="yes" | |
54276ccf VZ |
4628 | fi |
4629 | ||
65d8ef1e VS |
4630 | if test "x$WXWIN_COMPATIBILITY_2_4" != "xno"; then |
4631 | AC_DEFINE(WXWIN_COMPATIBILITY_2_4) | |
4632 | fi | |
4633 | ||
9a98a854 VZ |
4634 | dnl --------------------------------------------------------------------------- |
4635 | dnl the library may be built without GUI classes at all | |
4636 | dnl --------------------------------------------------------------------------- | |
4637 | ||
4638 | if test "$wxUSE_GUI" = "yes"; then | |
881bfcd6 VZ |
4639 | AC_DEFINE(wxUSE_GUI) |
4640 | ||
4641 | dnl the things we always pull in the GUI version of the library: | |
4642 | dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the | |
4643 | dnl library really can't be built without those) | |
4644 | dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in | |
4645 | dnl almost any program and the first 2 are needed to show a message box | |
4646 | dnl which want to be always able to do) | |
4647 | dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice | |
4648 | dnl to compile without them (if the app doesn't do any drawing, it doesn't | |
4649 | dnl need the dcs, pens, brushes, ...), this just can't be done now | |
4650 | dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem | |
4651 | dnl 5. misc stuff: timers, settings, message box | |
9a98a854 VZ |
4652 | fi |
4653 | ||
4654 | dnl --------------------------------------------------------------------------- | |
4655 | dnl Unix/Windows | |
4656 | dnl --------------------------------------------------------------------------- | |
4657 | ||
4658 | if test "$wxUSE_UNIX" = "yes"; then | |
4659 | AC_DEFINE(wxUSE_UNIX) | |
9a98a854 VZ |
4660 | fi |
4661 | ||
f93ca9fd VS |
4662 | dnl ------------------------------------------------------------------------ |
4663 | dnl DLL support | |
4664 | dnl ------------------------------------------------------------------------ | |
4665 | ||
4666 | dnl under MSW we always have LoadLibrary/GetProcAddress | |
4667 | if test "$TOOLKIT" != "MSW" -a "$USE_OS2" != 1; then | |
4668 | ||
4669 | HAVE_DL_FUNCS=0 | |
4670 | HAVE_SHL_FUNCS=0 | |
4671 | if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then | |
4672 | if test "$USE_DARWIN" = 1; then | |
4673 | dnl dlopen/dlerror is implemented in dynlib.cpp for Darwin/Mac OS X | |
4674 | HAVE_DL_FUNCS=1 | |
4675 | else | |
4676 | dnl the test is a bit complicated because we check for dlopen() both with | |
4677 | dnl and without -ldl and we also try to find shl_load() if there is no | |
4678 | dnl dlopen() on this system | |
4679 | AC_CHECK_FUNCS(dlopen, | |
4680 | [ | |
4681 | AC_DEFINE(HAVE_DLOPEN) | |
4682 | HAVE_DL_FUNCS=1 | |
4683 | ], | |
4684 | [ | |
4685 | AC_CHECK_LIB(dl, dlopen, | |
4686 | [ | |
4687 | AC_DEFINE(HAVE_DLOPEN) | |
4688 | HAVE_DL_FUNCS=1 | |
4689 | DL_LINK=" -ldl$DL_LINK" | |
4690 | ], | |
4691 | [ | |
4692 | AC_CHECK_FUNCS(shl_load, | |
4693 | [ | |
4694 | AC_DEFINE(HAVE_SHL_LOAD) | |
4695 | HAVE_SHL_FUNCS=1 | |
4696 | ], | |
4697 | [ | |
4698 | AC_CHECK_LIB(shl_load, dld, | |
4699 | [ | |
4700 | HAVE_SHL_FUNCS=1 | |
4701 | DL_LINK=" -ldld$DL_LINK" | |
4702 | ]) | |
4703 | ]) | |
4704 | ]) | |
4705 | ]) | |
4706 | ||
4707 | dnl check also for dlerror() | |
4708 | if test "$HAVE_DL_FUNCS" = 1; then | |
4709 | AC_CHECK_FUNCS(dlerror, | |
4710 | AC_DEFINE(HAVE_DLERROR), | |
4711 | [ | |
4712 | AC_CHECK_LIB(dl, dlerror, AC_DEFINE(HAVE_DLERROR)) | |
4713 | ] | |
4714 | ) | |
4715 | fi | |
4716 | fi | |
4717 | ||
4718 | if test "$HAVE_DL_FUNCS" = 0; then | |
4719 | if test "$HAVE_SHL_FUNCS" = 0; then | |
4720 | if test "$USE_UNIX" = 1; then | |
4721 | AC_MSG_WARN([Missing dynamic loading support, several features will be disabled]) | |
4722 | wxUSE_DYNAMIC_LOADER=no | |
4723 | wxUSE_DYNLIB_CLASS=no | |
4724 | else | |
4725 | AC_MSG_WARN([Assuming wxLibrary class works on this platform]) | |
4726 | fi | |
4727 | fi | |
4728 | fi | |
4729 | fi | |
4730 | fi | |
4731 | ||
4732 | if test "$wxUSE_DYNAMIC_LOADER" = "yes" ; then | |
4733 | AC_DEFINE(wxUSE_DYNAMIC_LOADER) | |
4734 | fi | |
4735 | if test "$wxUSE_DYNLIB_CLASS" = "yes" ; then | |
4736 | AC_DEFINE(wxUSE_DYNLIB_CLASS) | |
4737 | fi | |
4738 | ||
4739 | ||
4740 | dnl --------------------------------------------------------------------------- | |
4741 | dnl Verify consistency of plugins/monolithic/shared settings: | |
4742 | dnl --------------------------------------------------------------------------- | |
4743 | ||
4744 | if test "$wxUSE_PLUGINS" = "yes" ; then | |
4745 | if test "$wxUSE_SHARED" = "no" ; then | |
4746 | AC_MSG_WARN([plugins supported only in shared build, disabling]) | |
4747 | wxUSE_PLUGINS=no | |
4748 | fi | |
4749 | if test "$wxUSE_MONOLITHIC" = "yes" ; then | |
4750 | AC_MSG_WARN([plugins not supported monolithic build, disabling]) | |
4751 | wxUSE_PLUGINS=no | |
4752 | fi | |
4753 | if test "$wxUSE_DYNLIB_CLASS" = "no" ; then | |
4754 | AC_MSG_WARN([plugins require wxDynamicLibrary, disabling]) | |
4755 | wxUSE_PLUGINS=no | |
4756 | fi | |
4757 | if test "$wxUSE_PLUGINS" = "yes" ; then | |
4758 | AC_DEFINE(wxUSE_PLUGINS) | |
4759 | fi | |
4760 | fi | |
4761 | ||
9a98a854 VZ |
4762 | dnl --------------------------------------------------------------------------- |
4763 | dnl Register non-GUI class options for makefiles and setup.h | |
4764 | dnl --------------------------------------------------------------------------- | |
4765 | ||
df5168c4 MB |
4766 | if test "$wxUSE_STL" = "yes"; then |
4767 | AC_DEFINE(wxUSE_STL) | |
4768 | fi | |
4769 | ||
9a98a854 VZ |
4770 | if test "$wxUSE_APPLE_IEEE" = "yes"; then |
4771 | AC_DEFINE(wxUSE_APPLE_IEEE) | |
9a98a854 VZ |
4772 | fi |
4773 | ||
1e6feb95 VZ |
4774 | if test "$wxUSE_TIMER" = "yes"; then |
4775 | AC_DEFINE(wxUSE_TIMER) | |
4776 | fi | |
4777 | ||
f93ca9fd | 4778 | WITH_PLUGIN_SDL=0 |
002ed9af | 4779 | if test "$wxUSE_SOUND" = "yes"; then |
f93ca9fd VS |
4780 | dnl Unix implementation needs additional checks because audio support |
4781 | dnl comes in many favours: | |
4782 | if test "$USE_UNIX" = "1" ; then | |
4783 | AC_CHECK_HEADERS([sys/soundcard.h]) | |
4784 | ||
4785 | if test "$wxUSE_LIBSDL" != "no"; then | |
4786 | AM_PATH_SDL([1.2.0], | |
4787 | [ | |
4788 | EXTRALIBS_SDL="$SDL_LIBS" | |
4789 | CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" | |
4790 | AC_DEFINE(wxUSE_LIBSDL) | |
4791 | ], | |
4792 | [wxUSE_LIBSDL="no"]) | |
4793 | if test "$wxUSE_LIBSDL" = "yes" -a "$wxUSE_PLUGINS" = "yes" ; then | |
4794 | WITH_PLUGIN_SDL=1 | |
4795 | fi | |
4796 | fi | |
4797 | fi | |
4798 | ||
002ed9af | 4799 | AC_DEFINE(wxUSE_SOUND) |
f93ca9fd | 4800 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sound" |
2749089a KB |
4801 | fi |
4802 | ||
7c72311f RR |
4803 | if test "$WXGTK20" = 1; then |
4804 | if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then | |
4805 | if test "$wxUSE_LIBGNOMEPRINT" = "yes" ; then | |
4806 | ||
ffa762ff VS |
4807 | PKG_CHECK_MODULES(LIBGNOMEPRINTUI, |
4808 | [libgnomeprintui-2.2 >= 2.8], | |
7c72311f | 4809 | [ |
3314e67b | 4810 | dnl EXTRALIBS_GNOMEPRINT="$LIBGNOMEPRINTUI_LIBS" |
7c72311f | 4811 | CXXFLAGS="$CXXFLAGS $LIBGNOMEPRINTUI_CFLAGS" |
45fb81e5 | 4812 | AC_DEFINE(wxUSE_LIBGNOMEPRINT) |
7c72311f RR |
4813 | ], |
4814 | [ | |
4815 | AC_MSG_WARN([libgnomeprintui not found, library will use standard PostScript printing]) | |
4816 | wxUSE_LIBGNOMEPRINT="no" | |
4817 | ] | |
4818 | ) | |
4819 | fi | |
4820 | fi | |
4821 | fi | |
4822 | ||
4823 | ||
1e6feb95 VZ |
4824 | if test "$wxUSE_CMDLINE_PARSER" = "yes"; then |
4825 | AC_DEFINE(wxUSE_CMDLINE_PARSER) | |
4826 | fi | |
4827 | ||
4828 | if test "$wxUSE_STOPWATCH" = "yes"; then | |
4829 | AC_DEFINE(wxUSE_STOPWATCH) | |
4830 | fi | |
4831 | ||
4832 | if test "$wxUSE_DATETIME" = "yes"; then | |
4833 | AC_DEFINE(wxUSE_DATETIME) | |
4834 | fi | |
4835 | ||
9a98a854 VZ |
4836 | if test "$wxUSE_FILE" = "yes"; then |
4837 | AC_DEFINE(wxUSE_FILE) | |
9a98a854 VZ |
4838 | fi |
4839 | ||
1e6feb95 VZ |
4840 | if test "$wxUSE_FFILE" = "yes"; then |
4841 | AC_DEFINE(wxUSE_FFILE) | |
4842 | fi | |
4843 | ||
24528b0c VS |
4844 | if test "$wxUSE_FILESYSTEM" = "yes"; then |
4845 | AC_DEFINE(wxUSE_FILESYSTEM) | |
4846 | fi | |
4847 | ||
e3e717ec VZ |
4848 | if test "$wxUSE_FS_ZIP" = "yes"; then |
4849 | AC_DEFINE(wxUSE_FS_ZIP) | |
4850 | fi | |
4851 | ||
9e8e867f MW |
4852 | if test "$wxUSE_ARCHIVE_STREAMS" = "yes"; then |
4853 | AC_DEFINE(wxUSE_ARCHIVE_STREAMS) | |
81f90336 MW |
4854 | fi |
4855 | ||
d78b3d64 | 4856 | if test "$wxUSE_ZIPSTREAM" = "yes"; then |
9e8e867f | 4857 | if test "$wxUSE_ARCHIVE_STREAMS" != "yes"; then |
81f90336 MW |
4858 | AC_MSG_WARN(wxZip requires wxArchive... disabled) |
4859 | elif test "$wxUSE_ZLIB" = "no"; then | |
4860 | AC_MSG_WARN(wxZip requires wxZlib... disabled) | |
4861 | else | |
4862 | AC_DEFINE(wxUSE_ZIPSTREAM) | |
4863 | fi | |
d78b3d64 VS |
4864 | fi |
4865 | ||
eb4efbdc VZ |
4866 | if test "$wxUSE_ON_FATAL_EXCEPTION" = "yes"; then |
4867 | AC_DEFINE(wxUSE_ON_FATAL_EXCEPTION) | |
4868 | fi | |
eaff0f0d VZ |
4869 | |
4870 | if test "$wxUSE_STACKWALKER" = "yes"; then | |
4871 | AC_DEFINE(wxUSE_STACKWALKER) | |
4872 | fi | |
eb4efbdc | 4873 | |
36b6448c | 4874 | if test "$wxUSE_DEBUGREPORT" = "yes"; then |
bec7df87 SN |
4875 | if test "$USE_OS2" = "1"; then |
4876 | AC_MSG_WARN([Creating debug reports not supported under OS/2 yet, disabled]) | |
4877 | wxUSE_DEBUGREPORT=no | |
4878 | else | |
4879 | AC_DEFINE(wxUSE_DEBUGREPORT) | |
4880 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS debugrpt" | |
4881 | fi | |
36b6448c VZ |
4882 | fi |
4883 | ||
4f3c5f06 VZ |
4884 | if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then |
4885 | AC_DEFINE(wxUSE_SNGLINST_CHECKER) | |
4886 | fi | |
4887 | ||
d78b3d64 VS |
4888 | if test "$wxUSE_BUSYINFO" = "yes"; then |
4889 | AC_DEFINE(wxUSE_BUSYINFO) | |
4890 | fi | |
4891 | ||
fd15d8f1 RR |
4892 | if test "$wxUSE_STD_IOSTREAM" = "yes"; then |
4893 | AC_DEFINE(wxUSE_STD_IOSTREAM) | |
4894 | fi | |
4895 | ||
668d55c9 RR |
4896 | if test "$wxUSE_STD_STRING" = "yes"; then |
4897 | AC_DEFINE(wxUSE_STD_STRING) | |
4898 | fi | |
4899 | ||
07158944 VZ |
4900 | if test "$wxUSE_STDPATHS" = "yes"; then |
4901 | AC_DEFINE(wxUSE_STDPATHS) | |
4902 | fi | |
4903 | ||
a3a584a7 VZ |
4904 | if test "$wxUSE_TEXTBUFFER" = "yes"; then |
4905 | AC_DEFINE(wxUSE_TEXTBUFFER) | |
4906 | fi | |
4907 | ||
9a98a854 | 4908 | if test "$wxUSE_TEXTFILE" = "yes"; then |
a3a584a7 | 4909 | if test "$wxUSE_FILE" != "yes" -o "$wxUSE_TEXTBUFFER" != "yes" ; then |
156b2523 | 4910 | AC_MSG_WARN(wxTextFile requires wxFile and wxTextBuffer... disabled) |
9a98a854 VZ |
4911 | else |
4912 | AC_DEFINE(wxUSE_TEXTFILE) | |
9a98a854 VZ |
4913 | fi |
4914 | fi | |
4915 | ||
4916 | if test "$wxUSE_CONFIG" = "yes" ; then | |
4917 | if test "$wxUSE_TEXTFILE" != "yes"; then | |
156b2523 | 4918 | AC_MSG_WARN(wxConfig requires wxTextFile... disabled) |
9a98a854 VZ |
4919 | else |
4920 | AC_DEFINE(wxUSE_CONFIG) | |
89be85c2 | 4921 | AC_DEFINE(wxUSE_CONFIG_NATIVE) |
9a98a854 VZ |
4922 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config" |
4923 | fi | |
4924 | fi | |
4925 | ||
4926 | if test "$wxUSE_INTL" = "yes" ; then | |
4927 | if test "$wxUSE_FILE" != "yes"; then | |
156b2523 | 4928 | AC_MSG_WARN(I18n code requires wxFile... disabled) |
9a98a854 VZ |
4929 | else |
4930 | AC_DEFINE(wxUSE_INTL) | |
9a98a854 | 4931 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat" |
f6bcfd97 | 4932 | GUIDIST="$GUIDIST INTL_DIST" |
9a98a854 VZ |
4933 | fi |
4934 | fi | |
4935 | ||
4936 | if test "$wxUSE_LOG" = "yes"; then | |
4937 | AC_DEFINE(wxUSE_LOG) | |
d73be714 VZ |
4938 | |
4939 | if test "$wxUSE_LOGGUI" = "yes"; then | |
4940 | AC_DEFINE(wxUSE_LOGGUI) | |
4941 | fi | |
4942 | ||
4943 | if test "$wxUSE_LOGWINDOW" = "yes"; then | |
4944 | AC_DEFINE(wxUSE_LOGWINDOW) | |
4945 | fi | |
69d27ff7 MB |
4946 | |
4947 | if test "$wxUSE_LOGDIALOG" = "yes"; then | |
4948 | AC_DEFINE(wxUSE_LOG_DIALOG) | |
4949 | fi | |
0b78747f MW |
4950 | |
4951 | dnl the keyboard sample requires wxUSE_LOG | |
4952 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS keyboard" | |
9a98a854 VZ |
4953 | fi |
4954 | ||
4955 | if test "$wxUSE_LONGLONG" = "yes"; then | |
4956 | AC_DEFINE(wxUSE_LONGLONG) | |
9a98a854 VZ |
4957 | fi |
4958 | ||
e8f65ba6 RR |
4959 | if test "$wxUSE_GEOMETRY" = "yes"; then |
4960 | AC_DEFINE(wxUSE_GEOMETRY) | |
4961 | fi | |
4962 | ||
9a98a854 VZ |
4963 | if test "$wxUSE_STREAMS" = "yes" ; then |
4964 | AC_DEFINE(wxUSE_STREAMS) | |
9a98a854 VZ |
4965 | fi |
4966 | ||
52e8b690 | 4967 | dnl --------------------------------------------------------------------------- |
afc31813 VZ |
4968 | dnl time/date functions |
4969 | dnl ------------------------------------------------------------------------ | |
4970 | ||
1e6feb95 | 4971 | if test "$wxUSE_DATETIME" = "yes"; then |
83307f33 VZ |
4972 | dnl check for strptime |
4973 | AC_CHECK_FUNCS(strptime) | |
4974 | ||
360d6699 | 4975 | dnl check for timezone variable |
62cc730f | 4976 | dnl doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead |
360d6699 VZ |
4977 | AC_CACHE_CHECK(for timezone variable in <time.h>, |
4978 | wx_cv_var_timezone, | |
4979 | [ | |
4980 | AC_TRY_COMPILE( | |
4981 | [ | |
4982 | #include <time.h> | |
4983 | ], | |
4984 | [ | |
4985 | int tz; | |
4f11a343 | 4986 | tz = timezone; |
360d6699 VZ |
4987 | ], |
4988 | [ | |
4f11a343 | 4989 | wx_cv_var_timezone=timezone |
360d6699 VZ |
4990 | ], |
4991 | [ | |
4992 | AC_TRY_COMPILE( | |
4993 | [ | |
4994 | #include <time.h> | |
4995 | ], | |
4996 | [ | |
4997 | int tz; | |
4998 | tz = _timezone; | |
4999 | ], | |
5000 | [ | |
5001 | wx_cv_var_timezone=_timezone | |
5002 | ], | |
5357c8e8 VZ |
5003 | [ |
5004 | AC_TRY_COMPILE( | |
5005 | [ | |
5006 | #include <time.h> | |
5007 | ], | |
5008 | [ | |
5009 | int tz; | |
4f11a343 | 5010 | tz = __timezone; |
5357c8e8 VZ |
5011 | ], |
5012 | [ | |
4f11a343 | 5013 | wx_cv_var_timezone=__timezone |
5357c8e8 | 5014 | ], |
f9bc1684 VS |
5015 | [ |
5016 | if test "$USE_DOS" = 0 ; then | |
62cc730f | 5017 | AC_MSG_WARN(no timezone variable, will use tm_gmtoff instead) |
f9bc1684 VS |
5018 | fi |
5019 | ] | |
5357c8e8 VZ |
5020 | ) |
5021 | ] | |
360d6699 VZ |
5022 | ) |
5023 | ] | |
5024 | ) | |
5025 | ] | |
5026 | ) | |
5027 | ||
5028 | dnl as we want $wx_cv_var_timezone to be expanded, use AC_DEFINE_UNQUOTED | |
f9bc1684 VS |
5029 | if test "x$wx_cv_var_timezone" != x ; then |
5030 | AC_DEFINE_UNQUOTED(WX_TIMEZONE, $wx_cv_var_timezone) | |
5031 | fi | |
360d6699 | 5032 | |
3fcdd07b VZ |
5033 | dnl check for localtime (it's POSIX, but the check can do no harm...) |
5034 | AC_CHECK_FUNCS(localtime) | |
afc31813 | 5035 | |
0470b1e6 VZ |
5036 | if test "$ac_cv_func_localtime" = "yes"; then |
5037 | AC_CACHE_CHECK(for tm_gmtoff in struct tm, | |
5038 | wx_cv_struct_tm_has_gmtoff, | |
5039 | [ | |
5040 | AC_TRY_COMPILE( | |
5041 | [ | |
5042 | #include <time.h> | |
5043 | ], | |
5044 | [ | |
5045 | struct tm tm; | |
5046 | tm.tm_gmtoff++; | |
5047 | ], | |
5048 | [ | |
f03a98d8 | 5049 | wx_cv_struct_tm_has_gmtoff=yes |
0470b1e6 VZ |
5050 | ], |
5051 | wx_cv_struct_tm_has_gmtoff=no | |
5052 | ) | |
5053 | ]) | |
3fcdd07b VZ |
5054 | fi |
5055 | ||
6232543b VS |
5056 | if test "$wx_cv_struct_tm_has_gmtoff" = "yes"; then |
5057 | AC_DEFINE(WX_GMTOFF_IN_TM) | |
5058 | fi | |
5059 | ||
3fcdd07b VZ |
5060 | dnl check for gettimeofday (SVr4, BSD 4.3) and ftime (V7, BSD 4.3) for the |
5061 | dnl function to be used for high resolution timers | |
5062 | AC_CHECK_FUNCS(gettimeofday ftime, break) | |
5063 | ||
5064 | if test "$ac_cv_func_gettimeofday" = "yes"; then | |
afc31813 VZ |
5065 | AC_CACHE_CHECK([whether gettimeofday takes two arguments], |
5066 | wx_cv_func_gettimeofday_has_2_args, | |
5067 | [ | |
5068 | dnl on some _really_ old systems it takes only 1 argument | |
5069 | AC_LANG_SAVE | |
5070 | AC_LANG_CPLUSPLUS | |
5071 | ||
5072 | AC_TRY_COMPILE( | |
5073 | [ | |
5074 | #include <sys/time.h> | |
5075 | #include <unistd.h> | |
5076 | ], | |
5077 | [ | |
5078 | struct timeval tv; | |
776862b4 | 5079 | gettimeofday(&tv, NULL); |
afc31813 VZ |
5080 | ], |
5081 | wx_cv_func_gettimeofday_has_2_args=yes, | |
5082 | AC_TRY_COMPILE( | |
5083 | [ | |
5084 | #include <sys/time.h> | |
5085 | #include <unistd.h> | |
5086 | ], | |
5087 | [ | |
5088 | struct timeval tv; | |
5089 | gettimeofday(&tv); | |
5090 | ], | |
5091 | wx_cv_func_gettimeofday_has_2_args=no, | |
776862b4 VZ |
5092 | [ |
5093 | AC_MSG_WARN([failed to determine number of gettimeofday() arguments]) | |
5094 | wx_cv_func_gettimeofday_has_2_args=unknown | |
5095 | ] | |
afc31813 VZ |
5096 | ) |
5097 | ) | |
5098 | AC_LANG_RESTORE | |
5099 | ]) | |
5100 | ||
5101 | if test "$wx_cv_func_gettimeofday_has_2_args" != "yes"; then | |
5102 | AC_DEFINE(WX_GETTIMEOFDAY_NO_TZ) | |
5103 | fi | |
5104 | fi | |
5105 | ||
afc31813 VZ |
5106 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest" |
5107 | fi | |
5108 | ||
9a98a854 VZ |
5109 | dnl ------------------------------------------------------------------------ |
5110 | dnl wxSocket | |
5111 | dnl ------------------------------------------------------------------------ | |
5112 | ||
3879ecda | 5113 | dnl VZ: the GUI hooks wxSocket needs are not implemented yet in some toolkits |
0feee163 | 5114 | if test "$wxUSE_SOCKETS" = "yes"; then |
6c657b52 VS |
5115 | if test "$wxUSE_MGL" = "1"; then |
5116 | AC_MSG_WARN([wxSocket not yet supported under MGL... disabled]) | |
5117 | wxUSE_SOCKETS="no" | |
5118 | fi | |
0feee163 | 5119 | fi |
b089607b | 5120 | |
0feee163 VZ |
5121 | if test "$wxUSE_SOCKETS" = "yes"; then |
5122 | dnl under MSW we always have sockets | |
5123 | if test "$TOOLKIT" != "MSW"; then | |
590b1a4d | 5124 | dnl under Solaris and OS/2, socket functions live in -lsocket |
3a922bb4 | 5125 | AC_CHECK_FUNC(socket,, |
4c15b7af SN |
5126 | [ |
5127 | AC_CHECK_LIB(socket, socket, | |
5128 | if test "$INET_LINK" != " -lsocket"; then | |
5129 | INET_LINK="$INET_LINK -lsocket" | |
5130 | fi, | |
5131 | [ | |
5132 | AC_MSG_WARN([socket library not found - sockets will be disabled]) | |
5133 | wxUSE_SOCKETS=no | |
5134 | ] | |
5135 | ) | |
5136 | ] | |
afc31813 | 5137 | ) |
3a922bb4 | 5138 | fi |
0feee163 | 5139 | fi |
afc31813 | 5140 | |
0feee163 | 5141 | if test "$wxUSE_SOCKETS" = "yes" ; then |
3a922bb4 RL |
5142 | dnl this test may be appropriate if building under cygwin |
5143 | dnl right now I'm assuming it also uses the winsock stuff | |
5144 | dnl like mingw does.. -- RL | |
0feee163 | 5145 | if test "$TOOLKIT" != "MSW"; then |
3a922bb4 | 5146 | dnl determine the type of third argument for getsockname |
6944b203 SN |
5147 | dnl This test needs to be done in C++ mode since gsocket.cpp now |
5148 | dnl is C++ code and pointer cast that are possible even without | |
5149 | dnl warning in C still fail in C++. | |
5150 | AC_LANG_PUSH(C++) | |
3a922bb4 RL |
5151 | AC_CACHE_CHECK([what is the type of the third argument of getsockname], |
5152 | wx_cv_type_getsockname3, | |
5153 | [ | |
51a9faba VZ |
5154 | AC_TRY_COMPILE( |
5155 | [ | |
4370c5b2 | 5156 | #include <sys/types.h> |
51a9faba VZ |
5157 | #include <sys/socket.h> |
5158 | ], | |
5159 | [ | |
3a922bb4 | 5160 | socklen_t len; |
51a9faba VZ |
5161 | getsockname(0, 0, &len); |
5162 | ], | |
3a922bb4 | 5163 | wx_cv_type_getsockname3=socklen_t, |
210c92a3 VZ |
5164 | [ |
5165 | dnl the compiler will compile the version with size_t | |
5166 | dnl even if the real type of the last parameter is int | |
5167 | dnl but it should give at least a warning about | |
5168 | dnl converting between incompatible pointer types, so | |
5169 | dnl try to use it to get the correct behaviour at | |
5170 | dnl least with gcc (otherwise we'd always use size_t) | |
5171 | CFLAGS_OLD="$CFLAGS" | |
5172 | if test "$GCC" = yes ; then | |
5173 | CFLAGS="$CFLAGS -Werror" | |
5174 | fi | |
5175 | ||
3a922bb4 RL |
5176 | AC_TRY_COMPILE( |
5177 | [ | |
5178 | #include <sys/types.h> | |
5179 | #include <sys/socket.h> | |
5180 | ], | |
5181 | [ | |
210c92a3 | 5182 | size_t len; |
3a922bb4 RL |
5183 | getsockname(0, 0, &len); |
5184 | ], | |
210c92a3 VZ |
5185 | wx_cv_type_getsockname3=size_t, |
5186 | AC_TRY_COMPILE( | |
5187 | [ | |
5188 | #include <sys/types.h> | |
5189 | #include <sys/socket.h> | |
5190 | ], | |
5191 | [ | |
5192 | int len; | |
5193 | getsockname(0, 0, &len); | |
5194 | ], | |
5195 | wx_cv_type_getsockname3=int, | |
5196 | wx_cv_type_getsockname3=unknown | |
5197 | ) | |
3a922bb4 | 5198 | ) |
c63c7106 | 5199 | |
210c92a3 VZ |
5200 | CFLAGS="$CFLAGS_OLD" |
5201 | ] | |
5202 | ) | |
3a922bb4 | 5203 | ]) |
51a9faba | 5204 | |
3a922bb4 RL |
5205 | if test "$wx_cv_type_getsockname3" = "unknown"; then |
5206 | wxUSE_SOCKETS=no | |
5207 | AC_MSG_WARN([Couldn't find socklen_t synonym for this system]) | |
5208 | else | |
5209 | AC_DEFINE_UNQUOTED(SOCKLEN_T, $wx_cv_type_getsockname3) | |
5210 | fi | |
ddc1a35f DE |
5211 | dnl Do this again for getsockopt as it may be different |
5212 | AC_CACHE_CHECK([what is the type of the fifth argument of getsockopt], | |
5213 | wx_cv_type_getsockopt5, | |
5214 | [ | |
5215 | AC_TRY_COMPILE( | |
5216 | [ | |
5217 | #include <sys/types.h> | |
5218 | #include <sys/socket.h> | |
5219 | ], | |
5220 | [ | |
5221 | socklen_t len; | |
5222 | getsockopt(0, 0, 0, 0, &len); | |
5223 | ], | |
5224 | wx_cv_type_getsockopt5=socklen_t, | |
5225 | [ | |
5226 | dnl the compiler will compile the version with size_t | |
5227 | dnl even if the real type of the last parameter is int | |
5228 | dnl but it should give at least a warning about | |
5229 | dnl converting between incompatible pointer types, so | |
5230 | dnl try to use it to get the correct behaviour at | |
5231 | dnl least with gcc (otherwise we'd always use size_t) | |
5232 | CFLAGS_OLD="$CFLAGS" | |
5233 | if test "$GCC" = yes ; then | |
5234 | CFLAGS="$CFLAGS -Werror" | |
5235 | fi | |
5236 | ||
5237 | AC_TRY_COMPILE( | |
5238 | [ | |
5239 | #include <sys/types.h> | |
5240 | #include <sys/socket.h> | |
5241 | ], | |
5242 | [ | |
5243 | size_t len; | |
5244 | getsockopt(0, 0, 0, 0, &len); | |
5245 | ], | |
5246 | wx_cv_type_getsockopt5=size_t, | |
5247 | AC_TRY_COMPILE( | |
5248 | [ | |
5249 | #include <sys/types.h> | |
5250 | #include <sys/socket.h> | |
5251 | ], | |
5252 | [ | |
5253 | int len; | |
5254 | getsockopt(0, 0, 0, 0, &len); | |
5255 | ], | |
5256 | wx_cv_type_getsockopt5=int, | |
5257 | wx_cv_type_getsockopt5=unknown | |
5258 | ) | |
5259 | ) | |
5260 | ||
5261 | CFLAGS="$CFLAGS_OLD" | |
5262 | ] | |
5263 | ) | |
5264 | ]) | |
5265 | ||
5266 | if test "$wx_cv_type_getsockopt5" = "unknown"; then | |
5267 | wxUSE_SOCKETS=no | |
5268 | AC_MSG_WARN([Couldn't find socklen_t synonym for this system]) | |
5269 | else | |
5270 | AC_DEFINE_UNQUOTED(SOCKOPTLEN_T, $wx_cv_type_getsockopt5) | |
5271 | fi | |
6944b203 | 5272 | AC_LANG_POP |
51a9faba VZ |
5273 | fi |
5274 | fi | |
c521c494 | 5275 | |
51a9faba | 5276 | if test "$wxUSE_SOCKETS" = "yes" ; then |
afc31813 | 5277 | AC_DEFINE(wxUSE_SOCKETS) |
70f7a477 | 5278 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sockets" |
9a98a854 VZ |
5279 | fi |
5280 | ||
3879ecda VZ |
5281 | if test "$wxUSE_PROTOCOL" = "yes"; then |
5282 | if test "$wxUSE_SOCKETS" != "yes"; then | |
5283 | AC_MSG_WARN(Protocol classes require sockets... disabled) | |
5284 | wxUSE_PROTOCOL=no | |
5285 | fi | |
5286 | fi | |
5287 | ||
5288 | if test "$wxUSE_PROTOCOL" = "yes"; then | |
5289 | AC_DEFINE(wxUSE_PROTOCOL) | |
5290 | ||
5291 | if test "$wxUSE_PROTOCOL_HTTP" = "yes"; then | |
5292 | AC_DEFINE(wxUSE_PROTOCOL_HTTP) | |
5293 | fi | |
5294 | if test "$wxUSE_PROTOCOL_FTP" = "yes"; then | |
5295 | AC_DEFINE(wxUSE_PROTOCOL_FTP) | |
5296 | fi | |
5297 | if test "$wxUSE_PROTOCOL_FILE" = "yes"; then | |
5298 | AC_DEFINE(wxUSE_PROTOCOL_FILE) | |
5299 | fi | |
5300 | else | |
5301 | if test "$wxUSE_FS_INET" = "yes"; then | |
5302 | AC_MSG_WARN([HTTP filesystem require protocol classes... disabled]) | |
5303 | wxUSE_FS_INET="no" | |
5304 | fi | |
5305 | fi | |
5306 | ||
5307 | if test "$wxUSE_URL" = "yes"; then | |
5308 | if test "$wxUSE_PROTOCOL" != "yes"; then | |
5309 | AC_MSG_WARN(wxURL class requires wxProtocol... disabled) | |
5310 | wxUSE_URL=no | |
5311 | fi | |
5312 | if test "$wxUSE_URL" = "yes"; then | |
5313 | AC_DEFINE(wxUSE_URL) | |
5314 | fi | |
5315 | fi | |
5316 | ||
5317 | if test "$wxUSE_FS_INET" = "yes"; then | |
5318 | AC_DEFINE(wxUSE_FS_INET) | |
5319 | fi | |
5320 | ||
9a98a854 VZ |
5321 | dnl --------------------------------------------------------------------------- |
5322 | dnl Joystick support | |
5323 | dnl --------------------------------------------------------------------------- | |
5324 | ||
dc3d889d | 5325 | if test "$wxUSE_GUI" = "yes"; then |
131f235d | 5326 | dnl under MSW we always have joystick support |
4cb1d3da RN |
5327 | if test "$wxUSE_JOYSTICK" = "yes"; then |
5328 | ||
5329 | dnl joystick support is only for Linux 2.1.x or greater | |
5330 | if test "$TOOLKIT" != "MAC" -a "$TOOLKIT" != "COCOA" -a "$TOOLKIT" != "MSW"; then | |
3a922bb4 RL |
5331 | AC_CHECK_HEADERS(linux/joystick.h) |
5332 | if test "$ac_cv_header_linux_joystick_h" != "yes"; then | |
5333 | wxUSE_JOYSTICK=no | |
156b2523 | 5334 | AC_MSG_WARN(Joystick not supported by this system... disabled) |
3a922bb4 | 5335 | fi |
4cb1d3da RN |
5336 | else |
5337 | dnl mac only available on darwin | |
5338 | if test "$USE_DARWIN" != 1 -a "$TOOLKIT" != "MSW"; then | |
5339 | wxUSE_JOYSTICK=no | |
5340 | AC_MSG_WARN(Joystick not supported by this system... disabled) | |
5341 | fi | |
3a922bb4 | 5342 | fi |
9a98a854 | 5343 | |
4cb1d3da RN |
5344 | |
5345 | if test "$wxUSE_JOYSTICK" = "yes"; then | |
5346 | AC_DEFINE(wxUSE_JOYSTICK) | |
5347 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest" | |
5348 | fi | |
3a922bb4 | 5349 | fi |
dc3d889d | 5350 | fi |
dc3d889d | 5351 | |
9a98a854 | 5352 | |
9a98a854 | 5353 | dnl --------------------------------------------------------------------------- |
ced859c3 | 5354 | dnl String stuff |
9a98a854 VZ |
5355 | dnl --------------------------------------------------------------------------- |
5356 | ||
1e6feb95 VZ |
5357 | if test "$wxUSE_FONTMAP" = "yes" ; then |
5358 | AC_DEFINE(wxUSE_FONTMAP) | |
5359 | fi | |
5360 | ||
9a98a854 VZ |
5361 | if test "$wxUSE_UNICODE" = "yes" ; then |
5362 | AC_DEFINE(wxUSE_UNICODE) | |
3bd8fb5f | 5363 | |
eb854003 | 5364 | if test "$USE_WIN32" != 1; then |
bbc3925a VS |
5365 | wxUSE_UNICODE_MSLU=no |
5366 | fi | |
a72a4bfa | 5367 | |
eb854003 | 5368 | if test "$USE_WIN32" = 1 -a "$wxUSE_UNICODE_MSLU" = "yes"; then |
a72a4bfa VS |
5369 | AC_CHECK_LIB(unicows,main, |
5370 | [ | |
5371 | AC_DEFINE(wxUSE_UNICODE_MSLU) | |
5372 | ], | |
5373 | [ | |
5374 | AC_MSG_WARN([Compiler doesn't support MSLU (libunicows.a), disabled. | |
5375 | Applications will only run on Windows NT/2000/XP!]) | |
5376 | wxUSE_UNICODE_MSLU=no | |
5377 | ]) | |
5378 | fi | |
9a98a854 VZ |
5379 | fi |
5380 | ||
ced859c3 VZ |
5381 | if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then |
5382 | AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF) | |
5383 | fi | |
5384 | ||
9a98a854 VZ |
5385 | dnl ---------------------------------------------------------------- |
5386 | dnl Register PostScript options for makefiles and setup.h | |
5387 | dnl ---------------------------------------------------------------- | |
5388 | ||
5389 | if test "$wxUSE_POSTSCRIPT" = "yes" ; then | |
5390 | AC_DEFINE(wxUSE_POSTSCRIPT) | |
9a98a854 VZ |
5391 | fi |
5392 | ||
5393 | AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT) | |
5394 | ||
5395 | AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS) | |
5396 | ||
5397 | dnl --------------------------------------------------------------------------- | |
5398 | dnl big GUI components: MDI, doc/view, printing, help, ... | |
5399 | dnl --------------------------------------------------------------------------- | |
5400 | ||
5401 | if test "$wxUSE_CONSTRAINTS" = "yes"; then | |
ce4169a4 RR |
5402 | AC_DEFINE(wxUSE_CONSTRAINTS) |
5403 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout" | |
9a98a854 VZ |
5404 | fi |
5405 | ||
efd17a1d VZ |
5406 | if test "$wxUSE_MDI" = "yes"; then |
5407 | AC_DEFINE(wxUSE_MDI) | |
5408 | ||
5409 | if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then | |
5410 | AC_DEFINE(wxUSE_MDI_ARCHITECTURE) | |
5411 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi" | |
5412 | fi | |
9a98a854 VZ |
5413 | fi |
5414 | ||
5415 | if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then | |
ce4169a4 RR |
5416 | AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE) |
5417 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview" | |
5418 | if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then | |
5419 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi" | |
5420 | fi | |
9a98a854 VZ |
5421 | fi |
5422 | ||
5423 | if test "$wxUSE_HELP" = "yes"; then | |
ce4169a4 RR |
5424 | AC_DEFINE(wxUSE_HELP) |
5425 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help" | |
3379ed37 | 5426 | |
77e13408 | 5427 | if test "$wxUSE_MSW" = 1; then |
031d8228 | 5428 | if test "$wxUSE_MS_HTML_HELP" = "yes"; then |
3b7bc64a | 5429 | AC_DEFINE(wxUSE_MS_HTML_HELP) |
29fd3c0c | 5430 | fi |
3379ed37 | 5431 | fi |
031d8228 VS |
5432 | |
5433 | if test "$wxUSE_WXHTML_HELP" = "yes"; then | |
5434 | if test "$wxUSE_HTML" = "yes"; then | |
5435 | AC_DEFINE(wxUSE_WXHTML_HELP) | |
5436 | else | |
5437 | AC_MSG_WARN(Cannot use wxHTML-based help without wxHTML so it won't be compiled) | |
5438 | wxUSE_WXHTML_HELP=no | |
5439 | fi | |
5440 | fi | |
9a98a854 VZ |
5441 | fi |
5442 | ||
5443 | if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then | |
ce4169a4 RR |
5444 | if test "$wxUSE_CONSTRAINTS" != "yes"; then |
5445 | AC_MSG_WARN(Printing support cannot be used without constraints so it won't be compiled without it) | |
5446 | else | |
5447 | AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE) | |
5448 | fi | |
5449 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing" | |
9a98a854 VZ |
5450 | fi |
5451 | ||
fd3d7534 | 5452 | if test "$wxUSE_PROLOGIO" = "yes" -o "$wxUSE_RESOURCES" = "yes"; then |
1b86c3ac VZ |
5453 | AC_MSG_ERROR([wxExpr and old-style resources are now available in contrib only]) |
5454 | fi | |
9a98a854 | 5455 | |
9a98a854 | 5456 | dnl --------------------------------------------------------------------------- |
77c85c2b | 5457 | dnl IPC: IPC, Drag'n'Drop, Clipboard, ... |
9a98a854 VZ |
5458 | dnl --------------------------------------------------------------------------- |
5459 | ||
2b9bdf71 VZ |
5460 | dnl check for ole headers and disable a few features requiring it if not |
5461 | dnl present (earlier versions of mingw32 don't have ole2.h) | |
f95e4495 | 5462 | if test "$USE_WIN32" = 1 -a \( "$wxUSE_DATAOBJ" = "yes" \ |
77e13408 | 5463 | -o "$wxUSE_CLIPBOARD" = "yes" \ |
3bce6687 | 5464 | -o "$wxUSE_OLE" = "yes" \ |
77e13408 | 5465 | -o "$wxUSE_DRAG_AND_DROP" = "yes" \) ; then |
2b9bdf71 VZ |
5466 | AC_CHECK_HEADERS(ole2.h) |
5467 | ||
5468 | if test "$ac_cv_header_ole2_h" = "yes" ; then | |
5469 | if test "$GCC" = yes ; then | |
8284b0c5 MB |
5470 | AC_LANG_SAVE |
5471 | AC_LANG_CPLUSPLUS | |
5472 | ||
5473 | AC_MSG_CHECKING([if g++ requires -fvtable-thunks]) | |
5474 | AC_TRY_COMPILE([#include <windows.h> | |
5475 | #include <ole2.h>], | |
5476 | [], | |
5477 | [AC_MSG_RESULT(no)], | |
5478 | [AC_MSG_RESULT(yes) | |
5479 | CODE_GEN_FLAGS_CXX="$CODE_GEN_FLAGS_CXX -fvtable-thunks"]) | |
5480 | AC_LANG_RESTORE | |
3d63bc3a | 5481 | LIBS=" -lrpcrt4 -loleaut32 -lole32 -luuid$LIBS" |
f95e4495 VS |
5482 | if test "$wxUSE_OLE" = "yes" ; then |
5483 | AC_DEFINE(wxUSE_OLE) | |
0b78747f | 5484 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS oleauto" |
f95e4495 | 5485 | fi |
2b9bdf71 VZ |
5486 | fi |
5487 | ||
5488 | dnl for OLE clipboard and dnd | |
f95e4495 VS |
5489 | if test "$wxUSE_DATAOBJ" = "yes" ; then |
5490 | AC_DEFINE(wxUSE_DATAOBJ) | |
5491 | fi | |
2b9bdf71 VZ |
5492 | else |
5493 | AC_MSG_WARN([Some features disabled because OLE headers not found]) | |
5494 | ||
5495 | wxUSE_CLIPBOARD=no | |
5496 | wxUSE_DRAG_AND_DROP=no | |
5497 | wxUSE_DATAOBJ=no | |
3bce6687 JS |
5498 | wxUSE_OLE=no |
5499 | fi | |
5500 | ||
5501 | if test "$wxUSE_METAFILE" = "yes"; then | |
5502 | AC_DEFINE(wxUSE_METAFILE) | |
5503 | ||
5504 | dnl this one should probably be made separately configurable | |
5505 | AC_DEFINE(wxUSE_ENH_METAFILE) | |
5506 | fi | |
5507 | fi | |
5508 | ||
9a98a854 | 5509 | if test "$wxUSE_IPC" = "yes"; then |
0b78747f | 5510 | if test "$wxUSE_SOCKETS" != "yes" -a "$USE_WIN32" != 1; then |
77ffb593 | 5511 | AC_MSG_WARN(wxWidgets IPC classes require sockets... disabled) |
0b78747f | 5512 | wxUSE_IPC=no |
eb4efbdc VZ |
5513 | fi |
5514 | ||
0b78747f MW |
5515 | if test "$wxUSE_IPC" = "yes"; then |
5516 | AC_DEFINE(wxUSE_IPC) | |
5517 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ipc" | |
5518 | fi | |
9a98a854 VZ |
5519 | fi |
5520 | ||
5521 | if test "$wxUSE_CLIPBOARD" = "yes"; then | |
6c657b52 VS |
5522 | if test "$wxUSE_MGL" = 1; then |
5523 | AC_MSG_WARN([Clipboard not yet supported under MGL... disabled]) | |
5524 | wxUSE_CLIPBOARD=no | |
5525 | fi | |
178572bb | 5526 | |
6c657b52 VS |
5527 | if test "$wxUSE_CLIPBOARD" = "yes"; then |
5528 | AC_DEFINE(wxUSE_CLIPBOARD) | |
5529 | ||
5530 | dnl required by clipboard code in configuration check | |
5531 | AC_DEFINE(wxUSE_DATAOBJ) | |
5532 | fi | |
9a98a854 VZ |
5533 | fi |
5534 | ||
39c9d5ac | 5535 | if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then |
ce4169a4 RR |
5536 | if test "$wxUSE_GTK" = 1; then |
5537 | if test "$WXGTK12" != 1; then | |
156b2523 | 5538 | AC_MSG_WARN([Drag and drop is only supported under GTK+ 1.2... disabled]) |
e90c1d2a | 5539 | wxUSE_DRAG_AND_DROP=no |
ce4169a4 | 5540 | fi |
a9b5e89f | 5541 | fi |
a9b5e89f | 5542 | |
ce4169a4 | 5543 | if test "$wxUSE_MOTIF" = 1; then |
156b2523 | 5544 | AC_MSG_WARN([Drag and drop not yet supported under Motif... disabled]) |
e90c1d2a | 5545 | wxUSE_DRAG_AND_DROP=no |
ce4169a4 | 5546 | fi |
a9b5e89f | 5547 | |
7f5c07ab JS |
5548 | if test "$wxUSE_X11" = 1; then |
5549 | AC_MSG_WARN([Drag and drop not yet supported under X11... disabled]) | |
5550 | wxUSE_DRAG_AND_DROP=no | |
5551 | fi | |
5552 | ||
6c657b52 VS |
5553 | if test "$wxUSE_MGL" = 1; then |
5554 | AC_MSG_WARN([Drag and drop not yet supported under MGL... disabled]) | |
5555 | wxUSE_DRAG_AND_DROP=no | |
5556 | fi | |
5557 | ||
ce4169a4 RR |
5558 | if test "$wxUSE_DRAG_AND_DROP" = "yes"; then |
5559 | AC_DEFINE(wxUSE_DRAG_AND_DROP) | |
ce4169a4 | 5560 | fi |
4882bf1b | 5561 | |
9a98a854 VZ |
5562 | fi |
5563 | ||
08938fe1 MB |
5564 | if test "$wxUSE_DRAG_AND_DROP" = "yes" -o "$wxUSE_CLIPBOARD" = "yes"; then |
5565 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd" | |
5566 | fi | |
5567 | ||
9a98a854 VZ |
5568 | if test "$wxUSE_SPLINES" = "yes" ; then |
5569 | AC_DEFINE(wxUSE_SPLINES) | |
5570 | fi | |
5571 | ||
5572 | dnl --------------------------------------------------------------------------- | |
5573 | dnl GUI controls | |
5574 | dnl --------------------------------------------------------------------------- | |
5575 | ||
1e6feb95 VZ |
5576 | USES_CONTROLS=0 |
5577 | if test "$wxUSE_CONTROLS" = "yes"; then | |
5578 | USES_CONTROLS=1 | |
5579 | fi | |
5580 | ||
9a98a854 VZ |
5581 | if test "$wxUSE_ACCEL" = "yes"; then |
5582 | AC_DEFINE(wxUSE_ACCEL) | |
1e6feb95 VZ |
5583 | USES_CONTROLS=1 |
5584 | fi | |
5585 | ||
5586 | if test "$wxUSE_BUTTON" = "yes"; then | |
5587 | AC_DEFINE(wxUSE_BUTTON) | |
5588 | USES_CONTROLS=1 | |
5589 | fi | |
5590 | ||
5591 | if test "$wxUSE_BMPBUTTON" = "yes"; then | |
5592 | AC_DEFINE(wxUSE_BMPBUTTON) | |
5593 | USES_CONTROLS=1 | |
5594 | fi | |
5595 | ||
5596 | if test "$wxUSE_CALCTRL" = "yes"; then | |
5597 | AC_DEFINE(wxUSE_CALENDARCTRL) | |
5598 | USES_CONTROLS=1 | |
5599 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS calendar" | |
9a98a854 VZ |
5600 | fi |
5601 | ||
5602 | if test "$wxUSE_CARET" = "yes"; then | |
5603 | AC_DEFINE(wxUSE_CARET) | |
1e6feb95 | 5604 | USES_CONTROLS=1 |
9a98a854 VZ |
5605 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret" |
5606 | fi | |
5607 | ||
5608 | if test "$wxUSE_COMBOBOX" = "yes"; then | |
5609 | AC_DEFINE(wxUSE_COMBOBOX) | |
1e6feb95 | 5610 | USES_CONTROLS=1 |
9a98a854 VZ |
5611 | fi |
5612 | ||
ce4169a4 RR |
5613 | if test "$wxUSE_CHOICE" = "yes"; then |
5614 | AC_DEFINE(wxUSE_CHOICE) | |
1e6feb95 | 5615 | USES_CONTROLS=1 |
9a98a854 VZ |
5616 | fi |
5617 | ||
92bbdbcd WS |
5618 | if test "$wxUSE_CHOICEBOOK" = "yes"; then |
5619 | AC_DEFINE(wxUSE_CHOICEBOOK) | |
5620 | USES_CONTROLS=1 | |
5621 | fi | |
5622 | ||
9a98a854 VZ |
5623 | if test "$wxUSE_CHECKBOX" = "yes"; then |
5624 | AC_DEFINE(wxUSE_CHECKBOX) | |
1e6feb95 | 5625 | USES_CONTROLS=1 |
9a98a854 VZ |
5626 | fi |
5627 | ||
5628 | if test "$wxUSE_CHECKLST" = "yes"; then | |
5629 | AC_DEFINE(wxUSE_CHECKLISTBOX) | |
1e6feb95 | 5630 | USES_CONTROLS=1 |
9a98a854 VZ |
5631 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst" |
5632 | fi | |
5633 | ||
da98e9be VZ |
5634 | if test "$wxUSE_DATEPICKCTRL" = "yes"; then |
5635 | AC_DEFINE(wxUSE_DATEPICKCTRL) | |
5636 | USES_CONTROLS=1 | |
5637 | fi | |
5638 | ||
ddb4769e VZ |
5639 | if test "$wxUSE_DISPLAY" = "yes"; then |
5640 | AC_DEFINE(wxUSE_DISPLAY) | |
0b78747f | 5641 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS display multimon" |
ddb4769e VZ |
5642 | fi |
5643 | ||
9a98a854 VZ |
5644 | if test "$wxUSE_GAUGE" = "yes"; then |
5645 | AC_DEFINE(wxUSE_GAUGE) | |
1e6feb95 | 5646 | USES_CONTROLS=1 |
9a98a854 VZ |
5647 | fi |
5648 | ||
d6a55c4b VZ |
5649 | if test "$wxUSE_GRID" = "yes"; then |
5650 | AC_DEFINE(wxUSE_GRID) | |
1e6feb95 | 5651 | USES_CONTROLS=1 |
d6a55c4b VZ |
5652 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid" |
5653 | fi | |
5654 | ||
9a98a854 | 5655 | if test "$wxUSE_IMAGLIST" = "yes"; then |
ce4169a4 | 5656 | AC_DEFINE(wxUSE_IMAGLIST) |
9a98a854 VZ |
5657 | fi |
5658 | ||
e9c0df38 VZ |
5659 | if test "$wxUSE_LISTBOOK" = "yes"; then |
5660 | AC_DEFINE(wxUSE_LISTBOOK) | |
5661 | USES_CONTROLS=1 | |
5662 | fi | |
5663 | ||
9a98a854 | 5664 | if test "$wxUSE_LISTBOX" = "yes"; then |
ce4169a4 | 5665 | AC_DEFINE(wxUSE_LISTBOX) |
1e6feb95 | 5666 | USES_CONTROLS=1 |
0b78747f | 5667 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listbox" |
9a98a854 VZ |
5668 | fi |
5669 | ||
5670 | if test "$wxUSE_LISTCTRL" = "yes"; then | |
ce4169a4 RR |
5671 | if test "$wxUSE_IMAGLIST" = "yes"; then |
5672 | AC_DEFINE(wxUSE_LISTCTRL) | |
1e6feb95 | 5673 | USES_CONTROLS=1 |
ce4169a4 RR |
5674 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl" |
5675 | else | |
5676 | AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it]) | |
5677 | fi | |
9a98a854 VZ |
5678 | fi |
5679 | ||
5680 | if test "$wxUSE_NOTEBOOK" = "yes"; then | |
ce4169a4 | 5681 | AC_DEFINE(wxUSE_NOTEBOOK) |
1e6feb95 | 5682 | USES_CONTROLS=1 |
ce4169a4 | 5683 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook" |
9a98a854 VZ |
5684 | fi |
5685 | ||
2fc9385a JS |
5686 | dnl if test "$wxUSE_PROPSHEET" = "yes"; then |
5687 | dnl AC_DEFINE(wxUSE_PROPSHEET) | |
5688 | dnl USES_CONTROLS=1 | |
5689 | dnl SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS proplist" | |
5690 | dnl fi | |
24176f2c | 5691 | |
9a98a854 | 5692 | if test "$wxUSE_RADIOBOX" = "yes"; then |
ce4169a4 | 5693 | AC_DEFINE(wxUSE_RADIOBOX) |
1e6feb95 | 5694 | USES_CONTROLS=1 |
9a98a854 VZ |
5695 | fi |
5696 | ||
5697 | if test "$wxUSE_RADIOBTN" = "yes"; then | |
ce4169a4 | 5698 | AC_DEFINE(wxUSE_RADIOBTN) |
1e6feb95 | 5699 | USES_CONTROLS=1 |
9a98a854 VZ |
5700 | fi |
5701 | ||
79b00c62 | 5702 | if test "$wxUSE_SASH" = "yes"; then |
ce4169a4 RR |
5703 | AC_DEFINE(wxUSE_SASH) |
5704 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest" | |
9a98a854 VZ |
5705 | fi |
5706 | ||
5707 | if test "$wxUSE_SCROLLBAR" = "yes"; then | |
ce4169a4 | 5708 | AC_DEFINE(wxUSE_SCROLLBAR) |
1e6feb95 | 5709 | USES_CONTROLS=1 |
678b92a9 | 5710 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll scrollsub" |
9a98a854 VZ |
5711 | fi |
5712 | ||
5713 | if test "$wxUSE_SLIDER" = "yes"; then | |
ce4169a4 | 5714 | AC_DEFINE(wxUSE_SLIDER) |
1e6feb95 | 5715 | USES_CONTROLS=1 |
9a98a854 VZ |
5716 | fi |
5717 | ||
5718 | if test "$wxUSE_SPINBTN" = "yes"; then | |
ce4169a4 | 5719 | AC_DEFINE(wxUSE_SPINBTN) |
1e6feb95 | 5720 | USES_CONTROLS=1 |
9a98a854 VZ |
5721 | fi |
5722 | ||
66f38406 RR |
5723 | if test "$wxUSE_SPINCTRL" = "yes"; then |
5724 | AC_DEFINE(wxUSE_SPINCTRL) | |
1e6feb95 | 5725 | USES_CONTROLS=1 |
66f38406 RR |
5726 | fi |
5727 | ||
9a98a854 | 5728 | if test "$wxUSE_SPLITTER" = "yes"; then |
ce4169a4 RR |
5729 | AC_DEFINE(wxUSE_SPLITTER) |
5730 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter" | |
9a98a854 VZ |
5731 | fi |
5732 | ||
5733 | if test "$wxUSE_STATBMP" = "yes"; then | |
ce4169a4 | 5734 | AC_DEFINE(wxUSE_STATBMP) |
1e6feb95 | 5735 | USES_CONTROLS=1 |
9a98a854 VZ |
5736 | fi |
5737 | ||
5738 | if test "$wxUSE_STATBOX" = "yes"; then | |
ce4169a4 | 5739 | AC_DEFINE(wxUSE_STATBOX) |
1e6feb95 VZ |
5740 | USES_CONTROLS=1 |
5741 | fi | |
5742 | ||
5743 | if test "$wxUSE_STATTEXT" = "yes"; then | |
5744 | AC_DEFINE(wxUSE_STATTEXT) | |
5745 | USES_CONTROLS=1 | |
9a98a854 VZ |
5746 | fi |
5747 | ||
5748 | if test "$wxUSE_STATLINE" = "yes"; then | |
d1188635 JS |
5749 | AC_DEFINE(wxUSE_STATLINE) |
5750 | USES_CONTROLS=1 | |
9a98a854 VZ |
5751 | fi |
5752 | ||
5753 | if test "$wxUSE_STATUSBAR" = "yes"; then | |
da4486fb VZ |
5754 | dnl this will get undefined in wx/chkconf.h if it's not supported |
5755 | AC_DEFINE(wxUSE_NATIVE_STATUSBAR) | |
ce4169a4 | 5756 | AC_DEFINE(wxUSE_STATUSBAR) |
1e6feb95 | 5757 | USES_CONTROLS=1 |
2286341c VZ |
5758 | |
5759 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS statbar" | |
9a98a854 VZ |
5760 | fi |
5761 | ||
5762 | if test "$wxUSE_TABDIALOG" = "yes"; then | |
ce4169a4 | 5763 | AC_DEFINE(wxUSE_TAB_DIALOG) |
9a98a854 VZ |
5764 | fi |
5765 | ||
1e6feb95 VZ |
5766 | if test "$wxUSE_TEXTCTRL" = "yes"; then |
5767 | AC_DEFINE(wxUSE_TEXTCTRL) | |
5768 | USES_CONTROLS=1 | |
5769 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS text" | |
5770 | fi | |
5771 | ||
1db8dc4a | 5772 | if test "$wxUSE_TOGGLEBTN" = "yes"; then |
c14e9648 | 5773 | if test "$wxUSE_COCOA" = 1 ; then |
156b2523 GD |
5774 | AC_MSG_WARN([Toggle button not yet supported under Mac OS X... disabled]) |
5775 | wxUSE_TOGGLEBTN=no | |
24ec43db SN |
5776 | else |
5777 | if test "$wxUSE_PM" = 1; then | |
5778 | AC_MSG_WARN([Toggle button not yet supported under PM... disabled]) | |
5779 | wxUSE_TOGGLEBTN=no | |
5780 | fi | |
156b2523 GD |
5781 | fi |
5782 | if test "$wxUSE_UNIVERSAL" = "yes"; then | |
3c011993 | 5783 | AC_MSG_WARN([Toggle button not yet supported under wxUniversal... disabled]) |
a45d7ab7 GD |
5784 | wxUSE_TOGGLEBTN=no |
5785 | fi | |
5786 | ||
5787 | if test "$wxUSE_TOGGLEBTN" = "yes"; then | |
5788 | AC_DEFINE(wxUSE_TOGGLEBTN) | |
1e6feb95 | 5789 | USES_CONTROLS=1 |
a45d7ab7 | 5790 | fi |
1db8dc4a VZ |
5791 | fi |
5792 | ||
360d6699 VZ |
5793 | if test "$wxUSE_TOOLBAR_SIMPLE" = "yes"; then |
5794 | AC_DEFINE(wxUSE_TOOLBAR_SIMPLE) | |
5795 | wxUSE_TOOLBAR="yes" | |
1e6feb95 | 5796 | USES_CONTROLS=1 |
360d6699 VZ |
5797 | fi |
5798 | ||
9a98a854 | 5799 | if test "$wxUSE_TOOLBAR" = "yes"; then |
ce4169a4 | 5800 | AC_DEFINE(wxUSE_TOOLBAR) |
1e6feb95 | 5801 | USES_CONTROLS=1 |
360d6699 VZ |
5802 | |
5803 | dnl if wxUSE_TOOLBAR and !wxUSE_TOOLBAR_SIMPLE => wxUSE_TOOLBAR_NATIVE | |
5804 | if test "$wxUSE_TOOLBAR_SIMPLE" != "yes"; then | |
5805 | wxUSE_TOOLBAR_NATIVE="yes" | |
5806 | fi | |
5807 | ||
1e6feb95 VZ |
5808 | if test "$wxUSE_TOOLBAR_NATIVE" = "yes"; then |
5809 | AC_DEFINE(wxUSE_TOOLBAR_NATIVE) | |
5810 | USES_CONTROLS=1 | |
5811 | fi | |
9a98a854 | 5812 | |
1e6feb95 | 5813 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar" |
360d6699 VZ |
5814 | fi |
5815 | ||
39c9d5ac | 5816 | if test "$wxUSE_TOOLTIPS" = "yes"; then |
ced859c3 | 5817 | if test "$wxUSE_MOTIF" = 1; then |
156b2523 | 5818 | AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled]) |
9a98a854 | 5819 | else |
d1188635 JS |
5820 | if test "$wxUSE_UNIVERSAL" = "yes"; then |
5821 | AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled]) | |
ce4169a4 | 5822 | else |
d1188635 | 5823 | AC_DEFINE(wxUSE_TOOLTIPS) |
ce4169a4 | 5824 | fi |
9a98a854 VZ |
5825 | fi |
5826 | fi | |
5827 | ||
5828 | if test "$wxUSE_TREECTRL" = "yes"; then | |
ce4169a4 RR |
5829 | if test "$wxUSE_IMAGLIST" = "yes"; then |
5830 | AC_DEFINE(wxUSE_TREECTRL) | |
1e6feb95 | 5831 | USES_CONTROLS=1 |
ce4169a4 RR |
5832 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl" |
5833 | else | |
5834 | AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it]) | |
5835 | fi | |
9a98a854 VZ |
5836 | fi |
5837 | ||
9f41d601 | 5838 | if test "$wxUSE_POPUPWIN" = "yes"; then |
ac0c4cc3 | 5839 | if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then |
156b2523 | 5840 | AC_MSG_WARN([Popup window not yet supported under Mac OS X... disabled]) |
6abe4b65 | 5841 | else |
833a51f6 MB |
5842 | if test "$wxUSE_PM" = 1; then |
5843 | AC_MSG_WARN([wxPopupWindow not yet supported under PM... disabled]) | |
485cf710 | 5844 | else |
833a51f6 | 5845 | AC_DEFINE(wxUSE_POPUPWIN) |
0b78747f | 5846 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS popup" |
0b01706f | 5847 | |
833a51f6 | 5848 | USES_CONTROLS=1 |
485cf710 | 5849 | fi |
6abe4b65 | 5850 | fi |
9f41d601 RR |
5851 | fi |
5852 | ||
0dcd06dd | 5853 | if test "$wxUSE_DIALUP_MANAGER" = "yes"; then |
b843b628 MB |
5854 | if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then |
5855 | AC_MSG_WARN([Dialup manager not yet supported under Mac OS X... disabled]) | |
5856 | else | |
5857 | AC_DEFINE(wxUSE_DIALUP_MANAGER) | |
5858 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup" | |
5859 | fi | |
5860 | fi | |
5861 | ||
dd964dcc | 5862 | if test "$wxUSE_TIPWINDOW" = "yes"; then |
c6712985 SN |
5863 | if test "$wxUSE_PM" = 1; then |
5864 | AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled]) | |
3bd8fb5f | 5865 | else |
c6712985 SN |
5866 | AC_DEFINE(wxUSE_TIPWINDOW) |
5867 | fi | |
dd964dcc VZ |
5868 | fi |
5869 | ||
1e6feb95 VZ |
5870 | if test "$USES_CONTROLS" = 1; then |
5871 | AC_DEFINE(wxUSE_CONTROLS) | |
5872 | fi | |
5873 | ||
9a98a854 VZ |
5874 | dnl --------------------------------------------------------------------------- |
5875 | dnl misc options | |
5876 | dnl --------------------------------------------------------------------------- | |
5877 | ||
4199367e VZ |
5878 | dnl please keep the settings below in alphabetical order |
5879 | if test "$wxUSE_ACCESSIBILITY" = "yes"; then | |
5880 | AC_DEFINE(wxUSE_ACCESSIBILITY) | |
5881 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS access" | |
5882 | fi | |
9a98a854 | 5883 | |
24fd6d87 VZ |
5884 | if test "$wxUSE_DRAGIMAGE" = "yes"; then |
5885 | AC_DEFINE(wxUSE_DRAGIMAGE) | |
5886 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dragimag" | |
5887 | fi | |
5888 | ||
4199367e | 5889 | if test "$wxUSE_EXCEPTIONS" = "yes"; then |
2ad50b4f VZ |
5890 | if test "$wxUSE_NO_EXCEPTIONS" = "yes" ; then |
5891 | AC_MSG_WARN([--enable-exceptions can't be used with --enable-no_exceptions]) | |
5892 | else | |
5893 | AC_DEFINE(wxUSE_EXCEPTIONS) | |
5894 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS except" | |
5895 | fi | |
4199367e VZ |
5896 | fi |
5897 | ||
5898 | USE_HTML=0 | |
5899 | if test "$wxUSE_HTML" = "yes"; then | |
5900 | AC_DEFINE(wxUSE_HTML) | |
5901 | USE_HTML=1 | |
5902 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html html/about html/help html/helpview html/printing html/test html/virtual html/widget html/zip htlbox" | |
7866e9c9 KO |
5903 | if test "$wxUSE_MAC" = 1; then |
5904 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS html/htmlctrl" | |
5905 | fi | |
7bb2947d | 5906 | fi |
ec9f9256 | 5907 | if test "$wxUSE_WEBKIT" = "yes"; then |
031e9160 | 5908 | if test "$wxUSE_MAC" = 1 -a "$USE_DARWIN" = 1; then |
07bea8f0 VS |
5909 | old_CPPFLAGS="$CPPFLAGS" |
5910 | CPPFLAGS="$CPPFLAGS -x objective-c++" | |
5911 | AC_CHECK_HEADER([WebKit/HIWebView.h], | |
5912 | [ | |
5913 | AC_DEFINE(wxUSE_WEBKIT) | |
5914 | WEBKIT_LINK="-framework WebKit" | |
5915 | ], | |
5916 | [ | |
5917 | AC_MSG_WARN([WebKit headers not found; disabling wxWebKit]) | |
5918 | wxUSE_WEBKIT=no | |
5919 | ], | |
5920 | [#include <Carbon/Carbon.h>]) | |
5921 | CPPFLAGS="$old_CPPFLAGS" | |
5922 | elif test "$wxUSE_COCOA" = 1; then | |
5923 | AC_DEFINE(wxUSE_WEBKIT) | |
5924 | else | |
5925 | wxUSE_WEBKIT=no | |
5926 | fi | |
ec9f9256 JS |
5927 | fi |
5928 | ||
9a8f0513 VS |
5929 | USE_XRC=0 |
5930 | if test "$wxUSE_XRC" = "yes"; then | |
d2ebf0b7 VS |
5931 | if test "$wxUSE_XML" != "yes"; then |
5932 | AC_MSG_WARN([XML library not built, XRC resources disabled]) | |
5933 | wxUSE_XRC=no | |
5934 | else | |
5935 | AC_DEFINE(wxUSE_XRC) | |
5936 | USE_XRC=1 | |
5937 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS xrc" | |
5938 | fi | |
9a8f0513 | 5939 | fi |
07bea8f0 | 5940 | |
1e6feb95 VZ |
5941 | if test "$wxUSE_MENUS" = "yes"; then |
5942 | AC_DEFINE(wxUSE_MENUS) | |
5943 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS menu" | |
ce4169a4 | 5944 | fi |
9a98a854 | 5945 | |
1e6feb95 VZ |
5946 | if test "$wxUSE_METAFILE" = "yes"; then |
5947 | AC_DEFINE(wxUSE_METAFILE) | |
c11584af RR |
5948 | fi |
5949 | ||
1e6feb95 VZ |
5950 | if test "$wxUSE_MIMETYPE" = "yes"; then |
5951 | AC_DEFINE(wxUSE_MIMETYPE) | |
9a98a854 VZ |
5952 | fi |
5953 | ||
5954 | if test "$wxUSE_MINIFRAME" = "yes"; then | |
ce4169a4 RR |
5955 | AC_DEFINE(wxUSE_MINIFRAME) |
5956 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram" | |
9a98a854 VZ |
5957 | fi |
5958 | ||
4199367e VZ |
5959 | if test "$wxUSE_SYSTEM_OPTIONS" = "yes"; then |
5960 | AC_DEFINE(wxUSE_SYSTEM_OPTIONS) | |
5961 | if test "$TOOLKIT" = "MSW" -o "$TOOLKIT" = "GTK" -o "$TOOLKIT" = "X11" -o \ | |
f1d9e1ec | 5962 | "$TOOLKIT" = "MOTIF" -o "$TOOLKIT" = "COCOA"; then |
4199367e VZ |
5963 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS taskbar" |
5964 | fi | |
5526e819 VS |
5965 | fi |
5966 | ||
4199367e | 5967 | |
9a98a854 | 5968 | if test "$wxUSE_VALIDATORS" = "yes"; then |
ce4169a4 RR |
5969 | AC_DEFINE(wxUSE_VALIDATORS) |
5970 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate" | |
9a98a854 VZ |
5971 | fi |
5972 | ||
d275c7eb VZ |
5973 | if test "$wxUSE_PALETTE" = "yes" ; then |
5974 | AC_DEFINE(wxUSE_PALETTE) | |
5975 | fi | |
5976 | ||
4199367e VZ |
5977 | if test "$wxUSE_UNICODE" = "yes" -a "$wxUSE_UNICODE_MSLU" = "yes" ; then |
5978 | dnl Must be done this late because -lunicows must be before all the other libs | |
5979 | LIBS=" -lunicows $LIBS" | |
0046ff7c VS |
5980 | fi |
5981 | ||
4199367e VZ |
5982 | dnl --------------------------------------------------------------------------- |
5983 | dnl wxImage options | |
5984 | dnl --------------------------------------------------------------------------- | |
0940bcf7 | 5985 | |
4199367e VZ |
5986 | if test "$wxUSE_IMAGE" = "yes" ; then |
5987 | AC_DEFINE(wxUSE_IMAGE) | |
0940bcf7 | 5988 | |
4199367e VZ |
5989 | if test "$wxUSE_GIF" = "yes" ; then |
5990 | AC_DEFINE(wxUSE_GIF) | |
5991 | fi | |
4b6b4dfc | 5992 | |
4199367e VZ |
5993 | if test "$wxUSE_PCX" = "yes" ; then |
5994 | AC_DEFINE(wxUSE_PCX) | |
5995 | fi | |
0940bcf7 | 5996 | |
4199367e VZ |
5997 | if test "$wxUSE_IFF" = "yes" ; then |
5998 | AC_DEFINE(wxUSE_IFF) | |
5999 | fi | |
0046ff7c | 6000 | |
4199367e VZ |
6001 | if test "$wxUSE_PNM" = "yes" ; then |
6002 | AC_DEFINE(wxUSE_PNM) | |
6003 | fi | |
658974ae | 6004 | |
4199367e VZ |
6005 | if test "$wxUSE_XPM" = "yes" ; then |
6006 | AC_DEFINE(wxUSE_XPM) | |
6007 | fi | |
6008 | ||
6009 | if test "$wxUSE_ICO_CUR" = "yes" ; then | |
6010 | AC_DEFINE(wxUSE_ICO_CUR) | |
6011 | fi | |
a72a4bfa VS |
6012 | fi |
6013 | ||
1e6feb95 | 6014 | dnl --------------------------------------------------------------------------- |
4199367e | 6015 | dnl common dialogs |
1e6feb95 VZ |
6016 | dnl --------------------------------------------------------------------------- |
6017 | ||
6018 | if test "$wxUSE_CHOICEDLG" = "yes"; then | |
6019 | AC_DEFINE(wxUSE_CHOICEDLG) | |
6020 | fi | |
6021 | ||
6022 | if test "$wxUSE_COLOURDLG" = "yes"; then | |
6023 | AC_DEFINE(wxUSE_COLOURDLG) | |
6024 | fi | |
6025 | ||
6026 | if test "$wxUSE_FILEDLG" = "yes"; then | |
6027 | AC_DEFINE(wxUSE_FILEDLG) | |
6028 | fi | |
6029 | ||
8db37e06 VZ |
6030 | if test "$wxUSE_FINDREPLDLG" = "yes"; then |
6031 | AC_DEFINE(wxUSE_FINDREPLDLG) | |
6032 | fi | |
6033 | ||
1e6feb95 VZ |
6034 | if test "$wxUSE_FONTDLG" = "yes"; then |
6035 | AC_DEFINE(wxUSE_FONTDLG) | |
6036 | fi | |
6037 | ||
6038 | if test "$wxUSE_DIRDLG" = "yes"; then | |
ae1daed0 JS |
6039 | if test "$wxUSE_TREECTRL" != "yes"; then |
6040 | AC_MSG_WARN(wxDirDialog requires wxTreeCtrl so it won't be compiled without it) | |
1e6feb95 | 6041 | else |
ae1daed0 | 6042 | AC_DEFINE(wxUSE_DIRDLG) |
1e6feb95 VZ |
6043 | fi |
6044 | fi | |
6045 | ||
6046 | if test "$wxUSE_MSGDLG" = "yes"; then | |
6047 | AC_DEFINE(wxUSE_MSGDLG) | |
6048 | fi | |
6049 | ||
6050 | if test "$wxUSE_NUMBERDLG" = "yes"; then | |
6051 | AC_DEFINE(wxUSE_NUMBERDLG) | |
6052 | fi | |
6053 | ||
6054 | if test "$wxUSE_PROGRESSDLG" = "yes"; then | |
6055 | if test "$wxUSE_CONSTRAINTS" != "yes"; then | |
6056 | AC_MSG_WARN(wxProgressDialog requires constraints so it won't be compiled without them) | |
6057 | else | |
6058 | AC_DEFINE(wxUSE_PROGRESSDLG) | |
6059 | fi | |
6060 | fi | |
6061 | ||
cbca9943 VZ |
6062 | if test "$wxUSE_SPLASH" = "yes"; then |
6063 | AC_DEFINE(wxUSE_SPLASH) | |
2057db16 | 6064 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splash" |
cbca9943 VZ |
6065 | fi |
6066 | ||
1e6feb95 VZ |
6067 | if test "$wxUSE_STARTUP_TIPS" = "yes"; then |
6068 | if test "$wxUSE_CONSTRAINTS" != "yes"; then | |
6069 | AC_MSG_WARN(Startup tips requires constraints and won't be compiled without them) | |
6070 | else | |
6071 | AC_DEFINE(wxUSE_STARTUP_TIPS) | |
6072 | fi | |
6073 | fi | |
6074 | ||
6075 | if test "$wxUSE_TEXTDLG" = "yes"; then | |
6076 | AC_DEFINE(wxUSE_TEXTDLG) | |
6077 | fi | |
6078 | ||
b1f5d087 VZ |
6079 | if test "$wxUSE_WIZARDDLG" = "yes"; then |
6080 | AC_DEFINE(wxUSE_WIZARDDLG) | |
6081 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wizard" | |
6082 | fi | |
6083 | ||
ce756cb0 RN |
6084 | dnl --------------------------------------------------------------------------- |
6085 | dnl wxMediaCtrl | |
6086 | dnl --------------------------------------------------------------------------- | |
6087 | ||
6088 | if test "$wxUSE_MEDIACTRL" = "yes"; then | |
6089 | if test "$wxUSE_MSW" = 1; then | |
6090 | dnl ----------------------------------------------------------------------- | |
6091 | dnl DirectShow MSW | |
6092 | dnl ----------------------------------------------------------------------- | |
6093 | wxUSE_DIRECTSHOW="yes" | |
6094 | AC_CHECK_HEADERS([dshow.h], [], | |
6095 | [ | |
6096 | wxUSE_DIRECTSHOW="no" | |
6097 | AC_MSG_WARN([DirectShow not installed; consider installing the DirectX7 SDK or higher]) | |
6098 | ], | |
6099 | [#include <windows.h>]) | |
6100 | ||
6101 | if test "$wxUSE_DIRECTSHOW" = "yes"; then | |
6102 | AC_DEFINE(wxUSE_DIRECTSHOW) | |
6103 | LIBS="$LIBS -lstrmiids" | |
6104 | fi | |
6105 | fi | |
6106 | ||
6107 | dnl ----------------------------------------------------------------------- | |
6108 | dnl GStreamer | |
6109 | dnl ----------------------------------------------------------------------- | |
6110 | if test "$wxUSE_GTK" = 1; then | |
6111 | wxUSE_GSTREAMER="yes" | |
6112 | ||
dae87f93 RN |
6113 | dnl ------------------------------------------------------------------- |
6114 | dnl Test for gstreamer module from pkg-config | |
6115 | dnl ------------------------------------------------------------------- | |
6116 | PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.8, | |
6117 | [ | |
6118 | CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS" | |
6119 | LIBS="$LIBS $GSTREAMER_LIBS -lgstplay-0.8" | |
6120 | ], | |
6121 | [ | |
6122 | AC_MSG_WARN([GStreamer installation not found]) | |
6123 | wxUSE_GSTREAMER="no" | |
6124 | ]) | |
6125 | ||
6126 | dnl ------------------------------------------------------------------- | |
6127 | dnl Perform a check for a GStreamer element using gst-inspect | |
6128 | dnl Thomas Vander Stichele <thomas at apestaart dot org> | |
6129 | dnl Last modification: 25/01/2005 | |
6130 | dnl | |
6131 | dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND) | |
6132 | dnl ------------------------------------------------------------------- | |
6133 | AC_DEFUN([AM_GST_ELEMENT_CHECK], | |
6134 | [ | |
6135 | if test "x$GST_INSPECT" == "x"; then | |
6136 | AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, []) | |
6137 | fi | |
6138 | ||
6139 | if test "x$GST_INSPECT" != "x"; then | |
6140 | AC_MSG_CHECKING(GStreamer element $1) | |
6141 | if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then | |
6142 | AC_MSG_RESULT(found.) | |
6143 | $2 | |
ce756cb0 | 6144 | else |
dae87f93 RN |
6145 | AC_MSG_RESULT(not found.) |
6146 | $3 | |
ce756cb0 | 6147 | fi |
dae87f93 RN |
6148 | fi |
6149 | ]) | |
6150 | ||
6151 | dnl ------------------------------------------------------------------- | |
6152 | dnl Test for x video sink (video useless without) | |
6153 | dnl ------------------------------------------------------------------- | |
6154 | AM_GST_ELEMENT_CHECK(xvimagesink,[], | |
6155 | [ | |
6156 | wxUSE_GSTREAMER="no" | |
6157 | AC_MSG_WARN([x video sink not found - cannot use GStreamer]) | |
6158 | ]) | |
6159 | ||
6160 | dnl ------------------------------------------------------------------- | |
6161 | dnl Check for gstplay-0.8 lib and corresponding x overlay header | |
6162 | dnl ------------------------------------------------------------------- | |
6163 | AC_CHECK_HEADER(gst/xoverlay/xoverlay.h, [], | |
6164 | [ | |
6165 | wxUSE_GSTREAMER="no" | |
6166 | AC_MSG_WARN([xoverlay header not found, cannot use GStreamer]) | |
6167 | ], | |
6168 | [#include <gst/gst.h>]) | |
6169 | ||
6170 | AC_MSG_CHECKING([for gstplay 0.8]) | |
6171 | WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],gstplay-0.8) | |
6172 | ||
6173 | if test "$ac_find_libraries" = "" ; then | |
6174 | AC_MSG_RESULT([no]) | |
ce756cb0 | 6175 | wxUSE_GSTREAMER="no" |
dae87f93 RN |
6176 | else |
6177 | AC_MSG_RESULT([yes]) | |
ce756cb0 | 6178 | fi |
dae87f93 | 6179 | |
ce756cb0 | 6180 | if test "$wxUSE_GSTREAMER" = "yes"; then |
dae87f93 RN |
6181 | AC_DEFINE(wxUSE_GSTREAMER) |
6182 | AC_MSG_RESULT([GStreamer detection successful]) | |
ce756cb0 RN |
6183 | fi |
6184 | fi | |
6185 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mediaplayer" | |
6186 | AC_DEFINE(wxUSE_MEDIACTRL) | |
6187 | fi | |
6188 | ||
bdc72a22 | 6189 | dnl --------------------------------------------------------------------------- |
db1d0193 | 6190 | dnl get the string with OS info - used by wxGetOsDescription() on MacOS X |
bdc72a22 VZ |
6191 | dnl --------------------------------------------------------------------------- |
6192 | ||
32832908 VZ |
6193 | if test "$cross_compiling" = "yes"; then |
6194 | dnl Use best guess from host as we can't use uname when cross compiling | |
6195 | OSINFO="\"$host\"" | |
6196 | else | |
6197 | dnl attualy work out OS version | |
6198 | OSINFO=`uname -s -r -m` | |
6199 | OSINFO="\"$OSINFO\"" | |
6200 | fi | |
6201 | ||
bdc72a22 VZ |
6202 | AC_DEFINE_UNQUOTED(WXWIN_OS_DESCRIPTION, $OSINFO) |
6203 | ||
7e67ed0d VZ |
6204 | dnl --------------------------------------------------------------------------- |
6205 | dnl define the variable containing the installation prefix (used in dcpsg.cpp) | |
6206 | dnl --------------------------------------------------------------------------- | |
6207 | ||
06dda230 VZ |
6208 | if test "x$prefix" != "xNONE"; then |
6209 | wxPREFIX=$prefix | |
6210 | else | |
6211 | wxPREFIX=$ac_default_prefix | |
6212 | fi | |
6213 | ||
6214 | AC_DEFINE_UNQUOTED(wxINSTALL_PREFIX, "$wxPREFIX") | |
7e67ed0d | 6215 | |
edd891e2 VS |
6216 | |
6217 | dnl --------------------------------------------------------------------------- | |
6218 | dnl define variables with all built libraries for wx-config | |
6219 | dnl --------------------------------------------------------------------------- | |
6220 | ||
6221 | CORE_BASE_LIBS="net base" | |
6222 | CORE_GUI_LIBS="adv core" | |
6223 | ||
6224 | if test "$wxUSE_XML" = "yes" ; then | |
6225 | CORE_BASE_LIBS="xml $CORE_BASE_LIBS" | |
6226 | fi | |
45293562 VS |
6227 | if test "$wxUSE_ODBC" != "no" ; then |
6228 | CORE_BASE_LIBS="odbc $CORE_BASE_LIBS" | |
6229 | CORE_GUI_LIBS="dbgrid $CORE_GUI_LIBS" | |
edd891e2 VS |
6230 | fi |
6231 | if test "$wxUSE_HTML" = "yes" ; then | |
6232 | CORE_GUI_LIBS="html $CORE_GUI_LIBS" | |
6233 | fi | |
61639efb VZ |
6234 | if test "$wxUSE_DEBUGREPORT" = "yes" ; then |
6235 | CORE_GUI_LIBS="qa $CORE_GUI_LIBS" | |
6236 | fi | |
9a8f0513 VS |
6237 | if test "$wxUSE_XRC" = "yes" ; then |
6238 | CORE_GUI_LIBS="xrc $CORE_GUI_LIBS" | |
6239 | fi | |
edd891e2 | 6240 | |
57e7d4ac VS |
6241 | if test "$wxUSE_GUI" != "yes"; then |
6242 | CORE_GUI_LIBS="" | |
6243 | fi | |
6244 | ||
edd891e2 VS |
6245 | AC_SUBST(CORE_BASE_LIBS) |
6246 | AC_SUBST(CORE_GUI_LIBS) | |
6247 | ||
6248 | ||
9a98a854 VZ |
6249 | dnl --------------------------------------------------------------------------- |
6250 | dnl Output the makefiles and such from the results found above | |
6251 | dnl --------------------------------------------------------------------------- | |
6252 | ||
77ffb593 | 6253 | dnl all additional libraries (except wxWidgets itself) we link with |
3d63bc3a | 6254 | |
b4085ce6 GD |
6255 | dnl note that we always link with -lm except for Mac OS X |
6256 | dnl extended.c uses floor() and is always linked in | |
3a922bb4 | 6257 | |
f11bdd03 | 6258 | if test "$wxUSE_MAC" = 1 ; then |
a98bf0c0 | 6259 | if test "$wxUSE_SOUND" = "yes" || test "$wxUSE_MEDIACTRL" = "yes"; then |
031e9160 DE |
6260 | if test "$USE_DARWIN" = 1; then |
6261 | LDFLAGS="$LDFLAGS -framework QuickTime" | |
6262 | else | |
6263 | LDFLAGS="$LDFLAGS -lQuickTimeLib" | |
6264 | fi | |
e586e41d | 6265 | fi |
5dcf30a0 | 6266 | if test "$USE_DARWIN" = 1; then |
031e9160 DE |
6267 | LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System" |
6268 | else | |
6269 | LDFLAGS="$LDFLAGS -lCarbonLib" | |
5dcf30a0 | 6270 | fi |
b4085ce6 | 6271 | fi |
ac0c4cc3 | 6272 | if test "$wxUSE_COCOA" = 1 ; then |
4cb1d3da | 6273 | LDFLAGS="$LDFLAGS -framework IOKit -framework Cocoa" |
4fc81cbc RN |
6274 | if test "$wxUSE_MEDIACTRL" = "yes"; then |
6275 | LDFLAGS="$LDFLAGS -framework QuickTime" | |
6276 | fi | |
ac0c4cc3 | 6277 | fi |
3a922bb4 | 6278 | |
3d63bc3a RL |
6279 | dnl FIXME: should this be covered by the conditional above |
6280 | dnl given the -lm comment there? Or should that comment (and | |
6281 | dnl this one) be removed.. [ 7 Nov 2001 ] | |
6282 | ||
2b5f62a0 VZ |
6283 | LIBS="$ZLIB_LINK $POSIX4_LINK $INET_LINK $WCHAR_LINK $DL_LINK $LIBS" |
6284 | ||
6285 | dnl Only add the -lm library if floating point functions cannot be used | |
6286 | dnl without it. This check is important on cygwin because of the bizarre | |
6287 | dnl way that they have organized functions into libraries. On cygwin, both | |
6288 | dnl libc.a and libm.a are symbolic links to a single lib libcygwin.a. This | |
6289 | dnl means that | |
6290 | dnl 1) linking with -lm is not necessary, and | |
6291 | dnl 2) linking with -lm is dangerous if the order of libraries is wrong | |
6292 | dnl In particular, if you compile any program with -mno-cygwin and link with | |
6293 | dnl -lm, it will crash instantly when it is run. This happens because the | |
6294 | dnl linker incorrectly links the Cygwin libm.a (==libcygwin.a), which replaces | |
6295 | dnl the ___main function instead of allowing it to be defined by | |
6296 | dnl /usr/lib/mingw/libmingw32.a as it should be. | |
6297 | dnl | |
6298 | dnl On MacOS X, this test will find that -lm is unnecessary and leave it out. | |
6299 | dnl | |
6300 | dnl Just check a few floating point functions. If they are all found without | |
6301 | dnl -lm, then we must not need -lm. | |
6302 | have_cos=0 | |
6303 | have_floor=0 | |
6304 | AC_CHECK_FUNCS(cos, have_cos=1) | |
6305 | AC_CHECK_FUNCS(floor, have_floor=1) | |
6306 | AC_MSG_CHECKING(if floating point functions link without -lm) | |
6307 | if test "$have_cos" = 1 -a "$have_floor" = 1; then | |
6308 | AC_MSG_RESULT(yes) | |
6309 | else | |
6310 | AC_MSG_RESULT(no) | |
6311 | LIBS="$LIBS -lm" | |
6312 | # use different functions to avoid configure caching | |
6313 | have_sin=0 | |
6314 | have_ceil=0 | |
6315 | AC_CHECK_FUNCS(sin, have_sin=1) | |
6316 | AC_CHECK_FUNCS(ceil, have_ceil=1) | |
6317 | AC_MSG_CHECKING(if floating point functions link with -lm) | |
6318 | if test "$have_sin" = 1 -a "$have_ceil" = 1; then | |
6319 | AC_MSG_RESULT(yes) | |
6320 | else | |
6321 | AC_MSG_RESULT(no) | |
6322 | # not sure we should warn the user, crash, etc. | |
6323 | fi | |
6324 | fi | |
3d63bc3a | 6325 | |
e90c1d2a | 6326 | if test "$wxUSE_GUI" = "yes"; then |
3d63bc3a | 6327 | |
3a922bb4 RL |
6328 | dnl TODO add checks that these samples will really compile (i.e. all the |
6329 | dnl library features they need are present) | |
6330 | ||
8bce5cda MW |
6331 | dnl TODO some samples are never built so far: mfc (requires VC++) |
6332 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS artprov controls dialogs drawing \ | |
6333 | dynamic erase event exec font image minimal mobile \ | |
6334 | mobile/wxedit mobile/styles propsize render \ | |
6335 | richedit rotate shaped vscroll widgets" | |
b625909c VS |
6336 | |
6337 | if test "$wxUSE_MONOLITHIC" != "yes"; then | |
6338 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS console" | |
6339 | fi | |
0b78747f | 6340 | if test "$TOOLKIT" = "MSW"; then |
8bce5cda MW |
6341 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS regtest" |
6342 | if test "$wxUSE_UNIVERSAL" != "yes"; then | |
6343 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ownerdrw nativdlg" | |
6344 | fi | |
6345 | fi | |
6346 | if test "$TOOLKIT" = "PM" -a "$wxUSE_UNIVERSAL" != "yes"; then | |
6347 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS ownerdrw" | |
0b78747f | 6348 | fi |
3a922bb4 RL |
6349 | else |
6350 | SAMPLES_SUBDIRS="console" | |
e90c1d2a | 6351 | fi |
9a98a854 | 6352 | |
8e877c19 | 6353 | |
9a98a854 | 6354 | dnl all -I options we must pass to the compiler |
44a5856d | 6355 | dnl |
77ffb593 | 6356 | dnl note that the order is somewhat important: wxWidgets headers should |
eea650d8 VS |
6357 | dnl come first and the one with setup.h should be before $(top_srcdir)/include |
6358 | dnl in case the latter contains setup.h used by non-autoconf makefiles (e.g. | |
6359 | dnl CodeWarrior): | |
ceec2216 | 6360 | INCLUDES="-I\${top_builddir}lib/wx/include/${TOOLCHAIN_FULLNAME} \ |
eea650d8 | 6361 | -I\${top_srcdir}/include $TOOLKIT_INCLUDE" |
9a98a854 | 6362 | |
77ffb593 | 6363 | dnl C/C++ compiler options used to compile wxWidgets |
fddeb06b VS |
6364 | if test "$GXX" = yes ; then |
6365 | dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror" | |
f8fbc92b VZ |
6366 | CWARNINGS="-Wall" |
6367 | CXXWARNINGS="$CWARNINGS -Wno-ctor-dtor-privacy" | |
fddeb06b VS |
6368 | dnl should enable this one day... |
6369 | dnl CXXWARNINGS="-Wall -Werror" | |
6370 | fi | |
6371 | ||
6372 | EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE" | |
6373 | ||
6374 | dnl remove the extra white space from the cc/c++/ld options | |
0c3c69fc | 6375 | CPPFLAGS=`echo $WXDEBUG_DEFINE $INCLUDES $CPPFLAGS` |
f8fbc92b | 6376 | CFLAGS=`echo $CODE_GEN_FLAGS $EXTRA_CFLAGS $CFLAGS $CWARNINGS` |
0c3c69fc | 6377 | CXXFLAGS=`echo $CODE_GEN_FLAGS $CODE_GEN_FLAGS_CXX $EXTRA_CFLAGS $CXXFLAGS $CXXWARNINGS` |
c74dc163 | 6378 | |
95986553 DE |
6379 | if test "x$MWCC" = "xyes"; then |
6380 | dnl Correct MW 8.3 to be more similar to GCC. In particular we | |
6381 | dnl must use <regex.h> from system not our local copy on OS X, | |
6382 | dnl but must use local not system on OS 9. | |
6383 | dnl The following should make all -I paths usable for <> includes | |
6384 | dnl while first checking in real system paths. With 8.3 using | |
6385 | dnl -gccincludes it will actually check local paths before system | |
6386 | dnl even for <> which is totally wrong. | |
6387 | ||
6388 | dnl Note that because this absolutely needs to be before any -I | |
6389 | dnl that we have to tack it on to the end of the compiler commandline. | |
6390 | CC="$CC -cwd source -I-" | |
6391 | CXX="$CXX -cwd source -I-" | |
6392 | fi | |
6393 | ||
fddeb06b | 6394 | |
0c3c69fc | 6395 | LIBS=`echo $LIBS` |
c74dc163 | 6396 | EXTRALIBS="$LDFLAGS $LDFLAGS_VERSIONING $LIBS $DMALLOC_LIBS" |
672abd7a | 6397 | EXTRALIBS_XML="$EXPAT_LINK" |
3527f29c | 6398 | EXTRALIBS_HTML="$MSPACK_LINK" |
bb41dcbe | 6399 | EXTRALIBS_ODBC="$ODBC_LINK" |
c74dc163 | 6400 | if test "$wxUSE_GUI" = "yes"; then |
2e350179 | 6401 | EXTRALIBS_GUI=`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_GNOMEPRINT` |
c74dc163 | 6402 | fi |
34b08d2c VS |
6403 | if test "$wxUSE_OPENGL" = "yes"; then |
6404 | EXTRALIBS_OPENGL="$LDFLAGS_GL $OPENGL_LIBS" | |
6405 | fi | |
c74dc163 | 6406 | |
fddeb06b VS |
6407 | LDFLAGS="$LDFLAGS $PROFILE" |
6408 | ||
f6bcfd97 | 6409 | dnl wxGTK does not need TOOLKIT includes in wx-config |
63e7762e | 6410 | if test "$wxUSE_GTK" = 1; then |
3d63bc3a | 6411 | WXCONFIG_INCLUDE= |
f6bcfd97 BP |
6412 | else |
6413 | WXCONFIG_INCLUDE="$TOOLKIT_INCLUDE" | |
6414 | fi | |
6415 | ||
67c13b6c VS |
6416 | WXCONFIG_EXTRALIBS="$LIBS" |
6417 | ||
6418 | dnl wx-config must output builtin 3rd party libs in --libs in static build: | |
6419 | if test "$wxUSE_REGEX" = "builtin" ; then | |
74802184 | 6420 | wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty" |
67c13b6c VS |
6421 | fi |
6422 | if test "$wxUSE_EXPAT" = "builtin" ; then | |
74802184 | 6423 | wxconfig_3rdparty="expat $wxconfig_3rdparty" |
67c13b6c VS |
6424 | fi |
6425 | if test "$wxUSE_ODBC" = "builtin" ; then | |
74802184 | 6426 | wxconfig_3rdparty="odbc $wxconfig_3rdparty" |
67c13b6c VS |
6427 | fi |
6428 | if test "$wxUSE_LIBTIFF" = "builtin" ; then | |
74802184 | 6429 | wxconfig_3rdparty="tiff $wxconfig_3rdparty" |
67c13b6c VS |
6430 | fi |
6431 | if test "$wxUSE_LIBJPEG" = "builtin" ; then | |
74802184 | 6432 | wxconfig_3rdparty="jpeg $wxconfig_3rdparty" |
67c13b6c VS |
6433 | fi |
6434 | if test "$wxUSE_LIBPNG" = "builtin" ; then | |
74802184 | 6435 | wxconfig_3rdparty="png $wxconfig_3rdparty" |
67c13b6c VS |
6436 | fi |
6437 | if test "$wxUSE_ZLIB" = "builtin" ; then | |
74802184 | 6438 | wxconfig_3rdparty="zlib $wxconfig_3rdparty" |
bb41dcbe | 6439 | fi |
67c13b6c VS |
6440 | |
6441 | for i in $wxconfig_3rdparty ; do | |
74802184 | 6442 | WXCONFIG_EXTRALIBS="-lwx${i}${lib_debug_suffix}${WX_LIB_FLAVOUR}-${WX_RELEASE}${HOST_SUFFIX} $WXCONFIG_EXTRALIBS" |
67c13b6c VS |
6443 | done |
6444 | ||
6445 | ||
fe0895cf VS |
6446 | if test "x$wxUSE_UNIVERSAL" = "xyes" ; then |
6447 | WXUNIV=1 | |
6448 | else | |
6449 | WXUNIV=0 | |
6450 | fi | |
6451 | ||
6452 | AC_SUBST(wxUSE_ZLIB) | |
6453 | AC_SUBST(wxUSE_REGEX) | |
672abd7a | 6454 | AC_SUBST(wxUSE_EXPAT) |
fe0895cf VS |
6455 | AC_SUBST(wxUSE_ODBC) |
6456 | AC_SUBST(wxUSE_LIBJPEG) | |
6457 | AC_SUBST(wxUSE_LIBPNG) | |
6458 | AC_SUBST(wxUSE_LIBTIFF) | |
6459 | ||
08b3ac36 VS |
6460 | if test $wxUSE_MONOLITHIC = "yes" ; then |
6461 | MONOLITHIC=1 | |
6462 | else | |
6463 | MONOLITHIC=0 | |
6464 | fi | |
fe0895cf | 6465 | |
f93ca9fd VS |
6466 | if test $wxUSE_PLUGINS = "yes" ; then |
6467 | USE_PLUGINS=1 | |
6468 | else | |
6469 | USE_PLUGINS=0 | |
6470 | fi | |
6471 | ||
bb41dcbe VS |
6472 | if test $wxUSE_ODBC != "no" ; then |
6473 | USE_ODBC=1 | |
6474 | else | |
6475 | USE_ODBC=0 | |
6476 | fi | |
6477 | ||
16358932 VZ |
6478 | if test "$wxUSE_DEBUGREPORT" = "yes" ; then |
6479 | USE_QA=1 | |
6480 | else | |
6481 | USE_QA=0 | |
6482 | fi | |
6483 | ||
029b47ad VS |
6484 | if test $wxUSE_OFFICIAL_BUILD = "yes" ; then |
6485 | OFFICIAL_BUILD=1 | |
6486 | else | |
6487 | OFFICIAL_BUILD=0 | |
6488 | fi | |
6489 | ||
8ee2dd05 VS |
6490 | AC_SUBST(VENDOR) |
6491 | AC_SUBST(OFFICIAL_BUILD) | |
ceec2216 RL |
6492 | AC_SUBST(WX_FLAVOUR) |
6493 | AC_SUBST(WX_LIB_FLAVOUR) | |
8ee2dd05 | 6494 | |
fe0895cf VS |
6495 | AC_SUBST(WXUNIV) |
6496 | AC_SUBST(MONOLITHIC) | |
f93ca9fd | 6497 | AC_SUBST(USE_PLUGINS) |
cf615ebb | 6498 | AC_SUBST(LIBS) |
fe0895cf | 6499 | AC_SUBST(EXTRALIBS) |
672abd7a | 6500 | AC_SUBST(EXTRALIBS_XML) |
3527f29c | 6501 | AC_SUBST(EXTRALIBS_HTML) |
bb41dcbe | 6502 | AC_SUBST(EXTRALIBS_ODBC) |
c74dc163 | 6503 | AC_SUBST(EXTRALIBS_GUI) |
34b08d2c | 6504 | AC_SUBST(EXTRALIBS_OPENGL) |
f93ca9fd VS |
6505 | AC_SUBST(EXTRALIBS_SDL) |
6506 | AC_SUBST(WITH_PLUGIN_SDL) | |
7c72311f | 6507 | AC_SUBST(EXTRALIBS_GNOMEPRINT) |
fe0895cf VS |
6508 | AC_SUBST(UNICODE) |
6509 | AC_SUBST(BUILD) | |
6c67131a VS |
6510 | AC_SUBST(DEBUG_INFO) |
6511 | AC_SUBST(DEBUG_FLAG) | |
aa961a51 | 6512 | TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr "[[A-Z]]" "[[a-z]]"` |
fe0895cf VS |
6513 | AC_SUBST(TOOLKIT_LOWERCASE) |
6514 | AC_SUBST(TOOLKIT_VERSION) | |
6515 | AC_SUBST(SAMPLES_RPATH_FLAG) | |
ef0add05 | 6516 | AC_SUBST(SAMPLES_RPATH_POSTLINK) |
ea66c762 | 6517 | AC_SUBST(HOST_SUFFIX) |
670ec357 VS |
6518 | AC_SUBST(CPPUNIT_CFLAGS) |
6519 | AC_SUBST(CPPUNIT_LIBS) | |
fe0895cf | 6520 | |
4d4ff94c VZ |
6521 | case "$TOOLKIT" in |
6522 | GTK) | |
6523 | TOOLKIT_USER="GTK+" | |
6524 | if test "$WXGTK20" = 1; then | |
6525 | TOOLKIT_USER="$TOOLKIT_USER 2" | |
6526 | fi | |
6527 | ;; | |
6528 | ||
6529 | *) | |
6530 | TOOLKIT_USER=$TOOLKIT_LOWERCASE | |
6531 | ;; | |
6532 | esac | |
6533 | ||
564872cf | 6534 | AC_BAKEFILE([m4_include(autoconf_inc.m4)]) |
fe0895cf | 6535 | |
ceec2216 RL |
6536 | if test "$wxUSE_SHARED" = "yes"; then |
6537 | ||
6538 | dnl We get the shared build linker from bakefile, since it | |
6539 | dnl moved all the logic for this out of this file and into | |
6540 | dnl its own macro. But it can't decide on whether to return | |
6541 | dnl us $(VAR), ${VAR}, or the present expansion of VAR. | |
6542 | dnl So normalise and expand everything here now, because its | |
6543 | dnl not going to change inside wx-config anyway. | |
6544 | sanitised_bakefile_mess=`echo "$SHARED_LD_CXX" | tr -d '()'` | |
6545 | EXE_LINKER=`eval echo "$sanitised_bakefile_mess"` | |
6546 | ||
73213bc3 SN |
6547 | dnl Need addtional flag on OS/2, so override bakefiles value |
6548 | dnl (there currently is no suitable variable to which the | |
6549 | dnl missing flags could be added, AFAICS. SN, 18.12.2004. ) | |
6550 | case "${host}" in | |
6551 | *-pc-os2_emx | *-pc-os2-emx ) | |
6552 | SHARED_LD_CC="`pwd`/dllar.sh -name-mangler-script ./dllnames.sh -libf INITINSTANCE -libf TERMINSTANCE -o" | |
6553 | SHARED_LD_CXX="`pwd`/dllar.sh -name-mangler-script ./dllnames.sh -libf INITINSTANCE -libf TERMINSTANCE -o" | |
6554 | cp -p ${srcdir}/src/os2/dllnames.sh . | |
6555 | cp -p ${srcdir}/src/os2/dllar.sh . | |
6556 | ;; | |
6557 | esac | |
ceec2216 RL |
6558 | else |
6559 | ||
6560 | dnl No bakefile support for static builds, but this should be ok for most. | |
6561 | EXE_LINKER="$CXX -o" | |
6562 | ||
6563 | fi | |
f47af52b SN |
6564 | if test "$wxUSE_OMF" = "yes"; then |
6565 | case "${host}" in | |
6566 | *-pc-os2_emx | *-pc-os2-emx ) | |
6567 | LDFLAGS="$LDFLAGS -Zlinker /EXEPACK" | |
6568 | LDFLAGS_GUI="-Zlinker /PMTYPE:PM" | |
6569 | WXCONFIG_LDFLAGS_GUI="-Zlinker /PMTYPE:PM" | |
6570 | ;; | |
6571 | esac | |
6572 | fi | |
88e30f2b | 6573 | |
c08ebc62 DE |
6574 | dnl According to Vaclav, if NO_GCC_PRAGMA is used for any reason it needs to |
6575 | dnl be in wx-config output. Not doing so could result in link problems. | |
74b84332 | 6576 | GCC_PRAGMA_FLAGS="" |
c08ebc62 DE |
6577 | PCH_FLAGS="" |
6578 | dnl Find out if we have to define NO_GCC_PRAGMA and WX_PRECOMP: | |
6579 | if test $GCC_PCH = 1 ; then | |
6580 | GCC_PRAGMA_FLAGS="-DNO_GCC_PRAGMA" | |
6581 | PCH_FLAGS="-DWX_PRECOMP" | |
6582 | else | |
45842500 VS |
6583 | case "${host}" in |
6584 | powerpc-*-darwin* ) | |
6585 | dnl Some Apple's GCC version are broken and can't handle the | |
6586 | dnl pragmas: | |
74b84332 | 6587 | GCC_PRAGMA_FLAGS="-DNO_GCC_PRAGMA" |
45842500 | 6588 | ;; |
5bef7b58 SN |
6589 | *-*-mingw32* ) |
6590 | dnl MinGW GCC versions >= 3.2 have problems with | |
bea8e651 | 6591 | dnl static member of classes derived from templates |
1f344abf | 6592 | dnl in combination with #pragma interface/implementation |
bea8e651 | 6593 | dnl (the test case uses 4 files) |
1f344abf VS |
6594 | dnl ... and with exceptions handling (undefined symbols needed |
6595 | dnl to correctly calls dtors when unwinding) as well | |
6596 | if test "$wxUSE_STL" = "yes" -o \ | |
6597 | "$wxUSE_NO_EXCEPTIONS" != "yes" -o \ | |
6598 | "$wxUSE_NO_RTTI" != "yes"; then | |
5bef7b58 SN |
6599 | AC_MSG_CHECKING([if this MinGW version needs -DNO_GCC_PRAGMA]) |
6600 | AC_TRY_COMPILE([], | |
6601 | [#if !(__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)) | |
6602 | #error "Not GCC 3.2 or greater" | |
6603 | #endif | |
6604 | ], | |
6605 | [GCC_PRAGMA_FLAGS="-DNO_GCC_PRAGMA" | |
6606 | AC_MSG_RESULT([yes])], | |
6607 | [AC_MSG_RESULT([no])]) | |
6608 | fi | |
6609 | ;; | |
6610 | *-pc-os2_emx | *-pc-os2-emx ) | |
6611 | dnl GCC versions ported to OS/2 have similar problems with | |
6612 | dnl static member of classes in combination with STL and | |
6613 | dnl pragma interface/implementation | |
6614 | if test "$wxUSE_STL" = "yes"; then | |
6615 | AC_MSG_CHECKING([if this gcc version needs -DNO_GCC_PRAGMA]) | |
bea8e651 | 6616 | AC_TRY_COMPILE([], |
1f344abf | 6617 | [#if !(__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)) |
bea8e651 MB |
6618 | #error "Not GCC 3.2 or greater" |
6619 | #endif | |
6620 | ], | |
74b84332 | 6621 | [GCC_PRAGMA_FLAGS="-DNO_GCC_PRAGMA" |
bea8e651 MB |
6622 | AC_MSG_RESULT([yes])], |
6623 | [AC_MSG_RESULT([no])]) | |
6624 | fi | |
6625 | ;; | |
45842500 VS |
6626 | esac |
6627 | fi | |
d2083416 | 6628 | CPPFLAGS="$PCH_FLAGS $GCC_PRAGMA_FLAGS $CPPFLAGS" |
45842500 | 6629 | |
e694c22c | 6630 | |
70d1b3cf VZ |
6631 | dnl for convenience, sort the samples in alphabetical order |
6632 | dnl | |
6633 | dnl FIXME For some mysterious reasons, sometimes the directories are duplicated | |
6634 | dnl in this list - hence uniq. But normally, this shouldn't be needed! | |
d6a55c4b VZ |
6635 | dnl |
6636 | dnl Unfortunately, there is a bug in OS/2's tr, such that | |
d51e8205 SN |
6637 | dnl tr ' ' '\n' introduces DOS-like line breaks, whereas tr '\n' ' ' |
6638 | dnl only removes the Unix-like part of the introduced line break. | |
6639 | SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '| tr -d '\r'`" | |
6640 | ||
ceec2216 RL |
6641 | dnl subtle bakefile goop. |
6642 | dnl Used in wx-config now too, as its STATIC_FLAG with different makeup. | |
6643 | dnl I wish we would have called it something less likely to clash with | |
6644 | dnl things though. | |
6645 | AC_SUBST(SHARED) | |
70d1b3cf | 6646 | |
9a98a854 | 6647 | dnl global options |
cf615ebb VS |
6648 | AC_SUBST(WX_LIBRARY_BASENAME_NOGUI) |
6649 | AC_SUBST(WX_LIBRARY_BASENAME_GUI) | |
2bffed64 | 6650 | |
9a98a854 VZ |
6651 | dnl debugging options |
6652 | AC_SUBST(WXDEBUG_DEFINE) | |
6653 | ||
6654 | dnl toolkit options | |
dad6c0ea VZ |
6655 | AC_SUBST(USE_GUI) |
6656 | AC_SUBST(AFMINSTALL) | |
2b5f62a0 | 6657 | AC_SUBST(WIN32INSTALL) |
9a98a854 | 6658 | AC_SUBST(TOOLKIT) |
9a98a854 | 6659 | AC_SUBST(TOOLKIT_DIR) |
3a922bb4 | 6660 | AC_SUBST(TOOLCHAIN_NAME) |
ceec2216 | 6661 | AC_SUBST(TOOLCHAIN_FULLNAME) |
3a922bb4 | 6662 | AC_SUBST(TOOLCHAIN_DEFS) |
00c81359 | 6663 | AC_SUBST(TOOLCHAIN_DLL_DEFS) |
3a922bb4 RL |
6664 | |
6665 | dnl wx-config options | |
77e13408 | 6666 | AC_SUBST(host_alias) |
3a922bb4 | 6667 | AC_SUBST(cross_compiling) |
ceec2216 RL |
6668 | AC_SUBST(WIDGET_SET) |
6669 | AC_SUBST(WX_RELEASE) | |
6670 | AC_SUBST(WX_VERSION) | |
6671 | AC_SUBST(WX_SUBVERSION) | |
6672 | AC_SUBST(WX_CHARTYPE) | |
6673 | AC_SUBST(WX_DEBUGTYPE) | |
67c13b6c | 6674 | AC_SUBST(WXCONFIG_EXTRALIBS) |
f6bcfd97 | 6675 | AC_SUBST(WXCONFIG_INCLUDE) |
3bd8fb5f | 6676 | AC_SUBST(WXCONFIG_RPATH) |
ffef10f6 | 6677 | AC_SUBST(WXCONFIG_LDFLAGS_GUI) |
e26c13cf | 6678 | AC_SUBST(WX_LARGEFILE_FLAGS) |
74b84332 | 6679 | AC_SUBST(GCC_PRAGMA_FLAGS) |
f0290fca VS |
6680 | AC_SUBST(CODE_GEN_FLAGS) |
6681 | AC_SUBST(CODE_GEN_FLAGS_CXX) | |
ceec2216 | 6682 | AC_SUBST(EXE_LINKER) |
2224580a VZ |
6683 | |
6684 | dnl distribution vars | |
a4aad961 | 6685 | AC_SUBST(GUIDIST) |
2224580a | 6686 | AC_SUBST(DISTDIR) |
073478b3 | 6687 | |
9a98a854 | 6688 | dnl additional subdirectories where we will build |
9a98a854 | 6689 | AC_SUBST(SAMPLES_SUBDIRS) |
9a98a854 | 6690 | |
e694c22c VZ |
6691 | dnl additional libraries and linker settings |
6692 | AC_SUBST(LDFLAGS) | |
62d0491b | 6693 | AC_SUBST(LDFLAGS_GL) |
f6bcfd97 | 6694 | AC_SUBST(OPENGL_LIBS) |
3d63bc3a | 6695 | AC_SUBST(DMALLOC_LIBS) |
2b5f62a0 | 6696 | AC_SUBST(WX_VERSION_TAG) |
9a98a854 | 6697 | |
32832908 | 6698 | dnl additional resurces settings |
32832908 VZ |
6699 | AC_SUBST(RESCOMP) |
6700 | AC_SUBST(RESFLAGS) | |
3a922bb4 | 6701 | AC_SUBST(RESPROGRAMOBJ) |
e95edd8d GD |
6702 | AC_SUBST(WX_RESOURCES_MACOSX_ASCII) |
6703 | AC_SUBST(WX_RESOURCES_MACOSX_DATA) | |
3a922bb4 | 6704 | |
2f51a9ec | 6705 | dnl additional for Mac OS X |
2f51a9ec | 6706 | AC_SUBST(DEREZ) |
2f51a9ec | 6707 | AC_SUBST(LIBWXMACRES) |
36825681 GD |
6708 | AC_SUBST(MACRESCOMP) |
6709 | AC_SUBST(MACSETFILE) | |
6710 | AC_SUBST(MACRESWXCONFIG) | |
32832908 | 6711 | |
2b5f62a0 VZ |
6712 | dnl other tools |
6713 | AC_SUBST(GCC) | |
32832908 | 6714 | AC_SUBST(DLLTOOL) |
885d4bf5 | 6715 | |
e6cc62c6 | 6716 | |
9a98a854 | 6717 | dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE |
156b2523 | 6718 | dnl itself (this macro is required if SUBDIRS variable is used in Makefile.am |
9a98a854 VZ |
6719 | dnl - and we do use it) |
6720 | AC_PROG_MAKE_SET | |
6721 | ||
014e19de | 6722 | |
ceec2216 | 6723 | AC_CONFIG_HEADERS([lib/wx/include/${TOOLCHAIN_FULLNAME}/wx/setup.h:setup.h.in]) |
2aa88730 | 6724 | |
ceec2216 RL |
6725 | AC_CONFIG_FILES([ lib/wx/config/${TOOLCHAIN_FULLNAME}:wx-config.in ], |
6726 | [ chmod +x lib/wx/config/${TOOLCHAIN_FULLNAME} ], | |
6727 | [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}" ]) | |
e6cc62c6 | 6728 | |
ceec2216 RL |
6729 | AC_CONFIG_FILES([ lib/wx/config/inplace-${TOOLCHAIN_FULLNAME}:wx-config-inplace.in ], |
6730 | [ chmod +x lib/wx/config/inplace-${TOOLCHAIN_FULLNAME} ], | |
6731 | [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}" ]) | |
6732 | ||
6733 | AC_CONFIG_FILES([ version-script Makefile ]) | |
6734 | ||
6735 | AC_CONFIG_COMMANDS([ wx-config | |
6736 | ], | |
6737 | [ rm -f wx-config | |
6738 | ${LN_S} lib/wx/config/inplace-${TOOLCHAIN_FULLNAME} wx-config | |
6739 | ], | |
6740 | [ TOOLCHAIN_FULLNAME="${TOOLCHAIN_FULLNAME}" | |
6741 | LN_S="${LN_S}" | |
6742 | ]) | |
9a98a854 | 6743 | |
0506bbbf RL |
6744 | dnl This would give us us build dir that in every significant way |
6745 | dnl resembles an installed wx in prefix=$builddir. It is troublesome | |
6746 | dnl though in this form because AC_CONFIG_LINKS will fail for directories | |
6747 | dnl on platforms that do not have symlinks. | |
6748 | dnl AC_CONFIG_LINKS([ include/wx-$WX_RELEASE$WX_FLAVOUR:include ]) | |
6749 | dnl AC_CONFIG_LINKS([ contrib/include ]) | |
9103d280 | 6750 | |
e6cc62c6 | 6751 | |
08b3ac36 | 6752 | dnl Configure samples, contrib etc. directories, but only if they are present: |
6c3e36af VZ |
6753 | if test "$wxUSE_GUI" = "yes"; then |
6754 | SUBDIRS="samples demos utils contrib" | |
6755 | else dnl we build wxBase only | |
6756 | dnl there are no wxBase programs in contrib nor demos | |
6757 | SUBDIRS="samples utils" | |
6758 | fi | |
670ec357 | 6759 | dnl Add tests to the list of subdirs if cppunit 1.8.0+ is detected |
c2218763 | 6760 | AM_PATH_CPPUNIT(1.8.0, [SUBDIRS="$SUBDIRS tests"]) |
6c3e36af | 6761 | |
166263e6 | 6762 | for subdir in `echo $SUBDIRS`; do |
08b3ac36 | 6763 | if test -d ${srcdir}/${subdir} ; then |
6c3e36af | 6764 | if test "$wxUSE_GUI" = "yes"; then |
166263e6 VZ |
6765 | if test ${subdir} = "samples"; then |
6766 | dnl only take those samples which compile in the current | |
6767 | dnl configuration and which exist | |
8772a1a7 | 6768 | makefiles="samples/Makefile.in $makefiles" |
166263e6 VZ |
6769 | for sample in `echo $SAMPLES_SUBDIRS`; do |
6770 | if test -d $srcdir/samples/$sample; then | |
6771 | makefiles="samples/$sample/Makefile.in $makefiles" | |
6772 | fi | |
6773 | done | |
6774 | else dnl assume that everything compiles for utils &c | |
6775 | makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)` | |
6776 | fi | |
6c3e36af VZ |
6777 | else dnl we build wxBase only |
6778 | dnl don't take all samples/utils, just those which build with | |
6779 | dnl wxBase | |
6780 | if test ${subdir} = "samples"; then | |
8772a1a7 | 6781 | makefiles="samples/Makefile.in samples/console/Makefile.in" |
670ec357 | 6782 | elif test ${subdir} = "utils"; then |
6537ccf8 VS |
6783 | makefiles="" |
6784 | for util in HelpGen tex2rtf ; do | |
6785 | if test -d $srcdir/utils/$util ; then | |
6786 | makefiles="utils/$util/Makefile.in \ | |
6787 | utils/$util/src/Makefile.in \ | |
6788 | $makefiles" | |
6789 | fi | |
6790 | done | |
670ec357 VS |
6791 | else dnl assume that everything compiles for tests |
6792 | makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)` | |
6c3e36af VZ |
6793 | fi |
6794 | fi | |
6795 | ||
08b3ac36 VS |
6796 | for mkin in $makefiles ; do |
6797 | mk=`echo $mkin | sed 's/Makefile\.in/Makefile/g'` | |
6798 | AC_CONFIG_FILES([$mk]) | |
6799 | done | |
6800 | fi | |
6801 | done | |
e6cc62c6 VS |
6802 | |
6803 | ||
6804 | AC_OUTPUT | |
6805 | ||
4d4ff94c | 6806 | dnl report how we have been configured |
2b5f62a0 | 6807 | echo |
77ffb593 | 6808 | echo "Configured wxWidgets ${WX_VERSION} for \`${host}'" |
2b5f62a0 | 6809 | echo "" |
4d4ff94c | 6810 | echo " Which GUI toolkit should wxWidgets use? ${TOOLKIT_USER:-base only}" |
77ffb593 | 6811 | echo " Should wxWidgets be compiled into single library? ${wxUSE_MONOLITHIC:-yes}" |
2b5f62a0 | 6812 | |
77ffb593 JS |
6813 | echo " Should wxWidgets be compiled in debug mode? ${wxUSE_DEBUG:-no}" |
6814 | echo " Should wxWidgets be linked as a shared library? ${wxUSE_SHARED:-no}" | |
6815 | echo " Should wxWidgets be compiled in Unicode mode? ${wxUSE_UNICODE:-no}" | |
2b5f62a0 | 6816 | |
77ffb593 JS |
6817 | echo " What level of wxWidgets compatibility should be enabled?" |
6818 | echo " wxWidgets 2.2 ${WXWIN_COMPATIBILITY_2_2:-no}" | |
6819 | echo " wxWidgets 2.4 ${WXWIN_COMPATIBILITY_2_4:-yes}" | |
0c98a14e | 6820 | |
77ffb593 | 6821 | echo " Which libraries should wxWidgets use?" |
2b5f62a0 VZ |
6822 | echo " jpeg ${wxUSE_LIBJPEG-none}" |
6823 | echo " png ${wxUSE_LIBPNG-none}" | |
6824 | echo " regex ${wxUSE_REGEX}" | |
6825 | echo " tiff ${wxUSE_LIBTIFF-none}" | |
89fe663f VZ |
6826 | if test "$wxUSE_X11" = 1 -o "$wxUSE_MOTIF" = 1; then |
6827 | echo " xpm ${wxUSE_LIBXPM-none}" | |
6828 | fi | |
2b5f62a0 | 6829 | echo " zlib ${wxUSE_ZLIB}" |
fd3d7534 | 6830 | echo " odbc ${wxUSE_ODBC}" |
672abd7a | 6831 | echo " expat ${wxUSE_EXPAT}" |
3527f29c | 6832 | echo " libmspack ${wxUSE_LIBMSPACK}" |
f93ca9fd | 6833 | echo " sdl ${wxUSE_LIBSDL}" |
6d1ce868 | 6834 | echo " gnomeprint ${wxUSE_LIBGNOMEPRINT-none}" |
2b5f62a0 VZ |
6835 | |
6836 | echo "" | |
6837 | ||
6838 | dnl vi: set et sts=4 sw=4 com=\:dnl: |