From e87c104dd6d742d87c19fd88fedf75e04084b595 Mon Sep 17 00:00:00 2001 From: Denys Tynok Date: Wed, 24 Jul 2024 18:56:14 +0300 Subject: [PATCH] fix: update obsolete macros in autoconf (#582) * fix: update obsolete macros in autoconf * fix: update obsolete macro 'AC_PROG_LIBTOOL' in autoconf --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index ef0c52b7..7ff1382b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,15 +1,15 @@ -AC_INIT([ncmpcpp], [0.10_dev]) +AC_INIT([ncmpcpp],[0.10_dev]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_HEADERS(config.h) AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_MACRO_DIR([m4]) -AC_PREREQ(2.59) +AC_PREREQ([2.71]) -AC_LANG_CPLUSPLUS +AC_LANG([C++]) AC_PROG_CXX -AC_PROG_LIBTOOL +LT_INIT AC_ARG_ENABLE(outputs, AS_HELP_STRING([--enable-outputs], [Enable outputs screen @<:@default=no@:>@]), [outputs=$enableval], [outputs=no]) AC_ARG_ENABLE(visualizer, AS_HELP_STRING([--enable-visualizer], [Enable music visualizer screen @<:@default=no@:>@]), [visualizer=$enableval], [visualizer=no])