summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-09-10 20:25:51 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-09-10 20:25:51 +1000
commit57b2920ad896b4c1b7a6f5ba0171bdb311e8cc36 (patch)
tree8c034054d8a86f471ad343f1258b4deb3deb33fe /configure.ac
parentf376669328e6df2dc78936786787150d98a1df80 (diff)
- (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 4a3c39fcb..80b0360c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.362 2006/09/08 15:05:21 dtucker Exp $ 1# $Id: configure.ac,v 1.363 2006/09/10 10:25:51 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.362 $) 18AC_REVISION($Revision: 1.363 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -253,6 +253,9 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
253 AC_DEFINE(SSH_TUN_PREPEND_AF, 1, 253 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
254 [Prepend the address family to IP tunnel traffic]) 254 [Prepend the address family to IP tunnel traffic])
255 ;; 255 ;;
256*-*-dragonfly*)
257 SSHDLIBS="$SSHDLIBS -lcrypt"
258 ;;
256*-*-hpux*) 259*-*-hpux*)
257 # first we define all of the options common to all HP-UX releases 260 # first we define all of the options common to all HP-UX releases
258 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" 261 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"