2002-07-25 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Thu, 25 Jul 2002 17:51:42 +0000 (17:51 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 25 Jul 2002 17:51:42 +0000 (17:51 +0000)
* Makefile.am (libgpgme_la_LDADD): Add @LIBOBJS@ for vasprintf and
fopencookie.
* vasprintf.c: Update to more recent libiberty version.
* debug.h: Replace #elsif with #elif.

Submitted by St�phane Corth�sy:
* util.h (vasprintf): Correct prototype.
* encrypt-sign.c: Include <stddef.h>.
(encrypt_sign_status_handler): Change type of ENCRYPT_INFO_LEN to
size_t.
* ath-pthread.c: Include <stdlib.h>, not <malloc.h>.
* ath-pth.c: Likewise.

gpgme/ChangeLog
gpgme/Makefile.am
gpgme/ath-pth.c
gpgme/ath-pthread.c
gpgme/debug.h
gpgme/encrypt-sign.c
gpgme/util.h
gpgme/vasprintf.c

index a23e9d1797fd4800b454ce983c73be6b23b4503b..1a92046736107bc15cd4214e6002f638000cf829 100644 (file)
@@ -1,3 +1,18 @@
+2002-07-25  Marcus Brinkmann  <marcus@g10code.de>
+
+       * Makefile.am (libgpgme_la_LDADD): Add @LIBOBJS@ for vasprintf and
+       fopencookie.
+       * vasprintf.c: Update to more recent libiberty version.
+       * debug.h: Replace #elsif with #elif.
+
+       Submitted by Stéphane Corthésy:
+       * util.h (vasprintf): Correct prototype.
+       * encrypt-sign.c: Include <stddef.h>.
+       (encrypt_sign_status_handler): Change type of ENCRYPT_INFO_LEN to
+       size_t.
+       * ath-pthread.c: Include <stdlib.h>, not <malloc.h>.
+       * ath-pth.c: Likewise.
+
 2002-07-25  Marcus Brinkmann  <marcus@g10code.de>
 
        * wait.c (fdt_global): Make static.  Reported by Stéphane
index 382e452d16c5f68307d272b14ed6c1e7c87fb87d..6f196baa0d0daa4478b293cff2e67ecfc3344acb 100644 (file)
@@ -82,6 +82,7 @@ libgpgme_la_SOURCES = \
        ${system_components} \
        debug.c debug.h \
        gpgme.c version.c errors.c
+libgpgme_la_LDADD = @LIBOBJS@
 
 errors.c : gpgme.h
        $(srcdir)/mkerrors < $(srcdir)/gpgme.h > errors.c
index cac414c5ce6327a208951c35db123e54f0ee5fd7..73c389475e56044b4d500138d9258512ca9348c1 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
-#include <malloc.h>
+#include <stdlib.h>
 #include <errno.h>
 #include <pth.h>
 
index ec250d8d5f06b1192267aef4696766c86f066f5b..6c74efd6c9e280cfd7cbddca53dd38b7d2aa6641 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
-#include <malloc.h>
+#include <stdlib.h>
 #include <errno.h>
 #include <pthread.h>
 
index bdeaebcb608e8baed1109b13c89ac8d839ba1575..4bc42cfad87322c9a4c542d5d3ccdda0f21ca7b6 100644 (file)
@@ -51,7 +51,7 @@ void _gpgme_debug_end (void **helper);
 #define DEBUG_END(hlp, fmt, arg...) \
   _gpgme_debug_add (&(hlp), fmt , ##arg); \
   _gpgme_debug_end (&(hlp))
-#elsif 0
+#elif 0
 /* Only works in C99.  */
 #define DEBUG0(fmt) \
   _gpgme_debug (1, "%s:%s: " fmt, __FILE__, XSTRINGIFY (__LINE__))
index e7e36d7b37f287d33491f2eb75ea23f467e700ec..60673ece7afaafd36eeaab2af1bd9bd98e810d90 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#ifdef HAVE_CONFIG_H
 #include <config.h>
+#endif
+#include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -34,7 +37,7 @@ static void
 encrypt_sign_status_handler (GpgmeCtx ctx, GpgStatusCode code, char *args)
 {
   char *encrypt_info = 0;
-  int encrypt_info_len;
+  size_t encrypt_info_len;
 
   _gpgme_encrypt_status_handler (ctx, code, args);
 
index d6c193cb2dcb49c46c6d74b8fc155fb8b08ebd29..4213a97e225c844ea7dd5c686d510f9e296c6417 100644 (file)
@@ -77,7 +77,7 @@ const char *_gpgme_get_gpgsm_path (void);
 #ifdef HAVE_CONFIG_H
 #if !HAVE_VASPRINTF
 #include <stdarg.h>
-int vasprintf (char **result, const char *format, va_list *args);
+int vasprintf (char **result, const char *format, va_list args);
 int asprintf (char **result, const char *format, ...);
 #endif
 
index dbef4eb08e8d8f83521fc499adc758aa21c1cf25..9e39966a44b75afff89f3c45e6a8fc19416789ec 100644 (file)
@@ -30,8 +30,13 @@ Boston, MA 02111-1307, USA.  */
 int global_total_width;
 #endif
 
-int
-vasprintf (char **result, const char *format, va_list *args)
+static int int_vasprintf (char **, const char *, va_list *);
+
+static int
+int_vasprintf (result, format, args)
+     char **result;
+     const char *format;
+     va_list *args;
 {
   const char *p = format;
   /* Add one to make sure that it is never zero, which might cause malloc
@@ -54,7 +59,7 @@ vasprintf (char **result, const char *format, va_list *args)
              total_width += abs (va_arg (ap, int));
            }
          else
-           total_width += strtoul (p, (char**)&p, 10);
+           total_width += strtoul (p, (char **) &p, 10);
          if (*p == '.')
            {
              ++p;
@@ -64,7 +69,7 @@ vasprintf (char **result, const char *format, va_list *args)
                  total_width += abs (va_arg (ap, int));
                }
              else
-             total_width += strtoul (p, (char**)&p, 10);
+             total_width += strtoul (p, (char **) &p, 10);
            }
          while (strchr ("hlL", *p))
            ++p;
@@ -99,6 +104,7 @@ vasprintf (char **result, const char *format, va_list *args)
              (void) va_arg (ap, char *);
              break;
            }
+         p++;
        }
     }
 #ifdef TEST
@@ -111,6 +117,19 @@ vasprintf (char **result, const char *format, va_list *args)
     return 0;
 }
 
+int
+vasprintf (result, format, args)
+     char **result;
+     const char *format;
+#if defined (_BSD_VA_LIST_) && defined (__FreeBSD__)
+     _BSD_VA_LIST_ args;
+#else
+     va_list args;
+#endif
+{
+  return int_vasprintf (result, format, &args);
+}
+
 
 int
 asprintf (char **buf, const char *fmt, ...)