1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: Update the configure.in file
Update the file in autoconf/ using autotupdate (version 2.71). We
will not bother forwarding this patch upstream.
Author: Rafael Laboissière <rafael@debian.org>
Forwarded: not-needed
Last-Update: 2021-09-26
--- slgsl-0.7.0.orig/autoconf/configure.ac
+++ slgsl-0.7.0/autoconf/configure.ac
@@ -1,5 +1,6 @@
dnl -*- sh -*-
-AC_INIT(src/gslsf-module.c)
+AC_INIT
+AC_CONFIG_SRCDIR([src/gslsf-module.c])
AC_PREFIX_DEFAULT(/usr/local)
AC_CONFIG_AUX_DIR(autoconf)
@@ -35,8 +36,9 @@ dnl #JD_SET_RPATH($libdir)
ELF_CFLAGS="$ELF_CFLAGS $IEEE_CFLAGS"
CFLAGS="$CFLAGS $IEEE_CFLAGS"
-AC_CONFIG_HEADER(src/sysconf.h:src/config.hin)
-AC_OUTPUT(Makefile:autoconf/Makefile.in src/Makefile)
+AC_CONFIG_HEADERS([src/sysconf.h:src/config.hin])
+AC_CONFIG_FILES([Makefile:autoconf/Makefile.in src/Makefile])
+AC_OUTPUT
echo ""
echo "You are compiling with the following compiler configuration:"
|