slouken@20
|
1 |
dnl aclocal.m4 generated automatically by aclocal 1.4
|
slouken@0
|
2 |
|
slouken@0
|
3 |
dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
|
slouken@0
|
4 |
dnl This file is free software; the Free Software Foundation
|
slouken@0
|
5 |
dnl gives unlimited permission to copy and/or distribute it,
|
slouken@0
|
6 |
dnl with or without modifications, as long as this notice is preserved.
|
slouken@0
|
7 |
|
slouken@0
|
8 |
dnl This program is distributed in the hope that it will be useful,
|
slouken@0
|
9 |
dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
slouken@0
|
10 |
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
slouken@0
|
11 |
dnl PARTICULAR PURPOSE.
|
slouken@0
|
12 |
|
slouken@0
|
13 |
# Configure paths for SDL
|
slouken@0
|
14 |
# Sam Lantinga 9/21/99
|
slouken@0
|
15 |
# stolen from Manish Singh
|
slouken@0
|
16 |
# stolen back from Frank Belew
|
slouken@0
|
17 |
# stolen from Manish Singh
|
slouken@0
|
18 |
# Shamelessly stolen from Owen Taylor
|
slouken@0
|
19 |
|
slouken@0
|
20 |
dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
|
slouken@0
|
21 |
dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
|
slouken@0
|
22 |
dnl
|
slouken@0
|
23 |
AC_DEFUN(AM_PATH_SDL,
|
slouken@0
|
24 |
[dnl
|
slouken@0
|
25 |
dnl Get the cflags and libraries from the sdl-config script
|
slouken@0
|
26 |
dnl
|
slouken@0
|
27 |
AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
|
slouken@0
|
28 |
sdl_prefix="$withval", sdl_prefix="")
|
slouken@0
|
29 |
AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
|
slouken@0
|
30 |
sdl_exec_prefix="$withval", sdl_exec_prefix="")
|
slouken@0
|
31 |
AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
|
slouken@0
|
32 |
, enable_sdltest=yes)
|
slouken@0
|
33 |
|
slouken@0
|
34 |
if test x$sdl_exec_prefix != x ; then
|
slouken@0
|
35 |
sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"
|
slouken@0
|
36 |
if test x${SDL_CONFIG+set} != xset ; then
|
slouken@0
|
37 |
SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config
|
slouken@0
|
38 |
fi
|
slouken@0
|
39 |
fi
|
slouken@0
|
40 |
if test x$sdl_prefix != x ; then
|
slouken@0
|
41 |
sdl_args="$sdl_args --prefix=$sdl_prefix"
|
slouken@0
|
42 |
if test x${SDL_CONFIG+set} != xset ; then
|
slouken@0
|
43 |
SDL_CONFIG=$sdl_prefix/bin/sdl-config
|
slouken@0
|
44 |
fi
|
slouken@0
|
45 |
fi
|
slouken@0
|
46 |
|
slouken@0
|
47 |
AC_PATH_PROG(SDL_CONFIG, sdl-config, no)
|
slouken@0
|
48 |
min_sdl_version=ifelse([$1], ,0.11.0,$1)
|
slouken@0
|
49 |
AC_MSG_CHECKING(for SDL - version >= $min_sdl_version)
|
slouken@0
|
50 |
no_sdl=""
|
slouken@0
|
51 |
if test "$SDL_CONFIG" = "no" ; then
|
slouken@0
|
52 |
no_sdl=yes
|
slouken@0
|
53 |
else
|
slouken@0
|
54 |
SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
|
slouken@0
|
55 |
SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
|
slouken@0
|
56 |
|
slouken@0
|
57 |
sdl_major_version=`$SDL_CONFIG $sdl_args --version | \
|
slouken@0
|
58 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
|
slouken@0
|
59 |
sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \
|
slouken@0
|
60 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
slouken@0
|
61 |
sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \
|
slouken@0
|
62 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
slouken@0
|
63 |
if test "x$enable_sdltest" = "xyes" ; then
|
slouken@0
|
64 |
ac_save_CFLAGS="$CFLAGS"
|
slouken@0
|
65 |
ac_save_LIBS="$LIBS"
|
slouken@0
|
66 |
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
slouken@0
|
67 |
LIBS="$LIBS $SDL_LIBS"
|
slouken@0
|
68 |
dnl
|
slouken@0
|
69 |
dnl Now check if the installed SDL is sufficiently new. (Also sanity
|
slouken@0
|
70 |
dnl checks the results of sdl-config to some extent
|
slouken@0
|
71 |
dnl
|
slouken@0
|
72 |
rm -f conf.sdltest
|
slouken@0
|
73 |
AC_TRY_RUN([
|
slouken@0
|
74 |
#include <stdio.h>
|
slouken@0
|
75 |
#include <stdlib.h>
|
slouken@0
|
76 |
#include <string.h>
|
slouken@0
|
77 |
#include <SDL/SDL.h>
|
slouken@0
|
78 |
|
slouken@0
|
79 |
char*
|
slouken@0
|
80 |
my_strdup (char *str)
|
slouken@0
|
81 |
{
|
slouken@0
|
82 |
char *new_str;
|
slouken@0
|
83 |
|
slouken@0
|
84 |
if (str)
|
slouken@0
|
85 |
{
|
slouken@0
|
86 |
new_str = malloc ((strlen (str) + 1) * sizeof(char));
|
slouken@0
|
87 |
strcpy (new_str, str);
|
slouken@0
|
88 |
}
|
slouken@0
|
89 |
else
|
slouken@0
|
90 |
new_str = NULL;
|
slouken@0
|
91 |
|
slouken@0
|
92 |
return new_str;
|
slouken@0
|
93 |
}
|
slouken@0
|
94 |
|
slouken@0
|
95 |
int main ()
|
slouken@0
|
96 |
{
|
slouken@0
|
97 |
int major, minor, micro;
|
slouken@0
|
98 |
char *tmp_version;
|
slouken@0
|
99 |
|
slouken@0
|
100 |
system ("touch conf.sdltest");
|
slouken@0
|
101 |
|
slouken@0
|
102 |
/* HP/UX 9 (%@#!) writes to sscanf strings */
|
slouken@0
|
103 |
tmp_version = my_strdup("$min_sdl_version");
|
slouken@0
|
104 |
if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
|
slouken@0
|
105 |
printf("%s, bad version string\n", "$min_sdl_version");
|
slouken@0
|
106 |
exit(1);
|
slouken@0
|
107 |
}
|
slouken@0
|
108 |
|
slouken@0
|
109 |
if (($sdl_major_version > major) ||
|
slouken@0
|
110 |
(($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
|
slouken@0
|
111 |
(($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
|
slouken@0
|
112 |
{
|
slouken@0
|
113 |
return 0;
|
slouken@0
|
114 |
}
|
slouken@0
|
115 |
else
|
slouken@0
|
116 |
{
|
slouken@0
|
117 |
printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
|
slouken@0
|
118 |
printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro);
|
slouken@0
|
119 |
printf("*** best to upgrade to the required version.\n");
|
slouken@0
|
120 |
printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n");
|
slouken@0
|
121 |
printf("*** to point to the correct copy of sdl-config, and remove the file\n");
|
slouken@0
|
122 |
printf("*** config.cache before re-running configure\n");
|
slouken@0
|
123 |
return 1;
|
slouken@0
|
124 |
}
|
slouken@0
|
125 |
}
|
slouken@0
|
126 |
|
slouken@0
|
127 |
],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
|
slouken@0
|
128 |
CFLAGS="$ac_save_CFLAGS"
|
slouken@0
|
129 |
LIBS="$ac_save_LIBS"
|
slouken@0
|
130 |
fi
|
slouken@0
|
131 |
fi
|
slouken@0
|
132 |
if test "x$no_sdl" = x ; then
|
slouken@0
|
133 |
AC_MSG_RESULT(yes)
|
slouken@0
|
134 |
ifelse([$2], , :, [$2])
|
slouken@0
|
135 |
else
|
slouken@0
|
136 |
AC_MSG_RESULT(no)
|
slouken@0
|
137 |
if test "$SDL_CONFIG" = "no" ; then
|
slouken@0
|
138 |
echo "*** The sdl-config script installed by SDL could not be found"
|
slouken@0
|
139 |
echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
|
slouken@0
|
140 |
echo "*** your path, or set the SDL_CONFIG environment variable to the"
|
slouken@0
|
141 |
echo "*** full path to sdl-config."
|
slouken@0
|
142 |
else
|
slouken@0
|
143 |
if test -f conf.sdltest ; then
|
slouken@0
|
144 |
:
|
slouken@0
|
145 |
else
|
slouken@0
|
146 |
echo "*** Could not run SDL test program, checking why..."
|
slouken@0
|
147 |
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
slouken@0
|
148 |
LIBS="$LIBS $SDL_LIBS"
|
slouken@0
|
149 |
AC_TRY_LINK([
|
slouken@0
|
150 |
#include <stdio.h>
|
slouken@0
|
151 |
#include <SDL/SDL.h>
|
slouken@0
|
152 |
], [ return 0; ],
|
slouken@0
|
153 |
[ echo "*** The test program compiled, but did not run. This usually means"
|
slouken@0
|
154 |
echo "*** that the run-time linker is not finding SDL or finding the wrong"
|
slouken@0
|
155 |
echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
|
slouken@0
|
156 |
echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
|
slouken@0
|
157 |
echo "*** to the installed location Also, make sure you have run ldconfig if that"
|
slouken@0
|
158 |
echo "*** is required on your system"
|
slouken@0
|
159 |
echo "***"
|
slouken@0
|
160 |
echo "*** If you have an old version installed, it is best to remove it, although"
|
slouken@0
|
161 |
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
|
slouken@0
|
162 |
[ echo "*** The test program failed to compile or link. See the file config.log for the"
|
slouken@0
|
163 |
echo "*** exact error that occured. This usually means SDL was incorrectly installed"
|
slouken@0
|
164 |
echo "*** or that you have moved SDL since it was installed. In the latter case, you"
|
slouken@0
|
165 |
echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
|
slouken@0
|
166 |
CFLAGS="$ac_save_CFLAGS"
|
slouken@0
|
167 |
LIBS="$ac_save_LIBS"
|
slouken@0
|
168 |
fi
|
slouken@0
|
169 |
fi
|
slouken@0
|
170 |
SDL_CFLAGS=""
|
slouken@0
|
171 |
SDL_LIBS=""
|
slouken@0
|
172 |
ifelse([$3], , :, [$3])
|
slouken@0
|
173 |
fi
|
slouken@0
|
174 |
AC_SUBST(SDL_CFLAGS)
|
slouken@0
|
175 |
AC_SUBST(SDL_LIBS)
|
slouken@0
|
176 |
rm -f conf.sdltest
|
slouken@0
|
177 |
])
|
slouken@0
|
178 |
|
slouken@0
|
179 |
# serial 41 AC_PROG_LIBTOOL
|
slouken@0
|
180 |
AC_DEFUN(AC_PROG_LIBTOOL,
|
slouken@0
|
181 |
[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
182 |
|
slouken@0
|
183 |
# Save cache, so that ltconfig can load it
|
slouken@0
|
184 |
AC_CACHE_SAVE
|
slouken@0
|
185 |
|
slouken@0
|
186 |
# Actually configure libtool. ac_aux_dir is where install-sh is found.
|
slouken@0
|
187 |
CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
slouken@0
|
188 |
LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
|
slouken@0
|
189 |
LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
|
slouken@0
|
190 |
DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
|
slouken@0
|
191 |
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
|
slouken@0
|
192 |
$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \
|
slouken@0
|
193 |
|| AC_MSG_ERROR([libtool configure failed])
|
slouken@0
|
194 |
|
slouken@0
|
195 |
# Reload cache, that may have been modified by ltconfig
|
slouken@0
|
196 |
AC_CACHE_LOAD
|
slouken@0
|
197 |
|
slouken@0
|
198 |
# This can be used to rebuild libtool when needed
|
slouken@0
|
199 |
LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
|
slouken@0
|
200 |
|
slouken@0
|
201 |
# Always use our own libtool.
|
slouken@0
|
202 |
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
slouken@0
|
203 |
AC_SUBST(LIBTOOL)dnl
|
slouken@0
|
204 |
|
slouken@0
|
205 |
# Redirect the config.log output again, so that the ltconfig log is not
|
slouken@0
|
206 |
# clobbered by the next message.
|
slouken@0
|
207 |
exec 5>>./config.log
|
slouken@0
|
208 |
])
|
slouken@0
|
209 |
|
slouken@0
|
210 |
AC_DEFUN(AC_LIBTOOL_SETUP,
|
slouken@0
|
211 |
[AC_PREREQ(2.13)dnl
|
slouken@0
|
212 |
AC_REQUIRE([AC_ENABLE_SHARED])dnl
|
slouken@0
|
213 |
AC_REQUIRE([AC_ENABLE_STATIC])dnl
|
slouken@0
|
214 |
AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
|
slouken@0
|
215 |
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
slouken@0
|
216 |
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
slouken@0
|
217 |
AC_REQUIRE([AC_PROG_CC])dnl
|
slouken@0
|
218 |
AC_REQUIRE([AC_PROG_LD])dnl
|
slouken@0
|
219 |
AC_REQUIRE([AC_PROG_NM])dnl
|
slouken@0
|
220 |
AC_REQUIRE([AC_PROG_LN_S])dnl
|
slouken@0
|
221 |
dnl
|
slouken@0
|
222 |
|
slouken@0
|
223 |
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
slouken@0
|
224 |
|
slouken@0
|
225 |
# Check for any special flags to pass to ltconfig.
|
slouken@0
|
226 |
libtool_flags="--cache-file=$cache_file"
|
slouken@0
|
227 |
test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
|
slouken@0
|
228 |
test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
|
slouken@0
|
229 |
test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
|
slouken@0
|
230 |
test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
|
slouken@0
|
231 |
test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
|
slouken@0
|
232 |
ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
|
slouken@0
|
233 |
[libtool_flags="$libtool_flags --enable-dlopen"])
|
slouken@0
|
234 |
ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
|
slouken@0
|
235 |
[libtool_flags="$libtool_flags --enable-win32-dll"])
|
slouken@0
|
236 |
AC_ARG_ENABLE(libtool-lock,
|
slouken@0
|
237 |
[ --disable-libtool-lock avoid locking (might break parallel builds)])
|
slouken@0
|
238 |
test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
|
slouken@0
|
239 |
test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
|
slouken@0
|
240 |
|
slouken@0
|
241 |
AC_ARG_WITH(pic,
|
slouken@0
|
242 |
[ --with-pic try to use only PIC/non-PIC objects [default=use both]],
|
slouken@0
|
243 |
pic_mode="$withval", pic_mode=default)
|
slouken@0
|
244 |
test x"$pic_mode" = xyes && libtool_flags="$libtool_flags --prefer-pic"
|
slouken@0
|
245 |
test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
|
slouken@0
|
246 |
|
slouken@0
|
247 |
# Some flags need to be propagated to the compiler or linker for good
|
slouken@0
|
248 |
# libtool support.
|
slouken@0
|
249 |
case "$host" in
|
slouken@0
|
250 |
*-*-irix6*)
|
slouken@0
|
251 |
# Find out which ABI we are using.
|
slouken@0
|
252 |
echo '[#]line __oline__ "configure"' > conftest.$ac_ext
|
slouken@0
|
253 |
if AC_TRY_EVAL(ac_compile); then
|
slouken@0
|
254 |
case "`/usr/bin/file conftest.o`" in
|
slouken@0
|
255 |
*32-bit*)
|
slouken@0
|
256 |
LD="${LD-ld} -32"
|
slouken@0
|
257 |
;;
|
slouken@0
|
258 |
*N32*)
|
slouken@0
|
259 |
LD="${LD-ld} -n32"
|
slouken@0
|
260 |
;;
|
slouken@0
|
261 |
*64-bit*)
|
slouken@0
|
262 |
LD="${LD-ld} -64"
|
slouken@0
|
263 |
;;
|
slouken@0
|
264 |
esac
|
slouken@0
|
265 |
fi
|
slouken@0
|
266 |
rm -rf conftest*
|
slouken@0
|
267 |
;;
|
slouken@0
|
268 |
|
slouken@0
|
269 |
*-*-sco3.2v5*)
|
slouken@0
|
270 |
# On SCO OpenServer 5, we need -belf to get full-featured binaries.
|
slouken@0
|
271 |
SAVE_CFLAGS="$CFLAGS"
|
slouken@0
|
272 |
CFLAGS="$CFLAGS -belf"
|
slouken@0
|
273 |
AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
|
slouken@0
|
274 |
[AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
|
slouken@0
|
275 |
if test x"$lt_cv_cc_needs_belf" != x"yes"; then
|
slouken@0
|
276 |
# this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
|
slouken@0
|
277 |
CFLAGS="$SAVE_CFLAGS"
|
slouken@0
|
278 |
fi
|
slouken@0
|
279 |
;;
|
slouken@0
|
280 |
|
slouken@0
|
281 |
ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
|
slouken@0
|
282 |
[*-*-cygwin* | *-*-mingw*)
|
slouken@0
|
283 |
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
slouken@0
|
284 |
AC_CHECK_TOOL(AS, as, false)
|
slouken@0
|
285 |
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
slouken@0
|
286 |
|
slouken@0
|
287 |
# recent cygwin and mingw systems supply a stub DllMain which the user
|
slouken@0
|
288 |
# can override, but on older systems we have to supply one
|
slouken@0
|
289 |
AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain,
|
slouken@0
|
290 |
[AC_TRY_LINK([DllMain (0, 0, 0);],
|
slouken@0
|
291 |
[extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);],
|
slouken@0
|
292 |
[lt_cv_need_dllmain=yes],[lt_cv_need_dllmain=no])])
|
slouken@0
|
293 |
|
slouken@0
|
294 |
case $host in
|
slouken@0
|
295 |
*-*-cygwin*)
|
slouken@0
|
296 |
# cygwin systems need to pass --dll to the linker, and not link
|
slouken@0
|
297 |
# crt.o which will require a WinMain@16 definition.
|
slouken@0
|
298 |
lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;;
|
slouken@0
|
299 |
*-*-mingw*)
|
slouken@0
|
300 |
# old mingw systems require "-dll" to link a DLL, while more recent ones
|
slouken@0
|
301 |
# require "-mdll"
|
slouken@0
|
302 |
SAVE_CFLAGS="$CFLAGS"
|
slouken@0
|
303 |
CFLAGS="$CFLAGS -mdll"
|
slouken@0
|
304 |
AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch,
|
slouken@0
|
305 |
[AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])])
|
slouken@0
|
306 |
CFLAGS="$SAVE_CFLAGS" ;;
|
slouken@0
|
307 |
esac
|
slouken@0
|
308 |
;;
|
slouken@0
|
309 |
])
|
slouken@0
|
310 |
esac
|
slouken@0
|
311 |
])
|
slouken@0
|
312 |
|
slouken@0
|
313 |
# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
|
slouken@0
|
314 |
AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
|
slouken@0
|
315 |
|
slouken@0
|
316 |
# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
|
slouken@0
|
317 |
AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
|
slouken@0
|
318 |
|
slouken@0
|
319 |
# AC_ENABLE_SHARED - implement the --enable-shared flag
|
slouken@0
|
320 |
# Usage: AC_ENABLE_SHARED[(DEFAULT)]
|
slouken@0
|
321 |
# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
|
slouken@0
|
322 |
# `yes'.
|
slouken@0
|
323 |
AC_DEFUN(AC_ENABLE_SHARED, [dnl
|
slouken@0
|
324 |
define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
|
slouken@0
|
325 |
AC_ARG_ENABLE(shared,
|
slouken@0
|
326 |
changequote(<<, >>)dnl
|
slouken@0
|
327 |
<< --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
|
slouken@0
|
328 |
changequote([, ])dnl
|
slouken@0
|
329 |
[p=${PACKAGE-default}
|
slouken@0
|
330 |
case "$enableval" in
|
slouken@0
|
331 |
yes) enable_shared=yes ;;
|
slouken@0
|
332 |
no) enable_shared=no ;;
|
slouken@0
|
333 |
*)
|
slouken@0
|
334 |
enable_shared=no
|
slouken@0
|
335 |
# Look at the argument we got. We use all the common list separators.
|
slouken@0
|
336 |
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
slouken@0
|
337 |
for pkg in $enableval; do
|
slouken@0
|
338 |
if test "X$pkg" = "X$p"; then
|
slouken@0
|
339 |
enable_shared=yes
|
slouken@0
|
340 |
fi
|
slouken@0
|
341 |
done
|
slouken@0
|
342 |
IFS="$ac_save_ifs"
|
slouken@0
|
343 |
;;
|
slouken@0
|
344 |
esac],
|
slouken@0
|
345 |
enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
|
slouken@0
|
346 |
])
|
slouken@0
|
347 |
|
slouken@0
|
348 |
# AC_DISABLE_SHARED - set the default shared flag to --disable-shared
|
slouken@0
|
349 |
AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
350 |
AC_ENABLE_SHARED(no)])
|
slouken@0
|
351 |
|
slouken@0
|
352 |
# AC_ENABLE_STATIC - implement the --enable-static flag
|
slouken@0
|
353 |
# Usage: AC_ENABLE_STATIC[(DEFAULT)]
|
slouken@0
|
354 |
# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
|
slouken@0
|
355 |
# `yes'.
|
slouken@0
|
356 |
AC_DEFUN(AC_ENABLE_STATIC, [dnl
|
slouken@0
|
357 |
define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
|
slouken@0
|
358 |
AC_ARG_ENABLE(static,
|
slouken@0
|
359 |
changequote(<<, >>)dnl
|
slouken@0
|
360 |
<< --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
|
slouken@0
|
361 |
changequote([, ])dnl
|
slouken@0
|
362 |
[p=${PACKAGE-default}
|
slouken@0
|
363 |
case "$enableval" in
|
slouken@0
|
364 |
yes) enable_static=yes ;;
|
slouken@0
|
365 |
no) enable_static=no ;;
|
slouken@0
|
366 |
*)
|
slouken@0
|
367 |
enable_static=no
|
slouken@0
|
368 |
# Look at the argument we got. We use all the common list separators.
|
slouken@0
|
369 |
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
slouken@0
|
370 |
for pkg in $enableval; do
|
slouken@0
|
371 |
if test "X$pkg" = "X$p"; then
|
slouken@0
|
372 |
enable_static=yes
|
slouken@0
|
373 |
fi
|
slouken@0
|
374 |
done
|
slouken@0
|
375 |
IFS="$ac_save_ifs"
|
slouken@0
|
376 |
;;
|
slouken@0
|
377 |
esac],
|
slouken@0
|
378 |
enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
|
slouken@0
|
379 |
])
|
slouken@0
|
380 |
|
slouken@0
|
381 |
# AC_DISABLE_STATIC - set the default static flag to --disable-static
|
slouken@0
|
382 |
AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
383 |
AC_ENABLE_STATIC(no)])
|
slouken@0
|
384 |
|
slouken@0
|
385 |
|
slouken@0
|
386 |
# AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
|
slouken@0
|
387 |
# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
|
slouken@0
|
388 |
# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
|
slouken@0
|
389 |
# `yes'.
|
slouken@0
|
390 |
AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
|
slouken@0
|
391 |
define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
|
slouken@0
|
392 |
AC_ARG_ENABLE(fast-install,
|
slouken@0
|
393 |
changequote(<<, >>)dnl
|
slouken@0
|
394 |
<< --enable-fast-install[=PKGS] optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
|
slouken@0
|
395 |
changequote([, ])dnl
|
slouken@0
|
396 |
[p=${PACKAGE-default}
|
slouken@0
|
397 |
case "$enableval" in
|
slouken@0
|
398 |
yes) enable_fast_install=yes ;;
|
slouken@0
|
399 |
no) enable_fast_install=no ;;
|
slouken@0
|
400 |
*)
|
slouken@0
|
401 |
enable_fast_install=no
|
slouken@0
|
402 |
# Look at the argument we got. We use all the common list separators.
|
slouken@0
|
403 |
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
slouken@0
|
404 |
for pkg in $enableval; do
|
slouken@0
|
405 |
if test "X$pkg" = "X$p"; then
|
slouken@0
|
406 |
enable_fast_install=yes
|
slouken@0
|
407 |
fi
|
slouken@0
|
408 |
done
|
slouken@0
|
409 |
IFS="$ac_save_ifs"
|
slouken@0
|
410 |
;;
|
slouken@0
|
411 |
esac],
|
slouken@0
|
412 |
enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
|
slouken@0
|
413 |
])
|
slouken@0
|
414 |
|
slouken@0
|
415 |
# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
|
slouken@0
|
416 |
AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
417 |
AC_ENABLE_FAST_INSTALL(no)])
|
slouken@0
|
418 |
|
slouken@0
|
419 |
# AC_PROG_LD - find the path to the GNU or non-GNU linker
|
slouken@0
|
420 |
AC_DEFUN(AC_PROG_LD,
|
slouken@0
|
421 |
[AC_ARG_WITH(gnu-ld,
|
slouken@0
|
422 |
[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]],
|
slouken@0
|
423 |
test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
|
slouken@0
|
424 |
AC_REQUIRE([AC_PROG_CC])dnl
|
slouken@0
|
425 |
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
slouken@0
|
426 |
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
slouken@0
|
427 |
ac_prog=ld
|
slouken@0
|
428 |
if test "$ac_cv_prog_gcc" = yes; then
|
slouken@0
|
429 |
# Check if gcc -print-prog-name=ld gives a path.
|
slouken@0
|
430 |
AC_MSG_CHECKING([for ld used by GCC])
|
slouken@0
|
431 |
case $host in
|
slouken@0
|
432 |
*-*-mingw*)
|
slouken@0
|
433 |
# gcc leaves a trailing carriage return which upsets mingw
|
slouken@0
|
434 |
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
|
slouken@0
|
435 |
*)
|
slouken@0
|
436 |
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
slouken@0
|
437 |
esac
|
slouken@0
|
438 |
case "$ac_prog" in
|
slouken@0
|
439 |
# Accept absolute paths.
|
slouken@0
|
440 |
changequote(,)dnl
|
slouken@0
|
441 |
[\\/]* | [A-Za-z]:[\\/]*)
|
slouken@0
|
442 |
re_direlt='/[^/][^/]*/\.\./'
|
slouken@0
|
443 |
changequote([,])dnl
|
slouken@0
|
444 |
# Canonicalize the path of ld
|
slouken@0
|
445 |
ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
|
slouken@0
|
446 |
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
slouken@0
|
447 |
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
|
slouken@0
|
448 |
done
|
slouken@0
|
449 |
test -z "$LD" && LD="$ac_prog"
|
slouken@0
|
450 |
;;
|
slouken@0
|
451 |
"")
|
slouken@0
|
452 |
# If it fails, then pretend we aren't using GCC.
|
slouken@0
|
453 |
ac_prog=ld
|
slouken@0
|
454 |
;;
|
slouken@0
|
455 |
*)
|
slouken@0
|
456 |
# If it is relative, then search for the first ld in PATH.
|
slouken@0
|
457 |
with_gnu_ld=unknown
|
slouken@0
|
458 |
;;
|
slouken@0
|
459 |
esac
|
slouken@0
|
460 |
elif test "$with_gnu_ld" = yes; then
|
slouken@0
|
461 |
AC_MSG_CHECKING([for GNU ld])
|
slouken@0
|
462 |
else
|
slouken@0
|
463 |
AC_MSG_CHECKING([for non-GNU ld])
|
slouken@0
|
464 |
fi
|
slouken@0
|
465 |
AC_CACHE_VAL(ac_cv_path_LD,
|
slouken@0
|
466 |
[if test -z "$LD"; then
|
slouken@0
|
467 |
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
|
slouken@0
|
468 |
for ac_dir in $PATH; do
|
slouken@0
|
469 |
test -z "$ac_dir" && ac_dir=.
|
slouken@0
|
470 |
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
slouken@0
|
471 |
ac_cv_path_LD="$ac_dir/$ac_prog"
|
slouken@0
|
472 |
# Check to see if the program is GNU ld. I'd rather use --version,
|
slouken@0
|
473 |
# but apparently some GNU ld's only accept -v.
|
slouken@0
|
474 |
# Break only if it was the GNU/non-GNU ld that we prefer.
|
slouken@0
|
475 |
if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
|
slouken@0
|
476 |
test "$with_gnu_ld" != no && break
|
slouken@0
|
477 |
else
|
slouken@0
|
478 |
test "$with_gnu_ld" != yes && break
|
slouken@0
|
479 |
fi
|
slouken@0
|
480 |
fi
|
slouken@0
|
481 |
done
|
slouken@0
|
482 |
IFS="$ac_save_ifs"
|
slouken@0
|
483 |
else
|
slouken@0
|
484 |
ac_cv_path_LD="$LD" # Let the user override the test with a path.
|
slouken@0
|
485 |
fi])
|
slouken@0
|
486 |
LD="$ac_cv_path_LD"
|
slouken@0
|
487 |
if test -n "$LD"; then
|
slouken@0
|
488 |
AC_MSG_RESULT($LD)
|
slouken@0
|
489 |
else
|
slouken@0
|
490 |
AC_MSG_RESULT(no)
|
slouken@0
|
491 |
fi
|
slouken@0
|
492 |
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
|
slouken@0
|
493 |
AC_SUBST(LD)
|
slouken@0
|
494 |
AC_PROG_LD_GNU
|
slouken@0
|
495 |
])
|
slouken@0
|
496 |
|
slouken@0
|
497 |
AC_DEFUN(AC_PROG_LD_GNU,
|
slouken@0
|
498 |
[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
|
slouken@0
|
499 |
[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
|
slouken@0
|
500 |
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
|
slouken@0
|
501 |
ac_cv_prog_gnu_ld=yes
|
slouken@0
|
502 |
else
|
slouken@0
|
503 |
ac_cv_prog_gnu_ld=no
|
slouken@0
|
504 |
fi])
|
slouken@0
|
505 |
])
|
slouken@0
|
506 |
|
slouken@0
|
507 |
# AC_PROG_NM - find the path to a BSD-compatible name lister
|
slouken@0
|
508 |
AC_DEFUN(AC_PROG_NM,
|
slouken@0
|
509 |
[AC_MSG_CHECKING([for BSD-compatible nm])
|
slouken@0
|
510 |
AC_CACHE_VAL(ac_cv_path_NM,
|
slouken@0
|
511 |
[if test -n "$NM"; then
|
slouken@0
|
512 |
# Let the user override the test.
|
slouken@0
|
513 |
ac_cv_path_NM="$NM"
|
slouken@0
|
514 |
else
|
slouken@0
|
515 |
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
|
slouken@0
|
516 |
for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
|
slouken@0
|
517 |
test -z "$ac_dir" && ac_dir=.
|
slouken@0
|
518 |
if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
|
slouken@0
|
519 |
# Check to see if the nm accepts a BSD-compat flag.
|
slouken@0
|
520 |
# Adding the `sed 1q' prevents false positives on HP-UX, which says:
|
slouken@0
|
521 |
# nm: unknown option "B" ignored
|
slouken@0
|
522 |
if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
|
slouken@0
|
523 |
ac_cv_path_NM="$ac_dir/nm -B"
|
slouken@0
|
524 |
break
|
slouken@0
|
525 |
elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
|
slouken@0
|
526 |
ac_cv_path_NM="$ac_dir/nm -p"
|
slouken@0
|
527 |
break
|
slouken@0
|
528 |
else
|
slouken@0
|
529 |
ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
|
slouken@0
|
530 |
continue # so that we can try to find one that supports BSD flags
|
slouken@0
|
531 |
fi
|
slouken@0
|
532 |
fi
|
slouken@0
|
533 |
done
|
slouken@0
|
534 |
IFS="$ac_save_ifs"
|
slouken@0
|
535 |
test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
|
slouken@0
|
536 |
fi])
|
slouken@0
|
537 |
NM="$ac_cv_path_NM"
|
slouken@0
|
538 |
AC_MSG_RESULT([$NM])
|
slouken@0
|
539 |
AC_SUBST(NM)
|
slouken@0
|
540 |
])
|
slouken@0
|
541 |
|
slouken@0
|
542 |
# AC_CHECK_LIBM - check for math library
|
slouken@0
|
543 |
AC_DEFUN(AC_CHECK_LIBM,
|
slouken@0
|
544 |
[AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
slouken@0
|
545 |
LIBM=
|
slouken@0
|
546 |
case "$host" in
|
slouken@0
|
547 |
*-*-beos* | *-*-cygwin*)
|
slouken@0
|
548 |
# These system don't have libm
|
slouken@0
|
549 |
;;
|
slouken@0
|
550 |
*-ncr-sysv4.3*)
|
slouken@0
|
551 |
AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
|
slouken@0
|
552 |
AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
|
slouken@0
|
553 |
;;
|
slouken@0
|
554 |
*)
|
slouken@0
|
555 |
AC_CHECK_LIB(m, main, LIBM="-lm")
|
slouken@0
|
556 |
;;
|
slouken@0
|
557 |
esac
|
slouken@0
|
558 |
])
|
slouken@0
|
559 |
|
slouken@0
|
560 |
# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
|
slouken@0
|
561 |
# the libltdl convenience library, adds --enable-ltdl-convenience to
|
slouken@0
|
562 |
# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
|
slouken@0
|
563 |
# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
|
slouken@0
|
564 |
# to be `${top_builddir}/libltdl'. Make sure you start DIR with
|
slouken@0
|
565 |
# '${top_builddir}/' (note the single quotes!) if your package is not
|
slouken@0
|
566 |
# flat, and, if you're not using automake, define top_builddir as
|
slouken@0
|
567 |
# appropriate in the Makefiles.
|
slouken@0
|
568 |
AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
569 |
case "$enable_ltdl_convenience" in
|
slouken@0
|
570 |
no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
|
slouken@0
|
571 |
"") enable_ltdl_convenience=yes
|
slouken@0
|
572 |
ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
|
slouken@0
|
573 |
esac
|
slouken@0
|
574 |
LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la
|
slouken@0
|
575 |
INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
|
slouken@0
|
576 |
])
|
slouken@0
|
577 |
|
slouken@0
|
578 |
# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
|
slouken@0
|
579 |
# the libltdl installable library, and adds --enable-ltdl-install to
|
slouken@0
|
580 |
# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
|
slouken@0
|
581 |
# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
|
slouken@0
|
582 |
# to be `${top_builddir}/libltdl'. Make sure you start DIR with
|
slouken@0
|
583 |
# '${top_builddir}/' (note the single quotes!) if your package is not
|
slouken@0
|
584 |
# flat, and, if you're not using automake, define top_builddir as
|
slouken@0
|
585 |
# appropriate in the Makefiles.
|
slouken@0
|
586 |
# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
|
slouken@0
|
587 |
AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
|
slouken@0
|
588 |
AC_CHECK_LIB(ltdl, main,
|
slouken@0
|
589 |
[test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
|
slouken@0
|
590 |
[if test x"$enable_ltdl_install" = xno; then
|
slouken@0
|
591 |
AC_MSG_WARN([libltdl not installed, but installation disabled])
|
slouken@0
|
592 |
else
|
slouken@0
|
593 |
enable_ltdl_install=yes
|
slouken@0
|
594 |
fi
|
slouken@0
|
595 |
])
|
slouken@0
|
596 |
if test x"$enable_ltdl_install" = x"yes"; then
|
slouken@0
|
597 |
ac_configure_args="$ac_configure_args --enable-ltdl-install"
|
slouken@0
|
598 |
LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la
|
slouken@0
|
599 |
INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
|
slouken@0
|
600 |
else
|
slouken@0
|
601 |
ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
|
slouken@0
|
602 |
LIBLTDL="-lltdl"
|
slouken@0
|
603 |
INCLTDL=
|
slouken@0
|
604 |
fi
|
slouken@0
|
605 |
])
|
slouken@0
|
606 |
|
slouken@0
|
607 |
dnl old names
|
slouken@0
|
608 |
AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl
|
slouken@0
|
609 |
AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl
|
slouken@0
|
610 |
AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl
|
slouken@0
|
611 |
AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl
|
slouken@0
|
612 |
AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl
|
slouken@0
|
613 |
AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl
|
slouken@0
|
614 |
AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
|
slouken@0
|
615 |
|
slouken@0
|
616 |
dnl This is just to silence aclocal about the macro not being used
|
slouken@0
|
617 |
ifelse([AC_DISABLE_FAST_INSTALL])dnl
|
slouken@0
|
618 |
|
slouken@6
|
619 |
# Do all the work for Automake. This macro actually does too much --
|
slouken@6
|
620 |
# some checks are only needed if your package does certain things.
|
slouken@6
|
621 |
# But this isn't really a big deal.
|
slouken@6
|
622 |
|
slouken@6
|
623 |
# serial 1
|
slouken@6
|
624 |
|
slouken@6
|
625 |
dnl Usage:
|
slouken@6
|
626 |
dnl AM_INIT_AUTOMAKE(package,version, [no-define])
|
slouken@6
|
627 |
|
slouken@6
|
628 |
AC_DEFUN(AM_INIT_AUTOMAKE,
|
slouken@6
|
629 |
[AC_REQUIRE([AC_PROG_INSTALL])
|
slouken@6
|
630 |
PACKAGE=[$1]
|
slouken@6
|
631 |
AC_SUBST(PACKAGE)
|
slouken@6
|
632 |
VERSION=[$2]
|
slouken@6
|
633 |
AC_SUBST(VERSION)
|
slouken@6
|
634 |
dnl test to see if srcdir already configured
|
slouken@6
|
635 |
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
slouken@6
|
636 |
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
|
slouken@6
|
637 |
fi
|
slouken@6
|
638 |
ifelse([$3],,
|
slouken@6
|
639 |
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
|
slouken@6
|
640 |
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
|
slouken@6
|
641 |
AC_REQUIRE([AM_SANITY_CHECK])
|
slouken@6
|
642 |
AC_REQUIRE([AC_ARG_PROGRAM])
|
slouken@6
|
643 |
dnl FIXME This is truly gross.
|
slouken@6
|
644 |
missing_dir=`cd $ac_aux_dir && pwd`
|
slouken@6
|
645 |
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
|
slouken@6
|
646 |
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
|
slouken@6
|
647 |
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
|
slouken@6
|
648 |
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
|
slouken@6
|
649 |
AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
|
slouken@6
|
650 |
AC_REQUIRE([AC_PROG_MAKE_SET])])
|
slouken@6
|
651 |
|
slouken@6
|
652 |
#
|
slouken@6
|
653 |
# Check to make sure that the build environment is sane.
|
slouken@6
|
654 |
#
|
slouken@6
|
655 |
|
slouken@6
|
656 |
AC_DEFUN(AM_SANITY_CHECK,
|
slouken@6
|
657 |
[AC_MSG_CHECKING([whether build environment is sane])
|
slouken@6
|
658 |
# Just in case
|
slouken@6
|
659 |
sleep 1
|
slouken@6
|
660 |
echo timestamp > conftestfile
|
slouken@6
|
661 |
# Do `set' in a subshell so we don't clobber the current shell's
|
slouken@6
|
662 |
# arguments. Must try -L first in case configure is actually a
|
slouken@6
|
663 |
# symlink; some systems play weird games with the mod time of symlinks
|
slouken@6
|
664 |
# (eg FreeBSD returns the mod time of the symlink's containing
|
slouken@6
|
665 |
# directory).
|
slouken@6
|
666 |
if (
|
slouken@6
|
667 |
set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
|
slouken@6
|
668 |
if test "[$]*" = "X"; then
|
slouken@6
|
669 |
# -L didn't work.
|
slouken@6
|
670 |
set X `ls -t $srcdir/configure conftestfile`
|
slouken@6
|
671 |
fi
|
slouken@6
|
672 |
if test "[$]*" != "X $srcdir/configure conftestfile" \
|
slouken@6
|
673 |
&& test "[$]*" != "X conftestfile $srcdir/configure"; then
|
slouken@6
|
674 |
|
slouken@6
|
675 |
# If neither matched, then we have a broken ls. This can happen
|
slouken@6
|
676 |
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
slouken@6
|
677 |
# broken ls alias from the environment. This has actually
|
slouken@6
|
678 |
# happened. Such a system could not be considered "sane".
|
slouken@6
|
679 |
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
|
slouken@6
|
680 |
alias in your environment])
|
slouken@6
|
681 |
fi
|
slouken@6
|
682 |
|
slouken@6
|
683 |
test "[$]2" = conftestfile
|
slouken@6
|
684 |
)
|
slouken@6
|
685 |
then
|
slouken@6
|
686 |
# Ok.
|
slouken@6
|
687 |
:
|
slouken@6
|
688 |
else
|
slouken@6
|
689 |
AC_MSG_ERROR([newly created file is older than distributed files!
|
slouken@6
|
690 |
Check your system clock])
|
slouken@6
|
691 |
fi
|
slouken@6
|
692 |
rm -f conftest*
|
slouken@6
|
693 |
AC_MSG_RESULT(yes)])
|
slouken@6
|
694 |
|
slouken@6
|
695 |
dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
|
slouken@6
|
696 |
dnl The program must properly implement --version.
|
slouken@6
|
697 |
AC_DEFUN(AM_MISSING_PROG,
|
slouken@6
|
698 |
[AC_MSG_CHECKING(for working $2)
|
slouken@6
|
699 |
# Run test in a subshell; some versions of sh will print an error if
|
slouken@6
|
700 |
# an executable is not found, even if stderr is redirected.
|
slouken@6
|
701 |
# Redirect stdin to placate older versions of autoconf. Sigh.
|
slouken@6
|
702 |
if ($2 --version) < /dev/null > /dev/null 2>&1; then
|
slouken@6
|
703 |
$1=$2
|
slouken@6
|
704 |
AC_MSG_RESULT(found)
|
slouken@6
|
705 |
else
|
slouken@6
|
706 |
$1="$3/missing $2"
|
slouken@6
|
707 |
AC_MSG_RESULT(missing)
|
slouken@6
|
708 |
fi
|
slouken@6
|
709 |
AC_SUBST($1)])
|
slouken@6
|
710 |
|
slouken@1
|
711 |
# Define a conditional.
|
slouken@1
|
712 |
|
slouken@1
|
713 |
AC_DEFUN(AM_CONDITIONAL,
|
slouken@1
|
714 |
[AC_SUBST($1_TRUE)
|
slouken@1
|
715 |
AC_SUBST($1_FALSE)
|
slouken@1
|
716 |
if $2; then
|
slouken@1
|
717 |
$1_TRUE=
|
slouken@1
|
718 |
$1_FALSE='#'
|
slouken@1
|
719 |
else
|
slouken@1
|
720 |
$1_TRUE='#'
|
slouken@1
|
721 |
$1_FALSE=
|
slouken@1
|
722 |
fi])
|
slouken@1
|
723 |
|