diff options
author | Marcus Brinkmann <[email protected]> | 2004-06-23 14:11:47 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-06-23 14:11:47 +0000 |
commit | 3f1b8857e69bfd4d8b8e6c729817d19c6adce2f1 (patch) | |
tree | 53b16a6b6ed4f3f7e146fd3d01175171330c70ac /configure.ac | |
parent | 2004-06-23 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-3f1b8857e69bfd4d8b8e6c729817d19c6adce2f1.tar.gz gpgme-3f1b8857e69bfd4d8b8e6c729817d19c6adce2f1.zip |
2004-06-23 Marcus Brinkmann <[email protected]>
* configure.ac: Check for <sys/uio.h>.
assuan
2004-06-23 Marcus Brinkmann <[email protected]>
* assuan-domain-connect.c [HAVE_SYS_UIO_H]: Include <sys/uio.h>.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 4c0f3455..b2950263 100644 --- a/configure.ac +++ b/configure.ac @@ -31,11 +31,11 @@ AC_INIT(gpgme, 0.9.1-cvs, [[email protected]]) # (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+") |