From 4f0d513e2b87694ba697da08e54d48cc93f222fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Bonithon?= Date: Tue, 2 Feb 2021 19:41:30 +0100 Subject: [PATCH] autoconf: Some updates * Remove AC_HEADER_STDC * AC_OUTPUT -> AC_CONFIG_FILES + AC_OUTPUT --- configure.ac.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac.in b/configure.ac.in index e051b81..f2114e5 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -42,7 +42,6 @@ AM_PROG_CC_C_O() dnl ********************************** dnl *** Check for standard headers *** dnl ********************************** -AC_HEADER_STDC() AC_CHECK_HEADERS([math.h]) dnl ****************************** @@ -67,7 +66,7 @@ dnl *** Check for debugging support *** dnl *********************************** XDT_FEATURE_DEBUG() -AC_OUTPUT([ +AC_CONFIG_FILES([ Makefile po/Makefile.in panel-plugin/Makefile @@ -86,3 +85,4 @@ themes/Default-tiny/Makefile themes/Horrid/Makefile themes/Tango/Makefile ]) +AC_OUTPUT