From 14382a62ab1430223490516cb84b181456999dc7 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sun, 13 Oct 2013 22:19:38 +0300 Subject: [PATCH] configure.ac: add AM_PROG_CC_C_O Older Automakes give this error without this directive: Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac' In newer autotools this is included under AC_PROG_CC, but it's harmless to add. https://github.com/xkbcommon/libxkbcommon/issues/3 Signed-off-by: Ran Benita --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index c0ac1c5..fc77c62 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,9 @@ XORG_MEMORY_CHECK_FLAGS XORG_ENABLE_DOCS XORG_WITH_DOXYGEN +# Needed in older Automakes for subdir-objects +AM_PROG_CC_C_O + # Check for compiler features AC_C_INLINE -- 2.7.4