aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2004-02-01 13:39:45 +0000
committerMarcus Brinkmann <[email protected]>2004-02-01 13:39:45 +0000
commit68ab06735844ee7087ea7163cf33accf3ebc0322 (patch)
tree06d0a2e3566ebb9100780dc2ba61217f98f8ef49 /configure.ac
parent(_gpgme_map_gnupg_error): Handle numerical codes as (diff)
downloadgpgme-68ab06735844ee7087ea7163cf33accf3ebc0322.tar.gz
gpgme-68ab06735844ee7087ea7163cf33accf3ebc0322.zip
2004-01-31 Marcus Brinkmann <[email protected]>
* configure.ac: Add invocation of AC_SYS_LARGEFILE, AC_TYPE_OFF_T and AC_FUNC_FSEEKO. doc/ 2004-02-01 Marcus Brinkmann <[email protected]> * gpgme.texi (Largefile Support): New section. gpgme/ 2004-02-01 Marcus Brinkmann <[email protected]> * data-compat.c (gpgme_data_new_from_filepart): Call fseeko if available. * data-stream.c (stream_seek): Likewise.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 11 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 5fd1d010..c23c478d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# configure.in for GPGME
# Copyright (C) 2000 Werner Koch (dd9jn)
-# Copyright (C) 2001, 2002, 2003 g10 Code GmbH
+# Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
#
# This file is part of GPGME.
#
@@ -29,11 +29,13 @@ AC_INIT(gpgme, 0.4.4, [[email protected]])
# (Code changed: REVISION++)
# (Interfaces added/removed/changed: CURRENT++, REVISION=0)
# (Interfaces added: AGE++)
-# (Interfaces removed: AGE=0)
+# (Interfaces removed/changed: AGE=0)
#
-LIBGPGME_LT_CURRENT=12
-LIBGPGME_LT_AGE=1
-LIBGPGME_LT_REVISION=1
+LIBGPGME_LT_CURRENT=13
+# 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=0
NEED_GPG_VERSION=1.2.2
NEED_GPGSM_VERSION=1.9.3
##############################################
@@ -144,7 +146,8 @@ AC_CHECK_HEADERS(sys/select.h)
# Type checks.
AC_CHECK_SIZEOF(unsigned int)
-
+AC_SYS_LARGEFILE
+AC_TYPE_OFF_T
# Checks for compiler features.
if test "$GCC" = yes; then
@@ -153,6 +156,8 @@ fi
# Checks for library functions.
+AC_FUNC_FSEEKO
+
AC_REPLACE_FUNCS(stpcpy)
AC_REPLACE_FUNCS(vasprintf)