summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-10 21:08:09 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-10 21:08:09 -0800
commitd3055b5828d5ffd92134de31c44c3d14f6bd283d (patch)
treef714eaa1b89b59f418df957c02f3e0563bd1958e
parent2d33ed0f648314f661aa5e429834a8f886904f94 (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.ac6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 52c8885..8ed1eb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,12 +40,9 @@ m4_ifndef([XORG_MACROS_VERSION],
[m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.8)
XORG_DEFAULT_OPTIONS
-XORG_WITH_LINT
# Checks for programs.
-AC_PROG_CC
-AC_PROG_CC_C99
-AC_PROG_INSTALL
+XORG_WITH_LINT
# Checks for header files.
AC_CHECK_HEADERS([lastlog.h utmp.h utmpx.h sys/param.h])
@@ -61,6 +58,5 @@ AC_CHECK_FUNCS([updwtmpx utmpxname])
# Checks for pkg-config packages
PKG_CHECK_MODULES(SESSREG, xproto)
-AC_SUBST(SESSREG_CFLAGS)
AC_OUTPUT([Makefile])