summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-07 23:46:00 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-07 23:46:00 -0800
commit163f783b9bef4348d8488b6b927c67406c8a40b6 (patch)
treee13d25cdf9119a97c08477a12c783ac5a36b536b
parentd043044ab9949b6e15479ede69023f78f00081ee (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, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index d1fa877..8400631 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,18 +34,12 @@ XORG_DEFAULT_OPTIONS
AM_CONFIG_HEADER(config.h)
-AC_PROG_CC
-AC_PROG_INSTALL
-
-
# Checks for pkg-config packages
PKG_CHECK_EXISTS([xkbfile], [XKBPKG="xkbfile"], [XKBPKG=""])
if test x$XKBPKG = xxkbfile ; then
AC_DEFINE([XKB], [1], [Define to use libxkbfile calls like XKBStdBell()])
fi
PKG_CHECK_MODULES(XCLIPBOARD, [xaw7 xmu xt x11 ${XKBPKG}])
-AC_SUBST(XCLIPBOARD_CFLAGS)
-AC_SUBST(XCLIPBOARD_LIBS)
PKG_CHECK_MODULES(APPDEFS, xt)
xt_appdefaultdir=`$PKG_CONFIG --variable=appdefaultdir xt`