From: Werner Koch Date: Tue, 10 Feb 2004 10:10:40 +0000 (+0000) Subject: Fixed funopen test change. X-Git-Tag: gpgme-0-4-5~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=867df1aa048900f2d158435e4495ca2a771c73f8;p=gpgme.git Fixed funopen test change. Hey, Moritz what was the orginal problem? Does autoconf not anymore allow to put AC_LIBOBJ into AC_CEHCK_FUNCS? --- diff --git a/ChangeLog b/ChangeLog index 74c4d34..fbb131d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-02-10 Werner Koch + + * configure.ac: Fixed funopen test change. + 2004-02-06 Moritz Schulte * configure.ac: Fix funopen replacement mechanism. diff --git a/configure.ac b/configure.ac index 393332b..1755a30 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, [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