summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-09-23 20:46:12 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-09-23 20:46:12 -0700
commit1f08410c81e7b9bb1fc5ac9e40e37c26906bfd0c (patch)
tree497608b91299f1747d3117b55283d3d3e16d2c5b
parentb7de2aa690fbf033e74427d1d37ffa49cbfd031a (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.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 5164bd6..038c120 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,25 +34,15 @@ XORG_DEFAULT_OPTIONS
AM_CONFIG_HEADER(config.h)
-AC_PROG_CC
AM_PROG_CC_C_O
-AC_PROG_INSTALL
-
# xkbvleds checks
PKG_CHECK_MODULES(XKBVLEDS, xaw7)
-AC_SUBST(XKBVLEDS_CFLAGS)
-AC_SUBST(XKBVLEDS_LIBS)
# xkbbell checks
PKG_CHECK_MODULES(XKBBELL, xkbfile x11 inputproto)
-AC_SUBST(XKBBELL_CFLAGS)
-AC_SUBST(XKBBELL_LIBS)
# xkbwatch checks
PKG_CHECK_MODULES(XKBWATCH, xaw7)
-AC_SUBST(XKBWATCH_CFLAGS)
-AC_SUBST(XKBWATCH_LIBS)
-
AC_OUTPUT([Makefile])