summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-10-30 11:26:40 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-10-30 11:26:40 -0700
commit46c3cb9103ecd6f73a2908bb93004658069639c5 (patch)
tree4b3339b04294325065c6e2cb71b4d64f98bd15e4
parent52016812038732a3aabc6dfb63ded9d07de703ee (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.ac7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index fe48031..e74898f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,14 +33,9 @@ XORG_DEFAULT_OPTIONS
AM_CONFIG_HEADER(config.h)
-AC_PROG_CC
-AC_PROG_INSTALL
-
AC_CHECK_LIB(m,floor)
+
# Checks for pkg-config packages
PKG_CHECK_MODULES(XRANDR, xrandr >= 1.3 xrender x11)
-AC_SUBST(XRANDR_CFLAGS)
-AC_SUBST(XRANDR_LIBS)
-
AC_OUTPUT([Makefile])