summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-11-29 11:56:35 +1100
committerDamien Miller <djm@mindrot.org>2000-11-29 11:56:35 +1100
commit3f62abaee876bb4ef7450799cdee1081297aae51 (patch)
treef5a7cfa07969976a003761a662681f11bfccbc87 /configure.in
parenta2e53ccb64c42a635b4618b592e470a02c0142b0 (diff)
- (djm) bsd-rresvport.c bzero -> memset
- (djm) Don't fail in defines.h on absence of 64 bit types (we will still fail during compilation of sftp-server). - (djm) Fail if ar is not found during configure
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 3b3fcae17..01c541013 100644
--- a/configure.in
+++ b/configure.in
@@ -15,6 +15,10 @@ AC_PATH_PROG(ENT, ent)
15AC_SUBST(ENT) 15AC_SUBST(ENT)
16AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin) 16AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin)
17 17
18if test -z "$AR" ; then
19 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
20fi
21
18# Use LOGIN_PROGRAM from environment if possible 22# Use LOGIN_PROGRAM from environment if possible
19if test ! -z "$LOGIN_PROGRAM" ; then 23if test ! -z "$LOGIN_PROGRAM" ; then
20 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM") 24 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")