diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-10-30 11:04:08 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-10-30 11:04:08 -0700 |
commit | 1640fcc34a9883898b07789949e3a3af9d398c15 (patch) | |
tree | 3d42fbe67ba55e1e81021485a0197eedc20f3782 /configure.ac | |
parent | 509973583996c7bd279ea9276731fb00dd104861 (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>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index b883909..e74ce22 100644 --- a/configure.ac +++ b/configure.ac @@ -31,18 +31,12 @@ AM_CONFIG_HEADER(config.h) m4_ifndef([XORG_MACROS_VERSION], [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.8) - -AC_PROG_CC -AC_PROG_INSTALL - XORG_DEFAULT_OPTIONS AC_CHECK_HEADERS([wchar.h wctype.h langinfo.h]) # Checks for pkg-config packages PKG_CHECK_MODULES(XPROP, x11) -AC_SUBST(XPROP_CFLAGS) -AC_SUBST(XPROP_LIBS) XORG_WITH_LINT |