diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 17:12:01 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 17:12:05 -0800 |
commit | 16057087289997f78c818416442501ba43ec10ac (patch) | |
tree | 48089d07d02ff9bf26e4b6c3801ac9cf4cab75ae | |
parent | config: update AC_PREREQ statement to 2.60 (diff) | |
download | xcman-16057087289997f78c818416442501ba43ec10ac.tar.gz xcman-16057087289997f78c818416442501ba43ec10ac.tar.bz2 xcman-16057087289997f78c818416442501ba43ec10ac.tar.xz |
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>
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 15 |
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]) |