blob: 90ed2bb803aeee1ccd55f1fbe321583af07ba0c4 [file] [log] [blame]
Damien Millerab18c411999-11-11 10:40:23 +11001AC_INIT(ssh.c)
Damien Miller7f6ea021999-10-28 13:25:17 +10002
3AC_CONFIG_HEADER(config.h)
Damien Miller76112de1999-12-21 11:18:08 +11004AC_CANONICAL_HOST
Damien Miller7f6ea021999-10-28 13:25:17 +10005
6dnl Checks for programs.
7AC_PROG_CC
Damien Millerab18c411999-11-11 10:40:23 +11008AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +10009AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110010AC_PROG_INSTALL
Damien Millerc7b38ce1999-11-09 10:28:04 +110011AC_CHECK_PROG(AR, ar, ar)
Damien Millere79334a1999-12-29 10:03:37 +110012AC_PATH_PROG(PERL, perl)
13AC_SUBST(PERL)
Damien Miller2e1b0821999-12-25 10:11:29 +110014
Damien Miller2e1b0821999-12-25 10:11:29 +110015AC_ARG_WITH(rsh,
16 [ --with-rsh=PATH Specify path to remote shell program ],
17 [
Damien Miller8bdeee21999-12-30 15:50:54 +110018 if test "x$withval" != "$xno" ; then
19 AC_DEFINE_UNQUOTED(RSH_PATH, "$withval")
20 fi
Damien Miller2e1b0821999-12-25 10:11:29 +110021 ],
22 [
23 AC_PATH_PROG(rsh_path, rsh)
24 ]
25)
26
Damien Miller5eed6a22000-01-16 12:05:18 +110027AC_ARG_WITH(xauth,
28 [ --with-xauth=PATH Specify path to xauth program ],
Damien Millerb29ea912000-01-15 14:12:03 +110029 [
30 if test "x$withval" != "$xno" ; then
31 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$withval")
32 fi
33 ],
34 [
35 AC_PATH_PROG(xauth_path, xauth)
36 if test ! -z "$xauth_path" -a -x "/usr/openwin/bin/xauth" ; then
37 xauth_path="/usr/openwin/bin/xauth"
38 fi
39 ]
40)
41
Damien Miller2e1b0821999-12-25 10:11:29 +110042if test ! -z "$xauth_path" ; then
43 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
44fi
45if test ! -z "$rsh_path" ; then
46 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
47fi
Damien Miller76112de1999-12-21 11:18:08 +110048
Damien Miller3b9d5e91999-12-15 09:34:31 +110049dnl Checks for compiler characteristics
Damien Millerc7b38ce1999-11-09 10:28:04 +110050if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall"; fi
Damien Miller76112de1999-12-21 11:18:08 +110051
Damien Miller3b9d5e91999-12-15 09:34:31 +110052AC_C_INLINE
Damien Miller7f6ea021999-10-28 13:25:17 +100053
Damien Miller76112de1999-12-21 11:18:08 +110054dnl Check for some target-specific stuff
55case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110056*-*-aix*)
57 AFS_LIBS="-lld"
Damien Millereca71f82000-01-20 22:38:27 +110058 AC_DEFINE(BROKEN_GETADDRINFO)
Damien Miller75b1d102000-01-07 14:01:41 +110059 ;;
Damien Miller76112de1999-12-21 11:18:08 +110060*-*-hpux10*)
61 if test -z "$GCC"; then
62 CFLAGS="$CFLAGS -Aa"
63 fi
64 CFLAGS="$CFLAGS -D_HPUX_SOURCE"
65 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Miller2e1b0821999-12-25 10:11:29 +110066 AC_DEFINE(USE_UTMPX)
Damien Miller76112de1999-12-21 11:18:08 +110067 AC_MSG_CHECKING(for HPUX trusted system password database)
68 if test -f /tcb/files/auth/system/default; then
69 AC_MSG_RESULT(yes)
70 AC_DEFINE(HAVE_HPUX_TRUSTED_SYSTEM_PW)
71 LIBS="$LIBS -lsec"
Damien Miller105b7f02000-01-07 08:45:55 +110072 AC_MSG_WARN([This configuration is untested])
Damien Miller76112de1999-12-21 11:18:08 +110073 else
74 AC_MSG_RESULT(no)
75 AC_DEFINE(DISABLE_SHADOW)
76 fi
77 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +110078*-*-irix5*)
Damien Miller1808f382000-01-06 12:03:12 +110079 no_libsocket=1
80 no_libnsl=1
81 ;;
82*-*-irix6*)
83 AC_MSG_WARN([*** Irix 6.x is not tested *** ])
Damien Millerbeb4ba51999-12-28 15:09:35 +110084 no_libsocket=1
85 no_libnsl=1
86 ;;
Damien Millerb29ea912000-01-15 14:12:03 +110087*-*-linux*)
88 no_dev_ptmx=1
89 ;;
Damien Miller75b1d102000-01-07 14:01:41 +110090*-*-solaris*)
91 AC_DEFINE(USE_UTMPX)
92 ;;
93*-*-sysv*)
94 LIBS="$LIBS -lgen -lsocket"
95 ;;
Damien Miller76112de1999-12-21 11:18:08 +110096esac
97
Damien Millerc7b38ce1999-11-09 10:28:04 +110098dnl Check for OpenSSL/SSLeay directories.
99AC_MSG_CHECKING([for OpenSSL/SSLeay directory])
Damien Miller66409952000-01-17 21:40:06 +1100100for ssldir in $prefix /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local $prefix /usr/pkg ; do
Damien Millera82feb31999-11-11 11:04:17 +1100101 if test -f "$ssldir/include/openssl/crypto.h"; then
102 AC_DEFINE(HAVE_OPENSSL)
103 GOT_SSL="yes"
104 break
105 fi
106 if test -f "$ssldir/include/ssl/crypto.h"; then
107 AC_DEFINE(HAVE_SSL)
108 GOT_SSL="yes"
109 break
110 fi
Damien Millerc7b38ce1999-11-09 10:28:04 +1100111done
Damien Millera82feb31999-11-11 11:04:17 +1100112if test -z "$GOT_SSL" ; then
113 AC_MSG_ERROR([Could not find SSLeay / OpenSSL libraries, please install])
114fi
Damien Millerc7b38ce1999-11-09 10:28:04 +1100115AC_SUBST(ssldir)
116AC_DEFINE_UNQUOTED(ssldir, "$ssldir")
117if test "$ssldir" != "/usr"; then
118 CFLAGS="$CFLAGS -I$ssldir/include"
Damien Miller84093e91999-12-15 09:06:28 +1100119 LDFLAGS="$LDFLAGS -L$ssldir/lib"
Damien Millerc7b38ce1999-11-09 10:28:04 +1100120fi
Damien Millera82feb31999-11-11 11:04:17 +1100121AC_MSG_RESULT($ssldir)
Damien Miller7f6ea021999-10-28 13:25:17 +1000122
Damien Millerc7b38ce1999-11-09 10:28:04 +1100123dnl Check for RSAref library.
124AC_MSG_CHECKING([for RSAref library])
125saved_LIBS="$LIBS"
126LIBS="$saved_LIBS -lRSAglue -lrsaref"
127AC_TRY_LINK([], [],
Damien Millerd00d1611999-12-29 10:17:09 +1100128[AC_MSG_RESULT(yes);
129 AC_DEFINE(RSAREF)],
Damien Millerc7b38ce1999-11-09 10:28:04 +1100130[AC_MSG_RESULT(no)]; LIBS="$saved_LIBS")
Damien Miller7f6ea021999-10-28 13:25:17 +1000131
Damien Millerab18c411999-11-11 10:40:23 +1100132dnl Checks for libraries.
133AC_CHECK_LIB(crypto, CRYPTO_lock, ,AC_MSG_ERROR([*** libcrypto missing - please install first ***]))
134AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first ***]))
135AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
Damien Millerab18c411999-11-11 10:40:23 +1100136
Damien Millerbeb4ba51999-12-28 15:09:35 +1100137if test -z "$no_libsocket" ; then
138 AC_CHECK_LIB(nsl, yp_match, , )
139fi
140if test -z "$no_libnsl" ; then
141 AC_CHECK_LIB(socket, main, , )
Damien Miller32b3cf21999-12-26 10:21:48 +1100142fi
Damien Millerab18c411999-11-11 10:40:23 +1100143
Damien Miller7f6ea021999-10-28 13:25:17 +1000144dnl Checks for header files.
Damien Millereaf99942000-01-19 13:45:07 +1100145AC_CHECK_HEADERS(bstring.h endian.h lastlog.h login.h maillock.h netdb.h netgroup.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h util.h utmp.h utmpx.h)
Damien Millerab18c411999-11-11 10:40:23 +1100146
Damien Millercedfecc1999-11-15 14:36:53 +1100147dnl Checks for library functions.
Damien Miller834171e2000-01-17 09:59:41 +1100148AC_CHECK_FUNCS(arc4random bindresvport_af freeaddrinfo gai_strerror getaddrinfo getpagesize getnameinfo innetgr md5_crypt mkdtemp openpty rresvport_af setenv seteuid setlogin setproctitle setreuid snprintf strlcat strlcpy updwtmpx vsnprintf _getpty)
Damien Millercedfecc1999-11-15 14:36:53 +1100149
Damien Miller04f80141999-11-19 15:32:34 +1100150AC_CHECK_FUNC(login,
151 [AC_DEFINE(HAVE_LOGIN)],
152 [AC_CHECK_LIB(bsd, login, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_LOGIN)])]
153)
154
155AC_CHECK_FUNC(daemon,
156 [AC_DEFINE(HAVE_DAEMON)],
157 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
158)
159
Damien Millerc6398ef1999-11-20 12:18:40 +1100160dnl Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +1100161AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +1100162AC_CHECK_SIZEOF(short int, 2)
163AC_CHECK_SIZEOF(int, 4)
164AC_CHECK_SIZEOF(long int, 4)
165AC_CHECK_SIZEOF(long long int, 8)
166
167dnl More checks for data types
Damien Miller859cec01999-11-22 14:27:24 +1100168AC_MSG_CHECKING([for intXX_t types])
Damien Millerc6398ef1999-11-20 12:18:40 +1100169AC_TRY_COMPILE(
170 [#include <sys/types.h>],
171 [int16_t a; int32_t b; a = 1235; b = 1235;],
172 [
173 AC_DEFINE(HAVE_INTXX_T)
174 AC_MSG_RESULT(yes)
Damien Millerb29ea912000-01-15 14:12:03 +1100175 have_intxx_t=1
Damien Millerc6398ef1999-11-20 12:18:40 +1100176 ],
177 [AC_MSG_RESULT(no)]
178)
179
Damien Miller859cec01999-11-22 14:27:24 +1100180AC_MSG_CHECKING([for u_intXX_t types])
Damien Millerc6398ef1999-11-20 12:18:40 +1100181AC_TRY_COMPILE(
182 [#include <sys/types.h>],
183 [u_int16_t c; u_int32_t d; c = 1235; d = 1235;],
184 [
185 AC_DEFINE(HAVE_U_INTXX_T)
186 AC_MSG_RESULT(yes)
Damien Millerb29ea912000-01-15 14:12:03 +1100187 have_u_intxx_t=1
Damien Millerc6398ef1999-11-20 12:18:40 +1100188 ],
189 [AC_MSG_RESULT(no)]
190)
191
Damien Millereaf99942000-01-19 13:45:07 +1100192if test -z "$have_u_intxx_t" -o -z "$have_intxx_t" -a \
Damien Millerb29ea912000-01-15 14:12:03 +1100193 "x$ac_cv_header_sys_bitypes_h" = "xyes"
194then
195 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
196 AC_TRY_COMPILE(
197 [#include <sys/bitypes.h>],
198 [
199 u_int16_t c; u_int32_t d;
200 int16_t e; int32_t f;
201 c = 1235; d = 1235;
202 e = 1235; f = 1235;
203 ],
204 [
205 AC_DEFINE(HAVE_U_INTXX_T)
206 AC_DEFINE(HAVE_INTXX_T)
207 AC_MSG_RESULT(yes)
208 ],
209 [AC_MSG_RESULT(no)]
210 )
211fi
212
Damien Miller34132e52000-01-14 15:45:46 +1100213AC_MSG_CHECKING([for uintXX_t types])
Damien Millerc6398ef1999-11-20 12:18:40 +1100214AC_TRY_COMPILE(
215 [#include <sys/types.h>],
216 [uint16_t c; uint32_t d; c = 1235; d = 1235;],
217 [
218 AC_DEFINE(HAVE_UINTXX_T)
219 AC_MSG_RESULT(yes)
220 ],
221 [AC_MSG_RESULT(no)]
222)
223
Damien Miller34132e52000-01-14 15:45:46 +1100224AC_MSG_CHECKING([for socklen_t])
Damien Miller74d0d4a1999-12-29 02:24:35 +1100225AC_TRY_COMPILE(
Damien Millerf3e8be81999-12-31 08:59:04 +1100226 [
227 #include <sys/types.h>
228 #include <sys/socket.h>
229 ],
Damien Miller74d0d4a1999-12-29 02:24:35 +1100230 [socklen_t foo; foo = 1235;],
231 [
232 AC_DEFINE(HAVE_SOCKLEN_T)
233 AC_MSG_RESULT(yes)
234 ],
235 [AC_MSG_RESULT(no)]
236)
237
Damien Miller34132e52000-01-14 15:45:46 +1100238AC_MSG_CHECKING([for size_t])
Damien Miller95058511999-12-29 10:36:45 +1100239AC_TRY_COMPILE(
240 [#include <sys/types.h>],
Damien Miller95058511999-12-29 10:36:45 +1100241 [size_t foo; foo = 1235;],
242 [
243 AC_DEFINE(HAVE_SIZE_T)
244 AC_MSG_RESULT(yes)
245 ],
246 [AC_MSG_RESULT(no)]
247)
248
Damien Miller34132e52000-01-14 15:45:46 +1100249AC_MSG_CHECKING([for struct sockaddr_storage])
250AC_TRY_COMPILE(
Damien Miller66409952000-01-17 21:40:06 +1100251 [
252 #include <sys/types.h>
253 #include <sys/socket.h>
254 ],
Damien Miller34132e52000-01-14 15:45:46 +1100255 [struct sockaddr_storage s;],
256 [
257 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
258 AC_MSG_RESULT(yes)
259 ],
260 [AC_MSG_RESULT(no)]
261)
262
263AC_MSG_CHECKING([for struct sockaddr_in6])
264AC_TRY_COMPILE(
265 [#include <netinet/in.h>],
266 [struct sockaddr_in6 s; s.sin6_family = 0;],
267 [
268 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
269 AC_MSG_RESULT(yes)
270 ],
271 [AC_MSG_RESULT(no)]
272)
273
274AC_MSG_CHECKING([for struct in6_addr])
275AC_TRY_COMPILE(
276 [#include <netinet/in.h>],
277 [struct in6_addr s; s.s6_addr[0] = 0;],
278 [
279 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
280 AC_MSG_RESULT(yes)
281 ],
282 [AC_MSG_RESULT(no)]
283)
284
285AC_MSG_CHECKING([for struct addrinfo])
286AC_TRY_COMPILE(
287 [
Damien Miller66409952000-01-17 21:40:06 +1100288 #include <sys/types.h>
Damien Miller34132e52000-01-14 15:45:46 +1100289 #include <sys/socket.h>
290 #include <netdb.h>
291 ],
292 [struct addrinfo s; s.ai_flags = AI_PASSIVE;],
293 [
294 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
295 AC_MSG_RESULT(yes)
296 ],
297 [AC_MSG_RESULT(no)]
298)
299
Damien Millerbeb4ba51999-12-28 15:09:35 +1100300AC_ARG_WITH(pam,
301 [ --without-pam Disable PAM support ],
Damien Miller859cec01999-11-22 14:27:24 +1100302 [
Damien Millerbeb4ba51999-12-28 15:09:35 +1100303 if test "x$withval" = "xno" ; then
304 no_pam=1
305 AC_DEFINE(DISABLE_PAM)
306 fi
Damien Miller859cec01999-11-22 14:27:24 +1100307 ]
Damien Millerbeb4ba51999-12-28 15:09:35 +1100308)
309
310if test -z "$no_pam" -a "x$ac_cv_header_security_pam_appl_h" = "xyes" ; then
311 AC_CHECK_LIB(dl, dlopen, , )
312 LIBS="$LIBS -lpam"
313 dnl Check PAM strerror arguments
314 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
315 AC_TRY_COMPILE(
316 [
317 #include <stdlib.h>
318 #include <security/pam_appl.h>
319 ],
320 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
321 [AC_MSG_RESULT(no)],
322 [
323 AC_DEFINE(HAVE_OLD_PAM)
324 AC_MSG_RESULT(yes)
325 ]
326 )
327fi
Damien Miller859cec01999-11-22 14:27:24 +1100328
Damien Miller98ac0071999-11-25 13:19:55 +1100329AC_MSG_CHECKING([whether to build GNOME ssh-askpass])
330dnl Check whether user wants GNOME ssh-askpass
331AC_ARG_WITH(gnome-askpass,
332 [ --with-gnome-askpass Build the GNOME passphrase requester (default=no)],
Damien Millercedfecc1999-11-15 14:36:53 +1100333 [
334 if test x$withval = xno ; then
Damien Miller98ac0071999-11-25 13:19:55 +1100335 GNOME_ASKPASS="";
Damien Millercedfecc1999-11-15 14:36:53 +1100336 else
Damien Miller98ac0071999-11-25 13:19:55 +1100337 GNOME_ASKPASS="gnome-ssh-askpass";
Damien Millercedfecc1999-11-15 14:36:53 +1100338 fi
Damien Miller98ac0071999-11-25 13:19:55 +1100339 ])
340AC_SUBST(GNOME_ASKPASS)
341
342if test -z "$GNOME_ASKPASS" ; then
Damien Millercedfecc1999-11-15 14:36:53 +1100343 AC_MSG_RESULT(no)
Damien Miller98ac0071999-11-25 13:19:55 +1100344else
345 AC_MSG_RESULT(yes)
Damien Millercedfecc1999-11-15 14:36:53 +1100346fi
Damien Millere0d444c1999-11-09 14:23:45 +1100347
Damien Millerab18c411999-11-11 10:40:23 +1100348dnl Check for user-specified random device
349AC_ARG_WITH(random,
Damien Millercedfecc1999-11-15 14:36:53 +1100350 [ --with-random=FILE read randomness from FILE (default=/dev/urandom)],
Damien Millerab18c411999-11-11 10:40:23 +1100351 [
352 RANDOM_POOL="$withval";
Damien Miller0a6e6681999-11-15 09:56:06 +1100353 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
Damien Millerab18c411999-11-11 10:40:23 +1100354 ],
355 [
356 dnl Check for random device
357 AC_CHECK_FILE("/dev/urandom",
358 [
359 RANDOM_POOL="/dev/urandom";
Damien Millera82feb31999-11-11 11:04:17 +1100360 AC_SUBST(RANDOM_POOL)
361 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
Damien Millerab18c411999-11-11 10:40:23 +1100362 ]
363 )
364 ]
365)
366
367dnl Check for EGD pool file
368AC_ARG_WITH(egd-pool,
Damien Millercedfecc1999-11-15 14:36:53 +1100369 [ --with-egd-pool=FILE read randomness from EGD pool FILE (default none)],
Damien Millerab18c411999-11-11 10:40:23 +1100370 [
371 RANDOM_POOL="$withval";
372 AC_DEFINE(HAVE_EGD)
Damien Millera82feb31999-11-11 11:04:17 +1100373 AC_SUBST(RANDOM_POOL)
374 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
Damien Millerab18c411999-11-11 10:40:23 +1100375 ]
376)
377
Damien Millercedfecc1999-11-15 14:36:53 +1100378dnl Make sure we have random number support
Damien Millerab18c411999-11-11 10:40:23 +1100379if test -z "$RANDOM_POOL" -a -z "$EGD_POOL"; then
380 AC_MSG_ERROR([No random device found, and no EGD random pool specified])
381fi
382
Damien Miller3f905871999-11-15 17:10:57 +1100383AC_MSG_CHECKING([whether utmp.h has ut_host field])
384AC_EGREP_HEADER(ut_host, utmp.h,
385 [AC_DEFINE(HAVE_HOST_IN_UTMP) AC_MSG_RESULT(yes); ],
386 [AC_MSG_RESULT(no)]
387)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100388AC_MSG_CHECKING([whether utmpx.h has ut_host field])
389AC_EGREP_HEADER(ut_host, utmpx.h,
390 [AC_DEFINE(HAVE_HOST_IN_UTMPX) AC_MSG_RESULT(yes); ],
391 [AC_MSG_RESULT(no)]
392)
Damien Miller2e1b0821999-12-25 10:11:29 +1100393AC_MSG_CHECKING([whether utmpx.h has syslen field])
394AC_EGREP_HEADER(syslen, utmpx.h,
395 [AC_DEFINE(HAVE_SYSLEN_IN_UTMPX) AC_MSG_RESULT(yes); ],
396 [AC_MSG_RESULT(no)]
397)
Damien Miller4ff2b9b1999-12-28 10:41:12 +1100398AC_MSG_CHECKING([whether utmp.h has ut_pid field])
399AC_EGREP_HEADER(ut_pid, utmp.h,
400 [AC_DEFINE(HAVE_PID_IN_UTMP) AC_MSG_RESULT(yes); ],
401 [AC_MSG_RESULT(no)]
402)
403AC_MSG_CHECKING([whether utmp.h has ut_type field])
404AC_EGREP_HEADER(ut_type, utmp.h,
405 [AC_DEFINE(HAVE_TYPE_IN_UTMP) AC_MSG_RESULT(yes); ],
406 [AC_MSG_RESULT(no)]
407)
408AC_MSG_CHECKING([whether utmp.h has ut_tv field])
409AC_EGREP_HEADER(ut_tv, utmp.h,
410 [AC_DEFINE(HAVE_TV_IN_UTMP) AC_MSG_RESULT(yes); ],
411 [AC_MSG_RESULT(no)]
412)
Damien Miller9550a761999-12-29 02:32:22 +1100413AC_MSG_CHECKING([whether utmp.h has ut_id field])
414AC_EGREP_HEADER(ut_id, utmp.h,
415 [AC_DEFINE(HAVE_ID_IN_UTMP) AC_MSG_RESULT(yes); ],
416 [AC_MSG_RESULT(no)]
417)
Damien Miller3131d8b1999-12-31 09:42:24 +1100418AC_MSG_CHECKING([whether utmp.h has ut_addr field])
419AC_EGREP_HEADER(ut_addr, utmp.h,
420 [AC_DEFINE(HAVE_ADDR_IN_UTMP) AC_MSG_RESULT(yes); ],
421 [AC_MSG_RESULT(no)]
422)
423AC_MSG_CHECKING([whether utmpx.h has ut_addr field])
424AC_EGREP_HEADER(ut_addr, utmpx.h,
Damien Miller34132e52000-01-14 15:45:46 +1100425 [AC_DEFINE(HAVE_ADDR_IN_UTMPX) AC_MSG_RESULT(yes); ],
426 [AC_MSG_RESULT(no)]
427)
428AC_MSG_CHECKING([whether utmp.h has ut_addr_v6 field])
429AC_EGREP_HEADER(ut_addr_v6, utmp.h,
430 [AC_DEFINE(HAVE_ADDR_V6_IN_UTMP) AC_MSG_RESULT(yes); ],
431 [AC_MSG_RESULT(no)]
432)
433AC_MSG_CHECKING([whether utmpx.h has ut_addr_v6 field])
434AC_EGREP_HEADER(ut_addr_v6, utmpx.h,
435 [AC_DEFINE(HAVE_ADDR_V6_IN_UTMPX) AC_MSG_RESULT(yes); ],
436 [AC_MSG_RESULT(no)]
437)
438
439AC_MSG_CHECKING([whether struct sockaddr_storage has ss_family field])
440AC_TRY_COMPILE(
Damien Miller66409952000-01-17 21:40:06 +1100441 [
442 #include <sys/types.h>
443 #include <sys/socket.h>
444 ],
Damien Miller34132e52000-01-14 15:45:46 +1100445 [struct sockaddr_storage s; s.ss_family = 1;],
446 [
447 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
448 AC_MSG_RESULT(yes)
449 ],
450 [AC_MSG_RESULT(no)]
451)
452AC_MSG_CHECKING([whether struct sockaddr_storage has __ss_family field])
453AC_TRY_COMPILE(
Damien Miller66409952000-01-17 21:40:06 +1100454 [
455 #include <sys/types.h>
456 #include <sys/socket.h>
457 ],
Damien Miller34132e52000-01-14 15:45:46 +1100458 [struct sockaddr_storage s; s.__ss_family = 1;],
459 [
460 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
461 AC_MSG_RESULT(yes)
462 ],
Damien Miller3131d8b1999-12-31 09:42:24 +1100463 [AC_MSG_RESULT(no)]
464)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100465
Damien Miller3f905871999-11-15 17:10:57 +1100466dnl Look for lastlog location
Damien Miller76112de1999-12-21 11:18:08 +1100467AC_ARG_WITH(lastlog,
Damien Miller5a3e6831999-12-27 09:48:56 +1100468 [ --with-lastlog=FILE Location of lastlog file],
Damien Miller76112de1999-12-21 11:18:08 +1100469 [
470 if test "x$withval" = "xno" ; then
471 AC_DEFINE(DISABLE_LASTLOG)
472 else
473 AC_DEFINE_UNQUOTED(LASTLOG_LOCATION, "$withval")
474 fi
475 ],
476 [
477 AC_MSG_CHECKING([location of lastlog file])
478 for lastlog in /var/log/lastlog /var/adm/lastlog /etc/security/lastlog ; do
479 if test -f $lastlog ; then
480 gotlastlog="file"
481 break
482 fi
483 if test -d $lastlog ; then
484 gotlastlog="dir"
485 break
486 fi
487 done
488 if test -z "$gotlastlog" ; then
Damien Millerbeb4ba51999-12-28 15:09:35 +1100489 AC_MSG_RESULT(not found)
Damien Miller76112de1999-12-21 11:18:08 +1100490 nolastlog=1
491 else
492 if test "x$gotlastlog" = "xdir" ; then
Damien Millerbeb4ba51999-12-28 15:09:35 +1100493 AC_MSG_RESULT(${lastlog}/)
Damien Miller76112de1999-12-21 11:18:08 +1100494 AC_DEFINE(LASTLOG_IS_DIR)
Damien Millerbeb4ba51999-12-28 15:09:35 +1100495 else
496 AC_MSG_RESULT($lastlog)
497 AC_DEFINE_UNQUOTED(LASTLOG_LOCATION, "$lastlog")
Damien Miller76112de1999-12-21 11:18:08 +1100498 fi
Damien Miller76112de1999-12-21 11:18:08 +1100499 fi
500 ]
501)
502
503if test ! -z "$nolastlog" ; then
504 AC_MSG_WARN([*** Disabling lastlog support *** ])
505 AC_DEFINE(DISABLE_LASTLOG)
506fi
Damien Miller3f905871999-11-15 17:10:57 +1100507
Damien Miller8bdeee21999-12-30 15:50:54 +1100508dnl Compile with dante SOCKS library
509AC_ARG_WITH(dante,
510 [ --with-dante=DIR Use Dante SOCKS lib (default is system library path)],
511 [
512 AC_DEFINE(HAVE_DANTE)
513 if test "x$withval" != "xno" ; then
514 if test -n $withval ; then
515 LIBS="$LIBS -L$withval"
516 fi
517 LIBS="$LIBS -lsocks"
518 fi
519 ]
520)
521
Damien Miller62a52ef2000-01-16 23:03:56 +1100522if test -z "$no_dev_ptmx" ; then
Damien Millerb29ea912000-01-15 14:12:03 +1100523 AC_CHECK_FILE("/dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
524fi
Damien Miller037a0dc1999-12-07 15:38:31 +1100525AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))
526
Damien Miller3f905871999-11-15 17:10:57 +1100527AC_MSG_CHECKING([whether libc defines __progname])
528AC_TRY_LINK([],
Damien Miller04f80141999-11-19 15:32:34 +1100529 [extern char *__progname; printf("%s", __progname);],
Damien Miller3f905871999-11-15 17:10:57 +1100530 [
531 AC_DEFINE(HAVE___PROGNAME)
532 AC_MSG_RESULT(yes)
533 ],
534 [
535 AC_MSG_RESULT(no)
536 ]
537)
538
Damien Miller80297751999-11-19 13:03:25 +1100539dnl Check whether user wants Kerberos support
540AC_ARG_WITH(kerberos4,
Damien Miller105b7f02000-01-07 08:45:55 +1100541 [ --with-kerberos4=PATH Enable Kerberos 4 support],
Damien Miller80297751999-11-19 13:03:25 +1100542 [
Damien Miller8bdeee21999-12-30 15:50:54 +1100543 if test "x$withval" != "$xno" ; then
Damien Miller105b7f02000-01-07 08:45:55 +1100544
545 if test "x$withval" != "$xyes" ; then
546 CFLAGS="$CFLAGS -I${withval}/include"
547 LDFLAGS="$LDFLAGS -L${withval}/lib"
548 else
549 if test -d /usr/include/kerberosIV ; then
550 CFLAGS="$CFLAGS -I/usr/include/kerberosIV"
551 fi
552 fi
553
554 AC_CHECK_HEADERS(krb.h)
555 AC_CHECK_LIB(krb, main)
556 if test "$ac_cv_header_krb_h" != yes; then
557 AC_MSG_WARN([Cannot find krb.h, build may fail])
558 fi
559 if test "$ac_cv_lib_krb_main" != yes; then
560 AC_MSG_WARN([Cannot find libkrb, build may fail])
561 fi
562
563 LIBS="$LIBS -lkrb -ldes"
564 AC_CHECK_LIB(resolv, dn_expand, , )
565 KRB4=yes
Damien Miller8bdeee21999-12-30 15:50:54 +1100566 AC_DEFINE(KRB4)
Damien Miller8bdeee21999-12-30 15:50:54 +1100567 fi
Damien Miller80297751999-11-19 13:03:25 +1100568 ]
569)
570
571dnl Check whether user wants AFS support
Damien Millerc6398ef1999-11-20 12:18:40 +1100572AC_ARG_WITH(afs,
Damien Miller105b7f02000-01-07 08:45:55 +1100573 [ --with-afs=PATH Enable AFS support],
Damien Miller80297751999-11-19 13:03:25 +1100574 [
Damien Miller8bdeee21999-12-30 15:50:54 +1100575 if test "x$withval" != "$xno" ; then
Damien Miller105b7f02000-01-07 08:45:55 +1100576
577 if test "x$withval" != "$xyes" ; then
578 CFLAGS="$CFLAGS -I${withval}/include"
579 LFLAGS="$LFLAGS -L${withval}/lib"
580 fi
581
582 if test -z "$KRB4" ; then
583 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
584 fi
585
Damien Miller8bdeee21999-12-30 15:50:54 +1100586 LIBS="$LIBS -lkafs"
Damien Miller105b7f02000-01-07 08:45:55 +1100587 if test ! -z "$AFS_LIBS" ; then
588 LIBS="$LIBS $AFS_LIBS"
589 fi
590 AC_DEFINE(AFS)
Damien Miller8bdeee21999-12-30 15:50:54 +1100591 fi
Damien Miller80297751999-11-19 13:03:25 +1100592 ]
593)
594
595dnl Check whether user wants S/Key support
596AC_ARG_WITH(skey,
597 [ --with-skey Enable S/Key support],
598 [
Damien Miller8bdeee21999-12-30 15:50:54 +1100599 if test "x$withval" != "$xno" ; then
600 AC_DEFINE(SKEY)
601 LIBS="$LIBS -lskey"
602 fi
Damien Miller80297751999-11-19 13:03:25 +1100603 ]
604)
605
606dnl Check whether user wants TCP wrappers support
Damien Millerf7c0f821999-11-22 22:31:49 +1100607AC_ARG_WITH(tcp-wrappers,
Damien Miller80297751999-11-19 13:03:25 +1100608 [ --with-tcp-wrappers Enable tcpwrappers support],
609 [
Damien Miller8bdeee21999-12-30 15:50:54 +1100610 if test "x$withval" != "$xno" ; then
611 AC_DEFINE(LIBWRAP)
Damien Miller105b7f02000-01-07 08:45:55 +1100612 LIBS="$LIBS -lwrap"
Damien Miller8bdeee21999-12-30 15:50:54 +1100613 fi
Damien Miller80297751999-11-19 13:03:25 +1100614 ]
615)
616
Damien Millerdd1c7ba1999-11-19 15:53:20 +1100617dnl Check whether to enable MD5 passwords
Damien Millerf7c0f821999-11-22 22:31:49 +1100618AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +1100619 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +1100620 [
621 if test "x$withval" != "$xno" ; then
622 AC_DEFINE(HAVE_MD5_PASSWORDS)
623 fi
624 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +1100625)
626
Damien Miller368cf641999-12-21 09:51:36 +1100627dnl Check whether to enable utmpx support
628AC_ARG_WITH(utmpx,
629 [ --with-utmpx Enable utmpx support],
Damien Miller76112de1999-12-21 11:18:08 +1100630 [
631 if test "x$withval" != "xno" ; then
632 AC_DEFINE(USE_UTMPX)
633 fi
634 ]
Damien Miller368cf641999-12-21 09:51:36 +1100635)
636
Damien Miller76112de1999-12-21 11:18:08 +1100637dnl Whether to disable shadow password support
638AC_ARG_WITH(shadow,
639 [ --without-shadow Disable shadow password support],
640 [
641 if test "x$withval" = "xno" ; then
642 AC_DEFINE(DISABLE_SHADOW)
643 fi
644 ]
645)
646
647dnl Use ip address instead of hostname in $DISPLAY
648AC_ARG_WITH(ipaddr-display,
649 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
650 [
Damien Miller66409952000-01-17 21:40:06 +1100651 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +1100652 AC_DEFINE(IPADDR_IN_DISPLAY)
653 fi
654 ]
655)
656
Damien Millere7f626c1999-12-31 09:49:44 +1100657AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +1100658 [ --with-default-path=PATH Specify default \$PATH environment for server],
659 [
660 if test "x$withval" != "xno" ; then
Damien Miller9550a761999-12-29 02:32:22 +1100661 AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
Damien Miller5a3e6831999-12-27 09:48:56 +1100662 fi
663 ]
664)
665
Damien Miller7d80e342000-01-19 14:36:49 +1100666AC_ARG_WITH(ipv4-default,
667 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
668 [
669 if test "x$withval" != "xno" ; then
670 AC_DEFINE(IPV4_DEFAULT)
671 fi
672 ]
673)
674
Damien Millerb13c73e2000-01-17 22:02:17 +1100675piddir=/var/run
Damien Miller5eed6a22000-01-16 12:05:18 +1100676AC_ARG_WITH(pid-dir,
677 [ --with-pid-dir=PATH Specify location of ssh.pid file],
678 [
679 if test "x$withval" != "xno" ; then
Damien Millerb13c73e2000-01-17 22:02:17 +1100680 piddir=$withval
Damien Miller5eed6a22000-01-16 12:05:18 +1100681 fi
682 ]
683)
Damien Millerdbd250f2000-01-18 08:57:14 +1100684AC_DEFINE_UNQUOTED(PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +1100685AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +1100686
Damien Miller76112de1999-12-21 11:18:08 +1100687dnl Check for mail directory (last resort if we cannot get it from headers)
688if test ! -z "$MAIL" ; then
689 maildir=`dirname $MAIL`
690 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
691fi
Damien Millerc6b3bbe1999-12-13 08:27:33 +1100692
Damien Miller7f6ea021999-10-28 13:25:17 +1000693AC_OUTPUT(Makefile)