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