diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-05 09:01:03 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-05 09:02:34 -0800 |
commit | 3db923e80852b088b1d0583bad7fca05e173efdc (patch) | |
tree | e2e4c455fec6c63379a94894b8b5ea109ee4677b /configure.ac | |
parent | 6d70e2776b41977a87bbe32220f4d3f8a62dc763 (diff) |
Update configure.ac initialization to X.Org standard form
Regroup AC statements under the Autoconf initialization section.
Regroup AM statements under the Automake initialization section.
Add missing AC_CONFIG_SRCDIR
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f577651..a564ecb 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,16 @@ +dnl +dnl Process this file with autoconf to create configure. + +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([makedepend], [1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([makedepend-config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -AC_CONFIG_HEADERS([makedepend-config.h]) # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS m4_ifndef([XORG_MACROS_VERSION], |