aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Schulte <[email protected]>2003-07-16 13:31:01 +0000
committerMoritz Schulte <[email protected]>2003-07-16 13:31:01 +0000
commit722cf1ab708cf184ea9b1b73d75aa77578e5535b (patch)
tree2760f3bafec5cbc293ad7e7dbf74e8cbc21c21dc
parent2003-07-06 Marcus Brinkmann <[email protected]> (diff)
downloadlibgpg-error-722cf1ab708cf184ea9b1b73d75aa77578e5535b.tar.gz
libgpg-error-722cf1ab708cf184ea9b1b73d75aa77578e5535b.zip
2003-07-15 Moritz Schulte <[email protected]>
* src/gpg-error.m4 (AM_PATH_GPG_ERROR): Use `0.0' instead of `0.0.0' in case no version number is given, since the following sed commands expect the former form, not a triplet.
-rw-r--r--ChangeLog6
-rw-r--r--src/gpg-error.m42
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9982184..fa3efb2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-07-15 Moritz Schulte <[email protected]>
+
+ * src/gpg-error.m4 (AM_PATH_GPG_ERROR): Use `0.0' instead of
+ `0.0.0' in case no version number is given, since the following
+ sed commands expect the former form, not a triplet.
+
2003-07-06 Marcus Brinkmann <[email protected]>
* src/gpg-error.h (GPG_ERR_INLINE): Define macro. Use it instead
diff --git a/src/gpg-error.m4 b/src/gpg-error.m4
index 5b8c9ed..f76568b 100644
--- a/src/gpg-error.m4
+++ b/src/gpg-error.m4
@@ -17,7 +17,7 @@ AC_DEFUN(AM_PATH_GPG_ERROR,
fi
AC_PATH_PROG(GPG_ERROR_CONFIG, gpg-error-config, no)
- min_gpg_error_version=ifelse([$1], ,0.0.0,$1)
+ min_gpg_error_version=ifelse([$1], ,0.0,$1)
AC_MSG_CHECKING(for GPG Error - version >= $min_gpg_error_version)
ok=no
if test "$GPG_ERROR_CONFIG" != "no" ; then