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