diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-12-28 18:27:21 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-12-28 18:27:21 -0800 |
commit | 77751643fc01bd8f8ef29345bf17ea8d224039bc (patch) | |
tree | d168abdbe54c1732af4d19cffac40c48ec6e9d6d | |
parent | 819ac2a57b75501f048c9942491ce96285b8f3bd (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, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c407f05..9058b49 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,12 @@ +dnl +dnl Process this file with autoconf to create configure. + +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([EvIEExt], [1.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_CONFIG_SRCDIR([Makefile.am]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE |