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