summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Laboissière <rafael@debian.org>2022-08-19 11:50:06 -0300
committerRafael Laboissière <rafael@debian.org>2022-08-19 11:50:06 -0300
commit5f26dc4f759bb18a75cf94059e364a8ac492187a (patch)
treed4d46816ad038d8fb3cc1c637cae2a20e7ef32af
parente78acd366e2bd30913dd58f6f933becce5448444 (diff)
Update the configure.in file
Forwarded: not-needed Last-Update: 2021-09-26 Update the file in autoconf/ using autotupdate (version 2.71). We will not bother forwarding this patch upstream. Gbp-Pq: Name update-configure.patch
-rw-r--r--autoconf/configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 6e8cab8..6f425f0 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -1,5 +1,6 @@
dnl -*- sh -*-
-AC_INIT(src/curl-module.c)
+AC_INIT
+AC_CONFIG_SRCDIR([src/curl-module.c])
AC_PREFIX_DEFAULT(/usr/local)
AC_CONFIG_AUX_DIR(autoconf)
@@ -39,8 +40,9 @@ JD_SET_RPATH($libdir)
ELF_CFLAGS="$ELF_CFLAGS $IEEE_CFLAGS"
CFLAGS="$CFLAGS $IEEE_CFLAGS"
-AC_CONFIG_HEADER(src/config.h:src/config.hin)
-AC_OUTPUT(Makefile:autoconf/Makefile.in src/Makefile)
+AC_CONFIG_HEADERS([src/config.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:"