]>
Commit | Line | Data |
---|---|---|
9a98a854 VZ |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_REVISION($Id$)dnl | |
3 | ||
4 | dnl --------------------------------------------------------------------------- | |
5 | dnl | |
6 | dnl Top-level configure.in for wxWindows by Robert Roebling, Phil Blecker and | |
7 | dnl Vadim Zeitlin | |
8 | dnl | |
9 | dnl This script is under the wxWindows licence. | |
10 | dnl | |
11 | dnl Version: $Id$ | |
bcd2b961 | 12 | dnl --------------------------------------------------------------------------- |
9a98a854 VZ |
13 | |
14 | dnl --------------------------------------------------------------------------- | |
15 | dnl initialization | |
16 | dnl --------------------------------------------------------------------------- | |
17 | ||
18 | dnl the file passed to AC_INIT should be speicific to our package | |
19 | AC_INIT(wx-config.in) | |
20 | ||
21 | AC_CANONICAL_HOST | |
2b6f061f RR |
22 | |
23 | dnl When making releases do: | |
24 | dnl | |
25 | dnl WX_RELEASE_NUMBER += 1 | |
26 | dnl WX_INTERFACE_AGE += 1 | |
27 | dnl WX_BINARY_AGE += 1 | |
28 | dnl | |
29 | dnl if any functions have been added, do: | |
30 | dnl | |
0180dad6 | 31 | dnl WX_INTERFACE_AGE = 0 |
9a98a854 VZ |
32 | |
33 | WX_MAJOR_VERSION_NUMBER=2 | |
34 | WX_MINOR_VERSION_NUMBER=1 | |
35 | WX_RELEASE_NUMBER=0 | |
36 | ||
2b6f061f RR |
37 | WX_INTERFACE_AGE=0 |
38 | WX_BINARY_AGE=0 | |
39 | ||
40 | WX_VERSION=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER.$WX_RELEASE_NUMBER | |
41 | ||
42 | AM_INIT_AUTOMAKE(wxWindows, $WX_VERSION) | |
43 | ||
44 | dnl libtool versioning | |
45 | LT_RELEASE=$WX_MAJOR_VERSION_NUMBER.$WX_MINOR_VERSION_NUMBER | |
46 | LT_CURRENT=`expr $WX_RELEASE_NUMBER - $WX_INTERFACE_AGE` | |
47 | LT_REVISION=$WX_INTERFACE_AGE | |
48 | LT_AGE=`expr $WX_BINARY_AGE - $WX_INTERFACE_AGE` | |
49 | AC_SUBST(LT_RELEASE) | |
50 | AC_SUBST(LT_CURRENT) | |
51 | AC_SUBST(LT_REVISION) | |
52 | AC_SUBST(LT_AGE) | |
53 | ||
9a98a854 VZ |
54 | dnl FIXME this hack suppresses automake 1.4 warning about @LTLIBOBJS@ being |
55 | dnl never defined in configure.in (remove these lines to see what I'm | |
56 | dnl speaking about) - Tom Tromey <tromey@cygnus.com> told me that it will | |
57 | dnl be fixed in the next release. | |
58 | LIBOBJS= | |
bcd2b961 | 59 | LIBOBJS="$LIBOBJS ../common/extended.o" |
9a98a854 VZ |
60 | |
61 | dnl ------------------------------------------------------------------------ | |
62 | dnl Check platform (host system) | |
63 | dnl ------------------------------------------------------------------------ | |
64 | ||
65 | dnl assume Unix | |
66 | USE_UNIX=1 | |
67 | USE_LINUX= | |
68 | USE_SGI= | |
69 | USE_HPUX= | |
70 | USE_SYSV= | |
71 | USE_SVR4= | |
72 | USE_AIX= | |
73 | USE_SUN= | |
74 | USE_SOLARIS= | |
75 | USE_SUNOS= | |
76 | USE_ALPHA= | |
77 | USE_OSF= | |
78 | USE_BSD= | |
79 | USE_FREEBSD= | |
80 | USE_VMS= | |
81 | USE_ULTRIX= | |
82 | USE_CYGWIN= | |
83 | USE_MINGW32= | |
84 | USE_DATA_GENERAL= | |
85 | ||
ced859c3 VZ |
86 | dnl the list of all available toolkits |
87 | ALL_TOOLKITS="CYGWIN GTK MINGW MOTIF WINE" | |
88 | ||
9a98a854 VZ |
89 | dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones |
90 | dnl which are either yes or no | |
91 | DEFAULT_wxUSE_GTK=0 | |
92 | DEFAULT_wxUSE_MOTIF=0 | |
93 | DEFAULT_wxUSE_MSW=0 | |
5a92d200 | 94 | DEFAULT_wxUSE_WINE=0 |
9a98a854 | 95 | |
143121c5 VZ |
96 | dnl these are the values which are really default for the given platform - |
97 | dnl they're not cached and are only used if no --with-toolkit was given *and* | |
98 | dnl nothing was found in the cache | |
99 | DEFAULT_DEFAULT_wxUSE_GTK=0 | |
100 | DEFAULT_DEFAULT_wxUSE_MOTIF=0 | |
101 | DEFAULT_DEFAULT_wxUSE_MSW=0 | |
5a92d200 | 102 | DEFAULT_DEFAULT_wxUSE_WINE=0 |
143121c5 | 103 | |
9a98a854 VZ |
104 | case "${host}" in |
105 | *-hp-hpux* ) | |
106 | USE_HPUX=1 | |
143121c5 | 107 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
108 | AC_DEFINE(__HPUX__) |
109 | ;; | |
110 | *-*-linux* ) | |
111 | USE_LINUX=1 | |
112 | AC_DEFINE(__LINUX__) | |
113 | TMP=`uname -m` | |
114 | if test "x$TMP" = "xalpha"; then | |
115 | USE_ALPHA=1 | |
116 | AC_DEFINE(__ALPHA__) | |
117 | fi | |
143121c5 | 118 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
9a98a854 VZ |
119 | ;; |
120 | *-*-irix5* | *-*-irix6* ) | |
121 | USE_SGI=1 | |
122 | USE_SVR4=1 | |
123 | AC_DEFINE(__SGI__) | |
124 | AC_DEFINE(__SVR4__) | |
143121c5 | 125 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
126 | ;; |
127 | *-*-solaris2* ) | |
128 | USE_SUN=1 | |
129 | USE_SOLARIS=1 | |
130 | USE_SVR4=1 | |
131 | AC_DEFINE(__SUN__) | |
132 | AC_DEFINE(__SOLARIS__) | |
133 | AC_DEFINE(__SVR4__) | |
143121c5 | 134 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
135 | ;; |
136 | *-*-sunos4* ) | |
137 | USE_SUN=1 | |
138 | USE_SUNOS=1 | |
139 | USE_BSD=1 | |
140 | AC_DEFINE(__SUN__) | |
141 | AC_DEFINE(__SUNOS__) | |
142 | AC_DEFINE(__BSD__) | |
143121c5 | 143 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
144 | ;; |
145 | *-*-freebsd* | *-*-netbsd*) | |
146 | USE_BSD=1 | |
147 | USE_FREEBSD=1 | |
148 | AC_DEFINE(__FREEBSD__) | |
149 | AC_DEFINE(__BSD__) | |
143121c5 | 150 | DEFAULT_DEFAULT_wxUSE_GTK=1 |
9a98a854 VZ |
151 | ;; |
152 | *-*-osf* ) | |
153 | USE_ALPHA=1 | |
154 | USE_OSF=1 | |
155 | AC_DEFINE(__ALPHA__) | |
156 | AC_DEFINE(__OSF__) | |
143121c5 | 157 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
158 | ;; |
159 | *-*-dgux5* ) | |
160 | USE_ALPHA=1 | |
161 | USE_SVR4=1 | |
162 | AC_DEFINE(__ALPHA__) | |
163 | AC_DEFINE(__SVR4__) | |
143121c5 | 164 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
165 | ;; |
166 | *-*-sysv5* ) | |
167 | USE_SYSV=1 | |
168 | USE_SVR4=1 | |
169 | AC_DEFINE(__SYSV__) | |
170 | AC_DEFINE(__SVR4__) | |
143121c5 | 171 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 VZ |
172 | ;; |
173 | *-*-aix* ) | |
174 | USE_AIX=1 | |
175 | USE_SYSV=1 | |
176 | USE_SVR4=1 | |
177 | AC_DEFINE(__AIX__) | |
178 | AC_DEFINE(__SYSV__) | |
179 | AC_DEFINE(__SVR4__) | |
143121c5 | 180 | DEFAULT_DEFAULT_wxUSE_MOTIF=1 |
9a98a854 | 181 | ;; |
91b8de8d RR |
182 | *-pc-os2_emx ) |
183 | AC_DEFINE(__EMX__) | |
184 | ;; | |
9a98a854 VZ |
185 | *) |
186 | AC_MSG_ERROR(unknown system type $(host).) | |
187 | esac | |
188 | ||
189 | if test "$USE_UNIX" = 1 ; then | |
190 | wxUSE_UNIX=yes | |
191 | AC_DEFINE(__UNIX__) | |
09fbacf7 | 192 | EXTRA_VPATH="$EXTRA_VPATH:\$(srcdir)/../unix" |
bcd2b961 | 193 | SRC_SUBDIRS="$SRC_SUBDIRS unix" |
ff684c98 | 194 | INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS unix" |
9a98a854 VZ |
195 | fi |
196 | ||
197 | dnl Linux: test for libc5/glibc2: glibc2 has gettext() included | |
198 | if test "$USE_LINUX" = 1; then | |
199 | AC_CHECK_LIB(c,gettext,AC_DEFINE(wxHAVE_GLIBC2)) | |
200 | fi | |
201 | ||
202 | dnl TODO cross-compiling for Windows not yet supported | |
203 | AC_DEFINE(__UNIX__) | |
204 | ||
205 | dnl if eval "test $USE_CYGWIN != 1 -a $USE_MINGW32 != 1"; then | |
206 | dnl AC_DEFINE(__UNIX__) | |
207 | dnl else | |
208 | dnl AC_DEFINE(__WINDOWS__) | |
209 | dnl DEFAULT_wxUSE_MSW=1 | |
210 | dnl fi | |
211 | ||
212 | dnl --------------------------------------------------------------------------- | |
213 | dnl command line options for configure | |
214 | dnl --------------------------------------------------------------------------- | |
215 | ||
216 | dnl the default values for all options - we collect them all here to simplify | |
217 | dnl modification of the default values (for example, if the defaults for some | |
218 | dnl platform should be changed, it can be done here too) | |
219 | dnl | |
220 | dnl NB: see also DEFAULT_wxUSE<toolkit> variables defined above | |
221 | ||
143121c5 VZ |
222 | WX_ARG_CACHE_INIT |
223 | ||
9a98a854 VZ |
224 | dnl useful to test the compilation with minimum options, define as 0 for normal |
225 | dnl usage | |
226 | DEBUG_CONFIGURE=0 | |
227 | if test $DEBUG_CONFIGURE = 1; then | |
228 | DEFAULT_wxUSE_THREADS=yes | |
229 | ||
230 | DEFAULT_wxUSE_OPTIMISE=no | |
231 | DEFAULT_wxUSE_PROFILE=no | |
232 | DEFAULT_wxUSE_DEBUG_FLAG=yes | |
233 | DEFAULT_wxUSE_DEBUG_INFO=yes | |
234 | DEFAULT_wxUSE_DEBUG_GDB=yes | |
235 | DEFAULT_wxUSE_MEM_TRACING=no | |
143121c5 | 236 | DEFAULT_wxUSE_DEBUG_CONTEXT=no |
9a98a854 VZ |
237 | DEFAULT_wxUSE_DMALLOC=no |
238 | DEFAULT_wxUSE_APPLE_IEEE=no | |
239 | ||
240 | DEFAULT_wxUSE_LOG=yes | |
241 | ||
242 | DEFAULT_wxUSE_GUI=yes | |
243 | ||
244 | DEFAULT_wxUSE_ZLIB=no | |
245 | DEFAULT_wxUSE_LIBPNG=no | |
246 | DEFAULT_wxUSE_LIBGIF=no | |
247 | DEFAULT_wxUSE_LIBJPEG=no | |
248 | DEFAULT_wxUSE_ODBC=no | |
249 | ||
250 | DEFAULT_wxUSE_FILE=no | |
251 | DEFAULT_wxUSE_TEXTFILE=no | |
252 | DEFAULT_wxUSE_TIMEDATE=no | |
2749089a | 253 | DEFAULT_wxUSE_WAVE=no |
9a98a854 VZ |
254 | DEFAULT_wxUSE_INTL=no |
255 | DEFAULT_wxUSE_CONFIG=no | |
256 | DEFAULT_wxUSE_STREAMS=no | |
257 | DEFAULT_wxUSE_SOCKETS=no | |
258 | DEFAULT_wxUSE_SERIAL=no | |
259 | DEFAULT_wxUSE_JOYSTICK=no | |
260 | DEFAULT_wxUSE_DYNLIB_CLASS=no | |
261 | DEFAULT_wxUSE_LONGLONG=no | |
262 | ||
263 | DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=no | |
264 | DEFAULT_wxUSE_NORMALIZED_PS_FONTS=no | |
265 | DEFAULT_wxUSE_POSTSCRIPT=no | |
266 | ||
267 | DEFAULT_wxUSE_X_RESOURCES=no | |
268 | DEFAULT_wxUSE_CLIPBOARD=no | |
269 | DEFAULT_wxUSE_TOOLTIPS=no | |
270 | DEFAULT_wxUSE_DRAG_AND_DROP=no | |
271 | DEFAULT_wxUSE_SPLINES=no | |
272 | ||
273 | DEFAULT_wxUSE_MDI_ARCHITECTURE=no | |
274 | DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=no | |
275 | DEFAULT_wxUSE_PRINTING_ARCHITECTURE=no | |
276 | ||
277 | DEFAULT_wxUSE_PROLOGIO=no | |
278 | DEFAULT_wxUSE_RESOURCES=no | |
279 | DEFAULT_wxUSE_CONSTRAINTS=no | |
280 | DEFAULT_wxUSE_IPC=no | |
281 | DEFAULT_wxUSE_HELP=no | |
282 | DEFAULT_wxUSE_WXTREE=no | |
283 | DEFAULT_wxUSE_METAFILE=no | |
284 | ||
285 | DEFAULT_wxUSE_COMMONDLGS=no | |
286 | DEFAULT_wxUSE_MINIFRAME=no | |
287 | DEFAULT_wxUSE_VALIDATORS=yes | |
288 | ||
289 | DEFAULT_wxUSE_ACCEL=no | |
290 | DEFAULT_wxUSE_CARET=no | |
291 | DEFAULT_wxUSE_BMPBUTTON=no | |
292 | DEFAULT_wxUSE_CHECKBOX=no | |
293 | DEFAULT_wxUSE_CHECKLST=no | |
294 | DEFAULT_wxUSE_COMBOBOX=no | |
295 | DEFAULT_wxUSE_GAUGE=no | |
296 | DEFAULT_wxUSE_GRID=no | |
297 | DEFAULT_wxUSE_IMAGLIST=no | |
298 | DEFAULT_wxUSE_LISTBOX=no | |
299 | DEFAULT_wxUSE_LISTCTRL=no | |
300 | DEFAULT_wxUSE_NOTEBOOK=no | |
301 | DEFAULT_wxUSE_RADIOBOX=no | |
302 | DEFAULT_wxUSE_RADIOBTN=no | |
e602002e | 303 | DEFAULT_wxUSE_SASH=no |
9a98a854 VZ |
304 | DEFAULT_wxUSE_SCROLLBAR=no |
305 | DEFAULT_wxUSE_SLIDER=no | |
306 | DEFAULT_wxUSE_SPINBTN=no | |
307 | DEFAULT_wxUSE_SPLITTER=no | |
308 | DEFAULT_wxUSE_STATBMP=no | |
309 | DEFAULT_wxUSE_STATBOX=no | |
310 | DEFAULT_wxUSE_STATLINE=no | |
311 | DEFAULT_wxUSE_STATUSBAR=yes | |
312 | DEFAULT_wxUSE_TABDIALOG=no | |
313 | DEFAULT_wxUSE_TOOLBAR=no | |
314 | DEFAULT_wxUSE_TREECTRL=no | |
315 | ||
316 | DEFAULT_wxUSE_UNICODE=no | |
317 | DEFAULT_wxUSE_WCSRTOMBS=no | |
318 | else | |
319 | DEFAULT_wxUSE_THREADS=yes | |
320 | ||
321 | DEFAULT_wxUSE_OPTIMISE=yes | |
322 | DEFAULT_wxUSE_PROFILE=no | |
323 | DEFAULT_wxUSE_DEBUG_FLAG=no | |
324 | DEFAULT_wxUSE_DEBUG_INFO=no | |
325 | DEFAULT_wxUSE_DEBUG_GDB=no | |
326 | DEFAULT_wxUSE_MEM_TRACING=no | |
143121c5 | 327 | DEFAULT_wxUSE_DEBUG_CONTEXT=no |
9a98a854 VZ |
328 | DEFAULT_wxUSE_DMALLOC=no |
329 | DEFAULT_wxUSE_APPLE_IEEE=yes | |
330 | ||
331 | DEFAULT_wxUSE_LOG=yes | |
332 | ||
333 | DEFAULT_wxUSE_GUI=yes | |
334 | ||
335 | DEFAULT_wxUSE_ZLIB=yes | |
336 | DEFAULT_wxUSE_LIBPNG=yes | |
337 | DEFAULT_wxUSE_LIBGIF=yes | |
338 | DEFAULT_wxUSE_LIBJPEG=yes | |
339 | DEFAULT_wxUSE_ODBC=no | |
340 | ||
341 | DEFAULT_wxUSE_FILE=yes | |
342 | DEFAULT_wxUSE_TEXTFILE=yes | |
343 | DEFAULT_wxUSE_TIMEDATE=yes | |
2749089a | 344 | DEFAULT_wxUSE_WAVE=no |
9a98a854 VZ |
345 | DEFAULT_wxUSE_INTL=yes |
346 | DEFAULT_wxUSE_CONFIG=yes | |
347 | DEFAULT_wxUSE_STREAMS=yes | |
348 | DEFAULT_wxUSE_SOCKETS=yes | |
349 | DEFAULT_wxUSE_SERIAL=yes | |
350 | DEFAULT_wxUSE_JOYSTICK=yes | |
351 | DEFAULT_wxUSE_DYNLIB_CLASS=yes | |
352 | DEFAULT_wxUSE_LONGLONG=no | |
353 | ||
354 | DEFAULT_wxUSE_AFM_FOR_POSTSCRIPT=yes | |
355 | DEFAULT_wxUSE_NORMALIZED_PS_FONTS=yes | |
356 | DEFAULT_wxUSE_POSTSCRIPT=yes | |
357 | ||
358 | DEFAULT_wxUSE_X_RESOURCES=no | |
359 | DEFAULT_wxUSE_CLIPBOARD=yes | |
360 | DEFAULT_wxUSE_TOOLTIPS=yes | |
361 | DEFAULT_wxUSE_DRAG_AND_DROP=yes | |
362 | DEFAULT_wxUSE_SPLINES=yes | |
363 | ||
364 | DEFAULT_wxUSE_MDI_ARCHITECTURE=yes | |
365 | DEFAULT_wxUSE_DOC_VIEW_ARCHITECTURE=yes | |
366 | DEFAULT_wxUSE_PRINTING_ARCHITECTURE=yes | |
367 | ||
368 | DEFAULT_wxUSE_PROLOGIO=yes | |
369 | DEFAULT_wxUSE_RESOURCES=yes | |
370 | DEFAULT_wxUSE_CONSTRAINTS=yes | |
371 | DEFAULT_wxUSE_IPC=yes | |
372 | DEFAULT_wxUSE_HELP=yes | |
373 | DEFAULT_wxUSE_WXTREE=yes | |
374 | DEFAULT_wxUSE_METAFILE=yes | |
375 | ||
376 | DEFAULT_wxUSE_COMMONDLGS=yes | |
377 | DEFAULT_wxUSE_MINIFRAME=yes | |
378 | DEFAULT_wxUSE_VALIDATORS=yes | |
379 | ||
380 | DEFAULT_wxUSE_ACCEL=yes | |
381 | DEFAULT_wxUSE_CARET=yes | |
382 | DEFAULT_wxUSE_BMPBUTTON=yes | |
383 | DEFAULT_wxUSE_CHECKBOX=yes | |
384 | DEFAULT_wxUSE_CHECKLST=yes | |
385 | DEFAULT_wxUSE_COMBOBOX=yes | |
386 | DEFAULT_wxUSE_GAUGE=yes | |
387 | DEFAULT_wxUSE_GRID=yes | |
388 | DEFAULT_wxUSE_IMAGLIST=yes | |
389 | DEFAULT_wxUSE_LISTBOX=yes | |
390 | DEFAULT_wxUSE_LISTCTRL=yes | |
391 | DEFAULT_wxUSE_NOTEBOOK=yes | |
392 | DEFAULT_wxUSE_RADIOBOX=yes | |
393 | DEFAULT_wxUSE_RADIOBTN=yes | |
e602002e | 394 | DEFAULT_wxUSE_SASH=yes |
9a98a854 VZ |
395 | DEFAULT_wxUSE_SCROLLBAR=yes |
396 | DEFAULT_wxUSE_SLIDER=yes | |
397 | DEFAULT_wxUSE_SPINBTN=yes | |
398 | DEFAULT_wxUSE_SPLITTER=yes | |
399 | DEFAULT_wxUSE_STATBMP=yes | |
400 | DEFAULT_wxUSE_STATBOX=yes | |
401 | DEFAULT_wxUSE_STATLINE=yes | |
402 | DEFAULT_wxUSE_STATUSBAR=yes | |
403 | DEFAULT_wxUSE_TABDIALOG=no | |
404 | DEFAULT_wxUSE_TOOLBAR=yes | |
405 | DEFAULT_wxUSE_TREECTRL=yes | |
406 | ||
407 | DEFAULT_wxUSE_UNICODE=no | |
408 | DEFAULT_wxUSE_WCSRTOMBS=no | |
409 | fi | |
410 | ||
143121c5 | 411 | dnl WX_ARG_WITH should be used to select whether an external package will be |
9a98a854 | 412 | dnl used or not, to configure compile-time features of this package itself, |
143121c5 | 413 | dnl use WX_ARG_ENABLE instead |
9a98a854 VZ |
414 | |
415 | dnl ============================ | |
416 | dnl external package dependecies | |
417 | dnl ============================ | |
418 | ||
143121c5 VZ |
419 | dnl TODO should support these options! |
420 | dnl | |
421 | dnl AC_ARG_WITH(gtk-prefix, [ --with-gtk-prefix=PFX prefix where GTK is installed], | |
422 | dnl gtk_config_prefix="$withval", gtk_config_prefix="") | |
423 | dnl AC_ARG_WITH(gtk-exec-prefix, | |
424 | dnl [ --with-gtk-exec-prefix=PFX exec prefix where GTK is installed], gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="") | |
425 | ||
426 | dnl these options use AC_ARG_WITH and not WX_ARG_WITH on purpose - we cache | |
427 | dnl these values manually | |
ced859c3 | 428 | for toolkit in `echo $ALL_TOOLKITS`; do |
143121c5 VZ |
429 | LINE=`grep "wxUSE_$toolkit" ${wx_arg_cache_file}` |
430 | if test "x$LINE" != x ; then | |
431 | has_toolkit_in_cache=1 | |
432 | eval "DEFAULT_$LINE" | |
ced859c3 | 433 | eval "CACHE_$toolkit=1" |
143121c5 VZ |
434 | fi |
435 | done | |
436 | ||
ced859c3 VZ |
437 | AC_ARG_WITH(gtk, [ --with-gtk use GTK+], [wxUSE_GTK="$withval" CACHE_GTK=1 TOOLKIT_GIVEN=1]) |
438 | AC_ARG_WITH(motif, [ --with-motif use Motif/Lesstif], [wxUSE_MOTIF="$withval" CACHE_MOTIF=1 TOOLKIT_GIVEN=1]) | |
439 | AC_ARG_WITH(wine, [ --with-wine use WINE], [wxUSE_WINE="$withval" CACHE_WINE=1 TOOLKIT_GIVEN=1]) | |
440 | AC_ARG_WITH(cygwin, [ --with-cygwin use Cygwin for MS-Windows], [wxUSE_CYGWIN="$withval" CACHE_CYGWIN=1 TOOLKIT_GIVEN=1]) | |
441 | AC_ARG_WITH(mingw, [ --with-mingw use GCC Minimal MS-Windows], [wxUSE_MINGW="$withval" CACHE_MINGW=1 TOOLKIT_GIVEN=1]) | |
143121c5 VZ |
442 | |
443 | WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (www.letters.com/dmalloc)], wxUSE_DMALLOC) | |
444 | WX_ARG_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB) | |
445 | WX_ARG_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG) | |
446 | WX_ARG_WITH(libgif, [ --with-libgif use libgif (GIF file format)], wxUSE_LIBGIF) | |
447 | WX_ARG_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG) | |
448 | WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL) | |
449 | WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC) | |
9a98a854 VZ |
450 | |
451 | dnl ==================== | |
452 | dnl compile-time options | |
453 | dnl ==================== | |
454 | ||
455 | dnl --------------------------------------------------------------------------- | |
456 | dnl compile options | |
457 | dnl --------------------------------------------------------------------------- | |
458 | ||
143121c5 | 459 | WX_ARG_ENABLE(optimise, [ --enable-optimise create optimised code], wxUSE_OPTIMISE) |
143121c5 | 460 | WX_ARG_ENABLE(debug, [ --enable-debug same as debug_flag and debug_info], wxUSE_DEBUG) |
70d1b3cf VZ |
461 | |
462 | if test "$wxUSE_DEBUG" = "yes"; then | |
463 | DEFAULT_wxUSE_DEBUG_FLAG=yes | |
464 | DEFAULT_wxUSE_DEBUG_INFO=yes | |
465 | elif test "$wxUSE_DEBUG" = "no"; then | |
466 | DEFAULT_wxUSE_DEBUG_FLAG=no | |
467 | DEFAULT_wxUSE_DEBUG_INFO=no | |
468 | fi | |
469 | ||
143121c5 VZ |
470 | WX_ARG_ENABLE(debug_flag, [ --enable-debug_flag set __WXDEBUG__ flag (recommended for developers!)], wxUSE_DEBUG_FLAG) |
471 | WX_ARG_ENABLE(debug_info, [ --enable-debug_info create code with debugging information], wxUSE_DEBUG_INFO) | |
472 | WX_ARG_ENABLE(debug_gdb, [ --enable-debug_gdb create code with extra GDB debugging information], wxUSE_DEBUG_GDB) | |
473 | WX_ARG_ENABLE(debug_cntxt, [ --enable-debug_cntxt use wxDebugContext], wxUSE_DEBUG_CONTEXT) | |
474 | WX_ARG_ENABLE(mem_tracing, [ --enable-mem_tracing create code with memory tracing], wxUSE_MEM_TRACING) | |
475 | WX_ARG_ENABLE(profile, [ --enable-profile create code with profiling information], wxUSE_PROFILE) | |
9a98a854 VZ |
476 | |
477 | dnl --------------------------------------------------------------------------- | |
478 | dnl --disable-gui will build only non-GUI part of wxWindows | |
479 | dnl | |
480 | dnl NB: this is still in testing stage, don't use if you don't know what you're | |
481 | dnl doing | |
482 | dnl --------------------------------------------------------------------------- | |
483 | ||
143121c5 | 484 | WX_ARG_ENABLE(gui, [ --enable-gui use GUI classes], wxUSE_GUI) |
9a98a854 VZ |
485 | |
486 | dnl --------------------------------------------------------------------------- | |
487 | dnl (small) optional non GUI classes | |
488 | dnl --------------------------------------------------------------------------- | |
489 | ||
143121c5 VZ |
490 | WX_ARG_ENABLE(intl, [ --enable-intl use internationalization system], wxUSE_INTL) |
491 | WX_ARG_ENABLE(config, [ --enable-config use wxConfig (and derived) classes], wxUSE_CONFIG) | |
492 | WX_ARG_ENABLE(sockets, [ --enable-sockets use socket/network classes], wxUSE_SOCKETS) | |
493 | WX_ARG_ENABLE(ipc, [ --enable-ipc use interprocess communication (wxSocket etc.)], wxUSE_IPC) | |
494 | WX_ARG_ENABLE(apple_ieee, [ --enable-apple_ieee use the Apple IEEE codec], wxUSE_APPLE_IEEE) | |
495 | WX_ARG_ENABLE(timedate, [ --enable-timedate use date/time classes], wxUSE_TIMEDATE) | |
2749089a | 496 | WX_ARG_ENABLE(wave, [ --enable-wave use wxWave class], wxUSE_WAVE) |
143121c5 VZ |
497 | WX_ARG_ENABLE(fraction, [ --enable-fraction use wxFraction class], wxUSE_FRACTION) |
498 | WX_ARG_ENABLE(dynlib, [ --enable-dynlib use wxLibrary class for DLL loading], wxUSE_DYNLIB_CLASS) | |
499 | WX_ARG_ENABLE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG) | |
500 | WX_ARG_ENABLE(log, [ --enable-log use logging system], wxUSE_LOG) | |
501 | WX_ARG_ENABLE(streams, [ --enable-streams use wxStream etc classes], wxUSE_STREAMS) | |
502 | WX_ARG_ENABLE(file, [ --enable-file use wxFile classes], wxUSE_FILE) | |
503 | WX_ARG_ENABLE(textfile, [ --enable-textfile use wxTextFile classes], wxUSE_TEXTFILE) | |
504 | WX_ARG_ENABLE(unicode, [ --enable-unicode compile wxString with Unicode support], wxUSE_UNICODE) | |
505 | WX_ARG_ENABLE(wcsrtombs, [ --enable-wcsrtombs use wcsrtombs instead of buggy (GNU libc1/Linux libc5) wcstombs], wxUSE_WCSRTOMBS) | |
ced859c3 | 506 | WX_ARG_ENABLE(wxprintfv, [ --enable-wxprintfv use wxWindows implementation of vprintf()], wxUSE_EXPERIMENTAL_PRINTF) |
143121c5 | 507 | WX_ARG_ENABLE(joystick, [ --enable-joystick compile in joystick support (Linux only)], wxUSE_JOYSTICK) |
9a98a854 VZ |
508 | |
509 | dnl --------------------------------------------------------------------------- | |
510 | dnl "big" options (i.e. those which change a lot of things throughout the library) | |
511 | dnl --------------------------------------------------------------------------- | |
512 | ||
143121c5 VZ |
513 | WX_ARG_ENABLE(threads, [ --enable-threads use threads], wxUSE_THREADS) |
514 | WX_ARG_ENABLE(serial, [ --enable-serial use class serialization], wxUSE_SERIAL) | |
9a98a854 VZ |
515 | |
516 | dnl --------------------------------------------------------------------------- | |
517 | dnl "big" GUI options | |
518 | dnl --------------------------------------------------------------------------- | |
519 | ||
143121c5 VZ |
520 | WX_ARG_ENABLE(docview, [ --enable-docview use document view architecture], wxUSE_DOC_VIEW_ARCHITECTURE) |
521 | WX_ARG_ENABLE(help, [ --enable-help use help (using external browser at present)], wxUSE_HELP) | |
522 | WX_ARG_ENABLE(constraints, [ --enable-constraints use layout-constraints system], wxUSE_CONSTRAINTS) | |
523 | WX_ARG_ENABLE(printarch, [ --enable-printarch use printing architecture], wxUSE_PRINTING_ARCHITECTURE) | |
524 | WX_ARG_ENABLE(mdi, [ --enable-mdi use multiple document interface architecture], wxUSE_MDI_ARCHITECTURE) | |
9a98a854 VZ |
525 | |
526 | dnl --------------------------------------------------------------------------- | |
527 | dnl PostScript options | |
528 | dnl --------------------------------------------------------------------------- | |
143121c5 | 529 | WX_ARG_ENABLE(postscript, [ --enable-postscript use wxPostscriptDC device context (default for gtk+)], wxUSE_POSTSCRIPT) |
9a98a854 VZ |
530 | |
531 | dnl VZ: these options seem to be always on, if someone wants to change it please do | |
143121c5 VZ |
532 | dnl WX_ARG_ENABLE(PS-normalized, [ --enable-PS-normalized use normalized PS fonts], dnl wxUSE_NORMALIZED_PS_FONTS) |
533 | dnl WX_ARG_ENABLE(afmfonts, [ --enable-afmfonts use Adobe Font Metric Font table], dnl wxUSE_AFM_FOR_POSTSCRIPT) | |
9a98a854 VZ |
534 | |
535 | dnl --------------------------------------------------------------------------- | |
536 | dnl resources | |
537 | dnl --------------------------------------------------------------------------- | |
143121c5 VZ |
538 | WX_ARG_ENABLE(prologio, [ --enable-prologio use Prolog IO library], wxUSE_PROLOGIO) |
539 | WX_ARG_ENABLE(resources, [ --enable-resources use wxWindows resources], wxUSE_RESOURCES) | |
540 | ||
541 | WX_ARG_ENABLE(xresources, [ --enable-xresources use X resources for save (default for gtk+)], wxUSE_X_RESOURCES) | |
9a98a854 | 542 | |
9a98a854 VZ |
543 | dnl --------------------------------------------------------------------------- |
544 | dnl IPC &c | |
545 | dnl --------------------------------------------------------------------------- | |
9a98a854 | 546 | |
143121c5 VZ |
547 | WX_ARG_ENABLE(clipboard, [ --enable-clipboard use wxClipboard classes], wxUSE_CLIPBOARD) |
548 | WX_ARG_ENABLE(dnd, [ --enable-dnd use Drag'n'Drop classes], wxUSE_DRAG_AND_DROP) | |
549 | ||
550 | dnl TODO: doesn't work yet | |
551 | WX_ARG_ENABLE(wxtree, [ --enable-wxtree make wxTree library], wxUSE_WXTREE) | |
9a98a854 VZ |
552 | |
553 | dnl --------------------------------------------------------------------------- | |
554 | dnl optional GUI controls (in alphabetical order except the first one) | |
555 | dnl --------------------------------------------------------------------------- | |
556 | ||
143121c5 | 557 | WX_ARG_ENABLE(controls, [ --enable-controls use all usual controls], wxUSE_CONTROLS) |
9a98a854 VZ |
558 | |
559 | dnl even with --enable-controls, some may be disabled by giving | |
560 | dnl --disable-<control> later on the command line - but by default all will be | |
561 | dnl used (and vice versa) | |
562 | if test "$wxUSE_CONTROLS" = "yes"; then | |
563 | DEFAULT_wxUSE_ACCEL=yes | |
564 | DEFAULT_wxUSE_CARET=yes | |
565 | DEFAULT_wxUSE_COMBOBOX=yes | |
566 | DEFAULT_wxUSE_BMPBUTTON=yes | |
567 | DEFAULT_wxUSE_CHECKBOX=yes | |
568 | DEFAULT_wxUSE_CHECKLISTBOX=yes | |
569 | DEFAULT_wxUSE_GAUGE=yes | |
570 | DEFAULT_wxUSE_GRID=yes | |
571 | DEFAULT_wxUSE_IMAGLIST=yes | |
572 | DEFAULT_wxUSE_LISTBOX=yes | |
573 | DEFAULT_wxUSE_LISTCTRL=yes | |
574 | DEFAULT_wxUSE_NOTEBOOK=yes | |
575 | DEFAULT_wxUSE_RADIOBOX=yes | |
576 | DEFAULT_wxUSE_RADIOBTN=yes | |
577 | DEFAULT_wxUSE_SASH=yes | |
578 | DEFAULT_wxUSE_SCROLLBAR=yes | |
579 | DEFAULT_wxUSE_SLIDER=yes | |
580 | DEFAULT_wxUSE_SPINBTN=yes | |
581 | DEFAULT_wxUSE_SPLITTER=yes | |
582 | DEFAULT_wxUSE_STATBMP=yes | |
583 | DEFAULT_wxUSE_STATBOX=yes | |
584 | DEFAULT_wxUSE_STATLINE=yes | |
585 | DEFAULT_wxUSE_STATUSBAR=yes | |
586 | DEFAULT_wxUSE_TAB_DIALOG=yes | |
587 | DEFAULT_wxUSE_TOOLBAR=yes | |
588 | DEFAULT_wxUSE_TOOLTIPS=yes | |
589 | DEFAULT_wxUSE_TREECTRL=yes | |
590 | elif test "$wxUSE_CONTROLS" = "no"; then | |
591 | DEFAULT_wxUSE_ACCEL=no | |
592 | DEFAULT_wxUSE_CARET=no | |
593 | DEFAULT_wxUSE_COMBOBOX=no | |
594 | DEFAULT_wxUSE_BMPBUTTON=no | |
595 | DEFAULT_wxUSE_CHECKBOX=no | |
596 | DEFAULT_wxUSE_CHECKLISTBOX=no | |
597 | DEFAULT_wxUSE_GAUGE=no | |
598 | DEFAULT_wxUSE_GRID=no | |
599 | DEFAULT_wxUSE_IMAGLIST=no | |
600 | DEFAULT_wxUSE_LISTBOX=no | |
601 | DEFAULT_wxUSE_LISTCTRL=no | |
602 | DEFAULT_wxUSE_NOTEBOOK=no | |
603 | DEFAULT_wxUSE_RADIOBOX=no | |
604 | DEFAULT_wxUSE_RADIOBTN=no | |
605 | DEFAULT_wxUSE_SASH=no | |
606 | DEFAULT_wxUSE_SCROLLBAR=no | |
607 | DEFAULT_wxUSE_SLIDER=no | |
608 | DEFAULT_wxUSE_SPINBTN=no | |
609 | DEFAULT_wxUSE_SPLITTER=no | |
610 | DEFAULT_wxUSE_STATBMP=no | |
611 | DEFAULT_wxUSE_STATBOX=no | |
612 | DEFAULT_wxUSE_STATLINE=no | |
613 | DEFAULT_wxUSE_STATUSBAR=no | |
614 | DEFAULT_wxUSE_TAB_DIALOG=no | |
615 | DEFAULT_wxUSE_TOOLBAR=no | |
616 | DEFAULT_wxUSE_TOOLTIPS=no | |
617 | DEFAULT_wxUSE_TREECTRL=no | |
618 | fi | |
619 | ||
143121c5 VZ |
620 | WX_ARG_ENABLE(accel, [ --enable-accel use accelerators], wxUSE_ACCEL) |
621 | WX_ARG_ENABLE(caret, [ --enable-caret use wxCaret class], wxUSE_CARET) | |
622 | WX_ARG_ENABLE(bmpbutton, [ --enable-bmpbutton use wxBitmapButton class], wxUSE_BMPBUTTON) | |
623 | WX_ARG_ENABLE(checkbox, [ --enable-checkbox use wxCheckBox class], wxUSE_CHECKBOX) | |
624 | WX_ARG_ENABLE(checklst, [ --enable-checklst use wxCheckListBox (listbox with checkboxes) class], wxUSE_CHECKLST) | |
625 | WX_ARG_ENABLE(combobox, [ --enable-combobox use wxChoice and wxComboBox classes], wxUSE_COMBOBOX) | |
626 | WX_ARG_ENABLE(gauge, [ --enable-gauge use wxGauge class], wxUSE_GAUGE) | |
627 | WX_ARG_ENABLE(grid, [ --enable-grid use wxGrid class], wxUSE_GRID) | |
628 | WX_ARG_ENABLE(imaglist, [ --enable-imaglist use wxImageList class], wxUSE_IMAGLIST) | |
629 | WX_ARG_ENABLE(listbox, [ --enable-listbox use wxListBox class], wxUSE_LISTBOX) | |
630 | WX_ARG_ENABLE(listctrl, [ --enable-listctrl use wxListCtrl class], wxUSE_LISTCTRL) | |
631 | WX_ARG_ENABLE(notebook, [ --enable-notebook use wxNotebook class], wxUSE_NOTEBOOK) | |
632 | WX_ARG_ENABLE(radiobox, [ --enable-radiobox use wxRadioBox class], wxUSE_RADIOBOX) | |
633 | WX_ARG_ENABLE(radiobtn, [ --enable-radiobtn use wxRadioButton class], wxUSE_RADIOBTN) | |
634 | WX_ARG_ENABLE(sash, [ --enable-sash use wxSashWindow class], wxUSE_SASH) | |
635 | WX_ARG_ENABLE(scrollbar, [ --enable-scrollbar use wxScrollBar class and scrollable windows], wxUSE_SCROLLBAR) | |
636 | WX_ARG_ENABLE(slider, [ --enable-slider use wxSlider class], wxUSE_SLIDER) | |
637 | WX_ARG_ENABLE(spinbtn, [ --enable-spinbtn use wxSpinButton class], wxUSE_SPINBTN) | |
638 | WX_ARG_ENABLE(splitter, [ --enable-splitter use wxSplitterWindow class], wxUSE_SPLITTER) | |
639 | WX_ARG_ENABLE(statbmp, [ --enable-statbmp use wxStaticBitmap class], wxUSE_STATBMP) | |
640 | WX_ARG_ENABLE(statbox, [ --enable-statbox use wxStaticBox class], wxUSE_STATBOX) | |
641 | WX_ARG_ENABLE(statline, [ --enable-statline use wxStaticLine class], wxUSE_STATLINE) | |
642 | WX_ARG_ENABLE(statusbar, [ --enable-statusbar use wxStatusBar class], wxUSE_STATUSBAR) | |
643 | WX_ARG_ENABLE(tabdialog, [ --enable-tabdialog use wxTabControl class], wxUSE_TABDIALOG) | |
644 | WX_ARG_ENABLE(toolbar, [ --enable-toolbar use wxToolBar class], wxUSE_TOOLBAR) | |
645 | WX_ARG_ENABLE(treectrl, [ --enable-treectrl use wxTreeCtrl class], wxUSE_TREECTRL) | |
9a98a854 VZ |
646 | |
647 | dnl --------------------------------------------------------------------------- | |
648 | dnl misc GUI options | |
649 | dnl --------------------------------------------------------------------------- | |
650 | ||
143121c5 VZ |
651 | WX_ARG_ENABLE(commondlg, [ --enable-commondlg use common dialogs (wxDirDialog, wxProgressDialog, wxTextDialog, ...)], wxUSE_COMMONDLGS) |
652 | WX_ARG_ENABLE(miniframe, [ --enable-miniframe use wxMiniFrame class], wxUSE_MINIFRAME) | |
653 | WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUSE_TOOLTIPS) | |
654 | WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES) | |
655 | WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS) | |
656 | ||
657 | dnl cache the options values before (may be) aborting below | |
658 | WX_ARG_CACHE_FLUSH | |
9a98a854 VZ |
659 | |
660 | dnl check that no more than one toolkit is given and that if none are given that | |
661 | dnl we have a default one | |
efeb0365 | 662 | |
143121c5 VZ |
663 | AC_MSG_CHECKING(for toolkit) |
664 | ||
70d1b3cf VZ |
665 | if test "$TOOLKIT_GIVEN" = 1; then |
666 | dnl convert "yes" to 1 and "no" to 0 | |
ced859c3 | 667 | for toolkit in `echo $ALL_TOOLKITS`; do |
143121c5 VZ |
668 | var=wxUSE_$toolkit |
669 | eval "value=\$${var}" | |
670 | eval "$var=`echo \$value | sed -e "s/yes/1/" -e "s/no/0/"`" | |
671 | done | |
70d1b3cf VZ |
672 | else |
673 | dnl try to guess the most apropriate toolkit for this platform | |
ced859c3 | 674 | for toolkit in `echo $ALL_TOOLKITS`; do |
143121c5 VZ |
675 | if test "$has_toolkit_in_cache" != 1; then |
676 | var=DEFAULT_DEFAULT_wxUSE_$toolkit | |
677 | else | |
678 | var=DEFAULT_wxUSE_$toolkit | |
679 | fi | |
680 | eval "wxUSE_$toolkit=\$${var}" | |
681 | done | |
70d1b3cf | 682 | fi |
efeb0365 | 683 | |
ced859c3 VZ |
684 | dnl we suppose that expr exists... |
685 | NUM_TOOLKITS=`expr ${wxUSE_GTK:-0} + ${wxUSE_MOTIF:-0} + ${wxUSE_WINE:-0} + ${wxUSE_MINGW:-0} + ${wxUSE_CYGWIN:-0}` | |
9a98a854 VZ |
686 | |
687 | case "$NUM_TOOLKITS" in | |
688 | 1) | |
689 | ;; | |
690 | 0) | |
143121c5 | 691 | AC_MSG_ERROR(Please specify a toolkit - cannot determine the default for ${host}) |
9a98a854 VZ |
692 | ;; |
693 | *) | |
143121c5 | 694 | AC_MSG_ERROR(Please specify at most one toolkit (may be some are cached?)) |
9a98a854 VZ |
695 | esac |
696 | ||
143121c5 | 697 | dnl cache the wxUSE_<TOOLKIT> values too |
ced859c3 | 698 | for toolkit in `echo $ALL_TOOLKITS`; do |
143121c5 VZ |
699 | var=wxUSE_$toolkit |
700 | eval "value=\$${var}" | |
701 | if test "x$value" != x; then | |
ced859c3 VZ |
702 | cache_var=CACHE_$toolkit |
703 | eval "cache=\$${cache_var}" | |
704 | if test "$cache" = 1; then | |
705 | echo "$var=$value" >> ${wx_arg_cache_file} | |
706 | fi | |
143121c5 VZ |
707 | if test "$value" = 1; then |
708 | AC_MSG_RESULT(`echo $toolkit | tr [[A-Z]] [[a-z]]`) | |
709 | fi | |
710 | fi | |
711 | done | |
712 | ||
9a98a854 VZ |
713 | dnl --------------------------------------------------------------------------- |
714 | dnl Checks for programs | |
715 | dnl --------------------------------------------------------------------------- | |
716 | ||
717 | dnl flush the cache because checking for programs might abort | |
718 | AC_CACHE_SAVE | |
719 | ||
720 | dnl cross-compiling support: we're cross compiling if the build system is | |
721 | dnl different from the target one (assume host and target be always the same) | |
722 | if eval "test $host != $build"; then | |
723 | if eval "test $build != NONE"; then | |
724 | CC="$build-gcc" | |
725 | CXX="$build-g++" | |
726 | RANLIB="$build-ranlib" | |
727 | NM="$build-nm" | |
728 | fi | |
729 | fi | |
730 | ||
731 | dnl C-compiler checks | |
732 | dnl defines CC with the compiler to use | |
733 | dnl defines GCC with yes if using gcc | |
734 | dnl defines GCC empty if not using gcc | |
735 | dnl defines CFLAGS | |
736 | AC_PROG_CC | |
737 | ||
738 | CFLAGS=`echo "$CFLAGS" | sed 's/-g//g'` | |
739 | ||
740 | dnl what is the c-preprocessor | |
741 | dnl defines CPP with the c-preprocessor | |
742 | AC_PROG_CPP | |
743 | ||
744 | dnl is -traditional needed for correct compilations | |
745 | dnl adds -traditional for gcc if needed | |
746 | AC_PROG_GCC_TRADITIONAL | |
747 | ||
748 | AC_LANG_SAVE | |
749 | AC_LANG_CPLUSPLUS | |
750 | ||
751 | dnl C++-compiler checks | |
752 | dnl defines CXX with the compiler to use | |
753 | dnl defines GXX with yes if using gxx | |
754 | dnl defines GXX empty if not using gxx | |
755 | dnl defines CXXFLAGS | |
756 | AC_PROG_CXX | |
757 | ||
758 | dnl what is the C++-preprocessor | |
759 | dnl defines CXXCPP with the C++-preprocessor | |
760 | AC_PROG_CXXCPP | |
761 | ||
762 | CXXFLAGS=`echo "$CXXFLAGS" | sed 's/-g//g'` | |
763 | ||
764 | AC_LANG_RESTORE | |
765 | ||
766 | dnl ranlib command | |
767 | dnl defines RANLIB with the appropriate command | |
768 | AC_PROG_RANLIB | |
769 | ||
770 | dnl ar command | |
771 | dnl defines AR with the appropriate command | |
772 | AC_CHECK_PROG(AR, ar, ar, ar) | |
773 | ||
774 | dnl install checks | |
775 | dnl defines INSTALL with the appropriate command | |
776 | AC_PROG_INSTALL | |
777 | ||
9a98a854 VZ |
778 | dnl strip command |
779 | dnl defines STRIP as strip or nothing if not found | |
780 | AC_CHECK_PROG(STRIP, strip, strip, true) | |
781 | ||
782 | dnl check if VPATH works | |
783 | AC_MSG_CHECKING("make for VPATH support") | |
784 | dnl create Makefile | |
785 | cat - << EOF > confMake | |
786 | check : file | |
787 | cp \$? \$@ | |
788 | cp \$? final_file | |
789 | EOF | |
790 | ||
791 | if test ! -d sub ; then | |
792 | mkdir sub | |
793 | fi | |
794 | echo dummy > sub/file | |
795 | ${MAKE-make} -f confMake VPATH=sub 2> config.log > /dev/null | |
796 | RESULT=$? | |
797 | rm -f sub/file check final_file confMake | |
798 | rmdir sub | |
799 | if test "$RESULT" = 0; then | |
800 | AC_MSG_RESULT(yes) | |
801 | else | |
802 | AC_MSG_RESULT(no) | |
803 | AC_MSG_ERROR( | |
804 | You need a make-utility that is able to use the variable | |
805 | VPATH correctly. | |
806 | If your version of make does not support VPATH correctly, | |
807 | please install GNU-make (possibly as gmake), and start | |
808 | configure with the following command: | |
809 | export MAKE=gmake; ./configure for sh-type shells | |
810 | setenv MAKE gmake; ./configure for csh-type shells | |
811 | Also please do remember to use gmake in this case every time | |
812 | you are trying to compile. | |
813 | ) | |
814 | fi | |
815 | ||
816 | dnl YACC checks | |
817 | dnl defines YACC with the appropriate command | |
818 | AC_PROG_YACC | |
819 | ||
820 | dnl LEX checks | |
821 | dnl defines LEX with the appropriate command | |
822 | dnl defines LEXLIB with the appropriate library | |
823 | dnl this AM version (don't use AC_PROG_LEX!) also | |
824 | dnl defines YYTEXT_POINTER if yytext is char* | |
825 | dnl defines LEX_OUTPUT_ROOT as to the base of the | |
826 | dnl filename output by the lexer | |
827 | AM_PROG_LEX | |
828 | ||
c7114f59 VZ |
829 | dnl needed for making link to setup.h |
830 | AC_PROG_LN_S | |
831 | ||
9a98a854 VZ |
832 | dnl libtool checks (disable static libs by default, this takes too much time...) |
833 | AM_DISABLE_STATIC | |
834 | AM_PROG_LIBTOOL | |
835 | ||
836 | dnl --------------------------------------------------------------------------- | |
837 | dnl Define search path for includes and libraries: all headers and libs will be | |
838 | dnl looked for in all directories of this path | |
839 | dnl --------------------------------------------------------------------------- | |
840 | ||
841 | SEARCH_INCLUDE="\ | |
842 | /usr/Motif-1.2/include \ | |
843 | /usr/Motif-2.1/include \ | |
844 | \ | |
845 | /usr/include/Motif1.2 \ | |
846 | /opt/xpm/include/X11 \ | |
847 | \ | |
848 | /usr/Motif1.2/include \ | |
849 | /usr/dt/include \ | |
850 | /usr/include/Xm \ | |
851 | \ | |
852 | /usr/X11R6/include \ | |
853 | /usr/X11R5/include \ | |
854 | /usr/X11R4/include \ | |
855 | \ | |
856 | /usr/X11R6/lib \ | |
857 | /usr/X11R5/lib \ | |
858 | /usr/X11R4/lib \ | |
859 | \ | |
860 | /usr/include/X11R6 \ | |
861 | /usr/include/X11R5 \ | |
862 | /usr/include/X11R4 \ | |
863 | \ | |
864 | /usr/local/X11R6/include \ | |
865 | /usr/local/X11R5/include \ | |
866 | /usr/local/X11R4/include \ | |
867 | \ | |
868 | /usr/local/include/X11R6 \ | |
869 | /usr/local/include/X11R5 \ | |
870 | /usr/local/include/X11R4 \ | |
871 | \ | |
872 | /usr/X11/include \ | |
873 | /usr/include/X11 \ | |
874 | /usr/local/X11/include \ | |
875 | /usr/local/include/X11 \ | |
876 | \ | |
877 | /usr/X386/include \ | |
878 | /usr/x386/include \ | |
879 | /usr/XFree86/include/X11 \ | |
880 | \ | |
881 | /usr/include \ | |
5a92d200 RR |
882 | /usr/local/include \ |
883 | \ | |
9a98a854 | 884 | /usr/include/gtk \ |
5a92d200 | 885 | /usr/local/include/gtk \ |
9a98a854 | 886 | /usr/include/glib \ |
5a92d200 RR |
887 | /usr/local/include/glib \ |
888 | \ | |
889 | /usr/include/qt \ | |
890 | /usr/local/include/qt \ | |
891 | \ | |
892 | /usr/include/wine \ | |
893 | /usr/local/include/wine \ | |
894 | \ | |
9a98a854 VZ |
895 | /usr/unsupported/include \ |
896 | /usr/athena/include \ | |
897 | /usr/local/x11r5/include \ | |
898 | /usr/lpp/Xamples/include \ | |
899 | \ | |
9a98a854 VZ |
900 | /usr/openwin/include \ |
901 | /usr/openwin/share/include \ | |
902 | " | |
903 | ||
904 | SEARCH_LIB="`echo "$SEARCH_INCLUDE" | sed s/include/lib/g` " | |
905 | ||
906 | dnl ------------------------------------------------------------------------ | |
907 | dnl Check for libraries | |
908 | dnl ------------------------------------------------------------------------ | |
909 | ||
143121c5 | 910 | dnl flush the cache because checking for libraries below might abort |
9a98a854 VZ |
911 | AC_CACHE_SAVE |
912 | ||
9a98a854 VZ |
913 | dnl ---------------------------------------------------------------- |
914 | dnl search for toolkit (widget sets) | |
915 | dnl ---------------------------------------------------------------- | |
916 | ||
917 | TOOLKIT= | |
918 | TOOLKIT_DEF= | |
919 | TOOLKIT_DIR= | |
920 | TOOLKIT_INCLUDE= | |
921 | ||
922 | GUI_TK_LIBRARY= | |
923 | GUI_TK_LINK= | |
924 | ||
925 | WXGTK12= | |
926 | ||
5a92d200 RR |
927 | WXWINE= |
928 | ||
9a98a854 VZ |
929 | if test "$wxUSE_GTK" = 1; then |
930 | dnl avoid calling AM_PATH_GTK twice, so check first for the newer version and | |
931 | dnl only then, if it wasn't found, for an older one | |
932 | AM_PATH_GTK(1.2.0, WXGTK12=1) | |
933 | if test "$WXGTK12" != 1; then | |
934 | AM_PATH_GTK(1.0.0, , AC_MSG_ERROR(Is gtk-config in path and GTK+ is version 1.2.X or 1.0.X?)) | |
935 | fi | |
936 | ||
937 | TOOLKIT_INCLUDE="$GTK_CFLAGS" | |
938 | GUI_TK_LIBRARY="$GTK_LIBS" | |
9a98a854 | 939 | TOOLKIT=GTK |
9a98a854 VZ |
940 | fi |
941 | ||
5a92d200 RR |
942 | if test "$wxUSE_WINE" = 1; then |
943 | AC_MSG_CHECKING(for WINE includes) | |
944 | WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, windows.h) | |
945 | if test "$ac_find_includes" != "" ; then | |
946 | AC_MSG_RESULT(found $ac_find_includes) | |
d1c7e624 | 947 | TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE -I$ac_find_includes" |
5a92d200 RR |
948 | else |
949 | AC_MSG_RESULT(no) | |
950 | AC_MSG_ERROR(please set CFLAGS to contain the location of windows.h) | |
951 | fi | |
952 | ||
953 | XPM_LINK="" | |
954 | AC_MSG_CHECKING(for Xpm library) | |
955 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm) | |
956 | if test "$ac_find_libraries" != "" ; then | |
4286a5b5 RR |
957 | GUI_TK_LIBRARY="-L$ac_find_libraries" |
958 | XPM_LINK="-lXpm" | |
5a92d200 RR |
959 | AC_DEFINE(wxHAVE_LIB_XPM) |
960 | AC_MSG_RESULT(found at $ac_find_libraries) | |
961 | else | |
962 | AC_MSG_RESULT(no) | |
963 | AC_MSG_WARN(library will be compiled without support for images in XPM format) | |
964 | fi | |
4286a5b5 RR |
965 | |
966 | MESA_LINK="" | |
967 | AC_MSG_CHECKING(for Mesa library) | |
968 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,MesaGL) | |
969 | if test "$ac_find_libraries" != "" ; then | |
970 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY -L$ac_find_libraries" | |
971 | MESA_LINK="-lMesaGL" | |
972 | AC_MSG_RESULT(found at $ac_find_libraries) | |
973 | else | |
974 | AC_MSG_ERROR(no) | |
975 | fi | |
5a92d200 | 976 | |
4286a5b5 | 977 | GUI_TK_LINK="-lwine $MESA_LINK $XPM_LINK -lXxf86dga -lXxf86vm -lSM -lICE -lXext -lXmu -lX11 -lncurses -ldl -lm" |
5a92d200 RR |
978 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK" |
979 | WXWINE=1 | |
980 | TOOLKIT=MSW | |
981 | fi | |
982 | ||
9a98a854 | 983 | if test "$wxUSE_MOTIF" = 1; then |
143121c5 VZ |
984 | dnl find the X11 include and library files |
985 | dnl defines x_includes and x_libraries | |
986 | AC_PATH_XTRA | |
987 | ||
988 | if test "$no_x" = "yes"; then | |
989 | AC_MSG_ERROR(X11 libraries not found, aborting) | |
990 | fi | |
991 | ||
992 | TOOLKIT_INCLUDE="$X_CFLAGS" | |
993 | GUI_TK_LIBRARY="$X_LIBS" | |
994 | ||
9a98a854 | 995 | AC_MSG_CHECKING(for Motif/Lesstif includes) |
143121c5 | 996 | WX_PATH_FIND_INCLUDES($SEARCH_INCLUDE, Xm/Xm.h) |
9a98a854 VZ |
997 | if test "$ac_find_includes" != "" ; then |
998 | AC_MSG_RESULT(found $ac_find_includes) | |
999 | else | |
1000 | AC_MSG_RESULT(no) | |
1001 | AC_MSG_ERROR(please set CFLAGS to contain the location of Xm/Xm.h) | |
1002 | fi | |
1003 | ||
1004 | AC_MSG_CHECKING(for Motif/Lesstif library) | |
143121c5 | 1005 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm) |
9a98a854 | 1006 | if test "$ac_find_libraries" != "" ; then |
143121c5 VZ |
1007 | WX_INCLUDE_PATH_EXIST($ac_find_includes, $TOOLKIT_INCLUDE) |
1008 | WX_LINK_PATH_EXIST($ac_find_libraries, $GUI_TK_LIBRARY) | |
9a98a854 | 1009 | |
143121c5 VZ |
1010 | CHECK_LINK="$GUI_TK_LIBRARY $ac_path_to_link" |
1011 | TOOLKIT_INCLUDE="$TOOLKIT_INCLUDE $ac_path_to_include" | |
9a98a854 VZ |
1012 | AC_MSG_RESULT(found at $ac_find_libraries) |
1013 | else | |
1014 | AC_MSG_RESULT(no) | |
1015 | AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm) | |
1016 | fi | |
1017 | ||
1018 | AC_MSG_CHECKING(for Xt library) | |
143121c5 | 1019 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xt) |
9a98a854 | 1020 | if test "$ac_find_libraries" != "" ; then |
143121c5 VZ |
1021 | WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) |
1022 | CHECK_LINK="$GUI_TK_LIBRARY $ac_path_to_link" | |
9a98a854 VZ |
1023 | AC_MSG_RESULT(found at $ac_find_libraries) |
1024 | else | |
1025 | AC_MSG_RESULT(no) | |
1026 | AC_MSG_ERROR(please set LDFLAGS to contain the location of libXt) | |
1027 | fi | |
1028 | ||
1029 | XPM_LINK="" | |
1030 | AC_MSG_CHECKING(for Xpm library) | |
143121c5 | 1031 | WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm) |
9a98a854 | 1032 | if test "$ac_find_libraries" != "" ; then |
143121c5 VZ |
1033 | WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) |
1034 | CHECK_LINK="$GUI_TK_LIBRARY $ac_path_to_link" | |
9a98a854 VZ |
1035 | XPM_LINK="-lXpm " |
1036 | AC_DEFINE(wxHAVE_LIB_XPM) | |
1037 | AC_MSG_RESULT(found at $ac_find_libraries) | |
1038 | else | |
1039 | AC_MSG_RESULT(no) | |
1040 | AC_MSG_WARN(library will be compiled without support for images in XPM format) | |
1041 | fi | |
1042 | ||
70d1b3cf | 1043 | GUI_TK_LINK="-lXm $XPM_LINK -lXmu -lXt -lX11 -lm" |
143121c5 | 1044 | GUI_TK_LIBRARY="$GUI_TK_LIBRARY $GUI_TK_LINK" |
9a98a854 VZ |
1045 | TOOLKIT=MOTIF |
1046 | fi | |
1047 | ||
1048 | dnl the name of the directory where the files for this toolkit live | |
1049 | TOOLKIT_DIR=`echo ${TOOLKIT} | tr "A-Z" "a-z"` | |
1050 | ||
1051 | dnl the symbol which allows conditional compilation for the given toolkit | |
1052 | TOOLKIT_DEF=-D__WX${TOOLKIT}__ | |
1053 | ||
70d1b3cf | 1054 | dnl the name of the (libtool) library |
2b6f061f RR |
1055 | WX_LIBRARY_NAME="libwx_${TOOLKIT_DIR}.la" |
1056 | ||
1057 | dnl the name of the library to be linked reported by wx-config | |
1058 | WX_LIBRARY="wx_${TOOLKIT_DIR}" | |
9a98a854 VZ |
1059 | |
1060 | dnl ------------------------------------------------------------------------ | |
1061 | dnl Check for headers | |
1062 | dnl ------------------------------------------------------------------------ | |
1063 | ||
1064 | dnl defines HAVE_STRINGS_H (where some string functions live on AIX for example) | |
1065 | AC_CHECK_HEADERS(strings.h) | |
1066 | dnl defines HAVE_UNISTD_H | |
1067 | AC_CHECK_HEADERS(unistd.h) | |
1068 | dnl defines HAVE_WCHAR_H | |
1069 | AC_CHECK_HEADERS(wchar.h) | |
1070 | dnl defines HAVE_WCSTR_H | |
1071 | AC_CHECK_HEADERS(wcstr.h) | |
1072 | dnl defines HAVE_FNMATCH_H | |
1073 | AC_CHECK_HEADERS(fnmatch.h) | |
2b6f061f | 1074 | dnl defines HAVE_X11_XKBLIB_H |
27933891 | 1075 | AC_CHECK_HEADERS(X11/XKBlib.h) |
9a98a854 VZ |
1076 | |
1077 | dnl --------------------------------------------------------------------------- | |
1078 | dnl Checks for typedefs | |
1079 | dnl --------------------------------------------------------------------------- | |
1080 | ||
1081 | dnl defines mode_t if not already defined | |
1082 | AC_TYPE_MODE_T | |
1083 | dnl defines off_t if not already defined | |
1084 | AC_TYPE_OFF_T | |
1085 | dnl defines pid_t if not already defined | |
1086 | AC_TYPE_PID_T | |
1087 | dnl defines size_t if not already defined | |
1088 | AC_TYPE_SIZE_T | |
1089 | dnl defines uid_t and gid_t if not already defined | |
1090 | AC_TYPE_UID_T | |
1091 | ||
1092 | dnl --------------------------------------------------------------------------- | |
1093 | dnl Checks for structures | |
1094 | dnl --------------------------------------------------------------------------- | |
1095 | ||
1096 | dnl --------------------------------------------------------------------------- | |
1097 | dnl Checks for compiler characteristics | |
1098 | dnl --------------------------------------------------------------------------- | |
1099 | ||
1100 | dnl defines const to be empty if c-compiler does not support const fully | |
1101 | AC_C_CONST | |
1102 | dnl defines inline to a sensible value for the c-compiler | |
1103 | AC_C_INLINE | |
1104 | ||
1105 | dnl check the sizes of integral types (give some reasonable default values for | |
1106 | dnl cross-compiling) | |
1107 | dnl defines the size of certain types of variables in SIZEOF_<TYPE> | |
d716d967 RR |
1108 | AC_CHECK_SIZEOF(char, 1) |
1109 | AC_CHECK_SIZEOF(short, 2) | |
9a98a854 VZ |
1110 | AC_CHECK_SIZEOF(int *, 4) |
1111 | AC_CHECK_SIZEOF(int, 4) | |
1112 | AC_CHECK_SIZEOF(long, 4) | |
1113 | AC_CHECK_SIZEOF(long long, 0) | |
1114 | ||
bcd2b961 VZ |
1115 | dnl for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling) |
1116 | WX_C_BIGENDIAN | |
239bca2e | 1117 | |
9a98a854 VZ |
1118 | dnl check for iostream (as opposed to iostream.h) standard header |
1119 | WX_CPP_NEW_HEADERS(, AC_DEFINE(wxUSE_IOSTREAMH)) | |
1120 | ||
1121 | dnl check whether C++ compiler supports bool built-in type | |
1122 | WX_CPP_BOOL | |
1123 | ||
1124 | dnl check whether overloading on size_t/int parameter works | |
1125 | WX_CPP_SIZE_T_IS_NOT_INT | |
1126 | ||
1127 | dnl --------------------------------------------------------------------------- | |
1128 | dnl Check for functions | |
1129 | dnl --------------------------------------------------------------------------- | |
1130 | ||
1131 | dnl check for wcslen | |
1132 | AC_CHECK_LIB(c, wcslen, [ | |
1133 | AC_DEFINE(HAVE_WCSLEN) | |
1134 | WCHAR_LINK="" | |
1135 | ], [ | |
1136 | AC_CHECK_LIB(w, wcslen, [ | |
1137 | AC_DEFINE(HAVE_WCSLEN) | |
1138 | WCHAR_LINK="-lw" | |
1139 | ]) | |
1140 | ]) | |
1141 | ||
1142 | dnl check for vprintf/vsprintf() which are GNU extensions | |
1143 | AC_FUNC_VPRINTF | |
1144 | ||
1145 | dnl check for vsnprintf() - a safe version of vsprintf() | |
1146 | AC_CHECK_FUNCS(vsnprintf, | |
1147 | AC_DEFINE(HAVE_VSNPRINTF), | |
1148 | AC_MSG_WARN(unsafe function sprintf will be used instead of snprintf) | |
1149 | ) | |
1150 | ||
1151 | dnl check for vfork() (even if it's the same as fork() in modern Unices) | |
1152 | AC_CHECK_FUNCS(vfork) | |
1153 | ||
1154 | POSIX4_LINK= | |
1155 | AC_CHECK_FUNCS(nanosleep, AC_DEFINE(HAVE_NANOSLEEP), [ | |
1156 | AC_CHECK_LIB(posix4, nanosleep, [ | |
1157 | AC_DEFINE(HAVE_NANOSLEEP) | |
1158 | POSIX4_LINK="-lposix4" | |
1159 | ], [ | |
1160 | AC_CHECK_FUNCS(usleep, | |
1161 | AC_DEFINE(HAVE_USLEEP), | |
1162 | AC_MSG_WARN([wxSleep() function will not work])) | |
1163 | ]) | |
1164 | ]) | |
1165 | ||
1166 | dnl check for uname (POSIX) and gethostname (BSD) | |
1167 | AC_CHECK_FUNCS(uname gethostname, break) | |
1168 | ||
1169 | dnl =========================================================================== | |
1170 | dnl Now we have all the info we need - use it! | |
1171 | dnl =========================================================================== | |
1172 | ||
1173 | dnl flush the cache | |
1174 | AC_CACHE_SAVE | |
1175 | ||
1176 | dnl --------------------------------------------------------------------------- | |
1177 | dnl thread support | |
1178 | dnl --------------------------------------------------------------------------- | |
1179 | ||
1180 | dnl the code below: | |
1181 | dnl defines THREADS_OBJ which contains the object files to build | |
1182 | dnl defines THREADS_LINK which contains the thread library to link with | |
1183 | dnl defines wxUSE_THREADS=1 if thread support is activated | |
1184 | ||
1185 | THREADS_LINK="" | |
1186 | THREADS_OBJ="" | |
1187 | ||
39c9d5ac RR |
1188 | if test "$wxUSE_THREADS" = "yes"; then |
1189 | if test "$wxUSE_WINE" = 1; then | |
1190 | AC_MSG_WARN([Threads are not supported under WINE]) | |
1191 | wxUSE_THREADS="no" | |
1192 | fi | |
1193 | fi | |
1194 | ||
9a98a854 VZ |
1195 | if test "$wxUSE_THREADS" = "yes"; then |
1196 | dnl find if POSIX threads are available | |
1197 | ||
1198 | dnl standard lib name is pthread | |
1199 | dnl We no longer test for pthread-0.7 as it breaks compilation on some | |
1200 | dnl glibc2 systems, especially for static linkage. | |
1201 | AC_CHECK_LIB(pthread, pthread_create, [ | |
1202 | THREADS_OBJ="threadpsx.lo" | |
1203 | THREADS_LINK="pthread" | |
1204 | ], [ | |
1205 | dnl thread functions are in libc_r under FreeBSD | |
1206 | AC_CHECK_LIB(c_r, pthread_create, [ | |
1207 | THREADS_OBJ="threadpsx.lo" | |
1208 | THREADS_LINK="c_r" | |
1209 | ], [ | |
1210 | dnl VZ: SGI threads are not supported currently | |
1211 | AC_CHECK_HEADER(sys/prctl.h, [ | |
1212 | THREADS_OBJ="threadsgi.lo" | |
1213 | ]) | |
1214 | ]) | |
1215 | ]) | |
1216 | if test "$THREADS_LINK" != ""; then | |
1217 | AC_DEFINE(wxUSE_THREADS) | |
1218 | else | |
1219 | AC_MSG_WARN(No thread support on this system) | |
1220 | fi | |
1221 | fi | |
1222 | ||
1223 | if test -z "$THREADS_OBJ"; then | |
1224 | wxUSE_THREADS=no | |
1225 | fi | |
1226 | ||
1227 | dnl do other tests only if we are using threads | |
1228 | if test "$wxUSE_THREADS" = "yes"; then | |
1229 | dnl must define _REENTRANT for multithreaded code | |
1230 | CFLAGS="${CFLAGS} -D_REENTRANT" | |
1231 | CXXFLAGS="${CXXFLAGS} -D_REENTRANT" | |
1232 | ||
1233 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS thread" | |
239bca2e | 1234 | dnl LTLIBOBJS="$LTLIBOBJS $THREADS_OBJ" |
9a98a854 VZ |
1235 | |
1236 | dnl define autoconf macro to check for given function in both pthread and | |
1237 | dnl posix4 libraries | |
1238 | dnl usage: AC_FUNC_THREAD(FUNCTION_NAME) | |
1239 | dnl VZ: TODO | |
1240 | dnl AC_DEFUN(AC_FUNC_THREAD, | |
1241 | dnl [ | |
1242 | dnl AC_CHECK_LIB($THREADS_LINK, $1, | |
1243 | dnl AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z'), | |
1244 | dnl [AC_CHECK_LIB("posix4", $1, | |
1245 | dnl [AC_DEFINE(HAVE_`'translit($1, `A-Z', 'a-z')) | |
1246 | dnl POSIX4_LINK="-lposix4" | |
1247 | dnl ]) | |
1248 | dnl ]) | |
1249 | dnl ]) | |
1250 | ||
1251 | AC_CHECK_HEADERS(sched.h) | |
1252 | ||
1253 | AC_CHECK_LIB($THREADS_LINK, sched_yield, | |
1254 | AC_DEFINE(HAVE_SCHED_YIELD), | |
1255 | [AC_CHECK_LIB("posix4", sched_yield, | |
1256 | [AC_DEFINE(HAVE_SCHED_YIELD) POSIX4_LINK="-lposix4"], | |
1257 | AC_MSG_WARN(wxThread::Yield will not work properly) | |
1258 | )] | |
1259 | ) | |
1260 | ||
1261 | dnl VZ: we should be checking for all of the following functions instead: | |
1262 | dnl 1. pthread_attr_getschedpolicy | |
1263 | dnl 2. sched_get_priority_min and sched_get_priority_max | |
1264 | dnl 3. pthread_attr_getschedparam and pthread_attr_setschedparam | |
1265 | dnl but it seems that if the first one is there, the other ones are too (of | |
1266 | dnl course the proper solution would be to implement AC_FUNC_THREAD above | |
1267 | dnl and do test for them all - anyone?) | |
1268 | AC_CHECK_LIB($THREADS_LINK, pthread_attr_getschedpolicy, | |
1269 | AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS), | |
1270 | [AC_CHECK_LIB("posix4", pthread_attr_getschedpolicy, | |
1271 | [AC_DEFINE(HAVE_THREAD_PRIORITY_FUNCTIONS) POSIX4_LINK="-lposix4"], | |
1272 | AC_MSG_WARN(Setting thread priority will not work) | |
1273 | )] | |
1274 | ) | |
1275 | ||
1276 | AC_CHECK_LIB($THREADS_LINK, pthread_cancel, | |
1277 | AC_DEFINE(HAVE_PTHREAD_CANCEL), | |
1278 | AC_MSG_WARN([wxThread::Kill() will not work properly])) | |
1279 | ||
1280 | AC_CACHE_CHECK([for pthread_cleanup_push/pop], wx_cv_func_pthread_cleanup_push, | |
1281 | [ | |
1282 | AC_TRY_COMPILE([#include <pthread.h>], | |
1283 | [ | |
1284 | pthread_cleanup_push(NULL, NULL); | |
1285 | pthread_cleanup_pop(0); | |
1286 | ], [ | |
1287 | wx_cv_func_pthread_cleanup_push=yes | |
1288 | AC_DEFINE(HAVE_THREAD_CLEANUP_FUNCTIONS) | |
1289 | ], [ | |
1290 | wx_cv_func_pthread_cleanup_push=no | |
1291 | ]) | |
1292 | ]) | |
1293 | ||
1294 | THREADS_LINK="-l$THREADS_LINK" | |
1295 | fi | |
1296 | ||
1297 | if test "$WXGTK12" = 1 ; then | |
1298 | AC_DEFINE_UNQUOTED(__WXGTK12__,$WXGTK12) | |
1299 | fi | |
1300 | ||
5a92d200 RR |
1301 | if test "$WXWINE" = 1 ; then |
1302 | TOOLKIT_DEF="${TOOLKIT_DEF} -D__WXWINE__" | |
1303 | fi | |
1304 | ||
9a98a854 VZ |
1305 | WXDEBUG= |
1306 | if test "$wxUSE_DEBUG_GDB" = "yes" ; then | |
1307 | wxUSE_DEBUG_INFO=yes | |
1308 | WXDEBUG="-ggdb" | |
1309 | fi | |
1310 | ||
1311 | if test "$wxUSE_DEBUG_INFO" = "yes" ; then | |
1312 | WXDEBUG="-g" | |
1313 | wxUSE_OPTIMISE=no | |
1314 | fi | |
1315 | ||
1316 | if test "$wxUSE_DEBUG_FLAG" = "yes" ; then | |
1317 | AC_DEFINE(WXDEBUG) | |
1318 | WXDEBUG_DEFINE="-D__WXDEBUG__" | |
1319 | else | |
1320 | WXDEBUG_DEFINE="-DGTK_NO_CHECK_CASTS" | |
1321 | fi | |
1322 | ||
1323 | if test "$wxUSE_MEM_TRACING" = "yes" ; then | |
1324 | AC_DEFINE(wxUSE_MEMORY_TRACING) | |
1325 | AC_DEFINE(wxUSE_GLOBAL_MEMORY_OPERATORS) | |
1326 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS memcheck" | |
1327 | fi | |
1328 | ||
1329 | if test "$wxUSE_DMALLOC" = "yes" ; then | |
1330 | DMALLOC_LINK="-ldmalloc" | |
1331 | fi | |
1332 | ||
1333 | PROFILE= | |
1334 | if test "$wxUSE_PROFILE" = "yes" ; then | |
1335 | PROFILE="-pg" | |
1336 | fi | |
1337 | ||
1338 | CXXFLAGS=`echo "${CXXFLAGS}" | sed "s/\-O.//g" ` | |
1339 | CFLAGS=`echo "${CFLAGS}" | sed "s/\-O.//g" ` | |
1340 | if test "$wxUSE_OPTIMISE" = "no" ; then | |
1341 | OPTIMISE= | |
1342 | else | |
1343 | if test "$GCC" = yes ; then | |
1344 | OPTIMISE="-O2" | |
1345 | case "${host}" in | |
1346 | i586-*-*|i686-*-* ) | |
1347 | OPTIMISE="${OPTIMISE} " | |
1348 | ;; | |
1349 | esac | |
1350 | else | |
1351 | OPTIMISE="-O" | |
1352 | fi | |
1353 | fi | |
1354 | ||
1355 | dnl --------------------------------------------------------------------------- | |
1356 | dnl Optional libraries | |
1357 | dnl --------------------------------------------------------------------------- | |
1358 | ||
7fbdec7b | 1359 | ZLIB_INCLUDE= |
9a98a854 VZ |
1360 | if test "$wxUSE_ZLIB" = "yes" ; then |
1361 | AC_DEFINE(wxUSE_ZLIB) | |
7fbdec7b RR |
1362 | EXTRA_VPATH="$EXTRA_VPATH:\${srcdir}/../zlib" |
1363 | ZLIB_INCLUDE="-I\${srcdir}/../zlib" | |
1364 | LTLIBOBJS="$LTLIBOBJS adler32.lo compress.lo crc32.lo gzio.lo uncompr.lo deflate.lo \ | |
1365 | trees.lo zutil.lo inflate.lo infblock.lo inftrees.lo infcodes.lo \ | |
143121c5 | 1366 | infutil.lo inffast.lo" |
9a98a854 VZ |
1367 | fi |
1368 | ||
7fbdec7b | 1369 | PNG_INCLUDE= |
9a98a854 VZ |
1370 | if test "$wxUSE_LIBPNG" = "yes" ; then |
1371 | AC_DEFINE(wxUSE_LIBPNG) | |
7fbdec7b RR |
1372 | LTLIBOBJS="$LTLIBOBJS png.lo pngset.lo pngget.lo pngrutil.lo pngtrans.lo pngwutil.lo \ |
1373 | pngread.lo pngrio.lo pngwio.lo pngwrite.lo pngrtran.lo pngwtran.lo \ | |
143121c5 | 1374 | pngmem.lo pngerror.lo pngpread.lo" |
7fbdec7b RR |
1375 | EXTRA_VPATH="$EXTRA_VPATH:\${srcdir}/../png" |
1376 | PNG_INCLUDE="-I\${srcdir}/../png" | |
9a98a854 VZ |
1377 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png" |
1378 | fi | |
1379 | ||
1380 | if test "$wxUSE_LIBGIF" = "yes" ; then | |
1381 | AC_DEFINE(wxUSE_LIBGIF) | |
9a98a854 VZ |
1382 | fi |
1383 | ||
7fbdec7b | 1384 | JPEG_INCLUDE= |
9a98a854 VZ |
1385 | if test "$wxUSE_LIBJPEG" = "yes" ; then |
1386 | AC_DEFINE(wxUSE_LIBJPEG) | |
09fbacf7 | 1387 | EXTRA_VPATH="$EXTRA_VPATH:\${srcdir}/../jpeg" |
7fbdec7b | 1388 | JPEG_INCLUDE="-I\${srcdir}/../jpeg" |
09fbacf7 | 1389 | LTLIBOBJS="$LTLIBOBJS \ |
9a98a854 VZ |
1390 | jcomapi.lo jutils.lo jerror.lo jmemmgr.lo jmemnobs.lo \ |
1391 | jcapimin.lo jcapistd.lo jctrans.lo jcparam.lo jdatadst.lo \ | |
1392 | jcinit.lo jcmaster.lo jcmarker.lo jcmainct.lo jcprepct.lo \ | |
1393 | jccoefct.lo jccolor.lo jcsample.lo jchuff.lo jcphuff.lo \ | |
1394 | jcdctmgr.lo jfdctfst.lo jfdctflt.lo jfdctint.lo \ | |
1395 | jdapimin.lo jdapistd.lo jdtrans.lo jdatasrc.lo \ | |
1396 | jdmaster.lo jdinput.lo jdmarker.lo jdhuff.lo jdphuff.lo \ | |
1397 | jdmainct.lo jdcoefct.lo jdpostct.lo jddctmgr.lo jidctfst.lo \ | |
1398 | jidctflt.lo jidctint.lo jidctred.lo jdsample.lo jdcolor.lo \ | |
1399 | jquant1.lo jquant2.lo jdmerge.lo" | |
1400 | fi | |
1401 | ||
1402 | if test "$wxUSE_OPENGL" = "yes"; then | |
1403 | AC_CHECK_HEADER(GL/gl.h, [ | |
1404 | AC_CHECK_LIB(GL, glInitNames, [ | |
1405 | OPENGL_LINK="-lGL" | |
1406 | AC_DEFINE(wxUSE_OPENGL) | |
1407 | UTILS_SUBDIRS="$UTILS_SUBDIRS glcanvas/src" | |
1408 | ],[ | |
1409 | AC_CHECK_LIB(MesaGL, glInitNames, [ | |
1410 | OPENGL_LINK="-lMesaGL" | |
1411 | AC_DEFINE(wxUSE_OPENGL) | |
1412 | UTILS_SUBDIRS="$UTILS_SUBDIRS glcanvas/src" | |
1413 | ],wxUSE_OPENGL=0) | |
1414 | ],wxUSE_OPENGL=0) | |
1415 | ],wxUSE_OPENGL=0) | |
1416 | fi | |
1417 | ||
1418 | dnl --------------------------------------------------------------------------- | |
1419 | dnl the library may be built without GUI classes at all | |
1420 | dnl --------------------------------------------------------------------------- | |
1421 | ||
1422 | if test "$wxUSE_GUI" = "yes"; then | |
1423 | AC_DEFINE(wxUSE_GUI) | |
1424 | ||
1425 | dnl the things we always pull in the GUI version of the library: | |
1426 | dnl 1. basic things like wxApp, wxWindow, wxControl, wxFrame, wxDialog (the | |
1427 | dnl library really can't be built without those) | |
1428 | dnl 2. basic controls: wxButton, wxStaticText, wxTextCtrl (these are used in | |
1429 | dnl almost any program and the first 2 are needed to show a message box | |
1430 | dnl which want to be always able to do) | |
1431 | dnl 3. GDI stuff: icon, cursors and all that. Although it would be very nice | |
1432 | dnl to compile without them (if the app doesn't do any drawing, it doesn't | |
1433 | dnl need the dcs, pens, brushes, ...), this just can't be done now | |
1434 | dnl 4. menu stuff: wxMenu, wxMenuBar, wxMenuItem | |
1435 | dnl 5. misc stuff: timers, settings, message box | |
09fbacf7 RR |
1436 | dnl LTLIBOBJS="$LTLIBOBJS \ |
1437 | dnl main.lo app.lo event.lo wincmn.lo window.lo control.lo framecmn.lo frame.lo dialog.lo panelg.lo \ | |
1438 | dnl button.lo stattext.lo textctrl.lo \ | |
1439 | dnl bitmap.lo brush.lo colour.lo cursor.lo data.lo dc.lo dcbase.lo dcclient.lo \ | |
1440 | dnl dcmemory.lo dcscreen.lo font.lo gdicmn.lo gdiobj.lo icon.lo palette.lo pen.lo region.lo \ | |
1441 | dnl menu.lo \ | |
1442 | dnl settings.lo timer.lo msgdlgg.lo" | |
9a98a854 VZ |
1443 | else |
1444 | AC_DEFINE(wxUSE_NOGUI) | |
1445 | fi | |
1446 | ||
1447 | dnl --------------------------------------------------------------------------- | |
1448 | dnl Unix/Windows | |
1449 | dnl --------------------------------------------------------------------------- | |
1450 | ||
1451 | if test "$wxUSE_UNIX" = "yes"; then | |
1452 | AC_DEFINE(wxUSE_UNIX) | |
9a98a854 VZ |
1453 | fi |
1454 | ||
1455 | dnl --------------------------------------------------------------------------- | |
1456 | dnl Register non-GUI class options for makefiles and setup.h | |
1457 | dnl --------------------------------------------------------------------------- | |
1458 | ||
1459 | if test "$wxUSE_APPLE_IEEE" = "yes"; then | |
1460 | AC_DEFINE(wxUSE_APPLE_IEEE) | |
9a98a854 VZ |
1461 | fi |
1462 | ||
1463 | if test "$wxUSE_TIMEDATE" = "yes"; then | |
1464 | AC_DEFINE(wxUSE_TIMEDATE) | |
9a98a854 VZ |
1465 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS typetest" |
1466 | fi | |
1467 | ||
2749089a KB |
1468 | if test "$wxUSE_WAVE" = "yes"; then |
1469 | AC_DEFINE(wxUSE_WAVE) | |
1470 | fi | |
1471 | ||
9a98a854 VZ |
1472 | if test "$wxUSE_FILE" = "yes"; then |
1473 | AC_DEFINE(wxUSE_FILE) | |
9a98a854 VZ |
1474 | fi |
1475 | ||
1476 | if test "$wxUSE_TEXTFILE" = "yes"; then | |
1477 | if test "$wxUSE_FILE" != "yes"; then | |
1478 | AC_MSG_WARN(wxTextFile requires wxFile and it won't be compiled without it) | |
1479 | else | |
1480 | AC_DEFINE(wxUSE_TEXTFILE) | |
9a98a854 VZ |
1481 | fi |
1482 | fi | |
1483 | ||
1484 | if test "$wxUSE_CONFIG" = "yes" ; then | |
1485 | if test "$wxUSE_TEXTFILE" != "yes"; then | |
1486 | AC_MSG_WARN(wxConfig requires wxTextFile and it won't be compiled without it) | |
1487 | else | |
1488 | AC_DEFINE(wxUSE_CONFIG) | |
9a98a854 VZ |
1489 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS config" |
1490 | fi | |
1491 | fi | |
1492 | ||
1493 | if test "$wxUSE_INTL" = "yes" ; then | |
1494 | if test "$wxUSE_FILE" != "yes"; then | |
1495 | AC_MSG_WARN(I18n code requires wxFile and it won't be compiled without it) | |
1496 | else | |
1497 | AC_DEFINE(wxUSE_INTL) | |
9a98a854 VZ |
1498 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS internat" |
1499 | fi | |
1500 | fi | |
1501 | ||
1502 | if test "$wxUSE_LOG" = "yes"; then | |
1503 | AC_DEFINE(wxUSE_LOG) | |
9a98a854 VZ |
1504 | fi |
1505 | ||
1506 | if test "$wxUSE_LONGLONG" = "yes"; then | |
1507 | AC_DEFINE(wxUSE_LONGLONG) | |
9a98a854 VZ |
1508 | fi |
1509 | ||
1510 | if test "$wxUSE_SOCKETS" = "yes" ; then | |
1511 | if test "$wxUSE_THREADS" = "yes" ; then | |
1512 | AC_DEFINE(wxUSE_SOCKETS) | |
9a98a854 | 1513 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS wxsocket" |
ff684c98 | 1514 | INCLUDE_SUBDIRS="$INCLUDE_SUBDIRS protocol" |
9a98a854 | 1515 | else |
39c9d5ac | 1516 | AC_MSG_WARN(Socket classes require --with-threads and won't be compiled without it) |
9a98a854 VZ |
1517 | wxUSE_SOCKETS=0 |
1518 | fi | |
1519 | fi | |
1520 | ||
1521 | if test "$wxUSE_STREAMS" = "yes" ; then | |
1522 | AC_DEFINE(wxUSE_STREAMS) | |
9a98a854 VZ |
1523 | fi |
1524 | ||
1525 | if test "$wxUSE_SERIAL" = "yes" ; then | |
1526 | AC_DEFINE(wxUSE_SERIAL) | |
1527 | fi | |
1528 | ||
1529 | dnl ------------------------------------------------------------------------ | |
1530 | dnl wxSocket | |
1531 | dnl ------------------------------------------------------------------------ | |
1532 | ||
1533 | if test "$wxUSE_SOCKETS" = "yes"; then | |
1534 | AC_LANG_SAVE | |
1535 | AC_LANG_CPLUSPLUS | |
1536 | dnl determine the type of third argument for getsockname | |
1537 | AC_MSG_CHECKING(the type of the third argument of getsockname) | |
1538 | AC_TRY_COMPILE( | |
1539 | [#include <sys/socket.h>], | |
1540 | [socklen_t len; getsockname(0, NULL, &len);], | |
1541 | AC_DEFINE(SOCKLEN_T, socklen_t) AC_MSG_RESULT(socklen_t), | |
1542 | AC_TRY_COMPILE( | |
1543 | [#include <sys/socket.h>], | |
1544 | [size_t len; getsockname(0, NULL, &len);], | |
1545 | AC_DEFINE(SOCKLEN_T, size_t) AC_MSG_RESULT(size_t), | |
1546 | AC_TRY_COMPILE( | |
1547 | [#include <sys/socket.h>], | |
1548 | [int len; getsockname(0, NULL, &len);], | |
1549 | AC_DEFINE(SOCKLEN_T, int) AC_MSG_RESULT(int), | |
1550 | AC_MSG_RESULT(unknown) | |
1551 | ) | |
1552 | ) | |
1553 | ) | |
1554 | AC_LANG_RESTORE | |
1555 | fi | |
1556 | ||
1557 | dnl --------------------------------------------------------------------------- | |
1558 | dnl Joystick support | |
1559 | dnl --------------------------------------------------------------------------- | |
1560 | ||
1561 | if test "$wxUSE_JOYSTICK" = 1; then | |
1562 | dnl joystick support is only for Linux 2.1.x or greater | |
1563 | AC_CHECK_HEADERS(linux/joystick.h) | |
1564 | if test "$ac_cv_header_linux_joystick_h" = "yes"; then | |
1565 | AC_DEFINE(wxUSE_JOYSTICK) | |
9a98a854 VZ |
1566 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS joytest" |
1567 | fi | |
1568 | fi | |
1569 | ||
1570 | dnl ------------------------------------------------------------------------ | |
1571 | dnl DLL support | |
1572 | dnl ------------------------------------------------------------------------ | |
1573 | ||
1574 | HAVE_DL_FUNCS=0 | |
1575 | HAVE_SHL_FUNCS=0 | |
1576 | if test "$wxUSE_DYNLIB_CLASS" = "yes"; then | |
1577 | dnl the test is a bit complicated because we check for dlopen() both with | |
1578 | dnl and without -ldl | |
1579 | AC_CHECK_FUNCS(dlopen, | |
1580 | [AC_DEFINE(HAVE_DLOPEN) HAVE_DL_FUNCS=1], | |
1581 | [AC_CHECK_LIB(dl, dlopen, | |
1582 | [AC_DEFINE(HAVE_DLOPEN) HAVE_DL_FUNCS=1])]) | |
1583 | AC_CHECK_FUNCS( shl_load, | |
1584 | [AC_DEFINE(HAVE_SHL_LOAD) HAVE_DL_FUNCS=1 HAVE_SHL_FUNCS=1]) | |
1585 | ||
1586 | if test "$HAVE_DL_FUNCS" = 0; then | |
1587 | AC_MSG_WARN("--with-dynlib and --with-odbc will be disabled due to missing shared library support") | |
1588 | wxUSE_ODBC=no | |
1589 | wxUSE_DYNLIB_CLASS=no | |
1590 | fi | |
1591 | fi | |
1592 | ||
1593 | if test "$wxUSE_DYNLIB_CLASS" = "yes" ; then | |
1594 | AC_DEFINE(wxUSE_DYNLIB_CLASS) | |
9a98a854 VZ |
1595 | fi |
1596 | ||
1597 | dnl --------------------------------------------------------------------------- | |
ced859c3 | 1598 | dnl String stuff |
9a98a854 VZ |
1599 | dnl --------------------------------------------------------------------------- |
1600 | ||
1601 | if test "$wxUSE_UNICODE" = "yes" ; then | |
1602 | AC_DEFINE(wxUSE_UNICODE) | |
1603 | fi | |
1604 | ||
1605 | if test "$wxUSE_WCSRTOMBS" = "yes" ; then | |
1606 | AC_DEFINE(wxUSE_WCSRTOMBS) | |
1607 | fi | |
1608 | ||
ced859c3 VZ |
1609 | if test "$wxUSE_wxUSE_EXPERIMENTAL_PRINTF" = "yes"; then |
1610 | AC_DEFINE(wxUSE_EXPERIMENTAL_PRINTF) | |
1611 | fi | |
1612 | ||
9a98a854 VZ |
1613 | dnl ---------------------------------------------------------------- |
1614 | dnl iODBC support | |
1615 | dnl ---------------------------------------------------------------- | |
1616 | ||
1617 | IODBC_C_SRC="" | |
1618 | if test "$wxUSE_ODBC" = "yes" ; then | |
1619 | AC_DEFINE(wxUSE_ODBC) | |
09fbacf7 | 1620 | EXTRA_VPATH="$EXTRA_VPATH:\$(srcdir)/../iodbc" |
9a98a854 VZ |
1621 | LTLIBOBJS="$LTLIBOBJS catalog.lo connect.lo dlf.lo dlproc.lo execute.lo fetch.lo hdbc.lo henv.lo herr.lo hstmt.lo info.lo itrace.lo misc.lo prepare.lo result.lo" |
1622 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS db" | |
1623 | fi | |
1624 | ||
1625 | dnl ---------------------------------------------------------------- | |
1626 | dnl Register PostScript options for makefiles and setup.h | |
1627 | dnl ---------------------------------------------------------------- | |
1628 | ||
1629 | if test "$wxUSE_POSTSCRIPT" = "yes" ; then | |
1630 | AC_DEFINE(wxUSE_POSTSCRIPT) | |
9a98a854 VZ |
1631 | fi |
1632 | ||
1633 | AC_DEFINE(wxUSE_AFM_FOR_POSTSCRIPT) | |
1634 | ||
1635 | AC_DEFINE(wxUSE_NORMALIZED_PS_FONTS) | |
1636 | ||
1637 | dnl --------------------------------------------------------------------------- | |
1638 | dnl big GUI components: MDI, doc/view, printing, help, ... | |
1639 | dnl --------------------------------------------------------------------------- | |
1640 | ||
1641 | if test "$wxUSE_CONSTRAINTS" = "yes"; then | |
1642 | AC_DEFINE(wxUSE_CONSTRAINTS) | |
9a98a854 VZ |
1643 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS layout" |
1644 | fi | |
1645 | ||
1646 | if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then | |
1647 | AC_DEFINE(wxUSE_MDI_ARCHITECTURE) | |
9a98a854 VZ |
1648 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS mdi" |
1649 | fi | |
1650 | ||
1651 | if test "$wxUSE_DOC_VIEW_ARCHITECTURE" = "yes" ; then | |
1652 | AC_DEFINE(wxUSE_DOC_VIEW_ARCHITECTURE) | |
9a98a854 VZ |
1653 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docview" |
1654 | if test "$wxUSE_MDI_ARCHITECTURE" = "yes"; then | |
9a98a854 VZ |
1655 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS docvwmdi" |
1656 | fi | |
1657 | fi | |
1658 | ||
1659 | if test "$wxUSE_HELP" = "yes"; then | |
1660 | AC_DEFINE(wxUSE_HELP) | |
9a98a854 VZ |
1661 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS help" |
1662 | fi | |
1663 | ||
1664 | if test "$wxUSE_PRINTING_ARCHITECTURE" = "yes" ; then | |
1665 | AC_DEFINE(wxUSE_PRINTING_ARCHITECTURE) | |
9a98a854 VZ |
1666 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS printing" |
1667 | fi | |
1668 | ||
1669 | if test "$wxUSE_PROLOGIO" = "yes" ; then | |
1670 | AC_DEFINE(wxUSE_PROLOGIO) | |
9a98a854 VZ |
1671 | fi |
1672 | ||
1673 | if test "$wxUSE_RESOURCES" = "yes" ; then | |
1674 | if test "$wxUSE_PROLOGIO" = "yes" ; then | |
1675 | AC_DEFINE(wxUSE_RESOURCES) | |
9a98a854 VZ |
1676 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS resource" |
1677 | else | |
1678 | AC_MSG_WARN([wxWindows ressource system requires PrologIO and can't be compiled without it.]) | |
1679 | fi | |
1680 | fi | |
1681 | ||
1682 | if test "$wxUSE_X_RESOURCES" = "yes"; then | |
1683 | AC_DEFINE(wxUSE_X_RESOURCES) | |
1684 | fi | |
1685 | ||
1686 | dnl --------------------------------------------------------------------------- | |
1687 | dnl IPC: IPC, d-n-d, clipboard, ... | |
1688 | dnl --------------------------------------------------------------------------- | |
1689 | ||
1690 | if test "$wxUSE_IPC" = "yes"; then | |
1691 | AC_DEFINE(wxUSE_IPC) | |
9a98a854 VZ |
1692 | fi |
1693 | ||
1694 | if test "$wxUSE_CLIPBOARD" = "yes"; then | |
1695 | AC_DEFINE(wxUSE_CLIPBOARD) | |
9a98a854 VZ |
1696 | fi |
1697 | ||
39c9d5ac | 1698 | if test "$wxUSE_DRAG_AND_DROP" = "yes" ; then |
9a98a854 VZ |
1699 | if test "$WXGTK12" = 1 ; then |
1700 | AC_DEFINE(wxUSE_DRAG_AND_DROP) | |
39c9d5ac RR |
1701 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dnd" |
1702 | else | |
1703 | AC_MSG_WARN([Drag and drop is only supported under wxGTK 2.1]) | |
5a92d200 | 1704 | fi |
9a98a854 VZ |
1705 | fi |
1706 | ||
1707 | if test "$wxUSE_SPLINES" = "yes" ; then | |
1708 | AC_DEFINE(wxUSE_SPLINES) | |
1709 | fi | |
1710 | ||
1711 | dnl --------------------------------------------------------------------------- | |
1712 | dnl GUI controls | |
1713 | dnl --------------------------------------------------------------------------- | |
1714 | ||
1715 | if test "$wxUSE_ACCEL" = "yes"; then | |
1716 | AC_DEFINE(wxUSE_ACCEL) | |
9a98a854 VZ |
1717 | fi |
1718 | ||
1719 | if test "$wxUSE_CARET" = "yes"; then | |
1720 | AC_DEFINE(wxUSE_CARET) | |
9a98a854 VZ |
1721 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS caret" |
1722 | fi | |
1723 | ||
1724 | if test "$wxUSE_COMBOBOX" = "yes"; then | |
1725 | AC_DEFINE(wxUSE_COMBOBOX) | |
9a98a854 VZ |
1726 | fi |
1727 | ||
1728 | if test "$wxUSE_BMPBUTTON" = "yes"; then | |
1729 | AC_DEFINE(wxUSE_BMPBUTTON) | |
9a98a854 VZ |
1730 | fi |
1731 | ||
1732 | if test "$wxUSE_CHECKBOX" = "yes"; then | |
1733 | AC_DEFINE(wxUSE_CHECKBOX) | |
9a98a854 VZ |
1734 | fi |
1735 | ||
1736 | if test "$wxUSE_CHECKLST" = "yes"; then | |
1737 | AC_DEFINE(wxUSE_CHECKLISTBOX) | |
9a98a854 VZ |
1738 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS checklst" |
1739 | fi | |
1740 | ||
1741 | if test "$wxUSE_GAUGE" = "yes"; then | |
1742 | AC_DEFINE(wxUSE_GAUGE) | |
9a98a854 VZ |
1743 | fi |
1744 | ||
1745 | if test "$wxUSE_GRID" = "yes"; then | |
1746 | AC_DEFINE(wxUSE_GRID) | |
9a98a854 VZ |
1747 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS grid" |
1748 | fi | |
1749 | ||
1750 | if test "$wxUSE_IMAGLIST" = "yes"; then | |
1751 | AC_DEFINE(wxUSE_IMAGLIST) | |
9a98a854 VZ |
1752 | fi |
1753 | ||
1754 | if test "$wxUSE_LISTBOX" = "yes"; then | |
1755 | AC_DEFINE(wxUSE_LISTBOX) | |
9a98a854 VZ |
1756 | fi |
1757 | ||
1758 | if test "$wxUSE_LISTCTRL" = "yes"; then | |
1759 | if test "$wxUSE_IMAGLIST" = "yes"; then | |
1760 | AC_DEFINE(wxUSE_LISTCTRL) | |
9a98a854 VZ |
1761 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS listctrl" |
1762 | else | |
1763 | AC_MSG_WARN([wxListCtrl requires wxImageList and won't be compiled without it]) | |
1764 | fi | |
1765 | fi | |
1766 | ||
1767 | if test "$wxUSE_NOTEBOOK" = "yes"; then | |
1768 | AC_DEFINE(wxUSE_NOTEBOOK) | |
9a98a854 VZ |
1769 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS notebook" |
1770 | fi | |
1771 | ||
1772 | if test "$wxUSE_RADIOBOX" = "yes"; then | |
1773 | AC_DEFINE(wxUSE_RADIOBOX) | |
9a98a854 VZ |
1774 | fi |
1775 | ||
1776 | if test "$wxUSE_RADIOBTN" = "yes"; then | |
1777 | AC_DEFINE(wxUSE_RADIOBTN) | |
9a98a854 VZ |
1778 | fi |
1779 | ||
79b00c62 | 1780 | if test "$wxUSE_SASH" = "yes"; then |
9a98a854 | 1781 | AC_DEFINE(wxUSE_SASH) |
9a98a854 VZ |
1782 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS sashtest" |
1783 | fi | |
1784 | ||
1785 | if test "$wxUSE_SCROLLBAR" = "yes"; then | |
1786 | AC_DEFINE(wxUSE_SCROLLBAR) | |
9a98a854 VZ |
1787 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS scroll" |
1788 | fi | |
1789 | ||
1790 | if test "$wxUSE_SLIDER" = "yes"; then | |
1791 | AC_DEFINE(wxUSE_SLIDER) | |
9a98a854 VZ |
1792 | fi |
1793 | ||
1794 | if test "$wxUSE_SPINBTN" = "yes"; then | |
1795 | AC_DEFINE(wxUSE_SPINBTN) | |
9a98a854 VZ |
1796 | fi |
1797 | ||
1798 | if test "$wxUSE_SPLITTER" = "yes"; then | |
1799 | AC_DEFINE(wxUSE_SPLITTER) | |
9a98a854 VZ |
1800 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS splitter" |
1801 | fi | |
1802 | ||
1803 | if test "$wxUSE_STATBMP" = "yes"; then | |
1804 | AC_DEFINE(wxUSE_STATBMP) | |
9a98a854 VZ |
1805 | fi |
1806 | ||
1807 | if test "$wxUSE_STATBOX" = "yes"; then | |
1808 | AC_DEFINE(wxUSE_STATBOX) | |
9a98a854 VZ |
1809 | fi |
1810 | ||
1811 | if test "$wxUSE_STATLINE" = "yes"; then | |
1812 | AC_DEFINE(wxUSE_STATLINE) | |
9a98a854 VZ |
1813 | fi |
1814 | ||
1815 | if test "$wxUSE_STATUSBAR" = "yes"; then | |
1816 | AC_DEFINE(wxUSE_STATUSBAR) | |
9a98a854 VZ |
1817 | fi |
1818 | ||
1819 | if test "$wxUSE_TABDIALOG" = "yes"; then | |
1820 | AC_DEFINE(wxUSE_TAB_DIALOG) | |
9a98a854 VZ |
1821 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS tab" |
1822 | fi | |
1823 | ||
1824 | if test "$wxUSE_TOOLBAR" = "yes"; then | |
1825 | AC_DEFINE(wxUSE_TOOLBAR) | |
9a98a854 VZ |
1826 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS toolbar" |
1827 | fi | |
1828 | ||
39c9d5ac | 1829 | if test "$wxUSE_TOOLTIPS" = "yes"; then |
ced859c3 | 1830 | if test "$wxUSE_MOTIF" = 1; then |
39c9d5ac | 1831 | AC_MSG_WARN(Tooltips are not supported yet under Motif) |
9a98a854 | 1832 | else |
39c9d5ac RR |
1833 | if test "$wxUSE_WINE" = 1; then |
1834 | AC_MSG_WARN(Tooltips are not supported yet under WINE) | |
1835 | else | |
1836 | AC_DEFINE(wxUSE_TOOLTIPS) | |
1837 | fi | |
9a98a854 VZ |
1838 | fi |
1839 | fi | |
1840 | ||
1841 | if test "$wxUSE_TREECTRL" = "yes"; then | |
1842 | if test "$wxUSE_IMAGLIST" = "yes"; then | |
1843 | AC_DEFINE(wxUSE_TREECTRL) | |
9a98a854 VZ |
1844 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS treectrl" |
1845 | else | |
1846 | AC_MSG_WARN([wxTreeCtrl requires wxImageList and won't be compiled without it]) | |
1847 | fi | |
1848 | fi | |
1849 | ||
1850 | dnl --------------------------------------------------------------------------- | |
1851 | dnl misc options | |
1852 | dnl --------------------------------------------------------------------------- | |
1853 | ||
ff684c98 VZ |
1854 | dnl TODO this is unused for now... |
1855 | dnl if test "$wxUSE_WXTREE" = "yes"; then | |
1856 | dnl AC_DEFINE(wxUSE_WXTREE) | |
1857 | dnl fi | |
9a98a854 VZ |
1858 | |
1859 | if test "$wxUSE_METAFILE" = "yes"; then | |
1860 | AC_DEFINE(wxUSE_METAFILE) | |
9a98a854 VZ |
1861 | fi |
1862 | ||
1863 | if test "$wxUSE_COMMONDLGS" = "yes"; then | |
1864 | dnl these classes don't depend on anything at all | |
9a98a854 VZ |
1865 | |
1866 | if test "$wxUSE_CONSTRAINTS" != "yes"; then | |
1867 | AC_MSG_WARN(many common dialogs cannot be used without constraints so they won't be compiled without them) | |
1868 | else | |
1869 | AC_DEFINE(wxUSE_CONSTRAINTS) | |
1870 | AC_DEFINE(wxUSE_TEXTDLG) | |
9a98a854 VZ |
1871 | |
1872 | if test "$wxUSE_TREECTRL" != "yes"; then | |
1873 | AC_MSG_WARN(wxDirDialog cannot be used without wxTreeCtrl and it won't be compiled without it) | |
1874 | else | |
1875 | AC_DEFINE(wxUSE_DIRDLG) | |
9a98a854 VZ |
1876 | fi |
1877 | fi | |
1878 | ||
09fbacf7 | 1879 | if test "$wxUSE_PRINTING_ARCHITECTURE" = "no"; then |
9a98a854 VZ |
1880 | AC_MSG_WARN([wxPrintDialog class won't be compiled without printing support]) |
1881 | fi | |
1882 | fi | |
1883 | ||
1884 | if test "$wxUSE_MINIFRAME" = "yes"; then | |
1885 | AC_DEFINE(wxUSE_MINIFRAME) | |
9a98a854 VZ |
1886 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS minifram" |
1887 | fi | |
1888 | ||
1889 | if test "$wxUSE_VALIDATORS" = "yes"; then | |
1890 | AC_DEFINE(wxUSE_VALIDATORS) | |
9a98a854 VZ |
1891 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate" |
1892 | fi | |
1893 | ||
1894 | dnl --------------------------------------------------------------------------- | |
1895 | dnl Output the makefiles and such from the results found above | |
1896 | dnl --------------------------------------------------------------------------- | |
1897 | ||
1898 | dnl if we add wxUSE_GUI in the future, it might be handy to separate the libs | |
1899 | dnl into GUI and non-GUI parts | |
1900 | GUILIBS="$GUI_TK_LIBRARY $OPENGL_LINK $LIBPNG_LINK $ZLIB_LINK $TOOLKIT_LINK" | |
1901 | ||
1902 | dnl all additional libraries (except wxWindows itself) we link with | |
1903 | EXTRA_LIBS="$LIBS $POSIX4_LINK $WCHAR_LINK $THREADS_LINK $DMALLOC_LINK $GUILIBS" | |
1904 | ||
1905 | dnl all the libraries needed to link wxWindows programs (when the library is not | |
1906 | dnl yet installed) | |
47b61a78 | 1907 | LIBS="\${top_builddir}/src/${TOOLKIT_DIR}/${WX_LIBRARY_NAME} $EXTRA_LIBS" |
9a98a854 VZ |
1908 | |
1909 | dnl all -I options we must pass to the compiler | |
7fbdec7b | 1910 | INCLUDES="-I. -I\${top_builddir}/include -I\${top_srcdir}/include $ZLIB_INCLUDE $PNG_INCLUDE $JPEG_INCLUDE $TOOLKIT_INCLUDE" |
9a98a854 VZ |
1911 | |
1912 | dnl C/C++ compiler options used to compile wxWindows | |
1913 | if test "$ac_cv_prog_gcc" = "yes"; then | |
1914 | dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror" | |
1915 | CXXWARNINGS="-Wall" | |
1916 | dnl there is one weird warning in docview.h:71 which prevents me from doing | |
1917 | dnl this... | |
1918 | dnl CXXWARNINGS="-Wall -Werror" | |
1919 | fi | |
1920 | EXTRA_CFLAGS="$WXDEBUG $PROFILE $OPTIMISE $INCLUDES" | |
1921 | ||
1922 | CFLAGS="$CFLAGS $EXTRA_CFLAGS" | |
1923 | CXXFLAGS="$CXXFLAGS $EXTRA_CFLAGS $CXXWARNINGS" | |
1924 | ||
1925 | if test "$wxUSE_GUI" = "yes"; then | |
1926 | dnl TODO add checks that these samples will really compile (i.e. all the | |
1927 | dnl library features they need are present) | |
1928 | ||
1929 | dnl TODO some samples are never built so far: | |
1930 | dnl mfc, nativdlg, oleauto, ownerdrw, proplist | |
1931 | SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS bombs controls dialogs drawing dynamic \ | |
f7f647e0 | 1932 | forty fractal image richedit wxpoem" |
9a98a854 VZ |
1933 | fi |
1934 | ||
70d1b3cf VZ |
1935 | dnl for convenience, sort the files to build in alphabetical order |
1936 | dnl | |
1937 | dnl another shell command to do it which might be faster but is less clear: | |
1938 | dnl LTLIBOBJS="`for obj in $LTLIBOBJS; do echo $obj; done | sort | sed 's@^@ @'`" | |
1939 | LTLIBOBJS="`echo $LTLIBOBJS | tr -s ' ' | tr ' ' '\n' | sort | tr '\n' ' '`" | |
1940 | ||
1941 | dnl for convenience, sort the samples in alphabetical order | |
1942 | dnl | |
1943 | dnl FIXME For some mysterious reasons, sometimes the directories are duplicated | |
1944 | dnl in this list - hence uniq. But normally, this shouldn't be needed! | |
1945 | SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq | tr '\n' ' '`" | |
1946 | ||
9a98a854 VZ |
1947 | dnl global options |
1948 | AC_SUBST(WX_MAJOR_VERSION_NUMBER) | |
1949 | AC_SUBST(WX_MINOR_VERSION_NUMBER) | |
1950 | AC_SUBST(WX_RELEASE_NUMBER) | |
70d1b3cf | 1951 | AC_SUBST(WX_LIBRARY_NAME) |
2b6f061f | 1952 | AC_SUBST(WX_LIBRARY) |
9a98a854 VZ |
1953 | |
1954 | dnl suppress libtool's informational messages - they duplicate its command line | |
1955 | LIBTOOL="$LIBTOOL --silent" | |
1956 | AC_SUBST(LIBTOOL) | |
1957 | ||
1958 | dnl debugging options | |
1959 | AC_SUBST(WXDEBUG_DEFINE) | |
1960 | ||
1961 | dnl toolkit options | |
1962 | AC_SUBST(TOOLKIT) | |
1963 | AC_SUBST(TOOLKIT_DEF) | |
1964 | AC_SUBST(TOOLKIT_DIR) | |
1965 | AC_SUBST(TOOLKIT_INCLUDE) | |
1966 | ||
1967 | dnl additional sources | |
1968 | AC_SUBST(EXTRA_VPATH) | |
1969 | AC_SUBST(LTLIBOBJS) | |
1970 | ||
1971 | dnl additional subdirectories where we will build | |
bcd2b961 | 1972 | AC_SUBST(SRC_SUBDIRS) |
ff684c98 | 1973 | AC_SUBST(INCLUDE_SUBDIRS) |
9a98a854 VZ |
1974 | AC_SUBST(UTILS_SUBDIRS) |
1975 | AC_SUBST(DOCS_SUBDIRS) | |
1976 | AC_SUBST(SAMPLES_SUBDIRS) | |
1977 | AC_SUBST(USER_SUBDIRS) | |
1978 | ||
1979 | dnl additional libraries | |
1980 | AC_SUBST(EXTRA_LIBS) | |
1981 | AC_SUBST(LIBS) | |
1982 | ||
1983 | dnl create the configuration header file from the template | |
c7114f59 VZ |
1984 | dnl |
1985 | dnl NB: automake can't work correctly if our header lives in a directory which | |
1986 | dnl is only determined at configure time, so we create it on the top-level | |
1987 | dnl and make a link to allow '#include "wx/setup.h"' to still work | |
efeb0365 | 1988 | AM_CONFIG_HEADER(setup.h) |
9a98a854 VZ |
1989 | |
1990 | dnl MAKE_SET will be replaced with "MAKE=..." or nothing if make sets MAKE | |
1991 | dnl itself (this is macro is required if SUBDIRS variable is used in Makefile.am | |
1992 | dnl - and we do use it) | |
1993 | AC_PROG_MAKE_SET | |
1994 | ||
1995 | dnl create each of the files in the space separated list from the file.in | |
1996 | dnl (the original file name may be overriden by appending another name after a | |
1997 | dnl colon) | |
1998 | AC_OUTPUT([ | |
ff684c98 | 1999 | wx-config |
bcd2b961 VZ |
2000 | Makefile |
2001 | src/Makefile | |
bcd2b961 | 2002 | src/gtk/Makefile |
143121c5 | 2003 | src/motif/Makefile |
5a92d200 | 2004 | src/msw/Makefile |
ff684c98 VZ |
2005 | include/Makefile |
2006 | include/wx/Makefile | |
2007 | include/wx/generic/Makefile | |
2008 | include/wx/gtk/Makefile | |
2009 | include/wx/motif/Makefile | |
2010 | include/wx/msw/Makefile | |
2011 | include/wx/protocol/Makefile | |
2012 | include/wx/unix/Makefile | |
143121c5 VZ |
2013 | misc/Makefile |
2014 | misc/afm/Makefile | |
2015 | misc/gs_afm/Makefile | |
9a98a854 VZ |
2016 | samples/Makefile |
2017 | samples/bombs/Makefile | |
2018 | samples/caret/Makefile | |
2019 | samples/checklst/Makefile | |
2020 | samples/config/Makefile | |
2021 | samples/controls/Makefile | |
2022 | samples/db/Makefile | |
2023 | samples/dialogs/Makefile | |
2024 | samples/dnd/Makefile | |
2025 | samples/docview/Makefile | |
2026 | samples/docvwmdi/Makefile | |
2027 | samples/drawing/Makefile | |
2028 | samples/dynamic/Makefile | |
2029 | samples/forty/Makefile | |
2030 | samples/fractal/Makefile | |
2031 | samples/grid/Makefile | |
2032 | samples/help/Makefile | |
2033 | samples/image/Makefile | |
2034 | samples/internat/Makefile | |
2035 | samples/joytest/Makefile | |
2036 | samples/layout/Makefile | |
2037 | samples/listctrl/Makefile | |
2038 | samples/mdi/Makefile | |
2039 | samples/memcheck/Makefile | |
2040 | samples/mfc/Makefile | |
2041 | samples/minifram/Makefile | |
2042 | samples/minimal/Makefile | |
2043 | samples/nativdlg/Makefile | |
2044 | samples/notebook/Makefile | |
2045 | samples/oleauto/Makefile | |
2046 | samples/ownerdrw/Makefile | |
2047 | samples/png/Makefile | |
2048 | samples/printing/Makefile | |
2049 | samples/proplist/Makefile | |
2050 | samples/regtest/Makefile | |
2051 | samples/resource/Makefile | |
287cada9 | 2052 | samples/richedit/Makefile |
9a98a854 VZ |
2053 | samples/sashtest/Makefile |
2054 | samples/scroll/Makefile | |
2055 | samples/splitter/Makefile | |
2056 | samples/tab/Makefile | |
2057 | samples/taskbar/Makefile | |
27933891 | 2058 | samples/text/Makefile |
9a98a854 VZ |
2059 | samples/thread/Makefile |
2060 | samples/toolbar/Makefile | |
2061 | samples/treectrl/Makefile | |
2062 | samples/typetest/Makefile | |
2063 | samples/validate/Makefile | |
2064 | samples/wxpoem/Makefile | |
2065 | samples/wxsocket/Makefile | |
2066 | ], | |
a2cddd63 VZ |
2067 | [ |
2068 | chmod +x wx-config | |
f7f647e0 KB |
2069 | dnl The following line is more elegant but test -e is not supported by all |
2070 | dnl test varieties. | |
2071 | dnl if test ! -e include/wx/${TOOLKIT_DIR}/setup.h; then | |
2072 | cat include/wx/${TOOLKIT_DIR}/setup.h >/dev/null 2>&1 | |
2073 | if test $? != 0; then | |
c7114f59 VZ |
2074 | ${LN_S} `pwd`/setup.h include/wx/${TOOLKIT_DIR}/setup.h |
2075 | fi | |
a2cddd63 VZ |
2076 | ], |
2077 | [ | |
c7114f59 VZ |
2078 | LN_S="${ac_cv_prog_LN_S}" |
2079 | TOOLKIT_DIR="${TOOLKIT_DIR}" | |
a2cddd63 VZ |
2080 | ] |
2081 | ) | |
9a98a854 | 2082 |