diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 21:01:35 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 21:01:35 -0700 |
commit | 3918c6f05c23d20599b45261fed2486f95543024 (patch) | |
tree | 28400e457e93e0241c8aaf6bcf0652b9ca47103d | |
parent | fe5b68c75697eaba0af7240f0ccf5f0f1ac1063f (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 267d647..84d6474 100644 --- a/configure.ac +++ b/configure.ac @@ -21,11 +21,16 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([oclock], [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [oclock]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -35,8 +40,6 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AC_CONFIG_HEADERS([config.h]) - # Optional dependencies AC_ARG_WITH(xkb, AS_HELP_STRING([--without-xkb], |