Fixed funopen test change.
authorWerner Koch <wk@gnupg.org>
Tue, 10 Feb 2004 10:10:40 +0000 (10:10 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 10 Feb 2004 10:10:40 +0000 (10:10 +0000)
Hey, Moritz what was the orginal problem?  Does autoconf not anymore
allow to put AC_LIBOBJ into AC_CEHCK_FUNCS?

ChangeLog
configure.ac

index 74c4d34d8b574d763bae83f2d52d35bb4c03ef3d..fbb131dd2a37a1e1f0d029309bb5551d35ace35c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-10  Werner Koch  <wk@gnupg.org>
+
+       * configure.ac: Fixed funopen test change.
+
 2004-02-06  Moritz Schulte  <mo@g10code.com>
 
        * configure.ac: Fix funopen replacement mechanism.
index 393332bca7424434f5444c50cdd3d209f8d1f343..1755a30f38d6f48cd8e301253816d08428558197 100644 (file)
@@ -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, [bug-gpgme@gnupg.org])
+AC_INIT(gpgme, 0.4.5-cvs, [bug-gpgme@gnupg.org])
 # 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