diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-01-15 10:16:17 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-01-15 10:30:09 -0800 |
commit | ff81a4e4e894915bb6b8aece8314ca1a854140a4 (patch) | |
tree | c500cdf30b97e7a46049659ef194e3e8098158dc | |
parent | 2afe9a69417cbd25fc5379faf22eba1a8e94b348 (diff) |
config: Add missing AC_CONFIG_SRCDIR
Regroup AC statements under the Autoconf initialization section.
Regroup AM statements under the Automake initialization section.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 01038c1..b05d070 100644 --- a/configure.ac +++ b/configure.ac @@ -21,9 +21,14 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([bitmap], [1.0.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [bitmap]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -33,8 +38,6 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AC_CONFIG_HEADERS([config.h]) - AM_PROG_CC_C_O AC_CHECK_FUNC([mkstemp], |