]> andersk Git - openssh.git/blame - configure.in
- More reformatting merged from OpenBSD CVS
[openssh.git] / configure.in
CommitLineData
4cca272e 1AC_INIT(ssh.c)
5881cd60 2
3AC_CONFIG_HEADER(config.h)
4
5dnl Checks for programs.
6AC_PROG_CC
4cca272e 7AC_PROG_CPP
5881cd60 8AC_PROG_RANLIB
d4f11b59 9AC_CHECK_PROG(AR, ar, ar)
10if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall"; fi
5881cd60 11
d4f11b59 12dnl Check for OpenSSL/SSLeay directories.
13AC_MSG_CHECKING([for OpenSSL/SSLeay directory])
4cca272e 14for ssldir in /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local $prefix /usr/pkg ; do
6614282f 15 if test -f "$ssldir/include/openssl/crypto.h"; then
16 AC_DEFINE(HAVE_OPENSSL)
17 GOT_SSL="yes"
18 break
19 fi
20 if test -f "$ssldir/include/ssl/crypto.h"; then
21 AC_DEFINE(HAVE_SSL)
22 GOT_SSL="yes"
23 break
24 fi
d4f11b59 25done
6614282f 26if test -z "$GOT_SSL" ; then
27 AC_MSG_ERROR([Could not find SSLeay / OpenSSL libraries, please install])
28fi
d4f11b59 29AC_SUBST(ssldir)
30AC_DEFINE_UNQUOTED(ssldir, "$ssldir")
31if test "$ssldir" != "/usr"; then
32 CFLAGS="$CFLAGS -I$ssldir/include"
33 LIBS="$LIBS -L$ssldir/lib"
34fi
35LIBS="$LIBS -lssl -lcrypto"
6614282f 36AC_MSG_RESULT($ssldir)
5881cd60 37
d4f11b59 38dnl Check for RSAref library.
39AC_MSG_CHECKING([for RSAref library])
40saved_LIBS="$LIBS"
41LIBS="$saved_LIBS -lRSAglue -lrsaref"
42AC_TRY_LINK([], [],
43[AC_MSG_RESULT(yes); ],
44[AC_MSG_RESULT(no)]; LIBS="$saved_LIBS")
5881cd60 45
4cca272e 46dnl Checks for libraries.
47AC_CHECK_LIB(crypto, CRYPTO_lock, ,AC_MSG_ERROR([*** libcrypto missing - please install first ***]))
48AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first ***]))
49AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
50AC_CHECK_LIB(nsl, yp_match, , )
51AC_CHECK_LIB(socket, main, , )
52
53dnl libdl is needed by PAM on Redhat systems
54AC_CHECK_LIB(dl, dlopen, , )
55AC_CHECK_LIB(pam, pam_authenticate, , )
56
5881cd60 57dnl Checks for header files.
5260325f 58AC_CHECK_HEADERS(pty.h endian.h paths.h lastlog.h shadow.h netgroup.h maillock.h utmp.h util.h sys/select.h sys/time.h)
4cca272e 59
76cd7316 60dnl Checks for library functions.
1647c2b5 61AC_CHECK_FUNCS(openpty strlcpy strlcat mkdtemp arc4random setproctitle setlogin setenv)
76cd7316 62
beb43d31 63AC_CHECK_FUNC(login,
64 [AC_DEFINE(HAVE_LOGIN)],
65 [AC_CHECK_LIB(bsd, login, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_LOGIN)])]
66)
67
68AC_CHECK_FUNC(daemon,
69 [AC_DEFINE(HAVE_DAEMON)],
70 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
71)
72
2b942fe0 73dnl Checks for data types
74AC_CHECK_SIZEOF(short int, 2)
75AC_CHECK_SIZEOF(int, 4)
76AC_CHECK_SIZEOF(long int, 4)
77AC_CHECK_SIZEOF(long long int, 8)
78
79dnl More checks for data types
96ad4350 80AC_MSG_CHECKING([for quad_t])
2b942fe0 81AC_TRY_COMPILE(
82 [#include <sys/types.h>],
83 [quad_t a; a = 1235;],
84 [
85 AC_DEFINE(HAVE_QUAD_T)
86 AC_MSG_RESULT(yes)
87 ],
88 [AC_MSG_RESULT(no)]
89)
90
96ad4350 91AC_MSG_CHECKING([for intXX_t types])
2b942fe0 92AC_TRY_COMPILE(
93 [#include <sys/types.h>],
94 [int16_t a; int32_t b; a = 1235; b = 1235;],
95 [
96 AC_DEFINE(HAVE_INTXX_T)
97 AC_MSG_RESULT(yes)
98 ],
99 [AC_MSG_RESULT(no)]
100)
101
96ad4350 102AC_MSG_CHECKING([for u_intXX_t types])
2b942fe0 103AC_TRY_COMPILE(
104 [#include <sys/types.h>],
105 [u_int16_t c; u_int32_t d; c = 1235; d = 1235;],
106 [
107 AC_DEFINE(HAVE_U_INTXX_T)
108 AC_MSG_RESULT(yes)
109 ],
110 [AC_MSG_RESULT(no)]
111)
112
113AC_MSG_CHECKING([For uintXX_t types])
114AC_TRY_COMPILE(
115 [#include <sys/types.h>],
116 [uint16_t c; uint32_t d; c = 1235; d = 1235;],
117 [
118 AC_DEFINE(HAVE_UINTXX_T)
119 AC_MSG_RESULT(yes)
120 ],
121 [AC_MSG_RESULT(no)]
122)
123
96ad4350 124dnl Check PAM strerror arguments
125AC_MSG_CHECKING([whether pam_strerror takes only one argument])
126AC_TRY_COMPILE(
127 [
128 #include <stdlib.h>
129 #include <security/pam_appl.h>
130 ],
131 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
132 [AC_MSG_RESULT(no)],
133 [
134 AC_DEFINE(HAVE_OLD_PAM)
135 AC_MSG_RESULT(yes)
136 ]
137)
138
76cd7316 139dnl Check whether use wants to disable the external ssh-askpass
140INSTALL_ASKPASS="yes"
141AC_MSG_CHECKING([whether to enable external ssh-askpass support])
142AC_ARG_WITH(askpass,
caf3bc51 143 [ --with-askpass=yes/no Enable external ssh-askpass support (default=yes)],
76cd7316 144 [
145 if test x$withval = xno ; then
146 INSTALL_ASKPASS="no"
147 else
148 INSTALL_ASKPASS="yes"
149 fi
150 ]
151)
152if test "x$INSTALL_ASKPASS" = "xyes" ; then
153 AC_DEFINE(USE_EXTERNAL_ASKPASS)
154 AC_SUBST(INSTALL_ASKPASS)
155 AC_MSG_RESULT(yes)
156else
157 AC_MSG_RESULT(no)
158fi
159
160if test "x$INSTALL_ASKPASS" = "xyes" ; then
161 AC_MSG_CHECKING([whether to build GNOME ssh-askpass])
162 dnl Check whether user wants GNOME ssh-askpass
163 AC_ARG_WITH(gnome-askpass,
164 [ --with-gnome-askpass Build the GNOME passphrase requester (default=no)],
165 [
166 if test x$withval = xno ; then
167 GNOME_ASKPASS="";
168 else
169 GNOME_ASKPASS="gnome-ssh-askpass";
170 fi
171 ])
172 AC_SUBST(GNOME_ASKPASS)
173
174 if test -z "$GNOME_ASKPASS" ; then
175 AC_MSG_RESULT(no)
176 else
177 AC_MSG_RESULT(yes)
178 fi
179fi
6a0aeebc 180
4cca272e 181dnl Check for user-specified random device
182AC_ARG_WITH(random,
76cd7316 183 [ --with-random=FILE read randomness from FILE (default=/dev/urandom)],
4cca272e 184 [
185 RANDOM_POOL="$withval";
92da7197 186 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
4cca272e 187 ],
188 [
189 dnl Check for random device
190 AC_CHECK_FILE("/dev/urandom",
191 [
192 RANDOM_POOL="/dev/urandom";
6614282f 193 AC_SUBST(RANDOM_POOL)
194 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
4cca272e 195 ]
196 )
197 ]
198)
199
200dnl Check for EGD pool file
201AC_ARG_WITH(egd-pool,
76cd7316 202 [ --with-egd-pool=FILE read randomness from EGD pool FILE (default none)],
4cca272e 203 [
204 RANDOM_POOL="$withval";
205 AC_DEFINE(HAVE_EGD)
6614282f 206 AC_SUBST(RANDOM_POOL)
207 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
4cca272e 208 ]
209)
210
76cd7316 211dnl Make sure we have random number support
4cca272e 212if test -z "$RANDOM_POOL" -a -z "$EGD_POOL"; then
213 AC_MSG_ERROR([No random device found, and no EGD random pool specified])
214fi
215
f601d847 216dnl Check for ut_host field in utmp
217AC_MSG_CHECKING([whether utmp.h has ut_host field])
218AC_EGREP_HEADER(ut_host, utmp.h,
219 [AC_DEFINE(HAVE_HOST_IN_UTMP) AC_MSG_RESULT(yes); ],
220 [AC_MSG_RESULT(no)]
221)
222
223dnl Look for lastlog location
224AC_MSG_CHECKING([location of lastlog file])
225for lastlog in /var/log/lastlog /var/adm/lastlog /etc/security/lastlog ; do
226 if test -f $lastlog ; then
2b942fe0 227 gotlastlog="file"
228 break
229 fi
230 if test -d $lastlog ; then
231 gotlastlog="dir"
f601d847 232 break
233 fi
234done
cfe30346 235if test -z "$gotlastlog" ; then
236 AC_MSG_ERROR([*** Cannot find lastlog ***])
2b942fe0 237else
238 if test "x$gotlastlog" = "xdir" ; then
239 AC_DEFINE(LASTLOG_IS_DIR)
240 AC_MSG_ERROR([*** Directory-based lastlogs are not yet supported ***])
241 fi
242 AC_MSG_RESULT($lastlog)
243 AC_DEFINE_UNQUOTED(LASTLOG_LOCATION, "$lastlog")
cfe30346 244fi
f601d847 245
246AC_MSG_CHECKING([whether libc defines __progname])
247AC_TRY_LINK([],
beb43d31 248 [extern char *__progname; printf("%s", __progname);],
f601d847 249 [
250 AC_DEFINE(HAVE___PROGNAME)
251 AC_MSG_RESULT(yes)
252 ],
253 [
254 AC_MSG_RESULT(no)
255 ]
256)
257
91b8065d 258dnl Check whether user wants Kerberos support
259AC_ARG_WITH(kerberos4,
260 [ --with-kerberos4 Enable Kerberos 4 support],
261 [
262 AC_DEFINE(KRB4)
263 LIBS="$LIBS -lkrb"
264 CFLAGS="$CFLAGS -I/usr/include/kerberosIV"
265 ]
266)
267
268dnl Check whether user wants AFS support
2b942fe0 269AC_ARG_WITH(afs,
91b8065d 270 [ --with-afs Enable AFS support],
271 [
272 AC_DEFINE(AFS)
273 LIBS="$LIBS -lkafs"
274 ]
275)
276
277dnl Check whether user wants S/Key support
278AC_ARG_WITH(skey,
279 [ --with-skey Enable S/Key support],
280 [
281 AC_DEFINE(SKEY)
282 LIBS="$LIBS -lskey"
283 ]
284)
285
286dnl Check whether user wants TCP wrappers support
2ddcfdf3 287AC_ARG_WITH(tcp-wrappers,
91b8065d 288 [ --with-tcp-wrappers Enable tcpwrappers support],
289 [
290 AC_DEFINE(LIBWRAP)
291 LIBS="$LIBS -lwrap"
292 ]
293)
294
caf3bc51 295dnl Check whether to enable MD5 passwords
2ddcfdf3 296AC_ARG_WITH(md5-passwords,
caf3bc51 297 [ --with-md5-passwords Enable use of MD5 passwords],
298 [AC_DEFINE(HAVE_MD5_PASSWORDS)]
299)
300
5881cd60 301AC_OUTPUT(Makefile)
This page took 0.601458 seconds and 5 git commands to generate.