diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-21 18:32:26 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-21 18:32:26 -0700 |
commit | 705d787a5b35a8409c482526b5c2955aa5371b1e (patch) | |
tree | e574fe8703535a3b74a1db43880e1663b8f9caa4 | |
parent | 6ceb665aeb5164bc5668786fc718dd0b0ba2a76c (diff) |
Remove unneccessary configure steps
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index 74f4f3c..d0351cb 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,8 @@ AC_PREREQ(2.57) AC_INIT([transset], [0.9.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AC_CONFIG_SRCDIR([transSet.c]) +AC_CONFIG_HEADER([config.h]) + AM_INIT_AUTOMAKE([dist-bzip2 foreign]) AM_MAINTAINER_MODE @@ -11,25 +13,9 @@ AM_MAINTAINER_MODE m4_ifndef([XORG_MACROS_VERSION], [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) 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. - PKG_CHECK_MODULES(TRANSSET, x11) -AC_SUBST(TRANSSET_CFLAGS) -AC_SUBST(TRANSSET_LIBS) AC_OUTPUT([Makefile]) |