]> Pileus Git - ~andy/fetchmail/blob - configure.ac
Update URL for OPIE at inner.net.
[~andy/fetchmail] / configure.ac
1 dnl Autoconfigure input file for fetchmail
2 dnl Eric S. Raymond <esr@thyrsus.com>
3 dnl
4 dnl Process this file with autoconf to produce a configure script.
5 dnl
6
7 AC_INIT([fetchmail],[6.2.6-pre9])
8 AC_CONFIG_SRCDIR([fetchmail.h])
9 AC_CONFIG_HEADERS([config.h])
10 AC_CONFIG_LIBOBJ_DIR([.])
11
12 dnl we may need a newer automake version - the oldest tested is 1.7
13 AC_PREREQ(2.59)
14 AM_INIT_AUTOMAKE(1.5 foreign no-installinfo)
15
16 AC_PROG_AWK
17 AC_PROG_CC
18 AC_PROG_INSTALL
19 AC_PROG_CPP                     dnl Later checks need this.
20 AC_PROG_RANLIB
21 AM_PROG_CC_C_O
22 AC_AIX
23 AC_ISC_POSIX
24 AC_MINIX
25 AC_HEADER_STDC
26 AC_HEADER_TIME
27 AC_TYPE_SIZE_T
28 AC_TYPE_PID_T
29 AC_TYPE_SIGNAL
30 AC_CHECK_HEADERS([unistd.h termios.h termio.h sgtty.h stdarg.h \
31         sys/itimer.h fcntl.h sys/fcntl.h memory.h sys/wait.h \
32         arpa/inet.h arpa/nameser.h netinet/in.h net/socket.h \
33         sys/select.h sys/socket.h sys/time.h langinfo.h])
34 AC_CHECK_HEADERS([resolv.h],,,[
35 #include <sys/types.h>
36 #ifdef HAVE_NETINET_IN_H
37 #include <netinet/in.h>
38 #endif
39 #ifdef HAVE_ARPA_NAMESER_H
40 #include <arpa/nameser.h>
41 #endif
42 ])
43
44 AC_C_CONST                      dnl getopt needs this.
45
46 AM_PROG_LEX
47 AC_PROG_MAKE_SET
48 AC_PROG_YACC
49
50 # Check for LynxOS special case: -lbsd needed (at least on 2.3.0) and -s
51 # not working.
52 if test `uname` = "LynxOS" 
53 then
54   echo "Adding -lbsd to standard libraries"
55   LIBS="$LIBS -lbsd"
56   LDFLAGS=""
57   echo "Prepending standard include path to gcc flags"
58   CPFLAGS="-I/usr/include"
59 fi
60
61 # Check for FreeBSD special case: more libs needed
62 if test `uname` = "FreeBSD" 
63 then
64    echo "Adding -lmd -lkvm -lcom_err to standard libraries"
65    LIBS="$LIBS -lmd -lkvm -lcom_err"
66 fi
67  
68 # Check for Rhapsody special case: it doesn't like -s
69 if test `uname` = "Rhapsody" 
70 then
71    echo "Removing -s load flag"
72    LDFLAGS=`echo $LDFLAGS | sed "s/-s //"`
73 fi
74  
75 dnl i18n
76 AM_GNU_GETTEXT([external], [need-ngettext])
77 AM_GNU_GETTEXT_VERSION(0.14.1)
78 dnl end i18n
79
80 # Under sysV68, socket and friends are provided by the C library.
81 # -linet does not provide socket, but causes multiple definition
82 # errors at link-time.  It is thus better to only use the C library.
83 # So don't add -linet to the link list unless it's necessary
84 AC_CHECK_FUNC(socket,
85     AC_MSG_RESULT(using libc's socket),
86     AC_CHECK_LIB(socket,socket)
87     AC_CHECK_LIB(inet,socket))
88
89 # The condition in this test copes with the presence of inet_addr in libc6.
90 AC_CHECK_FUNC(inet_addr,
91     AC_MSG_RESULT(using libc's inet_addr),
92     AC_CHECK_LIB(nsl,inet_addr))
93
94 dnl Port hack for Interactive UNIX System V/386 Release 3.2
95 AC_CHECK_LIB(cposix, strchr,
96                 [DEFS="$DEFS -D_SYSV3"
97                 LIBS="$LIBS -lcposix"])
98
99 dnl Port hack for Sparc/NetBSD-1.5
100 AC_CHECK_LIB(intl, gettext,
101                 [LIBS="$LIBS -lintl"])
102
103 AC_REPLACE_FUNCS([strstr strcasecmp memmove stpcpy strlcpy strlcat])
104
105 AC_CHECK_FUNC(MD5Init, [],
106               [AC_LIBSOURCE(md5c.c)
107                EXTRAOBJ="$EXTRAOBJ md5c.\$(OBJEXT)"])
108
109 AC_CHECK_FUNC(getopt_long, [],
110               [AC_LIBSOURCES([getopt.c, getopt1.c])
111                EXTRAOBJ="$EXTRAOBJ getopt.\$(OBJEXT) getopt1.\$(OBJEXT)"])
112
113 AC_FUNC_VPRINTF
114
115 AC_SUBST(EXTRAOBJ)
116
117 AC_CHECK_FUNCS(tcsetattr stty setsid geteuid seteuid gethostbyname \
118   res_search strerror syslog \
119   snprintf vprintf vsnprintf vsyslog \
120   atexit inet_aton strftime setrlimit socketpair sigprocmask sigaction \
121   strdup)
122
123 # Under Red Hat 4.0 (and many other Linuxes) -lresolv is seriously flaky
124 # and breaks gethostbyname(2).  It's better to use the bind stuff in the C
125 # library.  So don't add -lresolv to the link list unless it's necessary
126 # (It will be necessary when using GNU libc6).
127 AC_CHECK_FUNC(res_search,
128     AC_MSG_RESULT(using libc's resolver functions),
129     AC_CHECK_LIB(resolv,res_search, 
130         [AC_DEFINE(HAVE_RES_SEARCH) AC_MSG_RESULT(found resolver functions in libresolv); LIBS="$LIBS -lresolv"], AC_MSG_RESULT(no resolver calls found)))
131
132 dnl Check for libcrypt -- it may live in libc or libcrypt, as on IRIX
133 AC_CHECK_FUNC(crypt, , AC_CHECK_LIB(crypt,crypt))
134
135 dnl Check for RSA refersence library in case we're using SSL
136 AC_CHECK_LIB(rsaref, RSAPublicDecrypt)
137
138 dnl AC_FUNC_SETVBUF_REVERSED
139
140 dnl Check for usable void pointer type
141 AC_MSG_CHECKING(use of void pointer type)
142 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[char *p;
143     void *xmalloc();
144     p = (char *) xmalloc(1);
145    ]])],[AC_DEFINE(HAVE_VOIDPOINTER,1,[Define if your C compiler allows void * as a function result]) AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
146
147 dnl Check for ANSI volatile
148 AC_C_VOLATILE
149
150 dnl Check out the wait reality.  We have to assume sys/wait.h is present.
151 AC_CHECK_FUNCS(waitpid wait3)
152 AC_MSG_CHECKING(for union wait);
153 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
154 #include <sys/wait.h>]], [[union wait status; int pid; pid = wait (&status);
155 #ifdef WEXITSTATUS
156 /* Some POSIXoid systems have both the new-style macros and the old
157    union wait type, and they do not work together.  If union wait
158    conflicts with WEXITSTATUS et al, we don't want to use it at all.  */
159 if (WEXITSTATUS (status) != 0) pid = -1;
160 #endif
161 #ifdef HAVE_WAITPID
162 /* Make sure union wait works with waitpid.  */
163 pid = waitpid (-1, &status, 0);
164 #endif
165 ]])],[AC_DEFINE(HAVE_UNION_WAIT,1,Define if 'union wait' is the type of the first arg to wait functions.) AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
166
167 AC_MSG_CHECKING(sys_siglist declaration in signal.h or unistd.h)
168 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <signal.h>
169 /* NetBSD declares sys_siglist in <unistd.h>.  */
170 #ifdef HAVE_UNISTD_H
171 #include <unistd.h>
172 #endif]], [[char *msg = *(sys_siglist + 1);]])],[AC_DEFINE(SYS_SIGLIST_DECLARED,1,[Define if 'sys_siglist' is declared by <signal.h>.]) AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
173
174 # Find the right directory to put the root-mode PID file in
175 for dir in "/var/run" "/etc"
176 do
177         if test -d $dir 
178         then
179                 break;
180         fi
181 done
182 AC_MSG_RESULT(root-mode pid file will go in $dir)
183 AC_DEFINE_UNQUOTED(PID_DIR, "$dir", directory for PID lock files)
184
185 # We may have a fallback MDA available in case the socket open to the 
186 # local SMTP listener fails.  Best to use procmail for this, as we know
187 # it won't try delivering through local SMTP and cause a mail loop.
188 # Sendmail without the -t option to use the message headers will work too,
189 # not just for sendmail itself but for workalikes like exim.
190 #
191 # Note1: A disadvantage of using procmail is that local alias expansion
192 # according to /etc/aliases won't get done if we fall back.  This doesn't
193 # matter in single-drop mode.
194 #
195 # Note2: it would be a very bad idea to use any MDA that doesn't return
196 # a refuse-to-deliver status on disk- or process-table-full
197 # conditions; mail could get lost that way.  Sendmail and all of the MDAs
198 # like exim that might be lurking under a sendmail alias) do the right 
199 # thing in this circumstance.  Matthias Andree warns that procmail does
200 # not.  
201 #
202 # Note3: Defalt value of fallback is now off.  Matthias writes:
203 #
204 # 1. there is no way to predict when the fallback is used. With some MTAs
205 #    (such as those limiting load average), outer circumstances can cause
206 #    the fallback to kick in.
207
208 # 2. the fallback changes fetchmail behaviour in unpredictable ways. It's
209 #    not only about alias expansion, .forwards to special filters won't
210 #    work, mail may end up in a different place (users claim "mail loss"
211 #    for that).
212
213 # 3. The claim procmail did the right thing with its exit codes is plain
214 #    wrong. I've seen procmail exit with code 1 when it should have exited
215 #    with code 75, like, configuration errors. Procmail is a dangerous
216 #    beast and is best replaced by maildrop.
217
218 # 4. if multiple choices exist (like procmail and maildrop), fetchmail
219 #    cannot tell which one it should choose. Say, your MTA is configured
220 #    to use maildrop to deliver to user's mailboxes, if fetchmail then
221 #    chooses procmail, this is plain wrong.
222 #
223
224 AC_PATH_PROG(procmail, procmail, "", $PATH:/usr/sbin)
225 AC_PATH_PROG(sendmail, sendmail, "", $PATH:/usr/sbin:/usr/lib)
226 AC_PATH_PROG(maildrop, maildrop, "", $PATH:/usr/local/bin)
227
228 ###     use option --disable-fallback to disable fallback MDA
229 ###     use option --enable-fallback=procmail or 
230 ###                --enable-fallback=sendmail to select
231 AC_ARG_ENABLE(fallback,
232         [  --enable-fallback=procmail    enable procmail as fallback
233   --enable-fallback=sendmail    enable /usr/sbin/sendmail as fallback
234   --enable-fallback=maildrop    enable maildrop as fallback
235   --enable-fallback=no          disable fallback],,[enable_fallback=no])
236
237 case "$enable_fallback" in
238         sendmail)       if test -z "$sendmail" ; then 
239                                 AC_MSG_ERROR([Sendmail selected as fallback, but not found])
240                                 #not reached
241                         fi
242                         AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$sendmail -i %T", Fallback MTA to use if defined)
243                         echo "Will use $sendmail as fallback MDA."
244                         ;;
245         procmail)       if test -z "$procmail" ; then
246                                 AC_MSG_ERROR([procmail selected as fallback, but not found])
247                                 #not reached
248                         fi
249                         AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$procmail -d %T")
250                         echo "Will use $procmail as fallback MDA."
251                         ;;
252         maildrop)       if test -z "$maildrop" ; then
253                                 AC_MSG_ERROR([maildrop selected as fallback, but not found])
254                                 #not reached
255                         fi
256                         AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$maildrop -d %T")
257                         echo "Will use $maildrop as fallback MDA."
258                         ;;
259         no|unset)       echo "Will not use a fallback MDA"
260                         ;;
261         auto|yes|set)   if test -n "$sendmail" ; then
262                                 AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$sendmail -i %T")
263                                 echo "Will use $sendmail as fallback MDA."
264                         else
265                                 echo "No fallback MDA available. procmail and maildrop are not eligible"
266                                 echo "for automatic fallback MDA configuration for reliability reasons."
267                         fi
268                         ;;
269         *)              AC_MSG_ERROR([unkown value for --enable-fallback given: $enable_fallback])
270                         #notreached
271                         ;;
272 esac
273
274 AC_CHECK_SIZEOF(short)
275 AC_CHECK_SIZEOF(int)
276 AC_CHECK_SIZEOF(long)
277
278 ###     use option --enable-POP2 to compile in the POP2 support
279 AC_ARG_ENABLE(POP2,
280         [  --enable-POP2           compile in POP2 protocol support (obsolete)],
281         [with_POP2=$enableval],
282         [with_POP2=no])
283 test "$with_POP2" = "yes" && AC_DEFINE(POP2_ENABLE,1,Define if you want POP2 support compiled in)
284
285 ###     use option --disable-POP3 to omit the POP3 support
286 AC_ARG_ENABLE(POP3,
287         [  --disable-POP3          don't compile in POP3 protocol support],
288         [with_POP3=$enableval],
289         [with_POP3=yes])
290 test "$with_POP3" = "yes" && AC_DEFINE(POP3_ENABLE,1,Define if you want POP3 support compiled in)
291
292 ###     use option --disable-IMAP to omit the IMAP support
293 AC_ARG_ENABLE(IMAP,
294         [  --disable-IMAP          don't compile in IMAP protocol support],
295         [with_IMAP=$enableval],
296         [with_IMAP=yes])
297 test "$with_IMAP" = "yes" && AC_DEFINE(IMAP_ENABLE,1,"Define if you want IMAP support compiled in")
298
299 ###     use option --disable-ETRN to omit the ETRN support
300 AC_ARG_ENABLE(ETRN,
301         [  --disable-ETRN          don't compile in ETRN protocol support],
302         [with_ETRN=$enableval],
303         [with_ETRN=yes])
304 test "$with_ETRN" = "yes" && AC_DEFINE(ETRN_ENABLE,1,Define if you want ETRN support compiled in.)
305
306 ###     use option --disable-ODMR to omit the ODMR support
307 AC_ARG_ENABLE(ODMR,
308         [  --disable-ODMR          don't compile in ODMR protocol support],
309         [with_ODMR=$enableval],
310         [with_ODMR=yes])
311 test "$with_ODMR" = "yes" && AC_DEFINE(ODMR_ENABLE,1,Define if you want ODMR support compiled in)
312
313 ###     use option --enable-RPA to compile in the RPA support
314 AC_ARG_ENABLE(RPA,
315         [  --enable-RPA            compile in RPA protocol support],
316         [with_RPA=$enableval],
317         [with_RPA=no])
318 test "$with_RPA" = "yes" && AC_DEFINE(RPA_ENABLE,1,Define if you want RPA support compiled in)
319
320 ###     use option --enable-NTLM to compile in the NTLM support
321 AC_ARG_ENABLE(NTLM,
322         [  --enable-NTLM           compile in NTLM authentication support],
323         [with_NTLM=$enableval],
324         [with_NTLM=no])
325 test "$with_NTLM" = "yes" && AC_DEFINE(NTLM_ENABLE,1,Define if you want NTLM authentication)
326
327 ###     use option --enable-SDPS to compile in the SDPS support
328 AC_ARG_ENABLE(SDPS,
329         [  --enable-SDPS           compile in SDPS protocol support],
330         [with_SDPS=$enableval],
331         [with_SDPS=no])
332 test "$with_SDPS" = "yes" && AC_DEFINE(SDPS_ENABLE,1,Define if you want SDPS support compiled in)
333
334 ###     use option --enable-opie to compile in the OPIE support
335 AC_ARG_ENABLE(opie,
336         [  --enable-opie           support OTP through the OPIE library],
337         [ AC_CHECK_HEADER(opie.h,, [echo 'configure: cannot find <opie.h>, which is required for OPIE support.'; exit 1])
338           AC_CHECK_LIB(opie,opiegenerator,, [echo 'configure: cannot find libopie, which is required for OPIE support.'; exit 1])
339           with_opie=$enableval],
340         [with_opie=no])
341 test "$with_opie" = "yes" && AC_DEFINE(OPIE_ENABLE,1,Define if you want OPIE support compiled in)
342
343 AC_ARG_ENABLE(inet6,
344         [  --enable-inet6          support IPv6],
345
346         [ AC_CHECK_FUNC(getaddrinfo, [with_inet6=yes],
347           [ LDFLAGS="$LDFLAGS -L/usr/inet6/lib";
348             AC_CHECK_LIB(inet6, getaddrinfo, [with_inet6=yes
349             LIBS="$LIBS -linet6"],
350             [ echo 'configure: cannot find proper glibc version or libinet6,';
351               echo '           which is required for IPv6 support.';
352               exit 1]) ] )],
353         [with_inet6=no])
354 test "$with_inet6" = "yes" && AC_DEFINE(INET6_ENABLE,1,Define if you want IPv6 support compiled in)
355
356 # This version of the Kerberos 4 and 5 options addresses the follwing issues:
357
358 # * Build correctly under Heimdal kerberos if it is compiled with db2 and
359 #   OpenSSL support (Debian's is)
360 # * Build the kerberos.c stuff (KPOP) only for kerberosIV, to avoid breakage.
361 #   I don't know if this is 100% correct, but now at least IMAP and POP3
362 #   behave the same way regarding kerberosV.
363 # * Build without any fuss for both kerberosIV and V at the same time.
364 # * Move all the kerberos header mess to kerberos.h, and #include that
365 #   in driver.c and kerberos.c.
366
367 # Tested using the Heimdal Kerberos V libs, Kungliga Tekniska Högskolan (the
368 # Royal Institute of Technology in Stockholm, Sweden)'s kerberos IV libs, and
369 # the MIT reference implementation of KerberosV (all as packaged in Debian).
370
371 ###    use option --with-kerberos5=DIR to point at a Kerberos 5 directory
372 ### make sure --with-ssl is run before --with-kerberos* !
373 AC_ARG_WITH(kerberos5,
374        [  --with-kerberos5=DIR    point fetchmail compilation at a Kerberos 5
375 directory],
376 [
377 if test "$with_kerberos5" != "no"
378 then
379 # Check for a OpenBSD special case
380 if test "$with_kerberos5" = "yes" && ( test `uname` = "OpenBSD" )
381 then
382   AS_MESSAGE(checking kerberosV for OpenBSD...)
383   AC_DEFINE(HEIMDAL,1,Define if you have HEIMDAL kerberos 5)
384   AC_DEFINE(KERBEROS_V5,1,Define if you have Kerberos V5)
385   CEFLAGS="$CEFLAGS -I/usr/include/kerberosV"
386   LIBS="$LIBS -lasn1 -lkrb5 -lcom_err -lkafs"
387 elif krb5-config 2> /dev/null >/dev/null ; then
388   krb5_prefix=`krb5-config --prefix krb5`
389   AC_MSG_RESULT([krb5-config points to kerberosV under $krb5_prefix])
390   if test -f ${krb5_prefix}/include/et/com_err.h && \
391    ! test -f ${krb5_prefix}/include/com_err.h  ; then
392     CEFLAGS="$CEFLAGS -I${krb5_prefix}/include/et"
393   fi
394   unset krb5_prefix
395   CEFLAGS="$CEFLAGS `krb5-config --cflags krb5`"
396   LIBS="$LIBS `krb5-config --libs krb5`"
397   AC_DEFINE(KERBEROS_V5)
398 else
399   if test "$with_kerberos5" != "yes" 
400   then
401       LDEFLAGS="$LDEFLAGS -L${with_kerberos5}/lib"
402       searchdirs="$with_kerberos5"
403   else
404       searchdirs="/usr/kerberos /usr/local/krb5 /usr/athena /usr"
405   fi
406   with_kerberos5=
407   for dir in $searchdirs
408   do AC_MSG_CHECKING([for Kerberos V in $dir])
409      if test -f "$dir/include/krb5.h"
410      then
411         ac_krblibs=
412         if test -f "$dir/include/roken.h"
413         then
414            ac_krblibs="-lasn1 -lroken -lcom_err"
415            AC_MSG_RESULT([Heimdal found])
416           dnl Attempt to detect if we need to -ldb2 to link Heimdal
417           dnl we assume we do if it is available
418            AC_CHECK_LIB(db2, db_open, ac_krblibs="$ac_krblibs -ldb2", [],
419                 ${LDEFLAGS})
420            AC_CHECK_LIB(des, des_string_to_key, libk5crypto=-ldes,
421               AC_CHECK_LIB(ssl, MD5_Init, [],
422                 AC_MSG_ERROR([DES libraries not found. Try adding --with-ssl to enable OpenSSL support]),
423                 ${LDEFLAGS} ${ac_krblibs}),
424            ${LDEFLAGS} ${ac_krblibs})
425            AC_DEFINE(HEIMDAL)
426         else
427           AC_MSG_RESULT([found])
428           ac_krblibs="-lcom_err"
429            AC_CHECK_LIB(crypto,
430              krb5_des_string_to_key,
431              libk5crypto=-lcrypto,
432                 AC_CHECK_LIB(k5crypto,
433                    krb5_des_string_to_key,
434                    libk5crypto=-lk5crypto,
435                       AC_MSG_ERROR([Kerberos 5 DES libraries not found]),
436                    ${LDEFLAGS} ${ac_krblibs}),
437                  ${LDEFLAGS} ${ac_krblibs})
438         fi
439         AC_CHECK_LIB(krb5, krb5_init_context,[],
440            continue,
441            ${LDEFLAGS} ${ac_krblibs})
442         AC_DEFINE(KERBEROS_V5)
443         test "$dir" != "/usr" && CEFLAGS="$CEFLAGS -I$dir/include"
444         LDEFLAGS="$LDEFLAGS -L$dir/lib"
445        LIBS="$LIBS $ac_krblibs $libk5crypto"
446         with_kerberos5=$dir
447         break
448      else
449         AC_MSG_RESULT([not found])
450      fi
451   done
452   if test -z "$with_kerberos5" ; then
453      AC_MSG_ERROR([Kerberos 5 libraries not found])
454   fi
455 fi
456 fi
457 ]) dnl --with-kerberos5=DIR
458
459 ###    use option --with-kerberos=DIR to point at a Kerberos 4 directory
460 AC_ARG_WITH(kerberos,
461        [  --with-kerberos=DIR     point fetchmail compilation at a Kerberos 4
462 directory],
463 [
464 if test "$with_kerberos" != "no"
465 then
466 # Check for a NetBSD/OpenBSD special case
467 if test "$with_kerberos" = "yes" && ( test `uname` = "NetBSD" || test `uname` = "OpenBSD" )
468 then
469   AS_MESSAGE(checking kerberosIV for `uname`...)
470   AC_DEFINE(KERBEROS_V4,1,Define if you have Kerberos V4)
471   CEFLAGS="$CEFLAGS -I/usr/include/kerberosIV"
472   LIBS="$LIBS -lkrb -ldes"
473 elif krb4-config 2> /dev/null >/dev/null ; then
474   krb4_prefix=`krb4-config --prefix`
475   AC_MSG_RESULT([krb4-config points to kerberosIV under $krb4_prefix])
476   unset krb4_prefix
477   CEFLAGS="$CEFLAGS `krb4-config --cflags`"
478   LIBS="$LIBS `krb4-config --libs`"
479   AC_DEFINE(KERBEROS_V4)
480 elif krb5-config 2> /dev/null >/dev/null ; then
481   krb4_prefix=`krb5-config --prefix krb4`
482   AC_MSG_RESULT([krb5-config points to kerberosIV under $krb4_prefix])
483   if test -f ${krb4_prefix}/include/kerberosIV/krb.h ; then
484     AC_DEFINE(KERBEROS_V4_V5,1,Define if you have Kerberos V4 headers under a kerberosIV directory)
485   fi
486   unset krb4_prefix
487   CEFLAGS="$CEFLAGS `krb5-config --cflags krb4`"
488   LIBS="$LIBS `krb5-config --libs krb4`"
489   AC_DEFINE(KERBEROS_V4)
490 else
491   #we need to detect when we're building under a kerberosV compatibility
492   #layer, btw...
493   if test "$with_kerberos" != "yes" ; then
494      searchdirs="$with_kerberos"
495   else
496      searchdirs="$with_kerberos5 /usr/kerberos /usr/kerberosIV /usr/athena/usr"
497   fi
498   with_kerberos=
499   ac_saveLDFLAGS="$LDFLAGS"
500   for dir in $searchdirs
501   do
502      AC_MSG_CHECKING([for Kerberos IV in $dir])
503      if test -f "$dir/include/krb.h" || test -f "$dir/include/krb4.h" \
504             || test -f "$dir/include/kerberosIV/krb.h"
505      then
506         AC_MSG_RESULT([found])
507      else
508         AC_MSG_RESULT([not found])
509        continue
510      fi
511      #Find libs
512      if test -f "$with_kerberos5/roken.h" ; then
513        AC_CHECK_LIB(45, krb_mk_req)
514      fi
515      LDFLAGS="-L$dir/lib $ac_saveLDFLAGS"
516      AC_SEARCH_LIBS(des_string_to_key, [des425 des crypto], [], continue)
517      AC_SEARCH_LIBS(krb_realmofhost, [krb4 krb], [], continue)
518      with_kerberos="$dir"
519      if test -f "$dir/include/kerberosIV/krb.h" ; then
520         dir="$dir/include/kerberosIV"
521      else
522        dir="$dir/include"
523      fi
524      AC_DEFINE(KERBEROS_V4)
525      test -f "$with_kerberos5/roken.h" && AC_DEFINE(HEIMDAL)
526      test "$dir" != "/usr/include" && CEFLAGS="$CEFLAGS -I$dir"
527      LDEFLAGS="$LDEFLAGS -L$with_kerberos/lib"
528      break
529   done
530   if test -z "$with_kerberos" ; then
531      AC_MSG_ERROR([Kerberos 4 libraries not found])
532   fi
533   LDFLAGS="$ac_saveLDFLAGS"
534 fi
535 fi
536 ]) dnl --with-kerberos=DIR
537
538 ###     use option --with-ssl to compile in the SSL support
539 AC_ARG_WITH(ssl,
540         [  --with-ssl=[DIR]        enable SSL support using libraries in DIR],
541         [with_ssl=$withval],
542         [with_ssl=no])
543 test "$with_ssl" != "no" && AC_DEFINE(SSL_ENABLE,1,Define if you want SSL support compiled in)
544
545 if test "$with_ssl" = "yes"
546 then
547     #   He didn't specify an SSL location.  Let's look at some common
548     #   directories where SSL has been found in the past and try and auto
549     #   configure for SSL.  OpenSSL determination will be made later.
550     #   This will screw up if an OpenSSL install is located in a later
551     #   directory than an older SSLeay install, but the user should fix that
552     #   anyways and he can override on the configure line.
553     #   Just testing for directories is not sufficient, /usr exists on
554     #   all systems!
555     for ac_dir in \
556       /usr/local/ssl \
557       /usr/local \
558       /usr/ssl \
559       /usr \
560       /local/ssl \
561       /opt/ssl \
562       /opt/csw \
563       ; \
564     do
565         if test -r "$ac_dir/include/openssl/ssl.h" ; then
566             with_ssl=$ac_dir
567             break;
568         fi
569     done
570 fi
571
572 if test -n "$with_ssl" -a "$with_ssl" != "no"
573 then
574   # With the autoconfigure above, the only time this is going to be
575   # true is going to be when we could not find the headers.  If they
576   # are not in system standard locations, we are going to be broken.
577   if test "$with_ssl" = "yes"
578   then
579     # Let's just define the standard location for the SSLeay root
580     with_ssl="/usr/local/ssl"
581   fi
582   if test -r $with_ssl/include/openssl/ssl.h
583   then
584     ### ssl.h found under openssl.  Use openssl configuration preferentially,
585     echo "Enabling OpenSSL support in $with_ssl"
586     test "$with_ssl" != "/usr" && CEFLAGS="$CEFLAGS -I$with_ssl/include"
587     ### In Red Hat 9, this file includes a reference to <krb5.h>, so we
588     ### force the Kerberos direcory onto the include path so it will build.
589     CEFLAGS="$CEFLAGS -I/usr/kerberos/include"
590     ### OpenBSD comes with ssl headers
591   else
592     AC_MSG_ERROR([SSL support enabled, but OpenSSL not found])
593   fi
594   LDEFLAGS="$LDEFLAGS -L$with_ssl/lib"
595   LIBS="$LIBS -lssl -lcrypto"
596   AC_DEFINE(SSL_ENABLE)
597 else
598   echo 'Disabling SSL support...'
599 fi
600
601 ###     use option --with-socks=DIR to point at SOCKS library
602 AC_ARG_WITH(socks,
603         [  --with-socks[=DIR]      add built-in SOCKS firewall access],
604 [
605 if test "$with_socks" != no
606 then
607     if test "$with_socks" != yes
608     then
609         LDEFLAGS="$LDEFLAGS -L$with_socks"
610     else
611         AC_CHECK_LIB(socks, Rconnect,,
612                AC_MSG_ERROR([could not find libsocks which is needed for built-in SOCKS support]))
613     fi
614     AC_DEFINE(HAVE_SOCKS,1,Define if you want built-in SOCKS support)
615     CEFLAGS="$CEFLAGS -Dconnect=Rconnect -Dgetsockname=Rgetsockname -Dbind=Rbind -Daccept=Raccept -Dlisten=Rlisten -Dselect=Rselect"
616     LIBS="-lsocks $LIBS"
617 fi])
618
619 ###     use option --with-socks5=DIR to point at SOCKS library
620 AC_ARG_WITH(socks5,
621         [  --with-socks5[=DIR]     add built-in SOCKS5 firewall access],
622 [
623 if test "$with_socks5" != no
624 then
625   if test "$with_socks5" != yes
626   then
627     LDEFLAGS="$LDEFLAGS -L$with_socks5"
628   fi
629   ac_savedLDFLAGS="$LDFLAGS"
630   LDFLAGS="$LDEFLAGS $LDFLAGS"
631   AC_CHECK_LIB(socks5, SOCKSconnect,,
632         AC_MSG_ERROR([could not find libsocks5 which is needed for built-in SOCKS5 support]))
633   AC_DEFINE(HAVE_SOCKS)
634   CEFLAGS="$CEFLAGS -Dconnect=SOCKSconnect -Dgetsockname=SOCKSgetsockname -Dbind=SOCKSbind -Daccept=SOCKSaccept -Dlisten=SOCKSlisten -Dselect=SOCKSselect -Drecvfrom=SOCKSrecvfrom -Dsendto=SOCKSsendto -Drecv=SOCKSrecv -Dsend=SOCKSsend -Dread=SOCKSread -Dwrite=SOCKSwrite -Drresvport=SOCKSrresvport -Dshutdown=SOCKSshutdown -Dlisten=SOCKSlisten -Dclose=SOCKSclose -Ddup=SOCKSdup -Ddup2=SOCKSdup2 -Dgethostbyname=SOCKSgethostbyname"
635   AC_CHECK_FUNC(SOCKSfclose, [CFLAGS="$CFLAGS -Dfclose=SOCKSfclose"])
636   LDFLAGS="$ac_savedLDFLAGS"
637 fi])
638
639 ###     use option --with-hesiod=DIR to point at a HESIOD directory
640 AC_ma_SEARCH_PACKAGE(hesiod, hesiod_getmailhost, /usr/athena /usr /usr/local,hesiod, hesiod.h)
641
642 ###     use option --with-gssapi=DIR to compile in GSSAPI support
643 AC_ARG_WITH(gssapi,
644         [  --with-gssapi[=DIR]     compile in GSSAPI support using libraries in DIR],
645 [
646 if test "$with_gssapi" != "no"
647 then
648   if test "$with_gssapi" = "yes" -a -n "$with_kerberos5"
649   then
650     with_gssapi=$with_kerberos5
651   fi
652   if test "$with_gssapi" != "yes" -a -n "$with_gssapi"
653   then
654     CFLAGS="$CFLAGS -I$with_gssapi/include"
655     LDFLAGS="$LDFLAGS -L$with_gssapi/lib"
656   fi
657
658   AC_CHECK_LIB(gss, gss_check_version, LIBS="$LIBS -lgss", nogss=t)
659   if test -n "$nogss"
660   then
661   if test -f "$with_gssapi/include/roken.h"
662   then
663      LIBS="$LIBS -lkrb5 -lasn1 -ldes -lroken -ldb -ldl"
664      AC_CHECK_LIB(gssapi, gss_init_sec_context,LIBS="$LIBS -lgssapi",
665                   AC_MSG_ERROR([could not find libgssapi which is needed for GSSAPI support]), )
666      AC_DEFINE(HEIMDAL)
667   else
668      AC_CHECK_LIB(gssapi_krb5, gss_init_sec_context,LIBS="$LIBS -lgssapi_krb5",
669                   AC_MSG_ERROR([could not find libgssapi_krb5 which is needed for GSSAPI support]), -lkrb5)
670   fi
671   fi
672   AC_DEFINE(GSSAPI,1,Define if you want GSSAPI authentication)
673   save_CPPFLAGS=$CPPFLAGS
674   CPPFLAGS="-I$with_gssapi/include"
675   AC_CHECK_HEADERS(gss.h gssapi.h gssapi/gssapi.h gssapi/gssapi_generic.h)
676   if test "$ac_cv_header_gssapi_h" = "yes"; then
677     AC_EGREP_HEADER(GSS_C_NT_HOSTBASED_SERVICE, gssapi.h, AC_DEFINE(HAVE_GSS_C_NT_HOSTBASED_SERVICE,1,Define if you have MIT kerberos))
678   else
679     AC_EGREP_HEADER(GSS_C_NT_HOSTBASED_SERVICE, gssapi/gssapi.h, AC_DEFINE(HAVE_GSS_C_NT_HOSTBASED_SERVICE))
680   fi
681 fi])
682
683 AC_SUBST(CPFLAGS)
684 AC_SUBST(CEFLAGS)
685 AC_SUBST(LDEFLAGS)
686
687 dnl ,------------------------------------------------------------------
688 dnl Check if we need TRIO
689 needtrio=0
690 if test "$FORCE_TRIO" = "yes" ; then
691     needtrio=1
692     ac_cv_func_vsnprintf=no
693     ac_cv_func_snprintf=no
694 fi
695 if test "x$ac_cv_func_snprintf" != "xyes" ; then
696     AC_DEFINE(snprintf, trio_snprintf,
697               [Define to trio_snprintf if your system lacks snprintf])
698     needtrio=1
699 fi
700 if test "x$ac_cv_func_vsnprintf" != "xyes" ; then
701     AC_DEFINE(vsnprintf, trio_vsnprintf,
702               [Define to trio_vsnprintf if your system lacks vsnprintf])
703     needtrio=1
704 fi
705 AM_CONDITIONAL(NEED_TRIO, test "$needtrio" = 1)
706
707 dnl TRIO IEEE compiler option for Alpha
708 dnl
709 if test "$needtrio" = 1 ; then
710     AC_MSG_CHECKING(for IEEE compilation options)
711     AC_CACHE_VAL(ac_cv_ieee_option, [
712     AC_TRY_COMPILE(,[
713     #if !(defined(__alpha) && (defined(__DECC) || defined(__DECCXX) || (defined(__osf__) && defined(__LANGUAGE_C__))) && (defined(VMS) || defined(__VMS)))
714     # error "Option needed"
715     #endif
716     ],ac_cv_ieee_option="/IEEE_MODE=UNDERFLOW_TO_ZERO/FLOAT=IEEE",
717     AC_TRY_COMPILE(,[
718     #if !(defined(__alpha) && (defined(__DECC) || defined(__DECCXX) || (defined(__osf__) && defined(__LANGUAGE_C__))) && !(defined(VMS) || defined(__VMS)) && !defined(_CFE))
719     # error "Option needed"
720     #endif
721     ],ac_cv_ieee_option="-ieee",
722     AC_TRY_COMPILE(,[
723     #if !(defined(__alpha) && (defined(__GNUC__) && (defined(__osf__) || defined(__linux__))))
724     # error "Option needed"
725     #endif
726     ],ac_cv_ieee_option="-mieee",
727     ac_cv_ieee_option="none"
728     )
729     )
730     )
731     ])
732     AC_MSG_RESULT($ac_cv_ieee_option)
733     if test $ac_cv_ieee_option != none; then
734       CFLAGS="${CFLAGS} ${ac_cv_ieee_option}"
735     fi
736 fi
737 dnl ----------------------------------------------------------------'
738
739 AC_CONFIG_FILES([Makefile m4/Makefile
740                 po/Makefile.in])
741 AC_OUTPUT
742
743 dnl Local Variables:
744 dnl comment-start: "dnl "
745 dnl comment-end: ""
746 dnl comment-start-skip: "\\bdnl\\b\\s *"
747 dnl compile-command: "make configure config.h.in"
748 dnl End: