From bc272e4e9faf64054f8b3181285069c2896c2396 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Sun, 26 Jun 2022 18:58:08 +0000 Subject: [PATCH] autoconf: run autoupdate --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index 113ca0a..77d9f1f 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ dnl This software is provided 'as is' and without any warranty, express or dnl implied. In no event shall the authors be liable for any damages arising dnl from the use of this software. -AC_PREREQ([2.68]) -AC_INIT([pkgconf], [1.8.0], [https://github.com/pkgconf/pkgconf/issues/new]) +AC_PREREQ([2.71]) +AC_INIT([pkgconf],[1.8.0],[https://github.com/pkgconf/pkgconf/issues/new]) AC_CONFIG_SRCDIR([cli/main.c]) AC_CONFIG_MACRO_DIR([m4]) AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"]) @@ -30,26 +30,26 @@ LT_INIT AC_SYS_LARGEFILE -AC_ARG_WITH([personality-dir],[AC_HELP_STRING([--with-personality-dir],[specify +AC_ARG_WITH([personality-dir],[AS_HELP_STRING([--with-personality-dir],[specify the place where cross-compile personality files will be found])], PERSONALITY_PATH="$withval", PERSONALITY_PATH="${datadir}/pkgconfig/personality.d:${sysconfdir}/pkgconfig/personality.d") AC_SUBST([PERSONALITY_PATH]) -AC_ARG_WITH([pkg-config-dir],[AC_HELP_STRING([--with-pkg-config-dir],[specify +AC_ARG_WITH([pkg-config-dir],[AS_HELP_STRING([--with-pkg-config-dir],[specify the place where pc files will be found])],PKG_DEFAULT_PATH="$withval", PKG_DEFAULT_PATH="${libdir}/pkgconfig:${datadir}/pkgconfig") AC_SUBST([PKG_DEFAULT_PATH]) -AC_ARG_WITH([system-libdir],[AC_HELP_STRING([--with-system-libdir],[specify the +AC_ARG_WITH([system-libdir],[AS_HELP_STRING([--with-system-libdir],[specify the system library directory (default LIBDIR)])], SYSTEM_LIBDIR="$withval", SYSTEM_LIBDIR="${libdir}") AC_SUBST([SYSTEM_LIBDIR]) -AC_ARG_WITH([system-includedir],[AC_HELP_STRING([--with-system-includedir],[specify the +AC_ARG_WITH([system-includedir],[AS_HELP_STRING([--with-system-includedir],[specify the system include directory (default INCLUDEDIR)])], SYSTEM_INCLUDEDIR="$withval", SYSTEM_INCLUDEDIR="${includedir}")