* acinclude.m4 (GNUPG_CHECK_VA_COPY): New.
authorWerner Koch <wk@gnupg.org>
Thu, 29 Aug 2002 11:47:21 +0000 (11:47 +0000)
committerWerner Koch <wk@gnupg.org>
Thu, 29 Aug 2002 11:47:21 +0000 (11:47 +0000)
* configure.ac: Use it.

trunk/ChangeLog
trunk/acinclude.m4
trunk/configure.ac

index 47ae65d894f5694e916e3ca579fe938855e571bf..3a4f2a3f1951fa79b6d0160e13882478c3d3f46f 100644 (file)
@@ -3,6 +3,11 @@
        * gpgme.spec.in: Changed user name in Wojciech Polak's email
        address from ghostface to polak per request by himself.
 
+2002-08-28  Werner Koch  <wk@gnupg.org>
+
+       * acinclude.m4 (GNUPG_CHECK_VA_COPY): New.
+       * configure.ac: Use it.
+
 2002-08-23  Werner Koch  <wk@gnupg.org>
 
        * configure.ac (GPGME_CONFIG_CFLAGS): Renamed from GPGME_CFLAGS
index b6f0a3a6c726044fc48616255a75d13af8fd1155..6a06343c7325d96969ee05c93fc1e9595f43e7d1 100644 (file)
@@ -4143,3 +4143,38 @@ else
 fi
 AC_MSG_RESULT([$SED])
 ])
+
+dnl GNUPG_CHECK_VA_COPY()
+dnl   Do some check on how to implement va_copy.
+dnl   May define MUST_COPY_VA_BY_VAL.
+dnl   Actual test code taken from glib-1.1.
+AC_DEFUN(GNUPG_CHECK_VA_COPY,
+[ AC_MSG_CHECKING(whether va_lists must be copied by value)
+  AC_CACHE_VAL(gnupg_cv_must_copy_va_byval,[
+    gnupg_cv_must_copy_va_byval=no
+    AC_TRY_RUN([
+       #include <stdarg.h>
+       void f (int i, ...)
+       {
+          va_list args1, args2;
+          va_start (args1, i);
+          args2 = args1;
+          if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
+            exit (1);
+          va_end (args1);
+          va_end (args2);
+       }
+      
+       int main()
+       {
+          f (0, 42);
+            return 0;
+       }
+    ],gnupg_cv_must_copy_va_byval=yes)
+  ])
+  if test "$gnupg_cv_must_copy_va_byval" = yes; then
+     AC_DEFINE(MUST_COPY_VA_BYVAL,1,[used to implement the va_copy macro])
+  fi
+  AC_MSG_RESULT($gnupg_cv_must_copy_va_byval)
+])
+
index 14823f82668dcd4033ffcdd94a377e15aa4c8bf2..1ba0f3f92a19c52e911e13555ecff21dd5cbef4b 100644 (file)
@@ -154,13 +154,19 @@ dnl
 
 AC_REPLACE_FUNCS(stpcpy)
 
-# asprintf() is at least used in assuan
 AC_REPLACE_FUNCS(vasprintf)
+if test "$ac_cv_func_vasprintf" != yes; then
+  GNUPG_CHECK_VA_COPY
+fi
+
+
+
 # Note: fopencokie is only a dummy stub and not used.  
 #       However some code in assuan/ links against it.
 AC_REPLACE_FUNCS(fopencookie)
 
 
+
 dnl
 dnl Checks for system services
 dnl