]> andersk Git - openssh.git/blob - configure.ac
- dtucker@cvs.openbsd.org 2005/07/14 04:00:43
[openssh.git] / configure.ac
1 # $Id$
2 #
3 # Copyright (c) 1999-2004 Damien Miller
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
17 AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18 AC_CONFIG_SRCDIR([ssh.c])
19
20 AC_CONFIG_HEADER(config.h)
21 AC_PROG_CC
22 AC_CANONICAL_HOST
23 AC_C_BIGENDIAN
24
25 # Checks for programs.
26 AC_PROG_AWK
27 AC_PROG_CPP
28 AC_PROG_RANLIB
29 AC_PROG_INSTALL
30 AC_PATH_PROG(AR, ar)
31 AC_PATH_PROG(CAT, cat)
32 AC_PATH_PROG(KILL, kill)
33 AC_PATH_PROGS(PERL, perl5 perl)
34 AC_PATH_PROG(SED, sed)
35 AC_SUBST(PERL)
36 AC_PATH_PROG(ENT, ent)
37 AC_SUBST(ENT)
38 AC_PATH_PROG(TEST_MINUS_S_SH, bash)
39 AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
40 AC_PATH_PROG(TEST_MINUS_S_SH, sh)
41 AC_PATH_PROG(SH, sh)
42 AC_SUBST(TEST_SHELL,sh)
43
44 dnl for buildpkg.sh
45 AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
46         [/usr/sbin${PATH_SEPARATOR}/etc])
47 AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
48         [/usr/sbin${PATH_SEPARATOR}/etc])
49 AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
50
51 # System features
52 AC_SYS_LARGEFILE
53
54 if test -z "$AR" ; then
55         AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
56 fi
57
58 # Use LOGIN_PROGRAM from environment if possible
59 if test ! -z "$LOGIN_PROGRAM" ; then
60         AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
61 else
62         # Search for login
63         AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
64         if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
65                 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
66         fi
67 fi
68
69 AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
70 if test ! -z "$PATH_PASSWD_PROG" ; then
71         AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG")
72 fi
73
74 if test -z "$LD" ; then
75         LD=$CC
76 fi
77 AC_SUBST(LD)
78
79 AC_C_INLINE
80
81 AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
82
83 if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
84         CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
85         CFLAGS="$CFLAGS -Wsign-compare"
86
87         if test -z "$have_llong_max"; then
88                 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
89                 unset ac_cv_have_decl_LLONG_MAX
90                 saved_CFLAGS="$CFLAGS"
91                 CFLAGS="$CFLAGS -std=gnu99"
92                 AC_CHECK_DECL(LLONG_MAX,
93                     [have_llong_max=1],
94                     [CFLAGS="$saved_CFLAGS"],
95                     [#include <limits.h>]
96                 )
97         fi
98 fi
99
100 if test -z "$have_llong_max"; then
101         AC_MSG_CHECKING([for max value of long long])
102         AC_RUN_IFELSE(
103                 [AC_LANG_SOURCE([[
104 #include <stdio.h>
105 /* Why is this so damn hard? */
106 #ifdef __GNUC__
107 # undef __GNUC__
108 #endif
109 #define __USE_ISOC99
110 #include <limits.h>
111 #define DATA "conftest.llminmax"
112 int main(void) {
113         FILE *f;
114         long long i, llmin, llmax = 0;
115
116         if((f = fopen(DATA,"w")) == NULL)
117                 exit(1);
118
119 #if defined(LLONG_MIN) && defined(LLONG_MAX)
120         fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
121         llmin = LLONG_MIN;
122         llmax = LLONG_MAX;
123 #else
124         fprintf(stderr, "Calculating  LLONG_MIN and LLONG_MAX\n");
125         /* This will work on one's complement and two's complement */
126         for (i = 1; i > llmax; i <<= 1, i++)
127                 llmax = i;
128         llmin = llmax + 1LL;    /* wrap */
129 #endif
130
131         /* Sanity check */
132         if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
133             || llmax - 1 > llmax) {
134                 fprintf(f, "unknown unknown\n");
135                 exit(2);
136         }
137
138         if (fprintf(f ,"%lld %lld", llmin, llmax) < 0)
139                 exit(3);
140
141         exit(0);
142 }
143                 ]])],
144                 [
145                         llong_min=`$AWK '{print $1}' conftest.llminmax`
146                         llong_max=`$AWK '{print $2}' conftest.llminmax`
147                         AC_MSG_RESULT($llong_max)
148                         AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
149                             [max value of long long calculated by configure])
150                         AC_MSG_CHECKING([for min value of long long])
151                         AC_MSG_RESULT($llong_min)
152                         AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
153                             [min value of long long calculated by configure])
154                 ],
155                 [
156                         AC_MSG_RESULT(not found)
157                 ],
158                 [
159                         AC_MSG_WARN([cross compiling: not checking])
160                 ]
161         )
162 fi
163
164 AC_ARG_WITH(rpath,
165         [  --without-rpath         Disable auto-added -R linker paths],
166         [
167                 if test "x$withval" = "xno" ; then
168                         need_dash_r=""
169                 fi
170                 if test "x$withval" = "xyes" ; then
171                         need_dash_r=1
172                 fi
173         ]
174 )
175
176 # Check for some target-specific stuff
177 case "$host" in
178 *-*-aix*)
179         AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
180         if (test -z "$blibpath"); then
181                 blibpath="/usr/lib:/lib"
182         fi
183         saved_LDFLAGS="$LDFLAGS"
184         for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
185                 if (test -z "$blibflags"); then
186                         LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
187                         AC_TRY_LINK([], [], [blibflags=$tryflags])
188                 fi
189         done
190         if (test -z "$blibflags"); then
191                 AC_MSG_RESULT(not found)
192                 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
193         else
194                 AC_MSG_RESULT($blibflags)
195         fi
196         LDFLAGS="$saved_LDFLAGS"
197         dnl Check for authenticate.  Might be in libs.a on older AIXes
198         AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
199                 [AC_CHECK_LIB(s,authenticate,
200                         [ AC_DEFINE(WITH_AIXAUTHENTICATE)
201                                 LIBS="$LIBS -ls"
202                         ])
203                 ])
204         dnl Check for various auth function declarations in headers.
205         AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
206             passwdexpired, setauthdb], , , [#include <usersec.h>])
207         dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
208         AC_CHECK_DECLS(loginfailed,
209                  [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
210                   AC_TRY_COMPILE(
211                         [#include <usersec.h>],
212                         [(void)loginfailed("user","host","tty",0);],
213                         [AC_MSG_RESULT(yes)
214                          AC_DEFINE(AIX_LOGINFAILED_4ARG)],
215                         [AC_MSG_RESULT(no)]
216                 )],
217                 [],
218                 [#include <usersec.h>]
219         )
220         AC_CHECK_FUNCS(setauthdb)
221         check_for_aix_broken_getaddrinfo=1
222         AC_DEFINE(BROKEN_REALPATH)
223         AC_DEFINE(SETEUID_BREAKS_SETUID)
224         AC_DEFINE(BROKEN_SETREUID)
225         AC_DEFINE(BROKEN_SETREGID)
226         dnl AIX handles lastlog as part of its login message
227         AC_DEFINE(DISABLE_LASTLOG)
228         AC_DEFINE(LOGIN_NEEDS_UTMPX)
229         AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
230         ;;
231 *-*-cygwin*)
232         check_for_libcrypt_later=1
233         LIBS="$LIBS /usr/lib/textmode.o"
234         AC_DEFINE(HAVE_CYGWIN)
235         AC_DEFINE(USE_PIPES)
236         AC_DEFINE(DISABLE_SHADOW)
237         AC_DEFINE(IP_TOS_IS_BROKEN)
238         AC_DEFINE(NO_X11_UNIX_SOCKETS)
239         AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
240         AC_DEFINE(DISABLE_FD_PASSING)
241         ;;
242 *-*-dgux*)
243         AC_DEFINE(IP_TOS_IS_BROKEN)
244         AC_DEFINE(SETEUID_BREAKS_SETUID)
245         AC_DEFINE(BROKEN_SETREUID)
246         AC_DEFINE(BROKEN_SETREGID)
247         ;;
248 *-*-darwin*)
249         AC_MSG_CHECKING(if we have working getaddrinfo)
250         AC_TRY_RUN([#include <mach-o/dyld.h>
251 main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
252                 exit(0);
253         else
254                 exit(1);
255 }], [AC_MSG_RESULT(working)],
256         [AC_MSG_RESULT(buggy)
257         AC_DEFINE(BROKEN_GETADDRINFO)],
258         [AC_MSG_RESULT(assume it is working)])
259         AC_DEFINE(SETEUID_BREAKS_SETUID)
260         AC_DEFINE(BROKEN_SETREUID)
261         AC_DEFINE(BROKEN_SETREGID)
262         AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1)
263         ;;
264 *-*-hpux*)
265         # first we define all of the options common to all HP-UX releases
266         CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
267         IPADDR_IN_DISPLAY=yes
268         AC_DEFINE(USE_PIPES)
269         AC_DEFINE(LOGIN_NO_ENDOPT)
270         AC_DEFINE(LOGIN_NEEDS_UTMPX)
271         AC_DEFINE(LOCKED_PASSWD_STRING, "*")
272         AC_DEFINE(SPT_TYPE,SPT_PSTAT)
273         LIBS="$LIBS -lsec"
274         AC_CHECK_LIB(xnet, t_error, ,
275             AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
276
277         # next, we define all of the options specific to major releases
278         case "$host" in
279         *-*-hpux10*)
280                 if test -z "$GCC"; then
281                         CFLAGS="$CFLAGS -Ae"
282                 fi
283                 ;;
284         *-*-hpux11*)
285                 AC_DEFINE(PAM_SUN_CODEBASE)
286                 AC_DEFINE(DISABLE_UTMP)
287                 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
288                 check_for_hpux_broken_getaddrinfo=1
289                 check_for_conflicting_getspnam=1
290                 ;;
291         esac
292
293         # lastly, we define options specific to minor releases
294         case "$host" in
295         *-*-hpux10.26)
296                 AC_DEFINE(HAVE_SECUREWARE)
297                 disable_ptmx_check=yes
298                 LIBS="$LIBS -lsecpw"
299                 ;;
300         esac
301         ;;
302 *-*-irix5*)
303         PATH="$PATH:/usr/etc"
304         AC_DEFINE(BROKEN_INET_NTOA)
305         AC_DEFINE(SETEUID_BREAKS_SETUID)
306         AC_DEFINE(BROKEN_SETREUID)
307         AC_DEFINE(BROKEN_SETREGID)
308         AC_DEFINE(WITH_ABBREV_NO_TTY)
309         AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
310         ;;
311 *-*-irix6*)
312         PATH="$PATH:/usr/etc"
313         AC_DEFINE(WITH_IRIX_ARRAY)
314         AC_DEFINE(WITH_IRIX_PROJECT)
315         AC_DEFINE(WITH_IRIX_AUDIT)
316         AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
317         AC_DEFINE(BROKEN_INET_NTOA)
318         AC_DEFINE(SETEUID_BREAKS_SETUID)
319         AC_DEFINE(BROKEN_SETREUID)
320         AC_DEFINE(BROKEN_SETREGID)
321         AC_DEFINE(BROKEN_UPDWTMPX)
322         AC_DEFINE(WITH_ABBREV_NO_TTY)
323         AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
324         ;;
325 *-*-linux*)
326         no_dev_ptmx=1
327         check_for_libcrypt_later=1
328         check_for_openpty_ctty_bug=1
329         AC_DEFINE(DONT_TRY_OTHER_AF)
330         AC_DEFINE(PAM_TTY_KLUDGE)
331         AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
332         AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
333         AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM)
334         AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
335         AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
336         inet6_default_4in6=yes
337         case `uname -r` in
338         1.*|2.0.*)
339                 AC_DEFINE(BROKEN_CMSG_TYPE)
340                 ;;
341         esac
342         ;;
343 mips-sony-bsd|mips-sony-newsos4)
344         AC_DEFINE(NEED_SETPRGP, [], [Need setpgrp to acquire controlling tty])
345         SONY=1
346         ;;
347 *-*-netbsd*)
348         check_for_libcrypt_before=1
349         if test "x$withval" != "xno" ; then
350                 need_dash_r=1
351         fi
352         ;;
353 *-*-freebsd*)
354         check_for_libcrypt_later=1
355         ;;
356 *-*-bsdi*)
357         AC_DEFINE(SETEUID_BREAKS_SETUID)
358         AC_DEFINE(BROKEN_SETREUID)
359         AC_DEFINE(BROKEN_SETREGID)
360         ;;
361 *-next-*)
362         conf_lastlog_location="/usr/adm/lastlog"
363         conf_utmp_location=/etc/utmp
364         conf_wtmp_location=/usr/adm/wtmp
365         MAIL=/usr/spool/mail
366         AC_DEFINE(HAVE_NEXT)
367         AC_DEFINE(BROKEN_REALPATH)
368         AC_DEFINE(USE_PIPES)
369         AC_DEFINE(BROKEN_SAVED_UIDS)
370         ;;
371 *-*-solaris*)
372         if test "x$withval" != "xno" ; then
373                 need_dash_r=1
374         fi
375         AC_DEFINE(PAM_SUN_CODEBASE)
376         AC_DEFINE(LOGIN_NEEDS_UTMPX)
377         AC_DEFINE(LOGIN_NEEDS_TERM)
378         AC_DEFINE(PAM_TTY_KLUDGE)
379         AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID)
380         AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
381         # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
382         AC_DEFINE(SSHD_ACQUIRES_CTTY)
383         external_path_file=/etc/default/login
384         # hardwire lastlog location (can't detect it on some versions)
385         conf_lastlog_location="/var/adm/lastlog"
386         AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
387         sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
388         if test "$sol2ver" -ge 8; then
389                 AC_MSG_RESULT(yes)
390                 AC_DEFINE(DISABLE_UTMP)
391                 AC_DEFINE(DISABLE_WTMP)
392         else
393                 AC_MSG_RESULT(no)
394         fi
395         ;;
396 *-*-sunos4*)
397         CPPFLAGS="$CPPFLAGS -DSUNOS4"
398         AC_CHECK_FUNCS(getpwanam)
399         AC_DEFINE(PAM_SUN_CODEBASE)
400         conf_utmp_location=/etc/utmp
401         conf_wtmp_location=/var/adm/wtmp
402         conf_lastlog_location=/var/adm/lastlog
403         AC_DEFINE(USE_PIPES)
404         ;;
405 *-ncr-sysv*)
406         LIBS="$LIBS -lc89"
407         AC_DEFINE(USE_PIPES)
408         AC_DEFINE(SSHD_ACQUIRES_CTTY)
409         AC_DEFINE(SETEUID_BREAKS_SETUID)
410         AC_DEFINE(BROKEN_SETREUID)
411         AC_DEFINE(BROKEN_SETREGID)
412         ;;
413 *-sni-sysv*)
414         # /usr/ucblib MUST NOT be searched on ReliantUNIX
415         AC_CHECK_LIB(dl, dlsym, ,)
416         # -lresolv needs to be at then end of LIBS or DNS lookups break
417         AC_CHECK_LIB(res_query, resolv, [ LIBS="$LIBS -lresolv" ])
418         IPADDR_IN_DISPLAY=yes
419         AC_DEFINE(USE_PIPES)
420         AC_DEFINE(IP_TOS_IS_BROKEN)
421         AC_DEFINE(SETEUID_BREAKS_SETUID)
422         AC_DEFINE(BROKEN_SETREUID)
423         AC_DEFINE(BROKEN_SETREGID)
424         AC_DEFINE(SSHD_ACQUIRES_CTTY)
425         external_path_file=/etc/default/login
426         # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
427         # Attention: always take care to bind libsocket and libnsl before libc,
428         # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
429         ;;
430 # UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
431 *-*-sysv4.2*)
432         AC_DEFINE(USE_PIPES)
433         AC_DEFINE(SETEUID_BREAKS_SETUID)
434         AC_DEFINE(BROKEN_SETREUID)
435         AC_DEFINE(BROKEN_SETREGID)
436         AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
437         ;;
438 # UnixWare 7.x, OpenUNIX 8
439 *-*-sysv5*)
440         AC_DEFINE(USE_PIPES)
441         AC_DEFINE(SETEUID_BREAKS_SETUID)
442         AC_DEFINE(BROKEN_SETREUID)
443         AC_DEFINE(BROKEN_SETREGID)
444         AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
445         case "$host" in
446         *-*-sysv5SCO_SV*)       # SCO OpenServer 6.x
447                 TEST_SHELL=/u95/bin/sh
448                 ;;
449         esac
450         ;;
451 *-*-sysv*)
452         ;;
453 # SCO UNIX and OEM versions of SCO UNIX
454 *-*-sco3.2v4*)
455         AC_MSG_ERROR("This Platform is no longer supported.")
456         ;;
457 # SCO OpenServer 5.x
458 *-*-sco3.2v5*)
459         if test -z "$GCC"; then
460                 CFLAGS="$CFLAGS -belf"
461         fi
462         LIBS="$LIBS -lprot -lx -ltinfo -lm"
463         no_dev_ptmx=1
464         AC_DEFINE(USE_PIPES)
465         AC_DEFINE(HAVE_SECUREWARE)
466         AC_DEFINE(DISABLE_SHADOW)
467         AC_DEFINE(DISABLE_FD_PASSING)
468         AC_DEFINE(SETEUID_BREAKS_SETUID)
469         AC_DEFINE(BROKEN_SETREUID)
470         AC_DEFINE(BROKEN_SETREGID)
471         AC_DEFINE(WITH_ABBREV_NO_TTY)
472         AC_DEFINE(BROKEN_UPDWTMPX)
473         AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
474         AC_CHECK_FUNCS(getluid setluid)
475         MANTYPE=man
476         TEST_SHELL=ksh
477         ;;
478 *-*-unicosmk*)
479         AC_DEFINE(NO_SSH_LASTLOG)
480         AC_DEFINE(SETEUID_BREAKS_SETUID)
481         AC_DEFINE(BROKEN_SETREUID)
482         AC_DEFINE(BROKEN_SETREGID)
483         AC_DEFINE(USE_PIPES)
484         AC_DEFINE(DISABLE_FD_PASSING)
485         LDFLAGS="$LDFLAGS"
486         LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
487         MANTYPE=cat
488         ;;
489 *-*-unicosmp*)
490         AC_DEFINE(SETEUID_BREAKS_SETUID)
491         AC_DEFINE(BROKEN_SETREUID)
492         AC_DEFINE(BROKEN_SETREGID)
493         AC_DEFINE(WITH_ABBREV_NO_TTY)
494         AC_DEFINE(USE_PIPES)
495         AC_DEFINE(DISABLE_FD_PASSING)
496         LDFLAGS="$LDFLAGS"
497         LIBS="$LIBS -lgen -lacid -ldb"
498         MANTYPE=cat
499         ;;
500 *-*-unicos*)
501         AC_DEFINE(SETEUID_BREAKS_SETUID)
502         AC_DEFINE(BROKEN_SETREUID)
503         AC_DEFINE(BROKEN_SETREGID)
504         AC_DEFINE(USE_PIPES)
505         AC_DEFINE(DISABLE_FD_PASSING)
506         AC_DEFINE(NO_SSH_LASTLOG)
507         LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
508         LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
509         MANTYPE=cat
510         ;;
511 *-dec-osf*)
512         AC_MSG_CHECKING(for Digital Unix SIA)
513         no_osfsia=""
514         AC_ARG_WITH(osfsia,
515                 [  --with-osfsia           Enable Digital Unix SIA],
516                 [
517                         if test "x$withval" = "xno" ; then
518                                 AC_MSG_RESULT(disabled)
519                                 no_osfsia=1
520                         fi
521                 ],
522         )
523         if test -z "$no_osfsia" ; then
524                 if test -f /etc/sia/matrix.conf; then
525                         AC_MSG_RESULT(yes)
526                         AC_DEFINE(HAVE_OSF_SIA)
527                         AC_DEFINE(DISABLE_LOGIN)
528                         AC_DEFINE(DISABLE_FD_PASSING)
529                         LIBS="$LIBS -lsecurity -ldb -lm -laud"
530                 else
531                         AC_MSG_RESULT(no)
532                         AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin")
533                 fi
534         fi
535         AC_DEFINE(BROKEN_GETADDRINFO)
536         AC_DEFINE(SETEUID_BREAKS_SETUID)
537         AC_DEFINE(BROKEN_SETREUID)
538         AC_DEFINE(BROKEN_SETREGID)
539         ;;
540
541 *-*-nto-qnx)
542         AC_DEFINE(USE_PIPES)
543         AC_DEFINE(NO_X11_UNIX_SOCKETS)
544         AC_DEFINE(MISSING_NFDBITS)
545         AC_DEFINE(MISSING_HOWMANY)
546         AC_DEFINE(MISSING_FD_MASK)
547         ;;
548
549 *-*-ultrix*)
550         AC_DEFINE(BROKEN_GETGROUPS, [], [getgroups(0,NULL) will return -1])
551         AC_DEFINE(BROKEN_MMAP, [], [Ultrix mmap can't map files])
552         AC_DEFINE(NEED_SETPRGP, [], [Need setpgrp to acquire controlling tty])
553         AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
554         ;;
555 esac
556
557 # Allow user to specify flags
558 AC_ARG_WITH(cflags,
559         [  --with-cflags           Specify additional flags to pass to compiler],
560         [
561                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
562                     test "x${withval}" != "xyes"; then
563                         CFLAGS="$CFLAGS $withval"
564                 fi
565         ]
566 )
567 AC_ARG_WITH(cppflags,
568         [  --with-cppflags         Specify additional flags to pass to preprocessor] ,
569         [
570                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
571                     test "x${withval}" != "xyes"; then
572                         CPPFLAGS="$CPPFLAGS $withval"
573                 fi
574         ]
575 )
576 AC_ARG_WITH(ldflags,
577         [  --with-ldflags          Specify additional flags to pass to linker],
578         [
579                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
580                     test "x${withval}" != "xyes"; then
581                         LDFLAGS="$LDFLAGS $withval"
582                 fi
583         ]
584 )
585 AC_ARG_WITH(libs,
586         [  --with-libs             Specify additional libraries to link with],
587         [
588                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
589                     test "x${withval}" != "xyes"; then
590                         LIBS="$LIBS $withval"
591                 fi
592         ]
593 )
594
595 AC_MSG_CHECKING(compiler and flags for sanity)
596 AC_RUN_IFELSE(
597         [AC_LANG_SOURCE([
598 #include <stdio.h>
599 int main(){exit(0);}
600         ])],
601         [       AC_MSG_RESULT(yes) ],
602         [
603                 AC_MSG_RESULT(no)
604                 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
605         ],
606         [       AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
607 )
608
609 dnl Checks for header files.
610 AC_CHECK_HEADERS( \
611         bstring.h \
612         crypt.h \
613         dirent.h \
614         endian.h \
615         features.h \
616         floatingpoint.h \
617         getopt.h \
618         glob.h \
619         ia.h \
620         lastlog.h \
621         limits.h \
622         login.h \
623         login_cap.h \
624         maillock.h \
625         ndir.h \
626         netdb.h \
627         netgroup.h \
628         netinet/in_systm.h \
629         pam/pam_appl.h \
630         paths.h \
631         pty.h \
632         readpassphrase.h \
633         rpc/types.h \
634         security/pam_appl.h \
635         shadow.h \
636         stddef.h \
637         stdint.h \
638         string.h \
639         strings.h \
640         sys/audit.h \
641         sys/bitypes.h \
642         sys/bsdtty.h \
643         sys/cdefs.h \
644         sys/dir.h \
645         sys/mman.h \
646         sys/ndir.h \
647         sys/prctl.h \
648         sys/pstat.h \
649         sys/select.h \
650         sys/stat.h \
651         sys/stream.h \
652         sys/stropts.h \
653         sys/strtio.h \
654         sys/sysmacros.h \
655         sys/time.h \
656         sys/timers.h \
657         sys/un.h \
658         time.h \
659         tmpdir.h \
660         ttyent.h \
661         unistd.h \
662         usersec.h \
663         util.h \
664         utime.h \
665         utmp.h \
666         utmpx.h \
667         vis.h \
668 )
669
670 # sys/ptms.h requires sys/stream.h to be included first on Solaris
671 AC_CHECK_HEADERS(sys/ptms.h, [], [], [
672 #ifdef HAVE_SYS_STREAM_H
673 # include <sys/stream.h>
674 #endif
675 ])
676
677 # Checks for libraries.
678 AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
679 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
680
681 dnl IRIX and Solaris 2.5.1 have dirname() in libgen
682 AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
683         AC_CHECK_LIB(gen, dirname,[
684                 AC_CACHE_CHECK([for broken dirname],
685                         ac_cv_have_broken_dirname, [
686                         save_LIBS="$LIBS"
687                         LIBS="$LIBS -lgen"
688                         AC_TRY_RUN(
689                                 [
690 #include <libgen.h>
691 #include <string.h>
692
693 int main(int argc, char **argv) {
694     char *s, buf[32];
695
696     strncpy(buf,"/etc", 32);
697     s = dirname(buf);
698     if (!s || strncmp(s, "/", 32) != 0) {
699         exit(1);
700     } else {
701         exit(0);
702     }
703 }
704                                 ],
705                                 [ ac_cv_have_broken_dirname="no" ],
706                                 [ ac_cv_have_broken_dirname="yes" ]
707                         )
708                         LIBS="$save_LIBS"
709                 ])
710                 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
711                         LIBS="$LIBS -lgen"
712                         AC_DEFINE(HAVE_DIRNAME)
713                         AC_CHECK_HEADERS(libgen.h)
714                 fi
715         ])
716 ])
717
718 AC_CHECK_FUNC(getspnam, ,
719         AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
720 AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME))
721
722 dnl zlib is required
723 AC_ARG_WITH(zlib,
724         [  --with-zlib=PATH        Use zlib in PATH],
725         [ if test "x$withval" = "xno" ; then
726                 AC_MSG_ERROR([*** zlib is required ***])
727           elif test "x$withval" != "xyes"; then
728                 if test -d "$withval/lib"; then
729                         if test -n "${need_dash_r}"; then
730                                 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
731                         else
732                                 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
733                         fi
734                 else
735                         if test -n "${need_dash_r}"; then
736                                 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
737                         else
738                                 LDFLAGS="-L${withval} ${LDFLAGS}"
739                         fi
740                 fi
741                 if test -d "$withval/include"; then
742                         CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
743                 else
744                         CPPFLAGS="-I${withval} ${CPPFLAGS}"
745                 fi
746         fi ]
747 )
748
749 AC_CHECK_LIB(z, deflate, ,
750         [
751                 saved_CPPFLAGS="$CPPFLAGS"
752                 saved_LDFLAGS="$LDFLAGS"
753                 save_LIBS="$LIBS"
754                 dnl Check default zlib install dir
755                 if test -n "${need_dash_r}"; then
756                         LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
757                 else
758                         LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
759                 fi
760                 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
761                 LIBS="$LIBS -lz"
762                 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
763                         [
764                                 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
765                         ]
766                 )
767         ]
768 )
769 AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
770
771 AC_ARG_WITH(zlib-version-check,
772         [  --without-zlib-version-check Disable zlib version check],
773         [  if test "x$withval" = "xno" ; then
774                 zlib_check_nonfatal=1
775            fi
776         ]
777 )
778
779 AC_MSG_CHECKING(for possibly buggy zlib)
780 AC_RUN_IFELSE([AC_LANG_SOURCE([[
781 #include <stdio.h>
782 #include <zlib.h>
783 int main()
784 {
785         int a=0, b=0, c=0, d=0, n, v;
786         n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
787         if (n != 3 && n != 4)
788                 exit(1);
789         v = a*1000000 + b*10000 + c*100 + d;
790         fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
791
792         /* 1.1.4 is OK */
793         if (a == 1 && b == 1 && c >= 4)
794                 exit(0);
795
796         /* 1.2.1.2 and up are OK */
797         if (v >= 1020102)
798                 exit(0);
799
800         exit(2);
801 }
802         ]])],
803         AC_MSG_RESULT(no),
804         [ AC_MSG_RESULT(yes)
805           if test -z "$zlib_check_nonfatal" ; then
806                 AC_MSG_ERROR([*** zlib too old - check config.log ***
807 Your reported zlib version has known security problems.  It's possible your
808 vendor has fixed these problems without changing the version number.  If you
809 are sure this is the case, you can disable the check by running
810 "./configure --without-zlib-version-check".
811 If you are in doubt, upgrade zlib to version 1.2.1.2 or greater.
812 See http://www.gzip.org/zlib/ for details.])
813           else
814                 AC_MSG_WARN([zlib version may have security problems])
815           fi
816         ],
817         [       AC_MSG_WARN([cross compiling: not checking zlib version]) ]
818 )
819
820 dnl UnixWare 2.x
821 AC_CHECK_FUNC(strcasecmp,
822         [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
823 )
824 AC_CHECK_FUNC(utimes,
825         [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
826                                         LIBS="$LIBS -lc89"]) ]
827 )
828
829 dnl    Checks for libutil functions
830 AC_CHECK_HEADERS(libutil.h)
831 AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
832 AC_CHECK_FUNCS(logout updwtmp logwtmp)
833
834 AC_FUNC_STRFTIME
835
836 # Check for ALTDIRFUNC glob() extension
837 AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
838 AC_EGREP_CPP(FOUNDIT,
839         [
840                 #include <glob.h>
841                 #ifdef GLOB_ALTDIRFUNC
842                 FOUNDIT
843                 #endif
844         ],
845         [
846                 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
847                 AC_MSG_RESULT(yes)
848         ],
849         [
850                 AC_MSG_RESULT(no)
851         ]
852 )
853
854 # Check for g.gl_matchc glob() extension
855 AC_MSG_CHECKING(for gl_matchc field in glob_t)
856 AC_EGREP_CPP(FOUNDIT,
857         [
858                 #include <glob.h>
859                 int main(void){glob_t g; g.gl_matchc = 1;}
860         ],
861         [
862                 AC_DEFINE(GLOB_HAS_GL_MATCHC)
863                 AC_MSG_RESULT(yes)
864         ],
865         [
866                 AC_MSG_RESULT(no)
867         ]
868 )
869
870 AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
871 AC_RUN_IFELSE(
872         [AC_LANG_SOURCE([[
873 #include <sys/types.h>
874 #include <dirent.h>
875 int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
876         ]])],
877         [AC_MSG_RESULT(yes)],
878         [
879                 AC_MSG_RESULT(no)
880                 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
881         ],
882         [
883                 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
884                 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
885         ]
886 )
887
888 AC_MSG_CHECKING([for /proc/pid/fd directory])
889 if test -d "/proc/$$/fd" ; then
890         AC_DEFINE(HAVE_PROC_PID)
891         AC_MSG_RESULT(yes)
892 else
893         AC_MSG_RESULT(no)
894 fi
895
896 # Check whether user wants S/Key support
897 SKEY_MSG="no"
898 AC_ARG_WITH(skey,
899         [  --with-skey[[=PATH]]      Enable S/Key support (optionally in PATH)],
900         [
901                 if test "x$withval" != "xno" ; then
902
903                         if test "x$withval" != "xyes" ; then
904                                 CPPFLAGS="$CPPFLAGS -I${withval}/include"
905                                 LDFLAGS="$LDFLAGS -L${withval}/lib"
906                         fi
907
908                         AC_DEFINE(SKEY)
909                         LIBS="-lskey $LIBS"
910                         SKEY_MSG="yes"
911
912                         AC_MSG_CHECKING([for s/key support])
913                         AC_TRY_RUN(
914                                 [
915 #include <stdio.h>
916 #include <skey.h>
917 int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
918                                 ],
919                                 [AC_MSG_RESULT(yes)],
920                                 [
921                                         AC_MSG_RESULT(no)
922                                         AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
923                                 ])
924                         AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
925                         AC_TRY_COMPILE(
926                                 [#include <stdio.h>
927                                  #include <skey.h>],
928                                 [(void)skeychallenge(NULL,"name","",0);],
929                                 [AC_MSG_RESULT(yes)
930                                  AC_DEFINE(SKEYCHALLENGE_4ARG)],
931                                 [AC_MSG_RESULT(no)]
932                         )
933                 fi
934         ]
935 )
936
937 # Check whether user wants TCP wrappers support
938 TCPW_MSG="no"
939 AC_ARG_WITH(tcp-wrappers,
940         [  --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
941         [
942                 if test "x$withval" != "xno" ; then
943                         saved_LIBS="$LIBS"
944                         saved_LDFLAGS="$LDFLAGS"
945                         saved_CPPFLAGS="$CPPFLAGS"
946                         if test -n "${withval}" && \
947                             test "x${withval}" != "xyes"; then
948                                 if test -d "${withval}/lib"; then
949                                         if test -n "${need_dash_r}"; then
950                                                 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
951                                         else
952                                                 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
953                                         fi
954                                 else
955                                         if test -n "${need_dash_r}"; then
956                                                 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
957                                         else
958                                                 LDFLAGS="-L${withval} ${LDFLAGS}"
959                                         fi
960                                 fi
961                                 if test -d "${withval}/include"; then
962                                         CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
963                                 else
964                                         CPPFLAGS="-I${withval} ${CPPFLAGS}"
965                                 fi
966                         fi
967                         LIBWRAP="-lwrap"
968                         LIBS="$LIBWRAP $LIBS"
969                         AC_MSG_CHECKING(for libwrap)
970                         AC_TRY_LINK(
971                                 [
972 #include <sys/types.h>
973 #include <sys/socket.h>
974 #include <netinet/in.h>
975 #include <tcpd.h>
976                                         int deny_severity = 0, allow_severity = 0;
977                                 ],
978                                 [hosts_access(0);],
979                                 [
980                                         AC_MSG_RESULT(yes)
981                                         AC_DEFINE(LIBWRAP)
982                                         AC_SUBST(LIBWRAP)
983                                         TCPW_MSG="yes"
984                                 ],
985                                 [
986                                         AC_MSG_ERROR([*** libwrap missing])
987                                 ]
988                         )
989                         LIBS="$saved_LIBS"
990                 fi
991         ]
992 )
993
994 # Check whether user wants libedit support
995 LIBEDIT_MSG="no"
996 AC_ARG_WITH(libedit,
997         [  --with-libedit[[=PATH]]   Enable libedit support for sftp],
998         [ if test "x$withval" != "xno" ; then
999                 if test "x$withval" != "xyes"; then
1000                         CPPFLAGS="$CPPFLAGS -I$withval/include"
1001                         LDFLAGS="$LDFLAGS -L$withval/lib"
1002                 fi
1003                 AC_CHECK_LIB(edit, el_init,
1004                         [ AC_DEFINE(USE_LIBEDIT, [], [Use libedit for sftp])
1005                           LIBEDIT="-ledit -lcurses"
1006                           LIBEDIT_MSG="yes"
1007                           AC_SUBST(LIBEDIT)
1008                         ],
1009                         [ AC_MSG_ERROR(libedit not found) ],
1010                         [ -lcurses ]
1011                 )
1012         fi ]
1013 )
1014
1015 AUDIT_MODULE=none
1016 AC_ARG_WITH(audit,
1017         [  --with-audit=module     Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1018         [
1019           AC_MSG_CHECKING(for supported audit module)
1020           case "$withval" in
1021           bsm)
1022                 AC_MSG_RESULT(bsm)
1023                 AUDIT_MODULE=bsm
1024                 dnl    Checks for headers, libs and functions
1025                 AC_CHECK_HEADERS(bsm/audit.h, [],
1026                     [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
1027                 AC_CHECK_LIB(bsm, getaudit, [],
1028                     [AC_MSG_ERROR(BSM enabled and required library not found)])
1029                 AC_CHECK_FUNCS(getaudit, [],
1030                     [AC_MSG_ERROR(BSM enabled and required function not found)])
1031                 # These are optional
1032                 AC_CHECK_FUNCS(getaudit_addr)
1033                 AC_DEFINE(USE_BSM_AUDIT, [], [Use BSM audit module])
1034                 ;;
1035           debug)
1036                 AUDIT_MODULE=debug
1037                 AC_MSG_RESULT(debug)
1038                 AC_DEFINE(SSH_AUDIT_EVENTS, [], Use audit debugging module)
1039                 ;;
1040           *)
1041                 AC_MSG_ERROR([Unknown audit module $withval])
1042                 ;;
1043         esac ]
1044 )
1045
1046 dnl    Checks for library functions. Please keep in alphabetical order
1047 AC_CHECK_FUNCS( \
1048         arc4random \
1049         b64_ntop \
1050         __b64_ntop \
1051         b64_pton \
1052         __b64_pton \
1053         bcopy \
1054         bindresvport_sa \
1055         clock \
1056         closefrom \
1057         dirfd \
1058         fchdir \
1059         fchmod \
1060         fchown \
1061         freeaddrinfo \
1062         futimes \
1063         getaddrinfo \
1064         getcwd \
1065         getgrouplist \
1066         getnameinfo \
1067         getopt \
1068         getpeereid \
1069         _getpty \
1070         getrlimit \
1071         getttyent \
1072         glob \
1073         inet_aton \
1074         inet_ntoa \
1075         inet_ntop \
1076         innetgr \
1077         login_getcapbool \
1078         md5_crypt \
1079         memmove \
1080         mkdtemp \
1081         mmap \
1082         ngetaddrinfo \
1083         nsleep \
1084         ogetaddrinfo \
1085         openlog_r \
1086         openpty \
1087         prctl \
1088         pstat \
1089         readpassphrase \
1090         realpath \
1091         recvmsg \
1092         rresvport_af \
1093         sendmsg \
1094         setdtablesize \
1095         setegid \
1096         setenv \
1097         seteuid \
1098         setgroups \
1099         setlogin \
1100         setpcred \
1101         setproctitle \
1102         setregid \
1103         setreuid \
1104         setrlimit \
1105         setsid \
1106         setvbuf \
1107         sigaction \
1108         sigvec \
1109         snprintf \
1110         socketpair \
1111         strdup \
1112         strerror \
1113         strlcat \
1114         strlcpy \
1115         strmode \
1116         strnvis \
1117         strtonum \
1118         strtoll \
1119         strtoul \
1120         sysconf \
1121         tcgetpgrp \
1122         truncate \
1123         unsetenv \
1124         updwtmpx \
1125         utimes \
1126         vhangup \
1127         vsnprintf \
1128         waitpid \
1129 )
1130
1131 # IRIX has a const char return value for gai_strerror()
1132 AC_CHECK_FUNCS(gai_strerror,[
1133         AC_DEFINE(HAVE_GAI_STRERROR)
1134         AC_TRY_COMPILE([
1135 #include <sys/types.h>
1136 #include <sys/socket.h>
1137 #include <netdb.h>
1138
1139 const char *gai_strerror(int);],[
1140 char *str;
1141
1142 str = gai_strerror(0);],[
1143                 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1144                 [Define if gai_strerror() returns const char *])])])
1145
1146 AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP))
1147
1148 dnl Make sure prototypes are defined for these before using them.
1149 AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
1150 AC_CHECK_DECL(strsep,
1151         [AC_CHECK_FUNCS(strsep)],
1152         [],
1153         [
1154 #ifdef HAVE_STRING_H
1155 # include <string.h>
1156 #endif
1157         ])
1158
1159 dnl tcsendbreak might be a macro
1160 AC_CHECK_DECL(tcsendbreak,
1161         [AC_DEFINE(HAVE_TCSENDBREAK)],
1162         [AC_CHECK_FUNCS(tcsendbreak)],
1163         [#include <termios.h>]
1164 )
1165
1166 AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1167
1168 AC_CHECK_FUNCS(setresuid, [
1169         dnl Some platorms have setresuid that isn't implemented, test for this
1170         AC_MSG_CHECKING(if setresuid seems to work)
1171         AC_RUN_IFELSE(
1172                 [AC_LANG_SOURCE([[
1173 #include <stdlib.h>
1174 #include <errno.h>
1175 int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
1176                 ]])],
1177                 [AC_MSG_RESULT(yes)],
1178                 [AC_DEFINE(BROKEN_SETRESUID)
1179                  AC_MSG_RESULT(not implemented)],
1180                 [AC_MSG_WARN([cross compiling: not checking setresuid])]
1181         )
1182 ])
1183
1184 AC_CHECK_FUNCS(setresgid, [
1185         dnl Some platorms have setresgid that isn't implemented, test for this
1186         AC_MSG_CHECKING(if setresgid seems to work)
1187         AC_RUN_IFELSE(
1188                 [AC_LANG_SOURCE([[
1189 #include <stdlib.h>
1190 #include <errno.h>
1191 int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
1192                 ]])],
1193                 [AC_MSG_RESULT(yes)],
1194                 [AC_DEFINE(BROKEN_SETRESGID)
1195                  AC_MSG_RESULT(not implemented)],
1196                 [AC_MSG_WARN([cross compiling: not checking setresuid])]
1197         )
1198 ])
1199
1200 dnl    Checks for time functions
1201 AC_CHECK_FUNCS(gettimeofday time)
1202 dnl    Checks for utmp functions
1203 AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
1204 AC_CHECK_FUNCS(utmpname)
1205 dnl    Checks for utmpx functions
1206 AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
1207 AC_CHECK_FUNCS(setutxent utmpxname)
1208
1209 AC_CHECK_FUNC(daemon,
1210         [AC_DEFINE(HAVE_DAEMON)],
1211         [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
1212 )
1213
1214 AC_CHECK_FUNC(getpagesize,
1215         [AC_DEFINE(HAVE_GETPAGESIZE)],
1216         [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
1217 )
1218
1219 # Check for broken snprintf
1220 if test "x$ac_cv_func_snprintf" = "xyes" ; then
1221         AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
1222         AC_RUN_IFELSE(
1223                 [AC_LANG_SOURCE([[
1224 #include <stdio.h>
1225 int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
1226                 ]])],
1227                 [AC_MSG_RESULT(yes)],
1228                 [
1229                         AC_MSG_RESULT(no)
1230                         AC_DEFINE(BROKEN_SNPRINTF)
1231                         AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
1232                 ],
1233                 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
1234         )
1235 fi
1236
1237 # Check for missing getpeereid (or equiv) support
1238 NO_PEERCHECK=""
1239 if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1240         AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1241         AC_TRY_COMPILE(
1242                 [#include <sys/types.h>
1243                  #include <sys/socket.h>],
1244                 [int i = SO_PEERCRED;],
1245                 [ AC_MSG_RESULT(yes)
1246                   AC_DEFINE(HAVE_SO_PEERCRED, [], [Have PEERCRED socket option])
1247                 ],
1248                 [AC_MSG_RESULT(no)
1249                 NO_PEERCHECK=1]
1250         )
1251 fi
1252
1253 dnl see whether mkstemp() requires XXXXXX
1254 if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1255 AC_MSG_CHECKING([for (overly) strict mkstemp])
1256 AC_TRY_RUN(
1257         [
1258 #include <stdlib.h>
1259 main() { char template[]="conftest.mkstemp-test";
1260 if (mkstemp(template) == -1)
1261         exit(1);
1262 unlink(template); exit(0);
1263 }
1264         ],
1265         [
1266                 AC_MSG_RESULT(no)
1267         ],
1268         [
1269                 AC_MSG_RESULT(yes)
1270                 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1271         ],
1272         [
1273                 AC_MSG_RESULT(yes)
1274                 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1275         ]
1276 )
1277 fi
1278
1279 dnl make sure that openpty does not reacquire controlling terminal
1280 if test ! -z "$check_for_openpty_ctty_bug"; then
1281         AC_MSG_CHECKING(if openpty correctly handles controlling tty)
1282         AC_TRY_RUN(
1283                 [
1284 #include <stdio.h>
1285 #include <sys/fcntl.h>
1286 #include <sys/types.h>
1287 #include <sys/wait.h>
1288
1289 int
1290 main()
1291 {
1292         pid_t pid;
1293         int fd, ptyfd, ttyfd, status;
1294
1295         pid = fork();
1296         if (pid < 0) {          /* failed */
1297                 exit(1);
1298         } else if (pid > 0) {   /* parent */
1299                 waitpid(pid, &status, 0);
1300                 if (WIFEXITED(status))
1301                         exit(WEXITSTATUS(status));
1302                 else
1303                         exit(2);
1304         } else {                /* child */
1305                 close(0); close(1); close(2);
1306                 setsid();
1307                 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1308                 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1309                 if (fd >= 0)
1310                         exit(3);        /* Acquired ctty: broken */
1311                 else
1312                         exit(0);        /* Did not acquire ctty: OK */
1313         }
1314 }
1315                 ],
1316                 [
1317                         AC_MSG_RESULT(yes)
1318                 ],
1319                 [
1320                         AC_MSG_RESULT(no)
1321                         AC_DEFINE(SSHD_ACQUIRES_CTTY)
1322                 ]
1323         )
1324 fi
1325
1326 if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1327     test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
1328         AC_MSG_CHECKING(if getaddrinfo seems to work)
1329         AC_TRY_RUN(
1330                 [
1331 #include <stdio.h>
1332 #include <sys/socket.h>
1333 #include <netdb.h>
1334 #include <errno.h>
1335 #include <netinet/in.h>
1336
1337 #define TEST_PORT "2222"
1338
1339 int
1340 main(void)
1341 {
1342         int err, sock;
1343         struct addrinfo *gai_ai, *ai, hints;
1344         char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1345
1346         memset(&hints, 0, sizeof(hints));
1347         hints.ai_family = PF_UNSPEC;
1348         hints.ai_socktype = SOCK_STREAM;
1349         hints.ai_flags = AI_PASSIVE;
1350
1351         err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1352         if (err != 0) {
1353                 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1354                 exit(1);
1355         }
1356
1357         for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1358                 if (ai->ai_family != AF_INET6)
1359                         continue;
1360
1361                 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1362                     sizeof(ntop), strport, sizeof(strport),
1363                     NI_NUMERICHOST|NI_NUMERICSERV);
1364
1365                 if (err != 0) {
1366                         if (err == EAI_SYSTEM)
1367                                 perror("getnameinfo EAI_SYSTEM");
1368                         else
1369                                 fprintf(stderr, "getnameinfo failed: %s\n",
1370                                     gai_strerror(err));
1371                         exit(2);
1372                 }
1373
1374                 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1375                 if (sock < 0)
1376                         perror("socket");
1377                 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1378                         if (errno == EBADF)
1379                                 exit(3);
1380                 }
1381         }
1382         exit(0);
1383 }
1384                 ],
1385                 [
1386                         AC_MSG_RESULT(yes)
1387                 ],
1388                 [
1389                         AC_MSG_RESULT(no)
1390                         AC_DEFINE(BROKEN_GETADDRINFO)
1391                 ]
1392         )
1393 fi
1394
1395 if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1396     test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
1397         AC_MSG_CHECKING(if getaddrinfo seems to work)
1398         AC_TRY_RUN(
1399                 [
1400 #include <stdio.h>
1401 #include <sys/socket.h>
1402 #include <netdb.h>
1403 #include <errno.h>
1404 #include <netinet/in.h>
1405
1406 #define TEST_PORT "2222"
1407
1408 int
1409 main(void)
1410 {
1411         int err, sock;
1412         struct addrinfo *gai_ai, *ai, hints;
1413         char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1414
1415         memset(&hints, 0, sizeof(hints));
1416         hints.ai_family = PF_UNSPEC;
1417         hints.ai_socktype = SOCK_STREAM;
1418         hints.ai_flags = AI_PASSIVE;
1419
1420         err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1421         if (err != 0) {
1422                 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1423                 exit(1);
1424         }
1425
1426         for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1427                 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1428                         continue;
1429
1430                 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1431                     sizeof(ntop), strport, sizeof(strport),
1432                     NI_NUMERICHOST|NI_NUMERICSERV);
1433
1434                 if (ai->ai_family == AF_INET && err != 0) {
1435                         perror("getnameinfo");
1436                         exit(2);
1437                 }
1438         }
1439         exit(0);
1440 }
1441                 ],
1442                 [
1443                         AC_MSG_RESULT(yes)
1444                         AC_DEFINE(AIX_GETNAMEINFO_HACK, [],
1445 [Define if you have a getaddrinfo that fails for the all-zeros IPv6 address])
1446                 ],
1447                 [
1448                         AC_MSG_RESULT(no)
1449                         AC_DEFINE(BROKEN_GETADDRINFO)
1450                 ]
1451         )
1452 fi
1453
1454 if test "x$check_for_conflicting_getspnam" = "x1"; then
1455         AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1456         AC_COMPILE_IFELSE(
1457                 [
1458 #include <shadow.h>
1459 int main(void) {exit(0);}
1460                 ],
1461                 [
1462                         AC_MSG_RESULT(no)
1463                 ],
1464                 [
1465                         AC_MSG_RESULT(yes)
1466                         AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1467                             [Conflicting defs for getspnam])
1468                 ]
1469         )
1470 fi
1471
1472 AC_FUNC_GETPGRP
1473
1474 # Check for PAM libs
1475 PAM_MSG="no"
1476 AC_ARG_WITH(pam,
1477         [  --with-pam              Enable PAM support ],
1478         [
1479                 if test "x$withval" != "xno" ; then
1480                         if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1481                            test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
1482                                 AC_MSG_ERROR([PAM headers not found])
1483                         fi
1484
1485                         AC_CHECK_LIB(dl, dlopen, , )
1486                         AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1487                         AC_CHECK_FUNCS(pam_getenvlist)
1488                         AC_CHECK_FUNCS(pam_putenv)
1489
1490                         PAM_MSG="yes"
1491
1492                         AC_DEFINE(USE_PAM)
1493                         if test $ac_cv_lib_dl_dlopen = yes; then
1494                                 LIBPAM="-lpam -ldl"
1495                         else
1496                                 LIBPAM="-lpam"
1497                         fi
1498                         AC_SUBST(LIBPAM)
1499                 fi
1500         ]
1501 )
1502
1503 # Check for older PAM
1504 if test "x$PAM_MSG" = "xyes" ; then
1505         # Check PAM strerror arguments (old PAM)
1506         AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1507         AC_TRY_COMPILE(
1508                 [
1509 #include <stdlib.h>
1510 #if defined(HAVE_SECURITY_PAM_APPL_H)
1511 #include <security/pam_appl.h>
1512 #elif defined (HAVE_PAM_PAM_APPL_H)
1513 #include <pam/pam_appl.h>
1514 #endif
1515                 ],
1516                 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
1517                 [AC_MSG_RESULT(no)],
1518                 [
1519                         AC_DEFINE(HAVE_OLD_PAM)
1520                         AC_MSG_RESULT(yes)
1521                         PAM_MSG="yes (old library)"
1522                 ]
1523         )
1524 fi
1525
1526 # Search for OpenSSL
1527 saved_CPPFLAGS="$CPPFLAGS"
1528 saved_LDFLAGS="$LDFLAGS"
1529 AC_ARG_WITH(ssl-dir,
1530         [  --with-ssl-dir=PATH     Specify path to OpenSSL installation ],
1531         [
1532                 if test "x$withval" != "xno" ; then
1533                         case "$withval" in
1534                                 # Relative paths
1535                                 ./*|../*)       withval="`pwd`/$withval"
1536                         esac
1537                         if test -d "$withval/lib"; then
1538                                 if test -n "${need_dash_r}"; then
1539                                         LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1540                                 else
1541                                         LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1542                                 fi
1543                         else
1544                                 if test -n "${need_dash_r}"; then
1545                                         LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1546                                 else
1547                                         LDFLAGS="-L${withval} ${LDFLAGS}"
1548                                 fi
1549                         fi
1550                         if test -d "$withval/include"; then
1551                                 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1552                         else
1553                                 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1554                         fi
1555                 fi
1556         ]
1557 )
1558 LIBS="-lcrypto $LIBS"
1559 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1560         [
1561                 dnl Check default openssl install dir
1562                 if test -n "${need_dash_r}"; then
1563                         LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
1564                 else
1565                         LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
1566                 fi
1567                 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1568                 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1569                         [
1570                                 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1571                         ]
1572                 )
1573         ]
1574 )
1575
1576 # Determine OpenSSL header version
1577 AC_MSG_CHECKING([OpenSSL header version])
1578 AC_RUN_IFELSE(
1579         [AC_LANG_SOURCE([[
1580 #include <stdio.h>
1581 #include <string.h>
1582 #include <openssl/opensslv.h>
1583 #define DATA "conftest.sslincver"
1584 int main(void) {
1585         FILE *fd;
1586         int rc;
1587
1588         fd = fopen(DATA,"w");
1589         if(fd == NULL)
1590                 exit(1);
1591
1592         if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1593                 exit(1);
1594
1595         exit(0);
1596 }
1597         ]])],
1598         [
1599                 ssl_header_ver=`cat conftest.sslincver`
1600                 AC_MSG_RESULT($ssl_header_ver)
1601         ],
1602         [
1603                 AC_MSG_RESULT(not found)
1604                 AC_MSG_ERROR(OpenSSL version header not found.)
1605         ],
1606         [
1607                 AC_MSG_WARN([cross compiling: not checking])
1608         ]
1609 )
1610
1611 # Determine OpenSSL library version
1612 AC_MSG_CHECKING([OpenSSL library version])
1613 AC_RUN_IFELSE(
1614         [AC_LANG_SOURCE([[
1615 #include <stdio.h>
1616 #include <string.h>
1617 #include <openssl/opensslv.h>
1618 #include <openssl/crypto.h>
1619 #define DATA "conftest.ssllibver"
1620 int main(void) {
1621         FILE *fd;
1622         int rc;
1623
1624         fd = fopen(DATA,"w");
1625         if(fd == NULL)
1626                 exit(1);
1627
1628         if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1629                 exit(1);
1630
1631         exit(0);
1632 }
1633         ]])],
1634         [
1635                 ssl_library_ver=`cat conftest.ssllibver`
1636                 AC_MSG_RESULT($ssl_library_ver)
1637         ],
1638         [
1639                 AC_MSG_RESULT(not found)
1640                 AC_MSG_ERROR(OpenSSL library not found.)
1641         ],
1642         [
1643                 AC_MSG_WARN([cross compiling: not checking])
1644         ]
1645 )
1646
1647 # Sanity check OpenSSL headers
1648 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1649 AC_RUN_IFELSE(
1650         [AC_LANG_SOURCE([[
1651 #include <string.h>
1652 #include <openssl/opensslv.h>
1653 int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
1654         ]])],
1655         [
1656                 AC_MSG_RESULT(yes)
1657         ],
1658         [
1659                 AC_MSG_RESULT(no)
1660                 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1661 Check config.log for details.
1662 Also see contrib/findssl.sh for help identifying header/library mismatches.])
1663         ],
1664         [
1665                 AC_MSG_WARN([cross compiling: not checking])
1666         ]
1667 )
1668
1669 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1670 # because the system crypt() is more featureful.
1671 if test "x$check_for_libcrypt_before" = "x1"; then
1672         AC_CHECK_LIB(crypt, crypt)
1673 fi
1674
1675 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
1676 # version in OpenSSL.
1677 if test "x$check_for_libcrypt_later" = "x1"; then
1678         AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
1679 fi
1680
1681
1682 ### Configure cryptographic random number support
1683
1684 # Check wheter OpenSSL seeds itself
1685 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
1686 AC_RUN_IFELSE(
1687         [AC_LANG_SOURCE([[
1688 #include <string.h>
1689 #include <openssl/rand.h>
1690 int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
1691         ]])],
1692         [
1693                 OPENSSL_SEEDS_ITSELF=yes
1694                 AC_MSG_RESULT(yes)
1695         ],
1696         [
1697                 AC_MSG_RESULT(no)
1698                 # Default to use of the rand helper if OpenSSL doesn't
1699                 # seed itself
1700                 USE_RAND_HELPER=yes
1701         ],
1702         [
1703                 AC_MSG_WARN([cross compiling: assuming yes])
1704                 # This is safe, since all recent OpenSSL versions will
1705                 # complain at runtime if not seeded correctly.
1706                 OPENSSL_SEEDS_ITSELF=yes
1707         ]
1708 )
1709
1710
1711 # Do we want to force the use of the rand helper?
1712 AC_ARG_WITH(rand-helper,
1713         [  --with-rand-helper      Use subprocess to gather strong randomness ],
1714         [
1715                 if test "x$withval" = "xno" ; then
1716                         # Force use of OpenSSL's internal RNG, even if
1717                         # the previous test showed it to be unseeded.
1718                         if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1719                                 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1720                                 OPENSSL_SEEDS_ITSELF=yes
1721                                 USE_RAND_HELPER=""
1722                         fi
1723                 else
1724                         USE_RAND_HELPER=yes
1725                 fi
1726         ],
1727 )
1728
1729 # Which randomness source do we use?
1730 if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
1731         # OpenSSL only
1732         AC_DEFINE(OPENSSL_PRNG_ONLY)
1733         RAND_MSG="OpenSSL internal ONLY"
1734         INSTALL_SSH_RAND_HELPER=""
1735 elif test ! -z "$USE_RAND_HELPER" ; then
1736         # install rand helper
1737         RAND_MSG="ssh-rand-helper"
1738         INSTALL_SSH_RAND_HELPER="yes"
1739 fi
1740 AC_SUBST(INSTALL_SSH_RAND_HELPER)
1741
1742 ### Configuration of ssh-rand-helper
1743
1744 # PRNGD TCP socket
1745 AC_ARG_WITH(prngd-port,
1746         [  --with-prngd-port=PORT  read entropy from PRNGD/EGD TCP localhost:PORT],
1747         [
1748                 case "$withval" in
1749                 no)
1750                         withval=""
1751                         ;;
1752                 [[0-9]]*)
1753                         ;;
1754                 *)
1755                         AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1756                         ;;
1757                 esac
1758                 if test ! -z "$withval" ; then
1759                         PRNGD_PORT="$withval"
1760                         AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
1761                 fi
1762         ]
1763 )
1764
1765 # PRNGD Unix domain socket
1766 AC_ARG_WITH(prngd-socket,
1767         [  --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1768         [
1769                 case "$withval" in
1770                 yes)
1771                         withval="/var/run/egd-pool"
1772                         ;;
1773                 no)
1774                         withval=""
1775                         ;;
1776                 /*)
1777                         ;;
1778                 *)
1779                         AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1780                         ;;
1781                 esac
1782
1783                 if test ! -z "$withval" ; then
1784                         if test ! -z "$PRNGD_PORT" ; then
1785                                 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1786                         fi
1787                         if test ! -r "$withval" ; then
1788                                 AC_MSG_WARN(Entropy socket is not readable)
1789                         fi
1790                         PRNGD_SOCKET="$withval"
1791                         AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1792                 fi
1793         ],
1794         [
1795                 # Check for existing socket only if we don't have a random device already
1796                 if test "$USE_RAND_HELPER" = yes ; then
1797                         AC_MSG_CHECKING(for PRNGD/EGD socket)
1798                         # Insert other locations here
1799                         for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1800                                 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1801                                         PRNGD_SOCKET="$sock"
1802                                         AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1803                                         break;
1804                                 fi
1805                         done
1806                         if test ! -z "$PRNGD_SOCKET" ; then
1807                                 AC_MSG_RESULT($PRNGD_SOCKET)
1808                         else
1809                                 AC_MSG_RESULT(not found)
1810                         fi
1811                 fi
1812         ]
1813 )
1814
1815 # Change default command timeout for hashing entropy source
1816 entropy_timeout=200
1817 AC_ARG_WITH(entropy-timeout,
1818         [  --with-entropy-timeout  Specify entropy gathering command timeout (msec)],
1819         [
1820                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
1821                     test "x${withval}" != "xyes"; then
1822                         entropy_timeout=$withval
1823                 fi
1824         ]
1825 )
1826 AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1827
1828 SSH_PRIVSEP_USER=sshd
1829 AC_ARG_WITH(privsep-user,
1830         [  --with-privsep-user=user Specify non-privileged user for privilege separation],
1831         [
1832                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
1833                     test "x${withval}" != "xyes"; then
1834                         SSH_PRIVSEP_USER=$withval
1835                 fi
1836         ]
1837 )
1838 AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
1839 AC_SUBST(SSH_PRIVSEP_USER)
1840
1841 # We do this little dance with the search path to insure
1842 # that programs that we select for use by installed programs
1843 # (which may be run by the super-user) come from trusted
1844 # locations before they come from the user's private area.
1845 # This should help avoid accidentally configuring some
1846 # random version of a program in someone's personal bin.
1847
1848 OPATH=$PATH
1849 PATH=/bin:/usr/bin
1850 test -h /bin 2> /dev/null && PATH=/usr/bin
1851 test -d /sbin && PATH=$PATH:/sbin
1852 test -d /usr/sbin && PATH=$PATH:/usr/sbin
1853 PATH=$PATH:/etc:$OPATH
1854
1855 # These programs are used by the command hashing source to gather entropy
1856 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1857 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1858 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1859 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1860 OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1861 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1862 OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1863 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1864 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1865 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1866 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1867 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1868 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1869 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1870 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1871 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
1872 # restore PATH
1873 PATH=$OPATH
1874
1875 # Where does ssh-rand-helper get its randomness from?
1876 INSTALL_SSH_PRNG_CMDS=""
1877 if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1878         if test ! -z "$PRNGD_PORT" ; then
1879                 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1880         elif test ! -z "$PRNGD_SOCKET" ; then
1881                 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1882         else
1883                 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1884                 RAND_HELPER_CMDHASH=yes
1885                 INSTALL_SSH_PRNG_CMDS="yes"
1886         fi
1887 fi
1888 AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1889
1890
1891 # Cheap hack to ensure NEWS-OS libraries are arranged right.
1892 if test ! -z "$SONY" ; then
1893   LIBS="$LIBS -liberty";
1894 fi
1895
1896 # Checks for data types
1897 AC_CHECK_SIZEOF(char, 1)
1898 AC_CHECK_SIZEOF(short int, 2)
1899 AC_CHECK_SIZEOF(int, 4)
1900 AC_CHECK_SIZEOF(long int, 4)
1901 AC_CHECK_SIZEOF(long long int, 8)
1902
1903 # Sanity check long long for some platforms (AIX)
1904 if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
1905         ac_cv_sizeof_long_long_int=0
1906 fi
1907
1908 # More checks for data types
1909 AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1910         AC_TRY_COMPILE(
1911                 [ #include <sys/types.h> ],
1912                 [ u_int a; a = 1;],
1913                 [ ac_cv_have_u_int="yes" ],
1914                 [ ac_cv_have_u_int="no" ]
1915         )
1916 ])
1917 if test "x$ac_cv_have_u_int" = "xyes" ; then
1918         AC_DEFINE(HAVE_U_INT)
1919         have_u_int=1
1920 fi
1921
1922 AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1923         AC_TRY_COMPILE(
1924                 [ #include <sys/types.h> ],
1925                 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1926                 [ ac_cv_have_intxx_t="yes" ],
1927                 [ ac_cv_have_intxx_t="no" ]
1928         )
1929 ])
1930 if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1931         AC_DEFINE(HAVE_INTXX_T)
1932         have_intxx_t=1
1933 fi
1934
1935 if (test -z "$have_intxx_t" && \
1936            test "x$ac_cv_header_stdint_h" = "xyes")
1937 then
1938     AC_MSG_CHECKING([for intXX_t types in stdint.h])
1939         AC_TRY_COMPILE(
1940                 [ #include <stdint.h> ],
1941                 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1942                 [
1943                         AC_DEFINE(HAVE_INTXX_T)
1944                         AC_MSG_RESULT(yes)
1945                 ],
1946                 [ AC_MSG_RESULT(no) ]
1947         )
1948 fi
1949
1950 AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1951         AC_TRY_COMPILE(
1952                 [
1953 #include <sys/types.h>
1954 #ifdef HAVE_STDINT_H
1955 # include <stdint.h>
1956 #endif
1957 #include <sys/socket.h>
1958 #ifdef HAVE_SYS_BITYPES_H
1959 # include <sys/bitypes.h>
1960 #endif
1961                 ],
1962                 [ int64_t a; a = 1;],
1963                 [ ac_cv_have_int64_t="yes" ],
1964                 [ ac_cv_have_int64_t="no" ]
1965         )
1966 ])
1967 if test "x$ac_cv_have_int64_t" = "xyes" ; then
1968         AC_DEFINE(HAVE_INT64_T)
1969 fi
1970
1971 AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1972         AC_TRY_COMPILE(
1973                 [ #include <sys/types.h> ],
1974                 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1975                 [ ac_cv_have_u_intxx_t="yes" ],
1976                 [ ac_cv_have_u_intxx_t="no" ]
1977         )
1978 ])
1979 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1980         AC_DEFINE(HAVE_U_INTXX_T)
1981         have_u_intxx_t=1
1982 fi
1983
1984 if test -z "$have_u_intxx_t" ; then
1985     AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1986         AC_TRY_COMPILE(
1987                 [ #include <sys/socket.h> ],
1988                 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1989                 [
1990                         AC_DEFINE(HAVE_U_INTXX_T)
1991                         AC_MSG_RESULT(yes)
1992                 ],
1993                 [ AC_MSG_RESULT(no) ]
1994         )
1995 fi
1996
1997 AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1998         AC_TRY_COMPILE(
1999                 [ #include <sys/types.h> ],
2000                 [ u_int64_t a; a = 1;],
2001                 [ ac_cv_have_u_int64_t="yes" ],
2002                 [ ac_cv_have_u_int64_t="no" ]
2003         )
2004 ])
2005 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
2006         AC_DEFINE(HAVE_U_INT64_T)
2007         have_u_int64_t=1
2008 fi
2009
2010 if test -z "$have_u_int64_t" ; then
2011     AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2012         AC_TRY_COMPILE(
2013                 [ #include <sys/bitypes.h> ],
2014                 [ u_int64_t a; a = 1],
2015                 [
2016                         AC_DEFINE(HAVE_U_INT64_T)
2017                         AC_MSG_RESULT(yes)
2018                 ],
2019                 [ AC_MSG_RESULT(no) ]
2020         )
2021 fi
2022
2023 if test -z "$have_u_intxx_t" ; then
2024         AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2025                 AC_TRY_COMPILE(
2026                         [
2027 #include <sys/types.h>
2028                         ],
2029                         [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
2030                         [ ac_cv_have_uintxx_t="yes" ],
2031                         [ ac_cv_have_uintxx_t="no" ]
2032                 )
2033         ])
2034         if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
2035                 AC_DEFINE(HAVE_UINTXX_T)
2036         fi
2037 fi
2038
2039 if test -z "$have_uintxx_t" ; then
2040     AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2041         AC_TRY_COMPILE(
2042                 [ #include <stdint.h> ],
2043                 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
2044                 [
2045                         AC_DEFINE(HAVE_UINTXX_T)
2046                         AC_MSG_RESULT(yes)
2047                 ],
2048                 [ AC_MSG_RESULT(no) ]
2049         )
2050 fi
2051
2052 if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
2053            test "x$ac_cv_header_sys_bitypes_h" = "xyes")
2054 then
2055         AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2056         AC_TRY_COMPILE(
2057                 [
2058 #include <sys/bitypes.h>
2059                 ],
2060                 [
2061                         int8_t a; int16_t b; int32_t c;
2062                         u_int8_t e; u_int16_t f; u_int32_t g;
2063                         a = b = c = e = f = g = 1;
2064                 ],
2065                 [
2066                         AC_DEFINE(HAVE_U_INTXX_T)
2067                         AC_DEFINE(HAVE_INTXX_T)
2068                         AC_MSG_RESULT(yes)
2069                 ],
2070                 [AC_MSG_RESULT(no)]
2071         )
2072 fi
2073
2074
2075 AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2076         AC_TRY_COMPILE(
2077                 [
2078 #include <sys/types.h>
2079                 ],
2080                 [ u_char foo; foo = 125; ],
2081                 [ ac_cv_have_u_char="yes" ],
2082                 [ ac_cv_have_u_char="no" ]
2083         )
2084 ])
2085 if test "x$ac_cv_have_u_char" = "xyes" ; then
2086         AC_DEFINE(HAVE_U_CHAR)
2087 fi
2088
2089 TYPE_SOCKLEN_T
2090
2091 AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
2092
2093 AC_CHECK_TYPES(in_addr_t,,,
2094 [#include <sys/types.h>
2095 #include <netinet/in.h>])
2096
2097 AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2098         AC_TRY_COMPILE(
2099                 [
2100 #include <sys/types.h>
2101                 ],
2102                 [ size_t foo; foo = 1235; ],
2103                 [ ac_cv_have_size_t="yes" ],
2104                 [ ac_cv_have_size_t="no" ]
2105         )
2106 ])
2107 if test "x$ac_cv_have_size_t" = "xyes" ; then
2108         AC_DEFINE(HAVE_SIZE_T)
2109 fi
2110
2111 AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2112         AC_TRY_COMPILE(
2113                 [
2114 #include <sys/types.h>
2115                 ],
2116                 [ ssize_t foo; foo = 1235; ],
2117                 [ ac_cv_have_ssize_t="yes" ],
2118                 [ ac_cv_have_ssize_t="no" ]
2119         )
2120 ])
2121 if test "x$ac_cv_have_ssize_t" = "xyes" ; then
2122         AC_DEFINE(HAVE_SSIZE_T)
2123 fi
2124
2125 AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2126         AC_TRY_COMPILE(
2127                 [
2128 #include <time.h>
2129                 ],
2130                 [ clock_t foo; foo = 1235; ],
2131                 [ ac_cv_have_clock_t="yes" ],
2132                 [ ac_cv_have_clock_t="no" ]
2133         )
2134 ])
2135 if test "x$ac_cv_have_clock_t" = "xyes" ; then
2136         AC_DEFINE(HAVE_CLOCK_T)
2137 fi
2138
2139 AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2140         AC_TRY_COMPILE(
2141                 [
2142 #include <sys/types.h>
2143 #include <sys/socket.h>
2144                 ],
2145                 [ sa_family_t foo; foo = 1235; ],
2146                 [ ac_cv_have_sa_family_t="yes" ],
2147                 [ AC_TRY_COMPILE(
2148                   [
2149 #include <sys/types.h>
2150 #include <sys/socket.h>
2151 #include <netinet/in.h>
2152                 ],
2153                 [ sa_family_t foo; foo = 1235; ],
2154                 [ ac_cv_have_sa_family_t="yes" ],
2155
2156                 [ ac_cv_have_sa_family_t="no" ]
2157         )]
2158         )
2159 ])
2160 if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
2161         AC_DEFINE(HAVE_SA_FAMILY_T)
2162 fi
2163
2164 AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2165         AC_TRY_COMPILE(
2166                 [
2167 #include <sys/types.h>
2168                 ],
2169                 [ pid_t foo; foo = 1235; ],
2170                 [ ac_cv_have_pid_t="yes" ],
2171                 [ ac_cv_have_pid_t="no" ]
2172         )
2173 ])
2174 if test "x$ac_cv_have_pid_t" = "xyes" ; then
2175         AC_DEFINE(HAVE_PID_T)
2176 fi
2177
2178 AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2179         AC_TRY_COMPILE(
2180                 [
2181 #include <sys/types.h>
2182                 ],
2183                 [ mode_t foo; foo = 1235; ],
2184                 [ ac_cv_have_mode_t="yes" ],
2185                 [ ac_cv_have_mode_t="no" ]
2186         )
2187 ])
2188 if test "x$ac_cv_have_mode_t" = "xyes" ; then
2189         AC_DEFINE(HAVE_MODE_T)
2190 fi
2191
2192
2193 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2194         AC_TRY_COMPILE(
2195                 [
2196 #include <sys/types.h>
2197 #include <sys/socket.h>
2198                 ],
2199                 [ struct sockaddr_storage s; ],
2200                 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2201                 [ ac_cv_have_struct_sockaddr_storage="no" ]
2202         )
2203 ])
2204 if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
2205         AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
2206 fi
2207
2208 AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2209         AC_TRY_COMPILE(
2210                 [
2211 #include <sys/types.h>
2212 #include <netinet/in.h>
2213                 ],
2214                 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2215                 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2216                 [ ac_cv_have_struct_sockaddr_in6="no" ]
2217         )
2218 ])
2219 if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
2220         AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
2221 fi
2222
2223 AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2224         AC_TRY_COMPILE(
2225                 [
2226 #include <sys/types.h>
2227 #include <netinet/in.h>
2228                 ],
2229                 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2230                 [ ac_cv_have_struct_in6_addr="yes" ],
2231                 [ ac_cv_have_struct_in6_addr="no" ]
2232         )
2233 ])
2234 if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
2235         AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
2236 fi
2237
2238 AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2239         AC_TRY_COMPILE(
2240                 [
2241 #include <sys/types.h>
2242 #include <sys/socket.h>
2243 #include <netdb.h>
2244                 ],
2245                 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2246                 [ ac_cv_have_struct_addrinfo="yes" ],
2247                 [ ac_cv_have_struct_addrinfo="no" ]
2248         )
2249 ])
2250 if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
2251         AC_DEFINE(HAVE_STRUCT_ADDRINFO)
2252 fi
2253
2254 AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2255         AC_TRY_COMPILE(
2256                 [ #include <sys/time.h> ],
2257                 [ struct timeval tv; tv.tv_sec = 1;],
2258                 [ ac_cv_have_struct_timeval="yes" ],
2259                 [ ac_cv_have_struct_timeval="no" ]
2260         )
2261 ])
2262 if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
2263         AC_DEFINE(HAVE_STRUCT_TIMEVAL)
2264         have_struct_timeval=1
2265 fi
2266
2267 AC_CHECK_TYPES(struct timespec)
2268
2269 # We need int64_t or else certian parts of the compile will fail.
2270 if test "x$ac_cv_have_int64_t" = "xno" && \
2271         test "x$ac_cv_sizeof_long_int" != "x8" && \
2272         test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
2273         echo "OpenSSH requires int64_t support.  Contact your vendor or install"
2274         echo "an alternative compiler (I.E., GCC) before continuing."
2275         echo ""
2276         exit 1;
2277 else
2278 dnl test snprintf (broken on SCO w/gcc)
2279         AC_RUN_IFELSE(
2280                 [AC_LANG_SOURCE([[
2281 #include <stdio.h>
2282 #include <string.h>
2283 #ifdef HAVE_SNPRINTF
2284 main()
2285 {
2286         char buf[50];
2287         char expected_out[50];
2288         int mazsize = 50 ;
2289 #if (SIZEOF_LONG_INT == 8)
2290         long int num = 0x7fffffffffffffff;
2291 #else
2292         long long num = 0x7fffffffffffffffll;
2293 #endif
2294         strcpy(expected_out, "9223372036854775807");
2295         snprintf(buf, mazsize, "%lld", num);
2296         if(strcmp(buf, expected_out) != 0)
2297                 exit(1);
2298         exit(0);
2299 }
2300 #else
2301 main() { exit(0); }
2302 #endif
2303                 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
2304                 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
2305         )
2306 fi
2307
2308 dnl Checks for structure members
2309 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2310 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2311 OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2312 OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2313 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
2314 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
2315 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2316 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
2317 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
2318 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2319 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2320 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2321 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
2322 OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2323 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2324 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2325 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
2326
2327 AC_CHECK_MEMBERS([struct stat.st_blksize])
2328
2329 AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2330                 ac_cv_have_ss_family_in_struct_ss, [
2331         AC_TRY_COMPILE(
2332                 [
2333 #include <sys/types.h>
2334 #include <sys/socket.h>
2335                 ],
2336                 [ struct sockaddr_storage s; s.ss_family = 1; ],
2337                 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2338                 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2339         )
2340 ])
2341 if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
2342         AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
2343 fi
2344
2345 AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2346                 ac_cv_have___ss_family_in_struct_ss, [
2347         AC_TRY_COMPILE(
2348                 [
2349 #include <sys/types.h>
2350 #include <sys/socket.h>
2351                 ],
2352                 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2353                 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2354                 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2355         )
2356 ])
2357 if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
2358         AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
2359 fi
2360
2361 AC_CACHE_CHECK([for pw_class field in struct passwd],
2362                 ac_cv_have_pw_class_in_struct_passwd, [
2363         AC_TRY_COMPILE(
2364                 [
2365 #include <pwd.h>
2366                 ],
2367                 [ struct passwd p; p.pw_class = 0; ],
2368                 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2369                 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2370         )
2371 ])
2372 if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
2373         AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
2374 fi
2375
2376 AC_CACHE_CHECK([for pw_expire field in struct passwd],
2377                 ac_cv_have_pw_expire_in_struct_passwd, [
2378         AC_TRY_COMPILE(
2379                 [
2380 #include <pwd.h>
2381                 ],
2382                 [ struct passwd p; p.pw_expire = 0; ],
2383                 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2384                 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2385         )
2386 ])
2387 if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
2388         AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
2389 fi
2390
2391 AC_CACHE_CHECK([for pw_change field in struct passwd],
2392                 ac_cv_have_pw_change_in_struct_passwd, [
2393         AC_TRY_COMPILE(
2394                 [
2395 #include <pwd.h>
2396                 ],
2397                 [ struct passwd p; p.pw_change = 0; ],
2398                 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2399                 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2400         )
2401 ])
2402 if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
2403         AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
2404 fi
2405
2406 dnl make sure we're using the real structure members and not defines
2407 AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2408                 ac_cv_have_accrights_in_msghdr, [
2409         AC_COMPILE_IFELSE(
2410                 [
2411 #include <sys/types.h>
2412 #include <sys/socket.h>
2413 #include <sys/uio.h>
2414 int main() {
2415 #ifdef msg_accrights
2416 #error "msg_accrights is a macro"
2417 exit(1);
2418 #endif
2419 struct msghdr m;
2420 m.msg_accrights = 0;
2421 exit(0);
2422 }
2423                 ],
2424                 [ ac_cv_have_accrights_in_msghdr="yes" ],
2425                 [ ac_cv_have_accrights_in_msghdr="no" ]
2426         )
2427 ])
2428 if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
2429         AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR)
2430 fi
2431
2432 AC_CACHE_CHECK([for msg_control field in struct msghdr],
2433                 ac_cv_have_control_in_msghdr, [
2434         AC_COMPILE_IFELSE(
2435                 [
2436 #include <sys/types.h>
2437 #include <sys/socket.h>
2438 #include <sys/uio.h>
2439 int main() {
2440 #ifdef msg_control
2441 #error "msg_control is a macro"
2442 exit(1);
2443 #endif
2444 struct msghdr m;
2445 m.msg_control = 0;
2446 exit(0);
2447 }
2448                 ],
2449                 [ ac_cv_have_control_in_msghdr="yes" ],
2450                 [ ac_cv_have_control_in_msghdr="no" ]
2451         )
2452 ])
2453 if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
2454         AC_DEFINE(HAVE_CONTROL_IN_MSGHDR)
2455 fi
2456
2457 AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
2458         AC_TRY_LINK([],
2459                 [ extern char *__progname; printf("%s", __progname); ],
2460                 [ ac_cv_libc_defines___progname="yes" ],
2461                 [ ac_cv_libc_defines___progname="no" ]
2462         )
2463 ])
2464 if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
2465         AC_DEFINE(HAVE___PROGNAME)
2466 fi
2467
2468 AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2469         AC_TRY_LINK([
2470 #include <stdio.h>
2471 ],
2472                 [ printf("%s", __FUNCTION__); ],
2473                 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2474                 [ ac_cv_cc_implements___FUNCTION__="no" ]
2475         )
2476 ])
2477 if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
2478         AC_DEFINE(HAVE___FUNCTION__)
2479 fi
2480
2481 AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2482         AC_TRY_LINK([
2483 #include <stdio.h>
2484 ],
2485                 [ printf("%s", __func__); ],
2486                 [ ac_cv_cc_implements___func__="yes" ],
2487                 [ ac_cv_cc_implements___func__="no" ]
2488         )
2489 ])
2490 if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
2491         AC_DEFINE(HAVE___func__)
2492 fi
2493
2494 AC_CACHE_CHECK([whether getopt has optreset support],
2495                 ac_cv_have_getopt_optreset, [
2496         AC_TRY_LINK(
2497                 [
2498 #include <getopt.h>
2499                 ],
2500                 [ extern int optreset; optreset = 0; ],
2501                 [ ac_cv_have_getopt_optreset="yes" ],
2502                 [ ac_cv_have_getopt_optreset="no" ]
2503         )
2504 ])
2505 if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
2506         AC_DEFINE(HAVE_GETOPT_OPTRESET)
2507 fi
2508
2509 AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
2510         AC_TRY_LINK([],
2511                 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
2512                 [ ac_cv_libc_defines_sys_errlist="yes" ],
2513                 [ ac_cv_libc_defines_sys_errlist="no" ]
2514         )
2515 ])
2516 if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
2517         AC_DEFINE(HAVE_SYS_ERRLIST)
2518 fi
2519
2520
2521 AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
2522         AC_TRY_LINK([],
2523                 [ extern int sys_nerr; printf("%i", sys_nerr);],
2524                 [ ac_cv_libc_defines_sys_nerr="yes" ],
2525                 [ ac_cv_libc_defines_sys_nerr="no" ]
2526         )
2527 ])
2528 if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
2529         AC_DEFINE(HAVE_SYS_NERR)
2530 fi
2531
2532 SCARD_MSG="no"
2533 # Check whether user wants sectok support
2534 AC_ARG_WITH(sectok,
2535         [  --with-sectok           Enable smartcard support using libsectok],
2536         [
2537                 if test "x$withval" != "xno" ; then
2538                         if test "x$withval" != "xyes" ; then
2539                                 CPPFLAGS="$CPPFLAGS -I${withval}"
2540                                 LDFLAGS="$LDFLAGS -L${withval}"
2541                                 if test ! -z "$need_dash_r" ; then
2542                                         LDFLAGS="$LDFLAGS -R${withval}"
2543                                 fi
2544                                 if test ! -z "$blibpath" ; then
2545                                         blibpath="$blibpath:${withval}"
2546                                 fi
2547                         fi
2548                         AC_CHECK_HEADERS(sectok.h)
2549                         if test "$ac_cv_header_sectok_h" != yes; then
2550                                 AC_MSG_ERROR(Can't find sectok.h)
2551                         fi
2552                         AC_CHECK_LIB(sectok, sectok_open)
2553                         if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2554                                 AC_MSG_ERROR(Can't find libsectok)
2555                         fi
2556                         AC_DEFINE(SMARTCARD)
2557                         AC_DEFINE(USE_SECTOK)
2558                         SCARD_MSG="yes, using sectok"
2559                 fi
2560         ]
2561 )
2562
2563 # Check whether user wants OpenSC support
2564 OPENSC_CONFIG="no"
2565 AC_ARG_WITH(opensc,
2566         [--with-opensc[[=PFX]]       Enable smartcard support using OpenSC (optionally in PATH)],
2567         [
2568             if test "x$withval" != "xno" ; then
2569                 if test "x$withval" != "xyes" ; then
2570                         OPENSC_CONFIG=$withval/bin/opensc-config
2571                 else
2572                         AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2573                 fi
2574                 if test "$OPENSC_CONFIG" != "no"; then
2575                         LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2576                         LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2577                         CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2578                         LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2579                         AC_DEFINE(SMARTCARD)
2580                         AC_DEFINE(USE_OPENSC)
2581                         SCARD_MSG="yes, using OpenSC"
2582                 fi
2583             fi
2584         ]
2585 )
2586
2587 # Check libraries needed by DNS fingerprint support
2588 AC_SEARCH_LIBS(getrrsetbyname, resolv,
2589         [AC_DEFINE(HAVE_GETRRSETBYNAME)],
2590         [
2591                 # Needed by our getrrsetbyname()
2592                 AC_SEARCH_LIBS(res_query, resolv)
2593                 AC_SEARCH_LIBS(dn_expand, resolv)
2594                 AC_MSG_CHECKING(if res_query will link)
2595                 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
2596                    [AC_MSG_RESULT(no)
2597                     saved_LIBS="$LIBS"
2598                     LIBS="$LIBS -lresolv"
2599                     AC_MSG_CHECKING(for res_query in -lresolv)
2600                     AC_LINK_IFELSE([
2601 #include <resolv.h>
2602 int main()
2603 {
2604         res_query (0, 0, 0, 0, 0);
2605         return 0;
2606 }
2607                         ],
2608                         [LIBS="$LIBS -lresolv"
2609                          AC_MSG_RESULT(yes)],
2610                         [LIBS="$saved_LIBS"
2611                          AC_MSG_RESULT(no)])
2612                     ])
2613                 AC_CHECK_FUNCS(_getshort _getlong)
2614                 AC_CHECK_DECLS([_getshort, _getlong], , ,
2615                     [#include <sys/types.h>
2616                     #include <arpa/nameser.h>])
2617                 AC_CHECK_MEMBER(HEADER.ad,
2618                         [AC_DEFINE(HAVE_HEADER_AD)],,
2619                         [#include <arpa/nameser.h>])
2620         ])
2621
2622 # Check whether user wants Kerberos 5 support
2623 KRB5_MSG="no"
2624 AC_ARG_WITH(kerberos5,
2625         [  --with-kerberos5=PATH   Enable Kerberos 5 support],
2626         [ if test "x$withval" != "xno" ; then
2627                 if test "x$withval" = "xyes" ; then
2628                         KRB5ROOT="/usr/local"
2629                 else
2630                         KRB5ROOT=${withval}
2631                 fi
2632
2633                 AC_DEFINE(KRB5)
2634                 KRB5_MSG="yes"
2635
2636                 AC_MSG_CHECKING(for krb5-config)
2637                 if test -x  $KRB5ROOT/bin/krb5-config ; then
2638                         KRB5CONF=$KRB5ROOT/bin/krb5-config
2639                         AC_MSG_RESULT($KRB5CONF)
2640
2641                         AC_MSG_CHECKING(for gssapi support)
2642                         if $KRB5CONF | grep gssapi >/dev/null ; then
2643                                 AC_MSG_RESULT(yes)
2644                                 AC_DEFINE(GSSAPI)
2645                                 k5confopts=gssapi
2646                         else
2647                                 AC_MSG_RESULT(no)
2648                                 k5confopts=""
2649                         fi
2650                         K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
2651                         K5LIBS="`$KRB5CONF --libs $k5confopts`"
2652                         CPPFLAGS="$CPPFLAGS $K5CFLAGS"
2653                         AC_MSG_CHECKING(whether we are using Heimdal)
2654                         AC_TRY_COMPILE([ #include <krb5.h> ],
2655                                        [ char *tmp = heimdal_version; ],
2656                                        [ AC_MSG_RESULT(yes)
2657                                          AC_DEFINE(HEIMDAL) ],
2658                                          AC_MSG_RESULT(no)
2659                         )
2660                 else
2661                         AC_MSG_RESULT(no)
2662                         CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
2663                         LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
2664                         AC_MSG_CHECKING(whether we are using Heimdal)
2665                         AC_TRY_COMPILE([ #include <krb5.h> ],
2666                                        [ char *tmp = heimdal_version; ],
2667                                        [ AC_MSG_RESULT(yes)
2668                                          AC_DEFINE(HEIMDAL)
2669                                          K5LIBS="-lkrb5 -ldes"
2670                                          K5LIBS="$K5LIBS -lcom_err -lasn1"
2671                                          AC_CHECK_LIB(roken, net_write,
2672                                            [K5LIBS="$K5LIBS -lroken"])
2673                                        ],
2674                                        [ AC_MSG_RESULT(no)
2675                                          K5LIBS="-lkrb5 -lk5crypto -lcom_err"
2676                                        ]
2677                         )
2678                         AC_SEARCH_LIBS(dn_expand, resolv)
2679
2680                         AC_CHECK_LIB(gssapi,gss_init_sec_context,
2681                                 [ AC_DEFINE(GSSAPI)
2682                                   K5LIBS="-lgssapi $K5LIBS" ],
2683                                 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
2684                                         [ AC_DEFINE(GSSAPI)
2685                                           K5LIBS="-lgssapi_krb5 $K5LIBS" ],
2686                                         AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
2687                                         $K5LIBS)
2688                                 ],
2689                                 $K5LIBS)
2690
2691                         AC_CHECK_HEADER(gssapi.h, ,
2692                                 [ unset ac_cv_header_gssapi_h
2693                                   CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2694                                   AC_CHECK_HEADERS(gssapi.h, ,
2695                                         AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
2696                                   )
2697                                 ]
2698                         )
2699
2700                         oldCPP="$CPPFLAGS"
2701                         CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2702                         AC_CHECK_HEADER(gssapi_krb5.h, ,
2703                                         [ CPPFLAGS="$oldCPP" ])
2704
2705                 fi
2706                 if test ! -z "$need_dash_r" ; then
2707                         LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
2708                 fi
2709                 if test ! -z "$blibpath" ; then
2710                         blibpath="$blibpath:${KRB5ROOT}/lib"
2711                 fi
2712         fi
2713
2714         AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
2715         AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
2716         AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
2717
2718         LIBS="$LIBS $K5LIBS"
2719         AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS))
2720         ]
2721 )
2722
2723 # Looking for programs, paths and files
2724
2725 PRIVSEP_PATH=/var/empty
2726 AC_ARG_WITH(privsep-path,
2727         [  --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
2728         [
2729                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
2730                     test "x${withval}" != "xyes"; then
2731                         PRIVSEP_PATH=$withval
2732                 fi
2733         ]
2734 )
2735 AC_SUBST(PRIVSEP_PATH)
2736
2737 AC_ARG_WITH(xauth,
2738         [  --with-xauth=PATH       Specify path to xauth program ],
2739         [
2740                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
2741                     test "x${withval}" != "xyes"; then
2742                         xauth_path=$withval
2743                 fi
2744         ],
2745         [
2746                 TestPath="$PATH"
2747                 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2748                 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2749                 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2750                 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2751                 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
2752                 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
2753                         xauth_path="/usr/openwin/bin/xauth"
2754                 fi
2755         ]
2756 )
2757
2758 STRIP_OPT=-s
2759 AC_ARG_ENABLE(strip,
2760         [  --disable-strip         Disable calling strip(1) on install],
2761         [
2762                 if test "x$enableval" = "xno" ; then
2763                         STRIP_OPT=
2764                 fi
2765         ]
2766 )
2767 AC_SUBST(STRIP_OPT)
2768
2769 if test -z "$xauth_path" ; then
2770         XAUTH_PATH="undefined"
2771         AC_SUBST(XAUTH_PATH)
2772 else
2773         AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
2774         XAUTH_PATH=$xauth_path
2775         AC_SUBST(XAUTH_PATH)
2776 fi
2777
2778 # Check for mail directory (last resort if we cannot get it from headers)
2779 if test ! -z "$MAIL" ; then
2780         maildir=`dirname $MAIL`
2781         AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
2782 fi
2783
2784 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
2785         AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
2786         disable_ptmx_check=yes
2787 fi
2788 if test -z "$no_dev_ptmx" ; then
2789         if test "x$disable_ptmx_check" != "xyes" ; then
2790                 AC_CHECK_FILE("/dev/ptmx",
2791                         [
2792                                 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
2793                                 have_dev_ptmx=1
2794                         ]
2795                 )
2796         fi
2797 fi
2798
2799 if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
2800         AC_CHECK_FILE("/dev/ptc",
2801                 [
2802                         AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
2803                         have_dev_ptc=1
2804                 ]
2805         )
2806 else
2807         AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
2808 fi
2809
2810 # Options from here on. Some of these are preset by platform above
2811 AC_ARG_WITH(mantype,
2812         [  --with-mantype=man|cat|doc  Set man page type],
2813         [
2814                 case "$withval" in
2815                 man|cat|doc)
2816                         MANTYPE=$withval
2817                         ;;
2818                 *)
2819                         AC_MSG_ERROR(invalid man type: $withval)
2820                         ;;
2821                 esac
2822         ]
2823 )
2824 if test -z "$MANTYPE"; then
2825         TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2826         AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
2827         if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2828                 MANTYPE=doc
2829         elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2830                 MANTYPE=man
2831         else
2832                 MANTYPE=cat
2833         fi
2834 fi
2835 AC_SUBST(MANTYPE)
2836 if test "$MANTYPE" = "doc"; then
2837         mansubdir=man;
2838 else
2839         mansubdir=$MANTYPE;
2840 fi
2841 AC_SUBST(mansubdir)
2842
2843 # Check whether to enable MD5 passwords
2844 MD5_MSG="no"
2845 AC_ARG_WITH(md5-passwords,
2846         [  --with-md5-passwords    Enable use of MD5 passwords],
2847         [
2848                 if test "x$withval" != "xno" ; then
2849                         AC_DEFINE(HAVE_MD5_PASSWORDS)
2850                         MD5_MSG="yes"
2851                 fi
2852         ]
2853 )
2854
2855 # Whether to disable shadow password support
2856 AC_ARG_WITH(shadow,
2857         [  --without-shadow        Disable shadow password support],
2858         [
2859                 if test "x$withval" = "xno" ; then
2860                         AC_DEFINE(DISABLE_SHADOW)
2861                         disable_shadow=yes
2862                 fi
2863         ]
2864 )
2865
2866 if test -z "$disable_shadow" ; then
2867         AC_MSG_CHECKING([if the systems has expire shadow information])
2868         AC_TRY_COMPILE(
2869         [
2870 #include <sys/types.h>
2871 #include <shadow.h>
2872         struct spwd sp;
2873         ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
2874         [ sp_expire_available=yes ], []
2875         )
2876
2877         if test "x$sp_expire_available" = "xyes" ; then
2878                 AC_MSG_RESULT(yes)
2879                 AC_DEFINE(HAS_SHADOW_EXPIRE)
2880         else
2881                 AC_MSG_RESULT(no)
2882         fi
2883 fi
2884
2885 # Use ip address instead of hostname in $DISPLAY
2886 if test ! -z "$IPADDR_IN_DISPLAY" ; then
2887         DISPLAY_HACK_MSG="yes"
2888         AC_DEFINE(IPADDR_IN_DISPLAY)
2889 else
2890         DISPLAY_HACK_MSG="no"
2891         AC_ARG_WITH(ipaddr-display,
2892                 [  --with-ipaddr-display   Use ip address instead of hostname in \$DISPLAY],
2893                 [
2894                         if test "x$withval" != "xno" ; then
2895                                 AC_DEFINE(IPADDR_IN_DISPLAY)
2896                                 DISPLAY_HACK_MSG="yes"
2897                         fi
2898                 ]
2899         )
2900 fi
2901
2902 # check for /etc/default/login and use it if present.
2903 AC_ARG_ENABLE(etc-default-login,
2904         [  --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
2905         [ if test "x$enableval" = "xno"; then
2906                 AC_MSG_NOTICE([/etc/default/login handling disabled])
2907                 etc_default_login=no
2908           else
2909                 etc_default_login=yes
2910           fi ],
2911         [ etc_default_login=yes ]
2912 )
2913
2914 if test "x$etc_default_login" != "xno"; then
2915         AC_CHECK_FILE("/etc/default/login",
2916             [ external_path_file=/etc/default/login ])
2917         if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
2918         then
2919                 AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
2920         elif test "x$external_path_file" = "x/etc/default/login"; then
2921                 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2922         fi
2923 fi
2924
2925 dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
2926 if test $ac_cv_func_login_getcapbool = "yes" && \
2927         test $ac_cv_header_login_cap_h = "yes" ; then
2928         external_path_file=/etc/login.conf
2929 fi
2930
2931 # Whether to mess with the default path
2932 SERVER_PATH_MSG="(default)"
2933 AC_ARG_WITH(default-path,
2934         [  --with-default-path=    Specify default \$PATH environment for server],
2935         [
2936                 if test "x$external_path_file" = "x/etc/login.conf" ; then
2937                         AC_MSG_WARN([
2938 --with-default-path=PATH has no effect on this system.
2939 Edit /etc/login.conf instead.])
2940                 elif test "x$withval" != "xno" ; then
2941                         if test ! -z "$external_path_file" ; then
2942                                 AC_MSG_WARN([
2943 --with-default-path=PATH will only be used if PATH is not defined in
2944 $external_path_file .])
2945                         fi
2946                         user_path="$withval"
2947                         SERVER_PATH_MSG="$withval"
2948                 fi
2949         ],
2950         [ if test "x$external_path_file" = "x/etc/login.conf" ; then
2951                 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
2952         else
2953                 if test ! -z "$external_path_file" ; then
2954                         AC_MSG_WARN([
2955 If PATH is defined in $external_path_file, ensure the path to scp is included,
2956 otherwise scp will not work.])
2957                 fi
2958                 AC_TRY_RUN(
2959                         [
2960 /* find out what STDPATH is */
2961 #include <stdio.h>
2962 #ifdef HAVE_PATHS_H
2963 # include <paths.h>
2964 #endif
2965 #ifndef _PATH_STDPATH
2966 # ifdef _PATH_USERPATH  /* Irix */
2967 #  define _PATH_STDPATH _PATH_USERPATH
2968 # else
2969 #  define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
2970 # endif
2971 #endif
2972 #include <sys/types.h>
2973 #include <sys/stat.h>
2974 #include <fcntl.h>
2975 #define DATA "conftest.stdpath"
2976
2977 main()
2978 {
2979         FILE *fd;
2980         int rc;
2981
2982         fd = fopen(DATA,"w");
2983         if(fd == NULL)
2984                 exit(1);
2985
2986         if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
2987                 exit(1);
2988
2989         exit(0);
2990 }
2991                 ], [ user_path=`cat conftest.stdpath` ],
2992                 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
2993                 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
2994         )
2995 # make sure $bindir is in USER_PATH so scp will work
2996                 t_bindir=`eval echo ${bindir}`
2997                 case $t_bindir in
2998                         NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
2999                 esac
3000                 case $t_bindir in
3001                         NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3002                 esac
3003                 echo $user_path | grep ":$t_bindir"  > /dev/null 2>&1
3004                 if test $? -ne 0  ; then
3005                         echo $user_path | grep "^$t_bindir"  > /dev/null 2>&1
3006                         if test $? -ne 0  ; then
3007                                 user_path=$user_path:$t_bindir
3008                                 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3009                         fi
3010                 fi
3011         fi ]
3012 )
3013 if test "x$external_path_file" != "x/etc/login.conf" ; then
3014         AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
3015         AC_SUBST(user_path)
3016 fi
3017
3018 # Set superuser path separately to user path
3019 AC_ARG_WITH(superuser-path,
3020         [  --with-superuser-path=  Specify different path for super-user],
3021         [
3022                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
3023                     test "x${withval}" != "xyes"; then
3024                         AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval")
3025                         superuser_path=$withval
3026                 fi
3027         ]
3028 )
3029
3030
3031 AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
3032 IPV4_IN6_HACK_MSG="no"
3033 AC_ARG_WITH(4in6,
3034         [  --with-4in6             Check for and convert IPv4 in IPv6 mapped addresses],
3035         [
3036                 if test "x$withval" != "xno" ; then
3037                         AC_MSG_RESULT(yes)
3038                         AC_DEFINE(IPV4_IN_IPV6)
3039                         IPV4_IN6_HACK_MSG="yes"
3040                 else
3041                         AC_MSG_RESULT(no)
3042                 fi
3043         ],[
3044                 if test "x$inet6_default_4in6" = "xyes"; then
3045                         AC_MSG_RESULT([yes (default)])
3046                         AC_DEFINE(IPV4_IN_IPV6)
3047                         IPV4_IN6_HACK_MSG="yes"
3048                 else
3049                         AC_MSG_RESULT([no (default)])
3050                 fi
3051         ]
3052 )
3053
3054 # Whether to enable BSD auth support
3055 BSD_AUTH_MSG=no
3056 AC_ARG_WITH(bsd-auth,
3057         [  --with-bsd-auth         Enable BSD auth support],
3058         [
3059                 if test "x$withval" != "xno" ; then
3060                         AC_DEFINE(BSD_AUTH)
3061                         BSD_AUTH_MSG=yes
3062                 fi
3063         ]
3064 )
3065
3066 # Where to place sshd.pid
3067 piddir=/var/run
3068 # make sure the directory exists
3069 if test ! -d $piddir ; then
3070         piddir=`eval echo ${sysconfdir}`
3071         case $piddir in
3072                 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
3073         esac
3074 fi
3075
3076 AC_ARG_WITH(pid-dir,
3077         [  --with-pid-dir=PATH     Specify location of ssh.pid file],
3078         [
3079                 if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
3080                     test "x${withval}" != "xyes"; then
3081                         piddir=$withval
3082                         if test ! -d $piddir ; then
3083                         AC_MSG_WARN([** no $piddir directory on this system **])
3084                         fi
3085                 fi
3086         ]
3087 )
3088
3089 AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
3090 AC_SUBST(piddir)
3091
3092 dnl allow user to disable some login recording features
3093 AC_ARG_ENABLE(lastlog,
3094         [  --disable-lastlog       disable use of lastlog even if detected [no]],
3095         [
3096                 if test "x$enableval" = "xno" ; then
3097                         AC_DEFINE(DISABLE_LASTLOG)
3098                 fi
3099         ]
3100 )
3101 AC_ARG_ENABLE(utmp,
3102         [  --disable-utmp          disable use of utmp even if detected [no]],
3103         [
3104                 if test "x$enableval" = "xno" ; then
3105                         AC_DEFINE(DISABLE_UTMP)
3106                 fi
3107         ]
3108 )
3109 AC_ARG_ENABLE(utmpx,
3110         [  --disable-utmpx         disable use of utmpx even if detected [no]],
3111         [
3112                 if test "x$enableval" = "xno" ; then
3113                         AC_DEFINE(DISABLE_UTMPX)
3114                 fi
3115         ]
3116 )
3117 AC_ARG_ENABLE(wtmp,
3118         [  --disable-wtmp          disable use of wtmp even if detected [no]],
3119         [
3120                 if test "x$enableval" = "xno" ; then
3121                         AC_DEFINE(DISABLE_WTMP)
3122                 fi
3123         ]
3124 )
3125 AC_ARG_ENABLE(wtmpx,
3126         [  --disable-wtmpx         disable use of wtmpx even if detected [no]],
3127         [
3128                 if test "x$enableval" = "xno" ; then
3129                         AC_DEFINE(DISABLE_WTMPX)
3130                 fi
3131         ]
3132 )
3133 AC_ARG_ENABLE(libutil,
3134         [  --disable-libutil       disable use of libutil (login() etc.) [no]],
3135         [
3136                 if test "x$enableval" = "xno" ; then
3137                         AC_DEFINE(DISABLE_LOGIN)
3138                 fi
3139         ]
3140 )
3141 AC_ARG_ENABLE(pututline,
3142         [  --disable-pututline     disable use of pututline() etc. ([uw]tmp) [no]],
3143         [
3144                 if test "x$enableval" = "xno" ; then
3145                         AC_DEFINE(DISABLE_PUTUTLINE)
3146                 fi
3147         ]
3148 )
3149 AC_ARG_ENABLE(pututxline,
3150         [  --disable-pututxline    disable use of pututxline() etc. ([uw]tmpx) [no]],
3151         [
3152                 if test "x$enableval" = "xno" ; then
3153                         AC_DEFINE(DISABLE_PUTUTXLINE)
3154                 fi
3155         ]
3156 )
3157 AC_ARG_WITH(lastlog,
3158   [  --with-lastlog=FILE|DIR specify lastlog location [common locations]],
3159         [
3160                 if test "x$withval" = "xno" ; then
3161                         AC_DEFINE(DISABLE_LASTLOG)
3162                 elif test -n "$withval"  &&  test "x${withval}" != "xyes"; then
3163                         conf_lastlog_location=$withval
3164                 fi
3165         ]
3166 )
3167
3168 dnl lastlog, [uw]tmpx? detection
3169 dnl  NOTE: set the paths in the platform section to avoid the
3170 dnl   need for command-line parameters
3171 dnl lastlog and [uw]tmp are subject to a file search if all else fails
3172
3173 dnl lastlog detection
3174 dnl  NOTE: the code itself will detect if lastlog is a directory
3175 AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3176 AC_TRY_COMPILE([
3177 #include <sys/types.h>
3178 #include <utmp.h>
3179 #ifdef HAVE_LASTLOG_H
3180 #  include <lastlog.h>
3181 #endif
3182 #ifdef HAVE_PATHS_H
3183 #  include <paths.h>
3184 #endif
3185 #ifdef HAVE_LOGIN_H
3186 # include <login.h>
3187 #endif
3188         ],
3189         [ char *lastlog = LASTLOG_FILE; ],
3190         [ AC_MSG_RESULT(yes) ],
3191         [
3192                 AC_MSG_RESULT(no)
3193                 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3194                 AC_TRY_COMPILE([
3195 #include <sys/types.h>
3196 #include <utmp.h>
3197 #ifdef HAVE_LASTLOG_H
3198 #  include <lastlog.h>
3199 #endif
3200 #ifdef HAVE_PATHS_H
3201 #  include <paths.h>
3202 #endif
3203                 ],
3204                 [ char *lastlog = _PATH_LASTLOG; ],
3205                 [ AC_MSG_RESULT(yes) ],
3206                 [
3207                         AC_MSG_RESULT(no)
3208                         system_lastlog_path=no
3209                 ])
3210         ]
3211 )
3212
3213 if test -z "$conf_lastlog_location"; then
3214         if test x"$system_lastlog_path" = x"no" ; then
3215                 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
3216                                 if (test -d "$f" || test -f "$f") ; then
3217                                         conf_lastlog_location=$f
3218                                 fi
3219                 done
3220                 if test -z "$conf_lastlog_location"; then
3221                         AC_MSG_WARN([** Cannot find lastlog **])
3222                         dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
3223                 fi
3224         fi
3225 fi
3226
3227 if test -n "$conf_lastlog_location"; then
3228         AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
3229 fi
3230
3231 dnl utmp detection
3232 AC_MSG_CHECKING([if your system defines UTMP_FILE])
3233 AC_TRY_COMPILE([
3234 #include <sys/types.h>
3235 #include <utmp.h>
3236 #ifdef HAVE_PATHS_H
3237 #  include <paths.h>
3238 #endif
3239         ],
3240         [ char *utmp = UTMP_FILE; ],
3241         [ AC_MSG_RESULT(yes) ],
3242         [ AC_MSG_RESULT(no)
3243           system_utmp_path=no ]
3244 )
3245 if test -z "$conf_utmp_location"; then
3246         if test x"$system_utmp_path" = x"no" ; then
3247                 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3248                         if test -f $f ; then
3249                                 conf_utmp_location=$f
3250                         fi
3251                 done
3252                 if test -z "$conf_utmp_location"; then
3253                         AC_DEFINE(DISABLE_UTMP)
3254                 fi
3255         fi
3256 fi
3257 if test -n "$conf_utmp_location"; then
3258         AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
3259 fi
3260
3261 dnl wtmp detection
3262 AC_MSG_CHECKING([if your system defines WTMP_FILE])
3263 AC_TRY_COMPILE([
3264 #include <sys/types.h>
3265 #include <utmp.h>
3266 #ifdef HAVE_PATHS_H
3267 #  include <paths.h>
3268 #endif
3269         ],
3270         [ char *wtmp = WTMP_FILE; ],
3271         [ AC_MSG_RESULT(yes) ],
3272         [ AC_MSG_RESULT(no)
3273           system_wtmp_path=no ]
3274 )
3275 if test -z "$conf_wtmp_location"; then
3276         if test x"$system_wtmp_path" = x"no" ; then
3277                 for f in /usr/adm/wtmp /var/log/wtmp; do
3278                         if test -f $f ; then
3279                                 conf_wtmp_location=$f
3280                         fi
3281                 done
3282                 if test -z "$conf_wtmp_location"; then
3283                         AC_DEFINE(DISABLE_WTMP)
3284                 fi
3285         fi
3286 fi
3287 if test -n "$conf_wtmp_location"; then
3288         AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
3289 fi
3290
3291
3292 dnl utmpx detection - I don't know any system so perverse as to require
3293 dnl  utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3294 dnl  there, though.
3295 AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3296 AC_TRY_COMPILE([
3297 #include <sys/types.h>
3298 #include <utmp.h>
3299 #ifdef HAVE_UTMPX_H
3300 #include <utmpx.h>
3301 #endif
3302 #ifdef HAVE_PATHS_H
3303 #  include <paths.h>
3304 #endif
3305         ],
3306         [ char *utmpx = UTMPX_FILE; ],
3307         [ AC_MSG_RESULT(yes) ],
3308         [ AC_MSG_RESULT(no)
3309           system_utmpx_path=no ]
3310 )
3311 if test -z "$conf_utmpx_location"; then
3312         if test x"$system_utmpx_path" = x"no" ; then
3313                 AC_DEFINE(DISABLE_UTMPX)
3314         fi
3315 else
3316         AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
3317 fi
3318
3319 dnl wtmpx detection
3320 AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3321 AC_TRY_COMPILE([
3322 #include <sys/types.h>
3323 #include <utmp.h>
3324 #ifdef HAVE_UTMPX_H
3325 #include <utmpx.h>
3326 #endif
3327 #ifdef HAVE_PATHS_H
3328 #  include <paths.h>
3329 #endif
3330         ],
3331         [ char *wtmpx = WTMPX_FILE; ],
3332         [ AC_MSG_RESULT(yes) ],
3333         [ AC_MSG_RESULT(no)
3334           system_wtmpx_path=no ]
3335 )
3336 if test -z "$conf_wtmpx_location"; then
3337         if test x"$system_wtmpx_path" = x"no" ; then
3338                 AC_DEFINE(DISABLE_WTMPX)
3339         fi
3340 else
3341         AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
3342 fi
3343
3344
3345 if test ! -z "$blibpath" ; then
3346         LDFLAGS="$LDFLAGS $blibflags$blibpath"
3347         AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
3348 fi
3349
3350 dnl remove pam and dl because they are in $LIBPAM
3351 if test "$PAM_MSG" = yes ; then
3352         LIBS=`echo $LIBS | sed 's/-lpam //'`
3353 fi
3354 if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3355         LIBS=`echo $LIBS | sed 's/-ldl //'`
3356 fi
3357
3358 AC_EXEEXT
3359 AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
3360         scard/Makefile ssh_prng_cmds survey.sh])
3361 AC_OUTPUT
3362
3363 # Print summary of options
3364
3365 # Someone please show me a better way :)
3366 A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3367 B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3368 C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3369 D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
3370 E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
3371 F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
3372 G=`eval echo ${piddir}` ; G=`eval echo ${G}`
3373 H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3374 I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3375 J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
3376
3377 echo ""
3378 echo "OpenSSH has been configured with the following options:"
3379 echo "                     User binaries: $B"
3380 echo "                   System binaries: $C"
3381 echo "               Configuration files: $D"
3382 echo "                   Askpass program: $E"
3383 echo "                      Manual pages: $F"
3384 echo "                          PID file: $G"
3385 echo "  Privilege separation chroot path: $H"
3386 if test "x$external_path_file" = "x/etc/login.conf" ; then
3387 echo "   At runtime, sshd will use the path defined in $external_path_file"
3388 echo "   Make sure the path to scp is present, otherwise scp will not work"
3389 else
3390 echo "            sshd default user PATH: $I"
3391         if test ! -z "$external_path_file"; then
3392 echo "   (If PATH is set in $external_path_file it will be used instead. If"
3393 echo "   used, ensure the path to scp is present, otherwise scp will not work.)"
3394         fi
3395 fi
3396 if test ! -z "$superuser_path" ; then
3397 echo "          sshd superuser user PATH: $J"
3398 fi
3399 echo "                    Manpage format: $MANTYPE"
3400 echo "                       PAM support: $PAM_MSG"
3401 echo "                 KerberosV support: $KRB5_MSG"
3402 echo "                 Smartcard support: $SCARD_MSG"
3403 echo "                     S/KEY support: $SKEY_MSG"
3404 echo "              TCP Wrappers support: $TCPW_MSG"
3405 echo "              MD5 password support: $MD5_MSG"
3406 echo "                   libedit support: $LIBEDIT_MSG"
3407 echo "       IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
3408 echo "           Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3409 echo "                  BSD Auth support: $BSD_AUTH_MSG"
3410 echo "              Random number source: $RAND_MSG"
3411 if test ! -z "$USE_RAND_HELPER" ; then
3412 echo "     ssh-rand-helper collects from: $RAND_HELPER_MSG"
3413 fi
3414
3415 echo ""
3416
3417 echo "              Host: ${host}"
3418 echo "          Compiler: ${CC}"
3419 echo "    Compiler flags: ${CFLAGS}"
3420 echo "Preprocessor flags: ${CPPFLAGS}"
3421 echo "      Linker flags: ${LDFLAGS}"
3422 echo "         Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
3423
3424 echo ""
3425
3426 if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
3427         echo "SVR4 style packages are supported with \"make package\""
3428         echo ""
3429 fi
3430
3431 if test "x$PAM_MSG" = "xyes" ; then
3432         echo "PAM is enabled. You may need to install a PAM control file "
3433         echo "for sshd, otherwise password authentication may fail. "
3434         echo "Example PAM control files can be found in the contrib/ "
3435         echo "subdirectory"
3436         echo ""
3437 fi
3438
3439 if test ! -z "$RAND_HELPER_CMDHASH" ; then
3440         echo "WARNING: you are using the builtin random number collection "
3441         echo "service. Please read WARNING.RNG and request that your OS "
3442         echo "vendor includes kernel-based random number collection in "
3443         echo "future versions of your OS."
3444         echo ""
3445 fi
3446
3447 if test ! -z "$NO_PEERCHECK" ; then
3448         echo "WARNING: the operating system that you are using does not "
3449         echo "appear to support either the getpeereid() API nor the "
3450         echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3451         echo "enforce security checks to prevent unauthorised connections to "
3452         echo "ssh-agent. Their absence increases the risk that a malicious "
3453         echo "user can connect to your agent. "
3454         echo ""
3455 fi
3456
3457 if test "$AUDIT_MODULE" = "bsm" ; then
3458         echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3459         echo "See the Solaris section in README.platform for details."
3460 fi
This page took 0.327872 seconds and 5 git commands to generate.