From: Wilfried Goesgens Date: Thu, 13 Sep 2012 19:25:50 +0000 (+0200) Subject: FDIOBuffer: wrong member type; thus we need increase the library version again. X-Git-Tag: v8.20~231 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=c31dbb88d22c57ac54d98017658e63bde50c7614 FDIOBuffer: wrong member type; thus we need increase the library version again. --- diff --git a/libcitadel/configure.in b/libcitadel/configure.in index 88b41e700..1e1ffb263 100755 --- a/libcitadel/configure.in +++ b/libcitadel/configure.in @@ -5,7 +5,7 @@ dnl dnl Ensure that libcitadel is configured with autoconf 2.52 or newer AC_PREREQ(2.52) -AC_INIT(libcitadel, 3.8.13, http://uncensored.citadel.org) +AC_INIT(libcitadel, 4.8.19, http://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) @@ -22,8 +22,8 @@ dnl dnl If the API changes incompatibly set LIBAGE back to 0 dnl -LIBCURRENT=3 -LIBREVISION=813 +LIBCURRENT=4 +LIBREVISION=819 LIBAGE=0 sinclude(conftools/libtool.m4) diff --git a/libcitadel/debian/control b/libcitadel/debian/control index b6a28087b..6e1bd1a76 100644 --- a/libcitadel/debian/control +++ b/libcitadel/debian/control @@ -13,11 +13,11 @@ Depends: ${shlibs:Depends}, shared-mime-info Description: Citadel toolbox This library contains the commonly used routines for the citadel suite. -Package: libcitadel3-dbg +Package: libcitadel4-dbg Section: libdevel Architecture: any -Depends: ${shlibs:Depends}, libcitadel3 -Description: Debugging symbols for libcitadel3 +Depends: ${shlibs:Depends}, libcitadel4 +Description: Debugging symbols for libcitadel4 This library contains the commonly used routines for the citadel suite. . This package provides the debugging symbols. @@ -27,7 +27,7 @@ Section: libdevel Architecture: any Depends: ${shlibs:Depends}, pkg-config, libcitadel3 (= ${binary:Version}) -Description: Development files for libcitadel3 +Description: Development files for libcitadel4 This library contains the commonly used routines for the citadel suite. . This package provides development files and static libraries. diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index f4a540e3d..ab80ffb79 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -257,8 +257,8 @@ typedef struct __fd_iobuffer { int SplicePipe[2]; int PipeSize; long TotalSendSize; - long TotalSentAlready; - long TotalReadAlready; + loff_t TotalSentAlready; + loff_t TotalReadAlready; long ChunkSize; long ChunkSendRemain; StrBuf *ChunkBuffer; /* just used if we don't have sendfile */