From b18e4104feced7e1cfc9543e5a25d13707220b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Wed, 4 Jan 2012 02:27:43 +0100 Subject: [PATCH] BUILD: Do not use deprecated autoconf macros --- configure.ac | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index e3755c2575..d18c083b40 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,9 @@ AC_PREREQ([2.65]) +AC_INIT([eos],[0.0.1]) + AC_CONFIG_MACRO_DIR([m4]) -AC_INIT(eos, 0.0.1) AC_CANONICAL_TARGET AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADERS(config.h) @@ -232,7 +233,8 @@ AC_SUBST(EOS_LIBS) AC_SUBST(WERROR) -AC_OUTPUT(utf8cpp/Makefile \ +AC_CONFIG_FILES([ + utf8cpp/Makefile \ glew/Makefile \ lua/Makefile \ src/common/Makefile \ @@ -257,4 +259,5 @@ AC_OUTPUT(utf8cpp/Makefile \ src/engines/dragonage/Makefile \ src/engines/jade/Makefile \ src/Makefile \ - Makefile) + Makefile]) +AC_OUTPUT