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