Hello,

whil building gnumach, running autoreconf --install gives back a warning:

configure.ac:193: warning: The macro `AC_CONFIG_HEADER' is obsolete.
configure.ac:193: You should run autoupdate.


AC_CONFIG_HEADER can be replaced by AC_CONFIG_HEADERS


--
Best regards / Melhores cumprimentos,

Miguel Figueiredo
diff --git a/configure.ac b/configure.ac
index e7fdfe6a..019842db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -190,7 +190,7 @@ AM_CONDITIONAL([disable_smashing_stack_protector],
 # Output.
 #
 
-AC_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_FILES([Makefile version.c])
 
 #

Reply via email to