diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-12 22:21:05 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-12 22:23:02 -0800 |
commit | 36d79fb080723a019e18e166c36ccaf2127d199d (patch) | |
tree | bd0656d82d227913c97a89c1a56011d7d2c0fb36 | |
parent | 2e23c3cf3352eb66b2f9ee78c529d49a195ae0de (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 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index ddcf42b..8acfc55 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(xmessage, [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xmessage) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -33,10 +38,6 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AC_CONFIG_HEADERS([config.h]) - - - # Checks for pkg-config packages PKG_CHECK_MODULES(XMESSAGE, xaw7) |