X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Fconfigure.in;h=595f0b6ed806275a8e4d355f6509fc86ee0db185;hb=a845b4fa9330e996a5cc62fdc5347ac982e855bf;hp=eb3f4c0ed76de977763dd699cfcaa1dd2339f7c0;hpb=b7e430f56aaed85e8ba983a36c377751018a06ba;p=citadel.git diff --git a/libcitadel/configure.in b/libcitadel/configure.in index eb3f4c0ed..595f0b6ed 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, 8.00, http://uncensored.citadel.org) +AC_INIT(libcitadel, 4.9.01, 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=2 -LIBREVISION=1 +LIBCURRENT=4 +LIBREVISION=901 LIBAGE=0 sinclude(conftools/libtool.m4) @@ -74,6 +74,64 @@ fi AC_CHECK_HEADER(CUnit/CUnit.h, [AC_DEFINE(ENABLE_TESTS, [], [whether we should compile the test-suite])]) +AC_CHECK_HEADER(sys/sendfile.h, [AC_DEFINE(LINUX_SENDFILE, [], [whether we have the linux sendfile api])]) +dnl TODO: we might need to check for the actual syntax.... + + +AC_MSG_CHECKING([whether your system knows about splice()]) +AC_TRY_COMPILE([ +#define _GNU_SOURCE +#include +#include +], +[ + ssize_t sent, pipesize; + int fd, SplicePipe[2]; + pipesize = splice(fd, NULL, + SplicePipe[1], NULL, + 1, + SPLICE_F_MORE | SPLICE_F_MOVE|SPLICE_F_NONBLOCK); +], + [ + ok_splice=yes + AC_DEFINE(LINUX_SPLICE, [], [whether we have the linux splice api]) + AC_MSG_RESULT([yes]) + ], + [ + ok_splice=no + AC_MSG_RESULT([no]) + ] +) + +AC_MSG_CHECKING([whether your system likes memcpy + HKEY]) +AC_TRY_COMPILE([ +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "lib/libcitadel.h" +], +[ + char foo[22]; + memcpy(foo, HKEY("foo")); + +], + [ + + AC_MSG_RESULT([yes]) + ], + [ + AC_DEFINE(UNDEF_MEMCPY, [], [whether we need to undefine memcpy]) + AC_MSG_RESULT([no]) + ] +) AC_CHECK_HEADERS(iconv.h)