summaryrefslogtreecommitdiffstats
path: root/imap/configure.ac
diff options
context:
space:
mode:
authorSam Varshavchik2015-02-23 23:20:22 -0500
committerSam Varshavchik2015-02-23 23:20:22 -0500
commit46debdce16cc48b301462f2d1ba48a05b397e005 (patch)
tree5a4daefdbea778201338ef8a607d8e2370898a31 /imap/configure.ac
parent0f4a7300a654b25e3708139408e735a8da665daf (diff)
downloadcourier-libs-46debdce16cc48b301462f2d1ba48a05b397e005.tar.bz2
courier-imap: add makeimapaccess wrapper, man page.
Diffstat (limited to 'imap/configure.ac')
-rw-r--r--imap/configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/imap/configure.ac b/imap/configure.ac
index f37b8be..df67887 100644
--- a/imap/configure.ac
+++ b/imap/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
dnl
dnl
-dnl Copyright 1998 - 2013 Double Precision, Inc. See COPYING for
+dnl Copyright 1998 - 2015 Double Precision, Inc. See COPYING for
dnl distribution information.
AC_INIT(courier-imap, 4.16.0, [courier-users@lists.sourceforge.net])
@@ -125,12 +125,12 @@ AC_SYS_LARGEFILE
AC_CACHE_CHECK([for socklen_t],
sox_cv_hassocklen_t,
-
+
AC_COMPILE_IFELSE([
AC_LANG_SOURCE( [
#include <sys/types.h>
#include <sys/socket.h>
-
+
socklen_t sl_t;
],[
accept(0, 0, &sl_t);
@@ -138,9 +138,9 @@ socklen_t sl_t;
sox_cv_hassocklen_t=yes,
sox_cv_hassocklen_t=no)
)
-
+
socklen_t="int"
-
+
if test $sox_cv_hassocklen_t = yes
then
: