diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:08:17 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-01 21:08:17 -0700 |
commit | 4db4880098627e9136c3cb9f6dc0a9f9914ce618 (patch) | |
tree | c4d2639433989c91d6c7a4c715d066743a7836e1 | |
parent | 5b55964119d97ed763efa76bcc09dc918b6ab8be (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 f46c3d6..0052643 100644 --- a/configure.ac +++ b/configure.ac @@ -21,8 +21,13 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT(fonttosfnt,[1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],fonttosfnt) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -32,10 +37,6 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AC_CONFIG_HEADERS([config.h]) - - - AC_CHECK_FUNC(setenv, have_setenv=yes, have_setenv=no) AC_CHECK_FUNCS([vasprintf]) AC_CHECK_DECLS([va_copy], [], [], [ |