]> git.ipfire.org Git - thirdparty/gcc.git/blame - libbacktrace/configure.ac
Update GCC to autoconf 2.69, automake 1.15.1 (PR bootstrap/82856).
[thirdparty/gcc.git] / libbacktrace / configure.ac
CommitLineData
eff02e4f 1# configure.ac -- Backtrace configure script.
85ec4feb 2# Copyright (C) 2012-2018 Free Software Foundation, Inc.
eff02e4f
ILT
3
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7
8# (1) Redistributions of source code must retain the above copyright
84ebf639 9# notice, this list of conditions and the following disclaimer.
eff02e4f
ILT
10
11# (2) Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in
13# the documentation and/or other materials provided with the
84ebf639
CL
14# distribution.
15
eff02e4f
ILT
16# (3) The name of the author may not be used to
17# endorse or promote products derived from this software without
18# specific prior written permission.
19
20# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31
eff02e4f
ILT
32AC_INIT(package-unused, version-unused,, libbacktrace)
33AC_CONFIG_SRCDIR(backtrace.h)
34AC_CONFIG_HEADER(config.h)
35
405a6b1c
MK
36if test -n "${with_target_subdir}"; then
37 AM_ENABLE_MULTILIB(, ..)
38fi
39
eff02e4f
ILT
40AC_CANONICAL_SYSTEM
41target_alias=${target_alias-$host_alias}
42
d4c059d5
ILT
43AC_USE_SYSTEM_EXTENSIONS
44
eff02e4f
ILT
45libtool_VERSION=1:0:0
46AC_SUBST(libtool_VERSION)
47
af710874
ILT
48# 1.11.1: Require that version of automake.
49# foreign: Don't require README, INSTALL, NEWS, etc.
50# no-define: Don't define PACKAGE and VERSION.
51# no-dependencies: Don't generate automatic dependencies.
52# (because it breaks when using bootstrap-lean, since some of the
53# headers are gone at "make install" time).
54# -Wall: Issue all automake warnings.
55# -Wno-portability: Don't warn about constructs supported by GNU make.
56# (because GCC requires GNU make anyhow).
57AM_INIT_AUTOMAKE([1.11.1 foreign no-dist no-define no-dependencies -Wall -Wno-portability])
eff02e4f
ILT
58
59AM_MAINTAINER_MODE
60
61AC_ARG_WITH(target-subdir,
62[ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
63
64# We must force CC to /not/ be precious variables; otherwise
65# the wrong, non-multilib-adjusted value will be used in multilibs.
66# As a side effect, we have to subst CFLAGS ourselves.
67m4_rename([_AC_ARG_VAR_PRECIOUS],[backtrace_PRECIOUS])
68m4_define([_AC_ARG_VAR_PRECIOUS],[])
69AC_PROG_CC
70m4_rename_force([backtrace_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
71
72AC_SUBST(CFLAGS)
73
74AC_PROG_RANLIB
75
76AC_PROG_AWK
77case "$AWK" in
78"") AC_MSG_ERROR([can't build without awk]) ;;
79esac
80
7e5c7547 81LT_INIT
eff02e4f
ILT
82AM_PROG_LIBTOOL
83
e91a2ddc
RB
84AC_SYS_LARGEFILE
85
eff02e4f
ILT
86backtrace_supported=yes
87
88if test -n "${with_target_subdir}"; then
89 # We are compiling a GCC library. We can assume that the unwind
90 # library exists.
eff02e4f
ILT
91 BACKTRACE_FILE="backtrace.lo simple.lo"
92else
93 AC_CHECK_HEADER([unwind.h],
94 [AC_CHECK_FUNC([_Unwind_Backtrace],
95 [BACKTRACE_FILE="backtrace.lo simple.lo"],
96 [BACKTRACE_FILE="nounwind.lo"
97 backtrace_supported=no])],
98 [BACKTRACE_FILE="nounwind.lo"
99 backtrace_supported=no])
100fi
101AC_SUBST(BACKTRACE_FILE)
102
56195009 103EXTRA_FLAGS=
32061319 104if test -n "${with_target_subdir}"; then
36a58fb3 105 EXTRA_FLAGS="-funwind-tables -frandom-seed=\$@"
32061319
ILT
106else
107 AC_CACHE_CHECK([for -funwind-tables option],
108 [libbacktrace_cv_c_unwind_tables],
109 [CFLAGS_hold="$CFLAGS"
110 CFLAGS="$CFLAGS -funwind-tables"
111 AC_COMPILE_IFELSE(
112 [AC_LANG_PROGRAM([static int f() { return 0; }], [return f();])],
113 [libbacktrace_cv_c_unwind_tables=yes],
114 [libbacktrace_cv_c_unwind_tables=no])
115 CFLAGS="$CFLAGS_hold"])
36a58fb3
JJ
116 if test "$libbacktrace_cv_c_unwind_tables" = "yes"; then
117 EXTRA_FLAGS=-funwind-tables
118 fi
119 AC_CACHE_CHECK([for -frandom-seed=string option],
120 [libbacktrace_cv_c_random_seed_string],
121 [CFLAGS_hold="$CFLAGS"
122 CFLAGS="$CFLAGS -frandom-seed=conftest.lo"
123 AC_COMPILE_IFELSE(
124 [AC_LANG_PROGRAM([], [return 0;])],
125 [libbacktrace_cv_c_random_seed_string=yes],
126 [libbacktrace_cv_c_random_seed_string=no])
127 CFLAGS="$CFLAGS_hold"])
128 if test "$libbacktrace_cv_c_random_seed_string" = "yes"; then
129 EXTRA_FLAGS="$EXTRA_FLAGS -frandom-seed=\$@"
130 fi
56195009 131fi
44685d37
IT
132
133if test -n "${with_target_subdir}"; then
134 # Add CET specific flags is Intel CET is enabled.
135 GCC_CET_FLAGS(CET_FLAGS)
136 EXTRA_FLAGS="$EXTRA_FLAGS $CET_FLAGS"
137fi
56195009
UB
138AC_SUBST(EXTRA_FLAGS)
139
eff02e4f
ILT
140ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \
141 -Wmissing-prototypes -Wold-style-definition \
142 -Wmissing-format-attribute -Wcast-qual],
143 [WARN_FLAGS])
144
73c3ed27 145if test -n "${with_target_subdir}"; then
eff02e4f
ILT
146 WARN_FLAGS="$WARN_FLAGS -Werror"
147fi
148
149AC_SUBST(WARN_FLAGS)
150
64b89453
ILT
151if test -n "${with_target_subdir}"; then
152 GCC_CHECK_UNWIND_GETIPINFO
153else
385710cf
JH
154 ac_save_CFFLAGS="$CFLAGS"
155 CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
156 AC_MSG_CHECKING([for _Unwind_GetIPInfo])
63fefb4b 157 AC_LINK_IFELSE(
385710cf
JH
158 [AC_LANG_PROGRAM(
159 [#include "unwind.h"
160 struct _Unwind_Context *context;
161 int ip_before_insn = 0;],
162 [return _Unwind_GetIPInfo (context, &ip_before_insn);])],
163 [have_unwind_getipinfo=yes], [have_unwind_getipinfo=no])
164 CFLAGS="$ac_save_CFLAGS"
165 AC_MSG_RESULT([$have_unwind_getipinfo])
64b89453
ILT
166 if test "$have_unwind_getipinfo" = "yes"; then
167 AC_DEFINE(HAVE_GETIPINFO, 1, [Define if _Unwind_GetIPInfo is available.])
168 fi
169fi
eff02e4f 170
7e5c7547 171# Enable --enable-host-shared.
459260ec
DM
172AC_ARG_ENABLE(host-shared,
173[AS_HELP_STRING([--enable-host-shared],
174 [build host code as shared libraries])],
7e5c7547 175[PIC_FLAG=-fPIC], [PIC_FLAG=])
eff02e4f
ILT
176AC_SUBST(PIC_FLAG)
177
178# Test for __sync support.
179AC_CACHE_CHECK([__sync extensions],
180[libbacktrace_cv_sys_sync],
181[if test -n "${with_target_subdir}"; then
2f401a8f
JDA
182 case "${host}" in
183 hppa*-*-hpux*) libbacktrace_cv_sys_sync=no ;;
184 *) libbacktrace_cv_sys_sync=yes ;;
185 esac
eff02e4f
ILT
186 else
187 AC_LINK_IFELSE(
188 [AC_LANG_PROGRAM([int i;],
189 [__sync_bool_compare_and_swap (&i, i, i);
190 __sync_lock_test_and_set (&i, 1);
191 __sync_lock_release (&i);])],
192 [libbacktrace_cv_sys_sync=yes],
193 [libbacktrace_cv_sys_sync=no])
194 fi])
195BACKTRACE_SUPPORTS_THREADS=0
196if test "$libbacktrace_cv_sys_sync" = "yes"; then
197 BACKTRACE_SUPPORTS_THREADS=1
198 AC_DEFINE([HAVE_SYNC_FUNCTIONS], 1,
199 [Define to 1 if you have the __sync functions])
200fi
201AC_SUBST(BACKTRACE_SUPPORTS_THREADS)
202
49579c7e
ILT
203# Test for __atomic support.
204AC_CACHE_CHECK([__atomic extensions],
205[libbacktrace_cv_sys_atomic],
206[if test -n "${with_target_subdir}"; then
207 libbacktrace_cv_sys_atomic=yes
208 else
209 AC_LINK_IFELSE(
210 [AC_LANG_PROGRAM([int i;],
211 [__atomic_load_n (&i, __ATOMIC_ACQUIRE);
212 __atomic_store_n (&i, 1, __ATOMIC_RELEASE);])],
213 [libbacktrace_cv_sys_atomic=yes],
214 [libbacktrace_cv_sys_atomic=no])
215 fi])
216if test "$libbacktrace_cv_sys_atomic" = "yes"; then
217 AC_DEFINE([HAVE_ATOMIC_FUNCTIONS], 1,
218 [Define to 1 if you have the __atomic functions])
219fi
220
eff02e4f
ILT
221# The library needs to be able to read the executable itself. Compile
222# a file to determine the executable format. The awk script
223# filetype.awk prints out the file type.
224AC_CACHE_CHECK([output filetype],
225[libbacktrace_cv_sys_filetype],
226[filetype=
227AC_COMPILE_IFELSE(
228 [AC_LANG_PROGRAM([int i;], [int j;])],
229 [filetype=`${AWK} -f $srcdir/filetype.awk conftest.$ac_objext`],
230 [AC_MSG_FAILURE([compiler failed])])
231libbacktrace_cv_sys_filetype=$filetype])
232
233# Match the file type to decide what files to compile.
234FORMAT_FILE=
e24afc10 235backtrace_supports_data=yes
eff02e4f
ILT
236case "$libbacktrace_cv_sys_filetype" in
237elf*) FORMAT_FILE="elf.lo" ;;
e24afc10
TG
238pecoff) FORMAT_FILE="pecoff.lo"
239 backtrace_supports_data=no
240 ;;
7e2a8417
TR
241xcoff*) FORMAT_FILE="xcoff.lo"
242 backtrace_supports_data=no
243 ;;
eff02e4f
ILT
244*) AC_MSG_WARN([could not determine output file type])
245 FORMAT_FILE="unknown.lo"
246 backtrace_supported=no
247 ;;
248esac
249AC_SUBST(FORMAT_FILE)
250
251# ELF defines.
252elfsize=
253case "$libbacktrace_cv_sys_filetype" in
254elf32) elfsize=32 ;;
255elf64) elfsize=64 ;;
e24afc10 256*) elfsize=unused
eff02e4f
ILT
257esac
258AC_DEFINE_UNQUOTED([BACKTRACE_ELF_SIZE], [$elfsize], [ELF size: 32 or 64])
259
7e2a8417
TR
260# XCOFF defines.
261xcoffsize=
262case "$libbacktrace_cv_sys_filetype" in
263xcoff32) xcoffsize=32 ;;
264xcoff64) xcoffsize=64 ;;
265*) xcoffsize=unused
266esac
267AC_DEFINE_UNQUOTED([BACKTRACE_XCOFF_SIZE], [$xcoffsize], [XCOFF size: 32 or 64])
268
eff02e4f
ILT
269BACKTRACE_SUPPORTED=0
270if test "$backtrace_supported" = "yes"; then
271 BACKTRACE_SUPPORTED=1
272fi
273AC_SUBST(BACKTRACE_SUPPORTED)
274
e24afc10
TG
275BACKTRACE_SUPPORTS_DATA=0
276if test "$backtrace_supports_data" = "yes"; then
277 BACKTRACE_SUPPORTS_DATA=1
278fi
279AC_SUBST(BACKTRACE_SUPPORTS_DATA)
280
76850556
RO
281GCC_HEADER_STDINT(gstdint.h)
282
eff02e4f
ILT
283AC_CHECK_HEADERS(sys/mman.h)
284if test "$ac_cv_header_sys_mman_h" = "no"; then
285 have_mmap=no
286else
287 if test -n "${with_target_subdir}"; then
288 # When built as a GCC target library, we can't do a link test. We
289 # simply assume that if we have mman.h, we have mmap.
290 have_mmap=yes
1b533361 291 case "${host}" in
5b4bbc7d 292 spu-*-*|*-*-msdosdjgpp)
1b533361
UW
293 # The SPU does not have mmap, but it has a sys/mman.h header file
294 # containing "mmap_eaddr" and the mmap flags, confusing the test.
5b4bbc7d 295 # DJGPP also has sys/man.h, but no mmap
1b533361
UW
296 have_mmap=no ;;
297 esac
eff02e4f
ILT
298 else
299 AC_CHECK_FUNC(mmap, [have_mmap=yes], [have_mmap=no])
300 fi
301fi
302if test "$have_mmap" = "no"; then
303 VIEW_FILE=read.lo
304 ALLOC_FILE=alloc.lo
305else
306 VIEW_FILE=mmapio.lo
22e05272 307 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
eff02e4f
ILT
308#include <sys/mman.h>
309#if !defined(MAP_ANONYMOUS) && !defined(MAP_ANON)
310 #error no MAP_ANONYMOUS
311#endif
22e05272 312])], [ALLOC_FILE=mmap.lo], [ALLOC_FILE=alloc.lo])
eff02e4f
ILT
313fi
314AC_SUBST(VIEW_FILE)
315AC_SUBST(ALLOC_FILE)
316
317BACKTRACE_USES_MALLOC=0
318if test "$ALLOC_FILE" = "alloc.lo"; then
319 BACKTRACE_USES_MALLOC=1
320fi
321AC_SUBST(BACKTRACE_USES_MALLOC)
322
e561a992
ILT
323# Check for dl_iterate_phdr.
324AC_CHECK_HEADERS(link.h)
325if test "$ac_cv_header_link_h" = "no"; then
326 have_dl_iterate_phdr=no
327else
328 if test -n "${with_target_subdir}"; then
329 # When built as a GCC target library, we can't do a link test.
330 AC_EGREP_HEADER([dl_iterate_phdr], [link.h], [have_dl_iterate_phdr=yes],
331 [have_dl_iterate_phdr=no])
5551b12c
ILT
332 case "${host}" in
333 *-*-solaris2.10*)
334 # Avoid dl_iterate_phdr on Solaris 10, where it is in the
335 # header file but is only in -ldl.
336 have_dl_iterate_phdr=no ;;
337 esac
e561a992
ILT
338 else
339 AC_CHECK_FUNC([dl_iterate_phdr], [have_dl_iterate_phdr=yes],
340 [have_dl_iterate_phdr=no])
341 fi
342fi
343if test "$have_dl_iterate_phdr" = "yes"; then
344 AC_DEFINE(HAVE_DL_ITERATE_PHDR, 1, [Define if dl_iterate_phdr is available.])
345fi
346
7e2a8417
TR
347# Check for loadquery.
348AC_CHECK_HEADERS(sys/ldr.h)
349if test "$ac_cv_header_sys_ldr_h" = "no"; then
350 have_loadquery=no
351else
352 if test -n "${with_target_subdir}"; then
353 # When built as a GCC target library, we can't do a link test.
354 AC_EGREP_HEADER([loadquery], [sys/ldr.h], [have_loadquery=yes],
355 [have_loadquery=no])
356 else
357 AC_CHECK_FUNC([loadquery], [have_loadquery=yes],
358 [have_loadquery=no])
359 fi
360fi
361if test "$have_loadquery" = "yes"; then
362 AC_DEFINE(HAVE_LOADQUERY, 1, [Define if AIX loadquery is available.])
363fi
364
3319ef17
ILT
365# Check for the fcntl function.
366if test -n "${with_target_subdir}"; then
367 case "${host}" in
368 *-*-mingw*) have_fcntl=no ;;
8f5027bf 369 spu-*-*) have_fcntl=no ;;
3319ef17
ILT
370 *) have_fcntl=yes ;;
371 esac
372else
373 AC_CHECK_FUNC(fcntl, [have_fcntl=yes], [have_fcntl=no])
374fi
375if test "$have_fcntl" = "yes"; then
376 AC_DEFINE([HAVE_FCNTL], 1,
377 [Define to 1 if you have the fcntl function])
378fi
379
772a71a9 380AC_CHECK_DECLS(strnlen)
8c2ea6b2 381AC_CHECK_FUNCS(lstat readlink)
772a71a9 382
33521509
ILT
383# Check for getexecname function.
384if test -n "${with_target_subdir}"; then
385 case "${host}" in
386 *-*-solaris2*) have_getexecname=yes ;;
387 *) have_getexecname=no ;;
388 esac
389else
390 AC_CHECK_FUNC(getexecname, [have_getexecname=yes], [have_getexecname=no])
391fi
392if test "$have_getexecname" = "yes"; then
393 AC_DEFINE(HAVE_GETEXECNAME, 1, [Define if getexecname is available.])
394fi
395
dbc31f20
TS
396# Check for the clock_gettime function.
397AC_CHECK_FUNCS(clock_gettime)
dd954c67
TS
398clock_gettime_link=
399# At least for glibc, clock_gettime is in librt. But don't
400# pull that in if it still doesn't give us the function we want. This
401# test is copied from libgomp, and modified to not link in -lrt as
402# we're using this for test timing only.
403if test "$ac_cv_func_clock_gettime" = no; then
404 AC_CHECK_LIB(rt, clock_gettime,
8398c1df 405 [CLOCK_GETTIME_LINK=-lrt
dd954c67
TS
406 AC_DEFINE(HAVE_CLOCK_GETTIME, 1,
407 [Define to 1 if you have the `clock_gettime' function.])])
408fi
8398c1df 409AC_SUBST(CLOCK_GETTIME_LINK)
dbc31f20 410
d1609a23
ILT
411dnl Test whether the compiler supports the -pthread option.
412AC_CACHE_CHECK([whether -pthread is supported],
413[libgo_cv_lib_pthread],
414[CFLAGS_hold=$CFLAGS
415CFLAGS="$CFLAGS -pthread"
22e05272 416AC_COMPILE_IFELSE([AC_LANG_SOURCE([int i;])],
d1609a23
ILT
417[libgo_cv_lib_pthread=yes],
418[libgo_cv_lib_pthread=no])
419CFLAGS=$CFLAGS_hold])
420PTHREAD_CFLAGS=
421if test "$libgo_cv_lib_pthread" = yes; then
422 PTHREAD_CFLAGS=-pthread
423fi
424AC_SUBST(PTHREAD_CFLAGS)
425
426AM_CONDITIONAL(HAVE_PTHREAD, test "$libgo_cv_lib_pthread" = yes)
427
2206fb89
IB
428AC_CHECK_LIB([z], [compress],
429 [AC_DEFINE(HAVE_ZLIB, 1, [Define if -lz is available.])])
8da872d9
ILT
430AM_CONDITIONAL(HAVE_ZLIB, test "$ac_cv_lib_z_compress" = yes)
431
432dnl Test whether the linker supports the --compress_debug_sections option.
433AC_CACHE_CHECK([whether --compress-debug-sections is supported],
434[libgo_cv_ld_compress],
435[LDFLAGS_hold=$LDFLAGS
436LDFLAGS="$LDFLAGS -Wl,--compress-debug-sections=zlib-gnu"
437AC_LINK_IFELSE([AC_LANG_PROGRAM(,)],
438[libgo_cv_ld_compress=yes],
439[libgo_cv_ld_compress=no])
440LDFLAGS=$LDFLAGS_hold])
441AM_CONDITIONAL(HAVE_COMPRESSED_DEBUG, test "$libgo_cv_ld_compress" = yes)
442
9283471b
ILT
443AC_ARG_VAR(OBJCOPY, [location of objcopy])
444AC_CHECK_PROG(OBJCOPY, objcopy, objcopy,)
445AC_CACHE_CHECK([whether objcopy supports debuglink],
446[libbacktrace_cv_objcopy_debuglink],
447[if test -n "${with_target_subdir}"; then
448 libbacktrace_cv_objcopy_debuglink=no
449elif ${OBJCOPY} --add-gnu-debuglink=x /bin/ls /tmp/ls$$; then
450 rm -f /tmp/ls$$
451 libbacktrace_cv_objcopy_debuglink=yes
452else
453 libbacktrace_cv_objcopy_debuglink=no
454fi])
455AM_CONDITIONAL(HAVE_OBJCOPY_DEBUGLINK, test "$libbacktrace_cv_objcopy_debuglink" = yes)
456
eff02e4f
ILT
457AC_CACHE_CHECK([whether tests can run],
458 [libbacktrace_cv_sys_native],
459 [AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
460 [libbacktrace_cv_sys_native=yes],
461 [libbacktrace_cv_sys_native=no],
462 [libbacktrace_cv_sys_native=no])])
463AM_CONDITIONAL(NATIVE, test "$libbacktrace_cv_sys_native" = "yes")
464
465if test "${multilib}" = "yes"; then
466 multilib_arg="--enable-multilib"
467else
468 multilib_arg=
469fi
470
471AC_CONFIG_FILES(Makefile backtrace-supported.h)
472
473# We need multilib support, but only if configuring for the target.
474AC_CONFIG_COMMANDS([default],
475[if test -n "$CONFIG_FILES"; then
476 if test -n "${with_target_subdir}"; then
477 # Multilibs need MULTISUBDIR defined correctly in certain makefiles so
478 # that multilib installs will end up installed in the correct place.
479 # The testsuite needs it for multilib-aware ABI baseline files.
480 # To work around this not being passed down from config-ml.in ->
481 # srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually
482 # append it here. Only modify Makefiles that have just been created.
483 #
484 # Also, get rid of this simulated-VPATH thing that automake does.
485 cat > vpsed << \_EOF
486 s!`test -f '$<' || echo '$(srcdir)/'`!!
487_EOF
488 for i in $SUBDIRS; do
489 case $CONFIG_FILES in
490 *${i}/Makefile*)
491 #echo "Adding MULTISUBDIR to $i/Makefile"
492 sed -f vpsed $i/Makefile > tmp
493 grep '^MULTISUBDIR =' Makefile >> tmp
494 mv tmp $i/Makefile
495 ;;
496 esac
497 done
498 rm vpsed
499 fi
500 fi
501],
502[
503# Variables needed in config.status (file generation) which aren't already
504# passed by autoconf.
505SUBDIRS="$SUBDIRS"
506])
507
508AC_OUTPUT