]> git.saurik.com Git - wxWidgets.git/blame - wxwin.m4
Always add libwxscintilla in monolithic mode.
[wxWidgets.git] / wxwin.m4
CommitLineData
33e61c47
VZ
1dnl ---------------------------------------------------------------------------
2dnl Author: wxWidgets development team,
3dnl Francesco Montorsi,
4dnl Bob McCown (Mac-testing)
5dnl Creation date: 24/11/2001
6dnl RCS-ID: $Id$
7dnl ---------------------------------------------------------------------------
8
9dnl ===========================================================================
10dnl Table of Contents of this macro file:
11dnl -------------------------------------
12dnl
13dnl SECTION A: wxWidgets main macros
14dnl - WX_CONFIG_OPTIONS
15dnl - WX_CONFIG_CHECK
16dnl - WXRC_CHECK
17dnl - WX_STANDARD_OPTIONS
18dnl - WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS
19dnl - WX_DETECT_STANDARD_OPTION_VALUES
20dnl
21dnl SECTION B: wxWidgets-related utilities
22dnl - WX_LIKE_LIBNAME
23dnl - WX_ARG_ENABLE_YESNOAUTO
24dnl - WX_ARG_WITH_YESNOAUTO
25dnl
26dnl SECTION C: messages to the user
27dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG
28dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN
29dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG_END
30dnl - WX_BOOLOPT_SUMMARY
31dnl
32dnl The special "WX_DEBUG_CONFIGURE" variable can be set to 1 to enable extra
33dnl debug output on stdout from these macros.
34dnl ===========================================================================
35
36
debc175a 37dnl ---------------------------------------------------------------------------
128c8706 38dnl Macros for wxWidgets detection. Typically used in configure.in as:
debc175a 39dnl
5ff72dc4
VZ
40dnl AC_ARG_ENABLE(...)
41dnl AC_ARG_WITH(...)
42dnl ...
33e61c47 43dnl WX_CONFIG_OPTIONS
5ff72dc4
VZ
44dnl ...
45dnl ...
33e61c47 46dnl WX_CONFIG_CHECK([2.6.0], [wxWin=1])
debc175a
VS
47dnl if test "$wxWin" != 1; then
48dnl AC_MSG_ERROR([
128c8706 49dnl wxWidgets must be installed on your system
5ff72dc4
VZ
50dnl but wx-config script couldn't be found.
51dnl
52dnl Please check that wx-config is in path, the directory
128c8706 53dnl where wxWidgets libraries are installed (returned by
5ff72dc4 54dnl 'wx-config --libs' command) is in LD_LIBRARY_PATH or
128c8706 55dnl equivalent variable and wxWidgets version is 2.3.4 or above.
debc175a
VS
56dnl ])
57dnl fi
58dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
59dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY"
60dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY"
5ff72dc4 61dnl
80f3a6b0 62dnl LIBS="$LIBS $WX_LIBS"
33e61c47
VZ
63dnl
64dnl If you want to support standard --enable-debug/unicode/shared options, you
65dnl may do the following:
66dnl
67dnl ...
68dnl AC_CANONICAL_SYSTEM
69dnl
70dnl # define configure options
71dnl WX_CONFIG_OPTIONS
72dnl WX_STANDARD_OPTIONS([debug,unicode,shared,toolkit,wxshared])
73dnl
74dnl # basic configure checks
75dnl ...
76dnl
77dnl # we want to always have DEBUG==WX_DEBUG and UNICODE==WX_UNICODE
78dnl WX_DEBUG=$DEBUG
79dnl WX_UNICODE=$UNICODE
80dnl
81dnl WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS
82dnl WX_CONFIG_CHECK([2.8.0], [wxWin=1],,[html,core,net,base],[$WXCONFIG_FLAGS])
83dnl WX_DETECT_STANDARD_OPTION_VALUES
84dnl
85dnl # write the output files
86dnl AC_CONFIG_FILES([Makefile ...])
87dnl AC_OUTPUT
88dnl
89dnl # optional: just to show a message to the user
90dnl WX_STANDARD_OPTIONS_SUMMARY_MSG
91dnl
debc175a
VS
92dnl ---------------------------------------------------------------------------
93
33e61c47 94
debc175a 95dnl ---------------------------------------------------------------------------
33e61c47 96dnl WX_CONFIG_OPTIONS
debc175a 97dnl
5ff72dc4
VZ
98dnl adds support for --wx-prefix, --wx-exec-prefix, --with-wxdir and
99dnl --wx-config command line options
debc175a
VS
100dnl ---------------------------------------------------------------------------
101
33e61c47 102AC_DEFUN([WX_CONFIG_OPTIONS],
debc175a 103[
5ff72dc4 104 AC_ARG_WITH(wxdir,
128c8706 105 [ --with-wxdir=PATH Use uninstalled version of wxWidgets in PATH],
5ff72dc4
VZ
106 [ wx_config_name="$withval/wx-config"
107 wx_config_args="--inplace"])
108 AC_ARG_WITH(wx-config,
109 [ --with-wx-config=CONFIG wx-config script to use (optional)],
110 wx_config_name="$withval" )
111 AC_ARG_WITH(wx-prefix,
128c8706 112 [ --with-wx-prefix=PREFIX Prefix where wxWidgets is installed (optional)],
5ff72dc4
VZ
113 wx_config_prefix="$withval", wx_config_prefix="")
114 AC_ARG_WITH(wx-exec-prefix,
115 [ --with-wx-exec-prefix=PREFIX
128c8706 116 Exec prefix where wxWidgets is installed (optional)],
5ff72dc4 117 wx_config_exec_prefix="$withval", wx_config_exec_prefix="")
debc175a
VS
118])
119
ed33d524
VS
120dnl Helper macro for checking if wx version is at least $1.$2.$3, set's
121dnl wx_ver_ok=yes if it is:
122AC_DEFUN([_WX_PRIVATE_CHECK_VERSION],
123[
124 wx_ver_ok=""
731eee9a 125 if test "x$WX_VERSION" != x ; then
ed33d524
VS
126 if test $wx_config_major_version -gt $1; then
127 wx_ver_ok=yes
128 else
129 if test $wx_config_major_version -eq $1; then
130 if test $wx_config_minor_version -gt $2; then
131 wx_ver_ok=yes
132 else
133 if test $wx_config_minor_version -eq $2; then
134 if test $wx_config_micro_version -ge $3; then
135 wx_ver_ok=yes
136 fi
137 fi
138 fi
139 fi
140 fi
141 fi
142])
143
debc175a 144dnl ---------------------------------------------------------------------------
33e61c47 145dnl WX_CONFIG_CHECK(VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND
8708fa76 146dnl [, WX-LIBS [, ADDITIONAL-WX-CONFIG-FLAGS]]]])
debc175a 147dnl
128c8706
VS
148dnl Test for wxWidgets, and define WX_C*FLAGS, WX_LIBS and WX_LIBS_STATIC
149dnl (the latter is for static linking against wxWidgets). Set WX_CONFIG_NAME
debc175a
VS
150dnl environment variable to override the default name of the wx-config script
151dnl to use. Set WX_CONFIG_PATH to specify the full path to wx-config - in this
152dnl case the macro won't even waste time on tests for its existence.
c5be79d9 153dnl
8708fa76 154dnl Optional WX-LIBS argument contains comma- or space-separated list of
aa1c09fe
VZ
155dnl wxWidgets libraries to link against. If it is not specified then WX_LIBS
156dnl and WX_LIBS_STATIC will contain flags to link with all of the core
157dnl wxWidgets libraries.
8708fa76
VS
158dnl
159dnl Optional ADDITIONAL-WX-CONFIG-FLAGS argument is appended to wx-config
160dnl invocation command in present. It can be used to fine-tune lookup of
161dnl best wxWidgets build available.
c5be79d9
VS
162dnl
163dnl Example use:
33e61c47 164dnl WX_CONFIG_CHECK([2.6.0], [wxWin=1], [wxWin=0], [html,core,net]
8708fa76 165dnl [--unicode --debug])
debc175a
VS
166dnl ---------------------------------------------------------------------------
167
168dnl
169dnl Get the cflags and libraries from the wx-config script
170dnl
33e61c47 171AC_DEFUN([WX_CONFIG_CHECK],
debc175a
VS
172[
173 dnl do we have wx-config name: it can be wx-config or wxd-config or ...
174 if test x${WX_CONFIG_NAME+set} != xset ; then
175 WX_CONFIG_NAME=wx-config
176 fi
5ff72dc4 177
debc175a
VS
178 if test "x$wx_config_name" != x ; then
179 WX_CONFIG_NAME="$wx_config_name"
180 fi
181
182 dnl deal with optional prefixes
183 if test x$wx_config_exec_prefix != x ; then
184 wx_config_args="$wx_config_args --exec-prefix=$wx_config_exec_prefix"
8e1aefe0 185 WX_LOOKUP_PATH="$wx_config_exec_prefix/bin"
debc175a
VS
186 fi
187 if test x$wx_config_prefix != x ; then
188 wx_config_args="$wx_config_args --prefix=$wx_config_prefix"
8e1aefe0 189 WX_LOOKUP_PATH="$WX_LOOKUP_PATH:$wx_config_prefix/bin"
debc175a 190 fi
48112931
VS
191 if test "$cross_compiling" = "yes"; then
192 wx_config_args="$wx_config_args --host=$host_alias"
193 fi
debc175a 194
8e1aefe0
VS
195 dnl don't search the PATH if WX_CONFIG_NAME is absolute filename
196 if test -x "$WX_CONFIG_NAME" ; then
197 AC_MSG_CHECKING(for wx-config)
198 WX_CONFIG_PATH="$WX_CONFIG_NAME"
199 AC_MSG_RESULT($WX_CONFIG_PATH)
200 else
201 AC_PATH_PROG(WX_CONFIG_PATH, $WX_CONFIG_NAME, no, "$WX_LOOKUP_PATH:$PATH")
debc175a
VS
202 fi
203
204 if test "$WX_CONFIG_PATH" != "no" ; then
731eee9a 205 WX_VERSION=""
debc175a
VS
206
207 min_wx_version=ifelse([$1], ,2.2.1,$1)
8708fa76 208 if test -z "$5" ; then
128c8706 209 AC_MSG_CHECKING([for wxWidgets version >= $min_wx_version])
8708fa76 210 else
128c8706 211 AC_MSG_CHECKING([for wxWidgets version >= $min_wx_version ($5)])
8708fa76 212 fi
debc175a 213
a8571f4e
VZ
214 dnl don't add the libraries ($4) to this variable as this would result in
215 dnl an error when it's used with --version below
216 WX_CONFIG_WITH_ARGS="$WX_CONFIG_PATH $wx_config_args $5"
debc175a 217
731eee9a
VZ
218 WX_VERSION=`$WX_CONFIG_WITH_ARGS --version 2>/dev/null`
219 wx_config_major_version=`echo $WX_VERSION | \
debc175a 220 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
731eee9a 221 wx_config_minor_version=`echo $WX_VERSION | \
debc175a 222 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
731eee9a 223 wx_config_micro_version=`echo $WX_VERSION | \
debc175a
VS
224 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
225
226 wx_requested_major_version=`echo $min_wx_version | \
227 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
228 wx_requested_minor_version=`echo $min_wx_version | \
229 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
230 wx_requested_micro_version=`echo $min_wx_version | \
231 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
232
ed33d524
VS
233 _WX_PRIVATE_CHECK_VERSION([$wx_requested_major_version],
234 [$wx_requested_minor_version],
235 [$wx_requested_micro_version])
debc175a 236
3f45f8bf 237 if test -n "$wx_ver_ok"; then
731eee9a 238 AC_MSG_RESULT(yes (version $WX_VERSION))
a8571f4e 239 WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs $4`
3f45f8bf
RL
240
241 dnl is this even still appropriate? --static is a real option now
242 dnl and WX_CONFIG_WITH_ARGS is likely to contain it if that is
243 dnl what the user actually wants, making this redundant at best.
244 dnl For now keep it in case anyone actually used it in the past.
128c8706 245 AC_MSG_CHECKING([for wxWidgets static library])
a8571f4e 246 WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs $4 2>/dev/null`
a1d47842
VZ
247 if test "x$WX_LIBS_STATIC" = "x"; then
248 AC_MSG_RESULT(no)
249 else
3f45f8bf
RL
250 AC_MSG_RESULT(yes)
251 fi
debc175a
VS
252
253 dnl starting with version 2.2.6 wx-config has --cppflags argument
254 wx_has_cppflags=""
255 if test $wx_config_major_version -gt 2; then
256 wx_has_cppflags=yes
257 else
258 if test $wx_config_major_version -eq 2; then
259 if test $wx_config_minor_version -gt 2; then
260 wx_has_cppflags=yes
261 else
262 if test $wx_config_minor_version -eq 2; then
263 if test $wx_config_micro_version -ge 6; then
264 wx_has_cppflags=yes
265 fi
266 fi
267 fi
268 fi
269 fi
270
692ebda6
JS
271 dnl starting with version 2.7.0 wx-config has --rescomp option
272 wx_has_rescomp=""
273 if test $wx_config_major_version -gt 2; then
274 wx_has_rescomp=yes
275 else
276 if test $wx_config_major_version -eq 2; then
277 if test $wx_config_minor_version -ge 7; then
278 wx_has_rescomp=yes
279 fi
280 fi
281 fi
282 if test "x$wx_has_rescomp" = x ; then
283 dnl cannot give any useful info for resource compiler
284 WX_RESCOMP=
285 else
286 WX_RESCOMP=`$WX_CONFIG_WITH_ARGS --rescomp`
287 fi
288
debc175a
VS
289 if test "x$wx_has_cppflags" = x ; then
290 dnl no choice but to define all flags like CFLAGS
a8571f4e 291 WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags $4`
debc175a
VS
292 WX_CPPFLAGS=$WX_CFLAGS
293 WX_CXXFLAGS=$WX_CFLAGS
294
295 WX_CFLAGS_ONLY=$WX_CFLAGS
296 WX_CXXFLAGS_ONLY=$WX_CFLAGS
297 else
298 dnl we have CPPFLAGS included in CFLAGS included in CXXFLAGS
a8571f4e
VZ
299 WX_CPPFLAGS=`$WX_CONFIG_WITH_ARGS --cppflags $4`
300 WX_CXXFLAGS=`$WX_CONFIG_WITH_ARGS --cxxflags $4`
301 WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags $4`
debc175a
VS
302
303 WX_CFLAGS_ONLY=`echo $WX_CFLAGS | sed "s@^$WX_CPPFLAGS *@@"`
304 WX_CXXFLAGS_ONLY=`echo $WX_CXXFLAGS | sed "s@^$WX_CFLAGS *@@"`
305 fi
debc175a 306
3f45f8bf
RL
307 ifelse([$2], , :, [$2])
308
debc175a 309 else
3f45f8bf 310
731eee9a 311 if test "x$WX_VERSION" = x; then
5ff72dc4
VZ
312 dnl no wx-config at all
313 AC_MSG_RESULT(no)
debc175a 314 else
731eee9a 315 AC_MSG_RESULT(no (version $WX_VERSION is not new enough))
debc175a
VS
316 fi
317
318 WX_CFLAGS=""
319 WX_CPPFLAGS=""
320 WX_CXXFLAGS=""
321 WX_LIBS=""
322 WX_LIBS_STATIC=""
692ebda6 323 WX_RESCOMP=""
33e61c47
VZ
324
325 if test ! -z "$5"; then
326
327 wx_error_message="
328 The configuration you asked for $PACKAGE_NAME requires a wxWidgets
329 build with the following settings:
330 $5
331 but such build is not available.
332
333 To see the wxWidgets builds available on this system, please use
334 'wx-config --list' command. To use the default build, returned by
335 'wx-config --selected-config', use the options with their 'auto'
336 default values."
337
338 fi
339
340 wx_error_message="
341 The requested wxWidgets build couldn't be found.
342 $wx_error_message
343
344 If you still get this error, then check that 'wx-config' is
345 in path, the directory where wxWidgets libraries are installed
346 (returned by 'wx-config --libs' command) is in LD_LIBRARY_PATH
347 or equivalent variable and wxWidgets version is $1 or above."
348
349 ifelse([$3], , AC_MSG_ERROR([$wx_error_message]), [$3])
3f45f8bf 350
debc175a 351 fi
80f3a6b0
JS
352 else
353
354 WX_CFLAGS=""
355 WX_CPPFLAGS=""
356 WX_CXXFLAGS=""
357 WX_LIBS=""
358 WX_LIBS_STATIC=""
692ebda6
JS
359 WX_RESCOMP=""
360
80f3a6b0
JS
361 ifelse([$3], , :, [$3])
362
debc175a
VS
363 fi
364
365 AC_SUBST(WX_CPPFLAGS)
366 AC_SUBST(WX_CFLAGS)
367 AC_SUBST(WX_CXXFLAGS)
368 AC_SUBST(WX_CFLAGS_ONLY)
369 AC_SUBST(WX_CXXFLAGS_ONLY)
370 AC_SUBST(WX_LIBS)
371 AC_SUBST(WX_LIBS_STATIC)
731eee9a 372 AC_SUBST(WX_VERSION)
692ebda6 373 AC_SUBST(WX_RESCOMP)
33e61c47
VZ
374
375 dnl need to export also WX_VERSION_MINOR and WX_VERSION_MAJOR symbols
f9f73163 376 dnl to support wxpresets bakefiles (we export also WX_VERSION_MICRO for completeness):
33e61c47
VZ
377 WX_VERSION_MAJOR="$wx_config_major_version"
378 WX_VERSION_MINOR="$wx_config_minor_version"
f9f73163 379 WX_VERSION_MICRO="$wx_config_micro_version"
33e61c47
VZ
380 AC_SUBST(WX_VERSION_MAJOR)
381 AC_SUBST(WX_VERSION_MINOR)
f9f73163 382 AC_SUBST(WX_VERSION_MICRO)
debc175a 383])
ed33d524
VS
384
385dnl ---------------------------------------------------------------------------
386dnl Get information on the wxrc program for making C++, Python and xrs
387dnl resource files.
388dnl
389dnl AC_ARG_ENABLE(...)
390dnl AC_ARG_WITH(...)
391dnl ...
33e61c47 392dnl WX_CONFIG_OPTIONS
ed33d524 393dnl ...
33e61c47 394dnl WX_CONFIG_CHECK(2.6.0, wxWin=1)
ed33d524
VS
395dnl if test "$wxWin" != 1; then
396dnl AC_MSG_ERROR([
397dnl wxWidgets must be installed on your system
398dnl but wx-config script couldn't be found.
399dnl
400dnl Please check that wx-config is in path, the directory
401dnl where wxWidgets libraries are installed (returned by
402dnl 'wx-config --libs' command) is in LD_LIBRARY_PATH or
403dnl equivalent variable and wxWidgets version is 2.6.0 or above.
404dnl ])
405dnl fi
406dnl
33e61c47 407dnl WXRC_CHECK([HAVE_WXRC=1], [HAVE_WXRC=0])
ed33d524
VS
408dnl if test "x$HAVE_WXRC" != x1; then
409dnl AC_MSG_ERROR([
410dnl The wxrc program was not installed or not found.
5e5b46bb 411dnl
ed33d524
VS
412dnl Please check the wxWidgets installation.
413dnl ])
414dnl fi
415dnl
416dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
417dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY"
418dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY"
419dnl
420dnl LDFLAGS="$LDFLAGS $WX_LIBS"
421dnl ---------------------------------------------------------------------------
422
ed33d524 423dnl ---------------------------------------------------------------------------
33e61c47 424dnl WXRC_CHECK([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
ed33d524
VS
425dnl
426dnl Test for wxWidgets' wxrc program for creating either C++, Python or XRS
427dnl resources. The variable WXRC will be set and substituted in the configure
428dnl script and Makefiles.
429dnl
430dnl Example use:
33e61c47 431dnl WXRC_CHECK([wxrc=1], [wxrc=0])
ed33d524
VS
432dnl ---------------------------------------------------------------------------
433
434dnl
435dnl wxrc program from the wx-config script
436dnl
33e61c47 437AC_DEFUN([WXRC_CHECK],
ed33d524
VS
438[
439 AC_ARG_VAR([WXRC], [Path to wxWidget's wxrc resource compiler])
5e5b46bb 440
ed33d524
VS
441 if test "x$WX_CONFIG_NAME" = x; then
442 AC_MSG_ERROR([The wxrc tests must run after wxWidgets test.])
443 else
5e5b46bb 444
ed33d524 445 AC_MSG_CHECKING([for wxrc])
5e5b46bb 446
ed33d524
VS
447 if test "x$WXRC" = x ; then
448 dnl wx-config --utility is a new addition to wxWidgets:
449 _WX_PRIVATE_CHECK_VERSION(2,5,3)
450 if test -n "$wx_ver_ok"; then
451 WXRC=`$WX_CONFIG_WITH_ARGS --utility=wxrc`
452 fi
453 fi
454
455 if test "x$WXRC" = x ; then
456 AC_MSG_RESULT([not found])
457 ifelse([$2], , :, [$2])
458 else
459 AC_MSG_RESULT([$WXRC])
460 ifelse([$1], , :, [$1])
461 fi
5e5b46bb 462
ed33d524
VS
463 AC_SUBST(WXRC)
464 fi
465])
33e61c47
VZ
466
467dnl ---------------------------------------------------------------------------
468dnl WX_LIKE_LIBNAME([output-var] [prefix], [name])
469dnl
5e5b46bb 470dnl Sets the "output-var" variable to the name of a library named with same
33e61c47 471dnl wxWidgets rule.
5e5b46bb 472dnl E.g. for output-var=='lib', name=='test', prefix='mine', sets
33e61c47 473dnl the $lib variable to:
5e5b46bb 474dnl 'mine_gtk2ud_test-2.8'
f9f73163 475dnl if WX_PORT=gtk2, WX_UNICODE=1, WX_DEBUG=1 and WX_RELEASE=28
33e61c47
VZ
476dnl ---------------------------------------------------------------------------
477AC_DEFUN([WX_LIKE_LIBNAME],
478 [
479 wx_temp="$2""_""$WX_PORT"
480
481 dnl add the [u][d] string
482 if test "$WX_UNICODE" = "1"; then
483 wx_temp="$wx_temp""u"
484 fi
485 if test "$WX_DEBUG" = "1"; then
486 wx_temp="$wx_temp""d"
487 fi
488
489 dnl complete the name of the lib
490 wx_temp="$wx_temp""_""$3""-$WX_VERSION_MAJOR.$WX_VERSION_MINOR"
491
492 dnl save it in the user's variable
493 $1=$wx_temp
494 ])
495
496dnl ---------------------------------------------------------------------------
497dnl WX_ARG_ENABLE_YESNOAUTO/WX_ARG_WITH_YESNOAUTO
498dnl
499dnl Two little custom macros which define the ENABLE/WITH configure arguments.
500dnl Macro arguments:
501dnl $1 = the name of the --enable / --with feature
502dnl $2 = the name of the variable associated
503dnl $3 = the description of that feature
504dnl $4 = the default value for that feature
505dnl $5 = additional action to do in case option is given with "yes" value
506dnl ---------------------------------------------------------------------------
507AC_DEFUN([WX_ARG_ENABLE_YESNOAUTO],
508 [AC_ARG_ENABLE($1,
509 AC_HELP_STRING([--enable-$1], [$3 (default is $4)]),
510 [], [enableval="$4"])
511
512 dnl Show a message to the user about this option
513 AC_MSG_CHECKING([for the --enable-$1 option])
514 if test "$enableval" = "yes" ; then
515 AC_MSG_RESULT([yes])
516 $2=1
517 $5
518 elif test "$enableval" = "no" ; then
519 AC_MSG_RESULT([no])
520 $2=0
521 elif test "$enableval" = "auto" ; then
522 AC_MSG_RESULT([will be automatically detected])
523 $2="auto"
524 else
525 AC_MSG_ERROR([
526 Unrecognized option value (allowed values: yes, no, auto)
527 ])
528 fi
529 ])
530
531AC_DEFUN([WX_ARG_WITH_YESNOAUTO],
532 [AC_ARG_WITH($1,
533 AC_HELP_STRING([--with-$1], [$3 (default is $4)]),
534 [], [withval="$4"])
535
536 dnl Show a message to the user about this option
537 AC_MSG_CHECKING([for the --with-$1 option])
538 if test "$withval" = "yes" ; then
539 AC_MSG_RESULT([yes])
540 $2=1
541 $5
542 dnl NB: by default we don't allow --with-$1=no option
543 dnl since it does not make much sense !
544 elif test "$6" = "1" -a "$withval" = "no" ; then
545 AC_MSG_RESULT([no])
546 $2=0
547 elif test "$withval" = "auto" ; then
548 AC_MSG_RESULT([will be automatically detected])
549 $2="auto"
550 else
551 AC_MSG_ERROR([
552 Unrecognized option value (allowed values: yes, auto)
553 ])
554 fi
555 ])
556
557
558dnl ---------------------------------------------------------------------------
559dnl WX_STANDARD_OPTIONS([options-to-add])
560dnl
561dnl Adds to the configure script one or more of the following options:
562dnl --enable-[debug|unicode|shared|wxshared|wxdebug]
0e1f8ea4 563dnl --with-[gtk|msw|motif|x11|mac|dfb]
f9f73163 564dnl --with-wxversion
33e61c47
VZ
565dnl Then checks for their presence and eventually set the DEBUG, UNICODE, SHARED,
566dnl PORT, WX_SHARED, WX_DEBUG, variables to one of the "yes", "no", "auto" values.
567dnl
568dnl Note that e.g. UNICODE != WX_UNICODE; the first is the value of the
569dnl --enable-unicode option (in boolean format) while the second indicates
570dnl if wxWidgets was built in Unicode mode (and still is in boolean format).
571dnl ---------------------------------------------------------------------------
572AC_DEFUN([WX_STANDARD_OPTIONS],
573 [
574
575 dnl the following lines will expand to WX_ARG_ENABLE_YESNOAUTO calls if and only if
576 dnl the $1 argument contains respectively the debug,unicode or shared options.
577
2f3584b1
VZ
578 dnl be careful here not to set debug flag if only "wxdebug" was specified
579 ifelse(regexp([$1], [\bdebug]), [-1],,
33e61c47
VZ
580 [WX_ARG_ENABLE_YESNOAUTO([debug], [DEBUG], [Build in debug mode], [auto])])
581
582 ifelse(index([$1], [unicode]), [-1],,
583 [WX_ARG_ENABLE_YESNOAUTO([unicode], [UNICODE], [Build in Unicode mode], [auto])])
584
2f3584b1 585 ifelse(regexp([$1], [\bshared]), [-1],,
33e61c47
VZ
586 [WX_ARG_ENABLE_YESNOAUTO([shared], [SHARED], [Build as shared library], [auto])])
587
588 dnl WX_ARG_WITH_YESNOAUTO cannot be used for --with-toolkit since it's an option
589 dnl which must be able to accept the auto|gtk1|gtk2|msw|... values
590 ifelse(index([$1], [toolkit]), [-1],,
591 [
592 AC_ARG_WITH([toolkit],
593 AC_HELP_STRING([--with-toolkit],
594 [Build against a specific wxWidgets toolkit (default is auto)]),
595 [], [withval="auto"])
596
597 dnl Show a message to the user about this option
598 AC_MSG_CHECKING([for the --with-toolkit option])
599 if test "$withval" = "auto" ; then
600 AC_MSG_RESULT([will be automatically detected])
601 TOOLKIT="auto"
602 else
603 TOOLKIT="$withval"
604
605 dnl PORT must be one of the allowed values
606 if test "$TOOLKIT" != "gtk1" -a "$TOOLKIT" != "gtk2" -a \
607 "$TOOLKIT" != "msw" -a "$TOOLKIT" != "motif" -a \
eff97cba
VZ
608 "$TOOLKIT" != "osx_carbon" -a "$TOOLKIT" != "osx_cocoa" -a \
609 "$TOOLKIT" != "dfb" -a "$TOOLKIT" != "x11"; then
33e61c47 610 AC_MSG_ERROR([
eff97cba 611 Unrecognized option value (allowed values: auto, gtk1, gtk2, msw, motif, osx_carbon, osx_cocoa, dfb, x11)
33e61c47
VZ
612 ])
613 fi
614
615 AC_MSG_RESULT([$TOOLKIT])
616 fi
617 ])
618
619 dnl ****** IMPORTANT *******
620 dnl Unlike for the UNICODE setting, you can build your program in
621 dnl shared mode against a static build of wxWidgets. Thus we have the
622 dnl following option which allows these mixtures. E.g.
623 dnl
624 dnl ./configure --disable-shared --with-wxshared
625 dnl
626 dnl will build your library in static mode against the first available
627 dnl shared build of wxWidgets.
628 dnl
629 dnl Note that's not possible to do the viceversa:
630 dnl
631 dnl ./configure --enable-shared --without-wxshared
632 dnl
633 dnl Doing so you would try to build your library in shared mode against a static
634 dnl build of wxWidgets. This is not possible (you would mix PIC and non PIC code) !
635 dnl A check for this combination of options is in WX_DETECT_STANDARD_OPTION_VALUES
636 dnl (where we know what 'auto' should be expanded to).
637 dnl
638 dnl If you try to build something in ANSI mode against a UNICODE build
639 dnl of wxWidgets or in RELEASE mode against a DEBUG build of wxWidgets,
640 dnl then at best you'll get ton of linking errors !
641 dnl ************************
642
643 ifelse(index([$1], [wxshared]), [-1],,
644 [
645 WX_ARG_WITH_YESNOAUTO(
646 [wxshared], [WX_SHARED],
647 [Force building against a shared build of wxWidgets, even if --disable-shared is given],
648 [auto], [], [1])
649 ])
650
651 dnl Just like for SHARED and WX_SHARED it may happen that some adventurous
652 dnl peoples will want to mix a wxWidgets release build with a debug build of
653 dnl his app/lib. So, we have both DEBUG and WX_DEBUG variables.
654 ifelse(index([$1], [wxdebug]), [-1],,
655 [
656 WX_ARG_WITH_YESNOAUTO(
657 [wxdebug], [WX_DEBUG],
658 [Force building against a debug build of wxWidgets, even if --disable-debug is given],
659 [auto], [], [1])
660 ])
661
662 dnl WX_ARG_WITH_YESNOAUTO cannot be used for --with-wxversion since it's an option
f9f73163 663 dnl which accepts the "auto|2.6|2.7|2.8|2.9|3.0" etc etc values
33e61c47
VZ
664 ifelse(index([$1], [wxversion]), [-1],,
665 [
666 AC_ARG_WITH([wxversion],
667 AC_HELP_STRING([--with-wxversion],
668 [Build against a specific version of wxWidgets (default is auto)]),
669 [], [withval="auto"])
670
671 dnl Show a message to the user about this option
672 AC_MSG_CHECKING([for the --with-wxversion option])
673 if test "$withval" = "auto" ; then
674 AC_MSG_RESULT([will be automatically detected])
f9f73163 675 WX_RELEASE="auto"
33e61c47
VZ
676 else
677
678 wx_requested_major_version=`echo $withval | \
679 sed 's/\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
680 wx_requested_minor_version=`echo $withval | \
681 sed 's/\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
682
683 dnl both vars above must be exactly 1 digit
684 if test "${#wx_requested_major_version}" != "1" -o \
685 "${#wx_requested_minor_version}" != "1" ; then
686 AC_MSG_ERROR([
f9f73163 687 Unrecognized option value (allowed values: auto, 2.6, 2.7, 2.8, 2.9, 3.0)
33e61c47
VZ
688 ])
689 fi
690
f9f73163
FM
691 WX_RELEASE="$wx_requested_major_version"".""$wx_requested_minor_version"
692 AC_MSG_RESULT([$WX_RELEASE])
33e61c47
VZ
693 fi
694 ])
695
696 if test "$WX_DEBUG_CONFIGURE" = "1"; then
697 echo "[[dbg]] DEBUG: $DEBUG, WX_DEBUG: $WX_DEBUG"
698 echo "[[dbg]] UNICODE: $UNICODE, WX_UNICODE: $WX_UNICODE"
699 echo "[[dbg]] SHARED: $SHARED, WX_SHARED: $WX_SHARED"
700 echo "[[dbg]] TOOLKIT: $TOOLKIT, WX_TOOLKIT: $WX_TOOLKIT"
f9f73163 701 echo "[[dbg]] VERSION: $VERSION, WX_RELEASE: $WX_RELEASE"
33e61c47
VZ
702 fi
703 ])
704
705
706dnl ---------------------------------------------------------------------------
707dnl WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS
708dnl
709dnl Sets the WXCONFIG_FLAGS string using the SHARED,DEBUG,UNICODE variable values
710dnl which are different from "auto".
711dnl Thus this macro needs to be called only once all options have been set.
712dnl ---------------------------------------------------------------------------
713AC_DEFUN([WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS],
714 [
715 if test "$WX_SHARED" = "1" ; then
716 WXCONFIG_FLAGS="--static=no "
717 elif test "$WX_SHARED" = "0" ; then
718 WXCONFIG_FLAGS="--static=yes "
719 fi
720
721 if test "$WX_DEBUG" = "1" ; then
722 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--debug=yes "
723 elif test "$WX_DEBUG" = "0" ; then
724 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--debug=no "
725 fi
726
727 dnl The user should have set WX_UNICODE=UNICODE
728 if test "$WX_UNICODE" = "1" ; then
729 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--unicode=yes "
730 elif test "$WX_UNICODE" = "0" ; then
731 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--unicode=no "
732 fi
733
734 if test "$TOOLKIT" != "auto" ; then
735 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--toolkit=$TOOLKIT "
736 fi
737
f9f73163
FM
738 if test "$WX_RELEASE" != "auto" ; then
739 WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--version=$WX_RELEASE "
33e61c47
VZ
740 fi
741
742 dnl strip out the last space of the string
743 WXCONFIG_FLAGS=${WXCONFIG_FLAGS% }
744
745 if test "$WX_DEBUG_CONFIGURE" = "1"; then
746 echo "[[dbg]] WXCONFIG_FLAGS: $WXCONFIG_FLAGS"
747 fi
748 ])
749
750
751dnl ---------------------------------------------------------------------------
5e5b46bb 752dnl _WX_SELECTEDCONFIG_CHECKFOR([RESULTVAR], [STRING], [MSG]
33e61c47
VZ
753dnl [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
754dnl
755dnl Outputs the given MSG. Then searches the given STRING in the wxWidgets
756dnl additional CPP flags and put the result of the search in WX_$RESULTVAR
757dnl also adding the "yes" or "no" message result to MSG.
758dnl ---------------------------------------------------------------------------
759AC_DEFUN([_WX_SELECTEDCONFIG_CHECKFOR],
760 [
761 if test "$$1" = "auto" ; then
762
763 dnl The user does not have particular preferences for this option;
764 dnl so we will detect the wxWidgets relative build setting and use it
765 AC_MSG_CHECKING([$3])
766
5e5b46bb 767 dnl set WX_$1 variable to 1 if the $WX_SELECTEDCONFIG contains the $2
33e61c47 768 dnl string or to 0 otherwise.
5e5b46bb 769 dnl NOTE: 'expr match STRING REGEXP' cannot be used since on Mac it
33e61c47
VZ
770 dnl doesn't work; we use 'expr STRING : REGEXP' instead
771 WX_$1=$(expr "$WX_SELECTEDCONFIG" : ".*$2.*")
772
773 if test "$WX_$1" != "0"; then
774 WX_$1=1
775 AC_MSG_RESULT([yes])
776 ifelse([$4], , :, [$4])
777 else
778 WX_$1=0
779 AC_MSG_RESULT([no])
780 ifelse([$5], , :, [$5])
781 fi
782 else
783
784 dnl Use the setting given by the user
785 WX_$1=$$1
786 fi
787 ])
788
789dnl ---------------------------------------------------------------------------
790dnl WX_DETECT_STANDARD_OPTION_VALUES
791dnl
792dnl Detects the values of the following variables:
f9f73163 793dnl 1) WX_RELEASE
33e61c47
VZ
794dnl 2) WX_UNICODE
795dnl 3) WX_DEBUG
796dnl 4) WX_SHARED (and also WX_STATIC)
797dnl 5) WX_PORT
798dnl from the previously selected wxWidgets build; this macro in fact must be
799dnl called *after* calling the WX_CONFIG_CHECK macro.
800dnl
801dnl Note that the WX_VERSION_MAJOR, WX_VERSION_MINOR symbols are already set
802dnl by WX_CONFIG_CHECK macro
803dnl ---------------------------------------------------------------------------
804AC_DEFUN([WX_DETECT_STANDARD_OPTION_VALUES],
805 [
f9f73163
FM
806 dnl IMPORTANT: WX_VERSION contains all three major.minor.micro digits,
807 dnl while WX_RELEASE only the major.minor ones.
808 WX_RELEASE="$WX_VERSION_MAJOR""$WX_VERSION_MINOR"
809 if test $WX_RELEASE -lt 26 ; then
33e61c47
VZ
810
811 AC_MSG_ERROR([
812 Cannot detect the wxWidgets configuration for the selected wxWidgets build
731eee9a 813 since its version is $WX_VERSION < 2.6.0; please install a newer
33e61c47
VZ
814 version of wxWidgets.
815 ])
816 fi
817
818 dnl The wx-config we are using understands the "--selected_config"
819 dnl option which returns an easy-parseable string !
820 WX_SELECTEDCONFIG=$($WX_CONFIG_WITH_ARGS --selected_config)
821
822 if test "$WX_DEBUG_CONFIGURE" = "1"; then
823 echo "[[dbg]] Using wx-config --selected-config"
824 echo "[[dbg]] WX_SELECTEDCONFIG: $WX_SELECTEDCONFIG"
825 fi
826
827
828 dnl we could test directly for WX_SHARED with a line like:
829 dnl _WX_SELECTEDCONFIG_CHECKFOR([SHARED], [shared],
830 dnl [if wxWidgets was built in SHARED mode])
831 dnl but wx-config --selected-config DOES NOT outputs the 'shared'
832 dnl word when wx was built in shared mode; it rather outputs the
833 dnl 'static' word when built in static mode.
834 if test $WX_SHARED = "1"; then
835 STATIC=0
836 elif test $WX_SHARED = "0"; then
837 STATIC=1
838 elif test $WX_SHARED = "auto"; then
839 STATIC="auto"
840 fi
841
842 dnl Now set the WX_UNICODE, WX_DEBUG, WX_STATIC variables
843 _WX_SELECTEDCONFIG_CHECKFOR([UNICODE], [unicode],
844 [if wxWidgets was built with UNICODE enabled])
845 _WX_SELECTEDCONFIG_CHECKFOR([DEBUG], [debug],
846 [if wxWidgets was built in DEBUG mode])
847 _WX_SELECTEDCONFIG_CHECKFOR([STATIC], [static],
848 [if wxWidgets was built in STATIC mode])
849
850 dnl init WX_SHARED from WX_STATIC
851 if test "$WX_STATIC" != "0"; then
852 WX_SHARED=0
853 else
854 WX_SHARED=1
855 fi
856
857 AC_SUBST(WX_UNICODE)
858 AC_SUBST(WX_DEBUG)
859 AC_SUBST(WX_SHARED)
860
861 dnl detect the WX_PORT to use
862 if test "$TOOLKIT" = "auto" ; then
863
864 dnl The user does not have particular preferences for this option;
865 dnl so we will detect the wxWidgets relative build setting and use it
866 AC_MSG_CHECKING([which wxWidgets toolkit was selected])
867
868 WX_GTKPORT1=$(expr "$WX_SELECTEDCONFIG" : ".*gtk1.*")
869 WX_GTKPORT2=$(expr "$WX_SELECTEDCONFIG" : ".*gtk2.*")
870 WX_MSWPORT=$(expr "$WX_SELECTEDCONFIG" : ".*msw.*")
871 WX_MOTIFPORT=$(expr "$WX_SELECTEDCONFIG" : ".*motif.*")
124a5e3e
FM
872 WX_OSXCOCOAPORT=$(expr "$WX_SELECTEDCONFIG" : ".*osx_cocoa.*")
873 WX_OSXCARBONPORT=$(expr "$WX_SELECTEDCONFIG" : ".*osx_carbon.*")
33e61c47 874 WX_X11PORT=$(expr "$WX_SELECTEDCONFIG" : ".*x11.*")
33e61c47
VZ
875 WX_DFBPORT=$(expr "$WX_SELECTEDCONFIG" : ".*dfb.*")
876
877 WX_PORT="unknown"
878 if test "$WX_GTKPORT1" != "0"; then WX_PORT="gtk1"; fi
879 if test "$WX_GTKPORT2" != "0"; then WX_PORT="gtk2"; fi
880 if test "$WX_MSWPORT" != "0"; then WX_PORT="msw"; fi
881 if test "$WX_MOTIFPORT" != "0"; then WX_PORT="motif"; fi
124a5e3e
FM
882 if test "$WX_OSXCOCOAPORT" != "0"; then WX_PORT="osx_cocoa"; fi
883 if test "$WX_OSXCARBONPORT" != "0"; then WX_PORT="osx_carbon"; fi
33e61c47 884 if test "$WX_X11PORT" != "0"; then WX_PORT="x11"; fi
33e61c47
VZ
885 if test "$WX_DFBPORT" != "0"; then WX_PORT="dfb"; fi
886
124a5e3e
FM
887 dnl NOTE: backward-compatible check for wx2.8; in wx2.9 the mac
888 dnl ports are called 'osx_cocoa' and 'osx_carbon' (see above)
889 WX_MACPORT=$(expr "$WX_SELECTEDCONFIG" : ".*mac.*")
890 if test "$WX_MACPORT" != "0"; then WX_PORT="mac"; fi
891
33e61c47
VZ
892 dnl check at least one of the WX_*PORT has been set !
893
894 if test "$WX_PORT" = "unknown" ; then
895 AC_MSG_ERROR([
896 Cannot detect the currently installed wxWidgets port !
897 Please check your 'wx-config --cxxflags'...
898 ])
899 fi
900
901 AC_MSG_RESULT([$WX_PORT])
902 else
903
904 dnl Use the setting given by the user
905 if test -z "$TOOLKIT" ; then
906 WX_PORT=$TOOLKIT
907 else
908 dnl try with PORT
909 WX_PORT=$PORT
910 fi
911 fi
912
913 AC_SUBST(WX_PORT)
914
915 if test "$WX_DEBUG_CONFIGURE" = "1"; then
916 echo "[[dbg]] Values of all WX_* options after final detection:"
917 echo "[[dbg]] WX_DEBUG: $WX_DEBUG"
918 echo "[[dbg]] WX_UNICODE: $WX_UNICODE"
919 echo "[[dbg]] WX_SHARED: $WX_SHARED"
f9f73163 920 echo "[[dbg]] WX_RELEASE: $WX_RELEASE"
33e61c47
VZ
921 echo "[[dbg]] WX_PORT: $WX_PORT"
922 fi
923
924 dnl Avoid problem described in the WX_STANDARD_OPTIONS which happens when
925 dnl the user gives the options:
926 dnl ./configure --enable-shared --without-wxshared
927 dnl or just do
928 dnl ./configure --enable-shared
929 dnl but there is only a static build of wxWidgets available.
930 if test "$WX_SHARED" = "0" -a "$SHARED" = "1"; then
931 AC_MSG_ERROR([
932 Cannot build shared library against a static build of wxWidgets !
933 This error happens because the wxWidgets build which was selected
934 has been detected as static while you asked to build $PACKAGE_NAME
935 as shared library and this is not possible.
936 Use the '--disable-shared' option to build $PACKAGE_NAME
937 as static library or '--with-wxshared' to use wxWidgets as shared library.
938 ])
939 fi
940
941 dnl now we can finally update the DEBUG,UNICODE,SHARED options
942 dnl to their final values if they were set to 'auto'
943 if test "$DEBUG" = "auto"; then
944 DEBUG=$WX_DEBUG
33e61c47
VZ
945 fi
946 if test "$UNICODE" = "auto"; then
947 UNICODE=$WX_UNICODE
948 fi
949 if test "$SHARED" = "auto"; then
950 SHARED=$WX_SHARED
951 fi
952 if test "$TOOLKIT" = "auto"; then
953 TOOLKIT=$WX_PORT
954 fi
955
0edfe8f7
FM
956 dnl in case the user needs a BUILD=debug/release var...
957 if test "$DEBUG" = "1"; then
958 BUILD="debug"
5e5b46bb 959 elif test "$DEBUG" = "0" -o "$DEBUG" = ""; then
0edfe8f7
FM
960 BUILD="release"
961 fi
962
33e61c47
VZ
963 dnl respect the DEBUG variable adding the optimize/debug flags
964 dnl NOTE: the CXXFLAGS are merged together with the CPPFLAGS so we
965 dnl don't need to set them, too
966 if test "$DEBUG" = "1"; then
967 CXXFLAGS="$CXXFLAGS -g -O0"
968 CFLAGS="$CFLAGS -g -O0"
969 else
970 CXXFLAGS="$CXXFLAGS -O2"
971 CFLAGS="$CFLAGS -O2"
972 fi
973 ])
974
975dnl ---------------------------------------------------------------------------
976dnl WX_BOOLOPT_SUMMARY([name of the boolean variable to show summary for],
977dnl [what to print when var is 1],
978dnl [what to print when var is 0])
979dnl
980dnl Prints $2 when variable $1 == 1 and prints $3 when variable $1 == 0.
981dnl This macro mainly exists just to make configure.ac scripts more readable.
982dnl
983dnl NOTE: you need to use the [" my message"] syntax for 2nd and 3rd arguments
984dnl if you want that m4 avoid to throw away the spaces prefixed to the
985dnl argument value.
986dnl ---------------------------------------------------------------------------
987AC_DEFUN([WX_BOOLOPT_SUMMARY],
988 [
989 if test "x$$1" = "x1" ; then
990 echo $2
991 elif test "x$$1" = "x0" ; then
992 echo $3
993 else
994 echo "$1 is $$1"
995 fi
996 ])
997
998dnl ---------------------------------------------------------------------------
999dnl WX_STANDARD_OPTIONS_SUMMARY_MSG
1000dnl
1001dnl Shows a summary message to the user about the WX_* variable contents.
1002dnl This macro is used typically at the end of the configure script.
1003dnl ---------------------------------------------------------------------------
1004AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG],
1005 [
1006 echo
1007 echo " The wxWidgets build which will be used by $PACKAGE_NAME $PACKAGE_VERSION"
1008 echo " has the following settings:"
1009 WX_BOOLOPT_SUMMARY([WX_DEBUG], [" - DEBUG build"], [" - RELEASE build"])
1010 WX_BOOLOPT_SUMMARY([WX_UNICODE], [" - UNICODE mode"], [" - ANSI mode"])
1011 WX_BOOLOPT_SUMMARY([WX_SHARED], [" - SHARED mode"], [" - STATIC mode"])
731eee9a 1012 echo " - VERSION: $WX_VERSION"
33e61c47
VZ
1013 echo " - PORT: $WX_PORT"
1014 ])
1015
1016
1017dnl ---------------------------------------------------------------------------
1018dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN, WX_STANDARD_OPTIONS_SUMMARY_MSG_END
1019dnl
5e5b46bb 1020dnl Like WX_STANDARD_OPTIONS_SUMMARY_MSG macro but these two macros also gives info
33e61c47
VZ
1021dnl about the configuration of the package which used the wxpresets.
1022dnl
1023dnl Typical usage:
1024dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN
1025dnl echo " - Package setting 1: $SETTING1"
1026dnl echo " - Package setting 2: $SETTING1"
1027dnl ...
1028dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_END
1029dnl
1030dnl ---------------------------------------------------------------------------
1031AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN],
1032 [
1033 echo
1034 echo " ----------------------------------------------------------------"
1035 echo " Configuration for $PACKAGE_NAME $PACKAGE_VERSION successfully completed."
1036 echo " Summary of main configuration settings for $PACKAGE_NAME:"
1037 WX_BOOLOPT_SUMMARY([DEBUG], [" - DEBUG build"], [" - RELEASE build"])
1038 WX_BOOLOPT_SUMMARY([UNICODE], [" - UNICODE mode"], [" - ANSI mode"])
1039 WX_BOOLOPT_SUMMARY([SHARED], [" - SHARED mode"], [" - STATIC mode"])
1040 ])
1041
1042AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG_END],
1043 [
1044 WX_STANDARD_OPTIONS_SUMMARY_MSG
1045 echo
1046 echo " Now, just run make."
1047 echo " ----------------------------------------------------------------"
1048 echo
1049 ])
1050
1051
1052dnl ---------------------------------------------------------------------------
1053dnl Deprecated macro wrappers
1054dnl ---------------------------------------------------------------------------
1055
1056AC_DEFUN([AM_OPTIONS_WXCONFIG], [WX_CONFIG_OPTIONS])
fb5b1321
VZ
1057AC_DEFUN([AM_PATH_WXCONFIG], [
1058 WX_CONFIG_CHECK([$1],[$2],[$3],[$4],[$5])
1059])
4d4363d2 1060AC_DEFUN([AM_PATH_WXRC], [WXRC_CHECK([$1],[$2])])