summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-06-03 19:43:49 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2014-06-03 19:44:08 -0700
commitbb5c6f2acbedbf51c0b5adf8254f7ccecfec0bae (patch)
treeb8e0c5dd090ddbd6624178f3a9a9f4369dae0535
parent2982f5b365f16dfc7531cedfbd9ae29c410a1156 (diff)
config: Remove unnecessary calls from configure.ac
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac8
1 files changed, 1 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 115f2b2..844cff0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,21 +29,15 @@ AC_CONFIG_HEADERS([config.h])
# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
+AM_PROG_CC_C_O
# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS
m4_ifndef([XORG_MACROS_VERSION],
[m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.3)
-
-AC_PROG_CC
-AM_PROG_CC_C_O
-AC_PROG_INSTALL
-
XORG_DEFAULT_OPTIONS
# Checks for pkg-config packages
PKG_CHECK_MODULES(XTRAP_APP, x11 xtrap)
-AC_SUBST(XTRAP_APP_CFLAGS)
-AC_SUBST(XTRAP_APP_LIBS)
AC_OUTPUT([Makefile])