From 369f761050933fc094c3836fcdb42ad961bf0340 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Wed, 19 Feb 2014 14:37:15 -0500 Subject: config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES Fix Automake warning: AC_OUTPUT should be used without arguments. www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files Changed layout to one file per file like other xorg modules. Reviewed-by: Uli Schlachter Signed-off-by: Gaetan Nadon --- configure.ac | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9a32f01..2f9482c 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,10 @@ PKG_CHECK_MODULES(XCB_SHM, xcb-shm) PKG_CHECK_MODULES(XPROTO, xproto >= 7.0.8) PKG_CHECK_MODULES(XCB_UTIL, xcb-util) -AC_OUTPUT([Makefile - image/Makefile image/xcb-image.pc +AC_CONFIG_FILES([ + Makefile + image/Makefile + image/xcb-image.pc xcb_util_intro - ]) +]) +AC_OUTPUT -- cgit v1.2.3