summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authormarkd <markd>2004-04-27 12:26:31 +0000
committermarkd <markd>2004-04-27 12:26:31 +0000
commit092fedd56faf3617871a197c3ac9ed5cdf3640ef (patch)
tree02e8d69dd27b5977a4d781cd2b8076de13831527 /security
parentb173db65ad89bd6bcb29847a28dd69e0170fec99 (diff)
downloadpkgsrc-092fedd56faf3617871a197c3ac9ed5cdf3640ef.tar.gz
Something in our framework interferes with configure disabling utmp/wtmp
handling on Solaris >= 8 so do it explicitly.
Diffstat (limited to 'security')
-rw-r--r--security/openssh/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index 2b9f738c18f..bc39e180e1e 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.127 2004/04/27 12:21:49 markd Exp $
+# $NetBSD: Makefile,v 1.128 2004/04/27 12:26:31 markd Exp $
DISTNAME= openssh-3.8p1
PKGNAME= openssh-3.8.1
@@ -99,6 +99,10 @@ CPPFLAGS+= -I/usr/include/kerberosIV
LDFLAGS+= -lkrb -lcom_err -lroken -ldes -lcrypto
.endif
+.if ${OPSYS} == "SunOS" && (${OS_VERSION} == "5.8" || ${OS_VERSION} == "5.9")
+CONFIGURE_ARGS+= --disable-utmp --disable-wtmp
+.endif
+
# The ssh-askpass program is in ${X11BASE}/bin or ${X11PREFIX}/bin depending
# on if it's part of the X11 distribution, or if it's installed from pkgsrc
# (security/ssh-askpass).