1 dnl ---------------------------------------------------------------------------
2 dnl Macros for wxWindows detection. Typically used in configure.in as:
7 dnl AM_OPTIONS_WXCONFIG
10 dnl AM_PATH_WXCONFIG(2.3.4, wxWin=1)
11 dnl if test "$wxWin" != 1; then
13 dnl wxWindows must be installed on your system
14 dnl but wx-config script couldn't be found.
16 dnl Please check that wx-config is in path, the directory
17 dnl where wxWindows libraries are installed (returned by
18 dnl 'wx-config --libs' command) is in LD_LIBRARY_PATH or
19 dnl equivalent variable and wxWindows version is 2.3.4 or above.
22 dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
23 dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY"
24 dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY"
26 dnl LDFLAGS="$LDFLAGS $WX_LIBS"
27 dnl ---------------------------------------------------------------------------
29 dnl ---------------------------------------------------------------------------
30 dnl AM_OPTIONS_WXCONFIG
32 dnl adds support for --wx-prefix, --wx-exec-prefix, --with-wxdir and
33 dnl --wx-config command line options
34 dnl ---------------------------------------------------------------------------
36 AC_DEFUN([AM_OPTIONS_WXCONFIG],
39 [ --with-wxdir=PATH Use uninstalled version of wxWindows in PATH],
40 [ wx_config_name="$withval/wx-config"
41 wx_config_args="--inplace"])
42 AC_ARG_WITH(wx-config,
43 [ --with-wx-config=CONFIG wx-config script to use (optional)],
44 wx_config_name="$withval" )
45 AC_ARG_WITH(wx-prefix,
46 [ --with-wx-prefix=PREFIX Prefix where wxWindows is installed (optional)],
47 wx_config_prefix="$withval", wx_config_prefix="")
48 AC_ARG_WITH(wx-exec-prefix,
49 [ --with-wx-exec-prefix=PREFIX
50 Exec prefix where wxWindows is installed (optional)],
51 wx_config_exec_prefix="$withval", wx_config_exec_prefix="")
54 dnl ---------------------------------------------------------------------------
55 dnl AM_PATH_WXCONFIG(VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND
58 dnl Test for wxWindows, and define WX_C*FLAGS, WX_LIBS and WX_LIBS_STATIC
59 dnl (the latter is for static linking against wxWindows). Set WX_CONFIG_NAME
60 dnl environment variable to override the default name of the wx-config script
61 dnl to use. Set WX_CONFIG_PATH to specify the full path to wx-config - in this
62 dnl case the macro won't even waste time on tests for its existence.
64 dnl Optional WX-LIBS argument contains comma-separated list of wxWindows
65 dnl libraries to link against (it may include contrib libraries). If it is not
66 dnl specified then WX_LIBS and WX_LIBS_STATIC will contain flags to link
67 dnl with all of the core wxWindows libraries.
70 dnl AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], [html,core,net])
71 dnl ---------------------------------------------------------------------------
74 dnl Get the cflags and libraries from the wx-config script
76 AC_DEFUN([AM_PATH_WXCONFIG],
78 dnl do we have wx-config name: it can be wx-config or wxd-config or ...
79 if test x${WX_CONFIG_NAME+set} != xset ; then
80 WX_CONFIG_NAME=wx-config
83 if test "x$wx_config_name" != x ; then
84 WX_CONFIG_NAME="$wx_config_name"
87 dnl deal with optional prefixes
88 if test x$wx_config_exec_prefix != x ; then
89 wx_config_args="$wx_config_args --exec-prefix=$wx_config_exec_prefix"
90 WX_LOOKUP_PATH="$wx_config_exec_prefix/bin"
92 if test x$wx_config_prefix != x ; then
93 wx_config_args="$wx_config_args --prefix=$wx_config_prefix"
94 WX_LOOKUP_PATH="$WX_LOOKUP_PATH:$wx_config_prefix/bin"
97 dnl don't search the PATH if WX_CONFIG_NAME is absolute filename
98 if test -x "$WX_CONFIG_NAME" ; then
99 AC_MSG_CHECKING(for wx-config)
100 WX_CONFIG_PATH="$WX_CONFIG_NAME"
101 AC_MSG_RESULT($WX_CONFIG_PATH)
103 AC_PATH_PROG(WX_CONFIG_PATH, $WX_CONFIG_NAME, no, "$WX_LOOKUP_PATH:$PATH")
106 if test "$WX_CONFIG_PATH" != "no" ; then
110 min_wx_version=ifelse([$1], ,2.2.1,$1)
111 AC_MSG_CHECKING(for wxWindows version >= $min_wx_version)
113 WX_CONFIG_WITH_ARGS="$WX_CONFIG_PATH $wx_config_args"
115 WX_VERSION=`$WX_CONFIG_WITH_ARGS --version`
116 wx_config_major_version=`echo $WX_VERSION | \
117 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
118 wx_config_minor_version=`echo $WX_VERSION | \
119 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
120 wx_config_micro_version=`echo $WX_VERSION | \
121 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
123 wx_requested_major_version=`echo $min_wx_version | \
124 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
125 wx_requested_minor_version=`echo $min_wx_version | \
126 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
127 wx_requested_micro_version=`echo $min_wx_version | \
128 sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
131 if test $wx_config_major_version -gt $wx_requested_major_version; then
134 if test $wx_config_major_version -eq $wx_requested_major_version; then
135 if test $wx_config_minor_version -gt $wx_requested_minor_version; then
138 if test $wx_config_minor_version -eq $wx_requested_minor_version; then
139 if test $wx_config_micro_version -ge $wx_requested_micro_version; then
147 if test "x$wx_ver_ok" = x ; then
150 if test "x$4" = "x" ; then
153 wx_libs_arg="--libs=$4"
155 WX_LIBS=`$WX_CONFIG_WITH_ARGS $wx_libs_arg`
156 WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static $wx_libs_arg`
158 dnl starting with version 2.2.6 wx-config has --cppflags argument
160 if test $wx_config_major_version -gt 2; then
163 if test $wx_config_major_version -eq 2; then
164 if test $wx_config_minor_version -gt 2; then
167 if test $wx_config_minor_version -eq 2; then
168 if test $wx_config_micro_version -ge 6; then
176 if test "x$wx_has_cppflags" = x ; then
177 dnl no choice but to define all flags like CFLAGS
178 WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags`
179 WX_CPPFLAGS=$WX_CFLAGS
180 WX_CXXFLAGS=$WX_CFLAGS
182 WX_CFLAGS_ONLY=$WX_CFLAGS
183 WX_CXXFLAGS_ONLY=$WX_CFLAGS
185 dnl we have CPPFLAGS included in CFLAGS included in CXXFLAGS
186 WX_CPPFLAGS=`$WX_CONFIG_WITH_ARGS --cppflags`
187 WX_CXXFLAGS=`$WX_CONFIG_WITH_ARGS --cxxflags`
188 WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags`
190 WX_CFLAGS_ONLY=`echo $WX_CFLAGS | sed "s@^$WX_CPPFLAGS *@@"`
191 WX_CXXFLAGS_ONLY=`echo $WX_CXXFLAGS | sed "s@^$WX_CFLAGS *@@"`
195 if test "x$no_wx" = x ; then
196 AC_MSG_RESULT(yes (version $WX_VERSION))
197 ifelse([$2], , :, [$2])
199 if test "x$WX_VERSION" = x; then
200 dnl no wx-config at all
203 AC_MSG_RESULT(no (version $WX_VERSION is not new enough))
211 ifelse([$3], , :, [$3])
215 AC_SUBST(WX_CPPFLAGS)
217 AC_SUBST(WX_CXXFLAGS)
218 AC_SUBST(WX_CFLAGS_ONLY)
219 AC_SUBST(WX_CXXFLAGS_ONLY)
221 AC_SUBST(WX_LIBS_STATIC)