aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2002-02-13 14:59:22 +0000
committerWerner Koch <[email protected]>2002-02-13 14:59:22 +0000
commitd8119956bbc6479ab0c26e341d577faf30236e67 (patch)
tree94aa5edabd5d65372625e523e59472e7719f5659
parent2002-02-12 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-d8119956bbc6479ab0c26e341d577faf30236e67.tar.gz
gpgme-d8119956bbc6479ab0c26e341d577faf30236e67.zip
* configure.ac (vasprintf,fopencookie): Add checks.
Diffstat (limited to '')
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac7
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5477815c..dea31cd9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-02-13 Werner Koch <[email protected]>
+
+ * configure.ac (vasprintf,fopencookie): Add checks.
+
2002-02-12 Marcus Brinkmann <[email protected]>
* configure.ac (AC_INIT): Bump version to 0.3.3.
diff --git a/configure.ac b/configure.ac
index 95073b9e..16062205 100644
--- a/configure.ac
+++ b/configure.ac
@@ -122,6 +122,13 @@ dnl
dnl These are needed by libjnlib
AC_CHECK_FUNCS(memicmp stpcpy strlwr strtoul memmove stricmp)
+# asprintf() is at least used in assuan
+AC_REPLACE_FUNCS(vasprintf)
+# Note: fopencokie is only a dummy stub and not used.
+# However some code in assuan/ links against it.
+AC_REPLACE_FUNCS(fopencookie)
+
+
dnl We use jnlib, so tell other modules about it
AC_DEFINE(HAVE_JNLIB_LOGGING, 1,
[Defined if jnlib style logging fucntions are available.])