summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2006-11-30 15:36:39 +0000
committerWerner Koch <wk@gnupg.org>2006-11-30 15:36:39 +0000
commit85bb107c10d6f9c3eb8f2b93e047588b3f77a666 (patch)
tree052e65b56e2eaec0d2ce7fbe521e428a08ba13ed /autogen.sh
parente45252cc5a7eb85734848ccba12756710e6b0edb (diff)
downloadlibgpg-error-85bb107c10d6f9c3eb8f2b93e047588b3f77a666.tar.gz
* configure.ac: Set LT version to C3/A3/R1.libgpg-error-1.5
* README: Switch to tar.bz2 and sha1sum. * src/gpg-error.c (main): Add option --version. * autogen.sh (FORCE): Add option --force. * intl/: Removed. * Makefile.am (SUBDIRS): Removed intl. * configure.ac (AM_GNU_GETTEXT): Use external flag * src/Makefile.am: Removed -I../intl.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 01f3168..0a75fbf 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -29,6 +29,11 @@ check_version () {
}
DIE=no
+FORCE=
+if test "$1" == "--force"; then
+ FORCE=" --force"
+ shift
+fi
# ***** W32 build script *******
# Used to cross-compile for Windows.
@@ -186,7 +191,7 @@ echo "Running autoheader..."
$AUTOHEADER
echo "Running automake --gnu ..."
$AUTOMAKE --gnu;
-echo "Running autoconf..."
-$AUTOCONF
+echo "Running autoconf${FORCE} ..."
+$AUTOCONF${FORCE}
echo "You may now run \"./configure --enable-maintainer-mode && make\"."