summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authordevzero2000 <devzero2000>2010-06-21 10:21:05 +0000
committerdevzero2000 <devzero2000>2010-06-21 10:21:05 +0000
commit989cec5452659ce73d4ff59106c086f07c8708a6 (patch)
treebc358883630c8ddb6164f4ea9f4fdc2d996329aa /configure.ac
parent5a85ca80764a47584852c96363bf79508a29917f (diff)
downloadlibpopt-989cec5452659ce73d4ff59106c086f07c8708a6.tar.gz
Fix configure.ac : AC_CANONICAL_TARGET was called in the wrong order
This conflict with build-aux and confuse autoconf
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac11
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 106a403..ab5a1bd 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1,19 +1,22 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.63)
+AC_PREREQ([2.63])
AC_INIT([popt],[1.17.DEVEL],[popt-devel@rpm5.org])
+
AC_CONFIG_SRCDIR([lookup3.c])
AC_CONFIG_HEADERS([config.h])
-AC_CANONICAL_TARGET
-AM_MAINTAINER_MODE
+AC_CONFIG_MACRO_DIR([m4])
+
# Must come before AM_INIT_AUTOMAKE.
AC_CONFIG_AUX_DIR([build-aux])
-AC_CONFIG_MACRO_DIR([m4])
+AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+#
AM_GNU_GETTEXT_VERSION([0.17])
AM_GNU_GETTEXT([external])
AM_ICONV
+AM_MAINTAINER_MODE
# Library code modified: REVISION++
# Interfaces changed/added/removed: CURRENT++ REVISION=0
# Interfaces added: AGE++