aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Van Assche <bvanassche@acm.org>2022-04-21 15:18:06 -0700
committerJaegeuk Kim <jaegeuk@kernel.org>2022-04-22 10:19:12 -0700
commitd24fd5c01cab09a00ac7be5f5aee9f9ef12f93f3 (patch)
tree485766654ea30cbb8f01e9d764b4ea75fae90768
parent6afcf6493578e77528abe65ab8b12f3e1c16749f (diff)
downloadf2fs-tools-d24fd5c01cab09a00ac7be5f5aee9f9ef12f93f3.tar.gz
configure.ac: Stop using obsolete macros
Run autoupdate v2.71 to fix the following autogen.sh warnings: configure.ac:33: warning: The macro `AC_CONFIG_HEADER' is obsolete. configure.ac:33: You should run autoupdate. ./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from... configure.ac:33: the top level configure.ac:49: warning: The macro `AC_PROG_LIBTOOL' is obsolete. configure.ac:49: You should run autoupdate. m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from... configure.ac:49: the top level Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 32e97a2..f906be7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ AS_IF([test -d .git],[
[f2fs-tools date based on Source releases])])
AC_CONFIG_SRCDIR([config.h.in])
-AC_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign tar-pax dist-xz])
@@ -46,7 +46,7 @@ AC_ARG_WITH([blkid],
# Checks for programs.
AC_PROG_CC
-AC_PROG_LIBTOOL
+LT_INIT
AC_PATH_PROG([LDCONFIG], [ldconfig],
[AC_MSG_ERROR([ldconfig not found])],
[$PATH:/sbin])