aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-02-10 10:10:40 +0000
committerWerner Koch <[email protected]>2004-02-10 10:10:40 +0000
commit867df1aa048900f2d158435e4495ca2a771c73f8 (patch)
tree0bdbf273803eb37829b438c9abaef4144a4189d4
parent2004-02-06 Moritz Schulte <[email protected]> (diff)
downloadgpgme-867df1aa048900f2d158435e4495ca2a771c73f8.tar.gz
gpgme-867df1aa048900f2d158435e4495ca2a771c73f8.zip
Fixed funopen test change.
Hey, Moritz what was the orginal problem? Does autoconf not anymore allow to put AC_LIBOBJ into AC_CEHCK_FUNCS?
Diffstat (limited to '')
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 74c4d34d..fbb131dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-10 Werner Koch <[email protected]>
+
+ * configure.ac: Fixed funopen test change.
+
2004-02-06 Moritz Schulte <[email protected]>
* configure.ac: Fix funopen replacement mechanism.
diff --git a/configure.ac b/configure.ac
index 393332bc..1755a30f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ AC_PREREQ(2.57)
min_automake_version="1.7.6"
# Version number: Remember to change it immediately *after* a release.
-AC_INIT(gpgme, 0.4.4, [[email protected]])
+AC_INIT(gpgme, 0.4.5-cvs, [[email protected]])
# LT Version numbers, remember to change them just *before* a release.
# (Code changed: REVISION++)
# (Interfaces added/removed/changed: CURRENT++, REVISION=0)
@@ -281,6 +281,7 @@ if test "$GPGSM" != "no"; then
AC_CHECK_FUNCS(funopen)
if test $ac_cv_func_funopen != yes; then
# No funopen but we can implement that in terms of fopencookie.
+ AC_CHECK_FUNCS(fopencookie)
if test $ac_cv_func_fopencookie = yes; then
AC_LIBOBJ([funopen])
else