2004-06-23 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Wed, 23 Jun 2004 14:11:47 +0000 (14:11 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Wed, 23 Jun 2004 14:11:47 +0000 (14:11 +0000)
* configure.ac: Check for <sys/uio.h>.

assuan
2004-06-23  Marcus Brinkmann  <marcus@g10code.de>

* assuan-domain-connect.c [HAVE_SYS_UIO_H]: Include <sys/uio.h>.

ChangeLog
assuan/ChangeLog
assuan/assuan-domain-connect.c
configure.ac

index f351395e855aa6607b5086ce3d3b0420b5cdf4fd..50f23d10c52746b7ee99203c39fff9272a0bed3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2004-06-23  Marcus Brinkmann  <marcus@g10code.de>
+
+       * configure.ac: Check for <sys/uio.h>.
+
+2004-06-08  Marcus Brinkmann  <marcus@g10code.de>
+
+       Released 0.9.0.
+
+       * configure.ac (AC_INIT): Set version number to 0.9.0.
+       (LIBGPGME_LT_CURRENT, LIBGPGME_LT_AGE): Bump up by one.
+       (LIBGPGME_LT_REVISION): Reset to zero.
+
 2004-05-21  Marcus Brinkmann  <marcus@g10code.de>
 
        * configure.ac (GPGME_CONFIG_API_VERSION): New variable,
index e04663c6ce721481124f8da8b5db42e2a248f809..f740e95ee29f6dccd988d8365e3baf60265f8286 100644 (file)
@@ -1,5 +1,7 @@
 2004-06-23  Marcus Brinkmann  <marcus@g10code.de>
 
+       * assuan-domain-connect.c [HAVE_SYS_UIO_H]: Include <sys/uio.h>.
+
        * assuan-handler.c: Include <errno.h>.
 
 2004-06-08  Marcus Brinkmann  <marcus@g10code.de>
index ea35ba041c31bafd9ecff834f576961ca9f82af9..b92be3b8df697f0465e2808c3bc58ff21777bf89 100644 (file)
@@ -29,6 +29,9 @@
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
+#if HAVE_SYS_UIO_H
+#include <sys/uio.h>
+#endif
 #include <unistd.h>
 #include <fcntl.h>
 #include <string.h>
index 4c0f3455e168d1ae0cba2195dd55bb0b5fc3762c..b2950263f78e582db389b0ebe5ba7ebd563e3625 100644 (file)
@@ -31,11 +31,11 @@ AC_INIT(gpgme, 0.9.1-cvs, [bug-gpgme@gnupg.org])
 #   (Interfaces added:                 AGE++)
 #   (Interfaces removed/changed:       AGE=0)
 #
-LIBGPGME_LT_CURRENT=13
+LIBGPGME_LT_CURRENT=14
 # Subtract 2 from this value if you want to make the LFS transition an
 # ABI break.  [Note to self: Remove this comment with the next regular break.]
-LIBGPGME_LT_AGE=2
-LIBGPGME_LT_REVISION=2
+LIBGPGME_LT_AGE=3
+LIBGPGME_LT_REVISION=0
 
 # If the API is changed in an incompatible way: increment the next counter.
 GPGME_CONFIG_API_VERSION=1
@@ -299,10 +299,15 @@ if test $ac_cv_func_funopen != yes; then
     fi
 fi
 
+# More assuan replacement functions.
 AC_REPLACE_FUNCS(isascii)
 AC_REPLACE_FUNCS(putc_unlocked)
 AC_REPLACE_FUNCS(memrchr)
 
+# More assuan checks.
+AC_CHECK_HEADERS([sys/uio.h])
+
+# End of assuan checks.
 
 AM_CONDITIONAL(BUILD_COMPLUS, test "$component_system" = "COM+")