summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 17:12:01 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 17:12:05 -0800
commit16057087289997f78c818416442501ba43ec10ac (patch)
tree48089d07d02ff9bf26e4b6c3801ac9cf4cab75ae
parente501573c7181f81d2ce874445becddbc9af6eacb (diff)
config: Remove unnecessary calls from configure.ac
AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Never used any of the HAVE_* defines from the function/header checks Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac15
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac
index af07dad..41e6f32 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,23 +15,8 @@ XORG_MACROS_VERSION(1.3)
AC_CONFIG_HEADER([config.h])
# Checks for programs.
-AC_PROG_CC
XORG_DEFAULT_OPTIONS
-# Checks for header files.
-AC_HEADER_STDC
-AC_CHECK_HEADERS([stdlib.h sys/time.h unistd.h])
-
-# Checks for typedefs, structures, and compiler characteristics.
-AC_HEADER_TIME
-AC_STRUCT_TM
-
-# Checks for library functions.
-AC_FUNC_MALLOC
-AC_CHECK_FUNCS([gettimeofday localtime_r])
-
PKG_CHECK_MODULES(XCOMPMGR, xcomposite xfixes xdamage xrender)
-AC_SUBST(XCOMPMGR_CFLAGS)
-AC_SUBST(XCOMPMGR_LIBS)
AC_OUTPUT([Makefile])