usa and international flavors for ssh.

This commit is contained in:
turan 2000-04-11 06:02:28 +00:00
parent 8b253b7a9c
commit 5ee895ac15
2 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.36 2000/04/06 20:46:05 dugsong Exp $
# $OpenBSD: Makefile,v 1.37 2000/04/11 06:02:28 turan Exp $
# $FreeBSD: Makefile,v 1.23 1997/11/09 10:17:02 asami Exp $
#
@ -41,7 +41,8 @@
SUBDIR += rsaref
SUBDIR += smurflog
SUBDIR += socks5
SUBDIR += ssh
SUBDIR += ssh:intl
SUBDIR += ssh:usa
SUBDIR += sslusa
SUBDIR += stel
SUBDIR += strobe

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.55 2000/03/25 06:04:36 brad Exp $
# $OpenBSD: Makefile,v 1.56 2000/04/11 06:02:29 turan Exp $
DISTNAME= ssh-1.2.27
CATEGORIES= security net
@ -22,6 +22,17 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= No
PERMIT_DISTFILES_FTP= Yes
FLAVORS= intl usa
.if ${FLAVOR} == "intl"
USA_RESIDENT=No
.elif ${FLAVOR} == "usa"
USA_RESIDENT=Yes
.else
echo "Bad Flavor"
exit 1
.endif
.if defined(USA_RESIDENT) && ${USA_RESIDENT:U} == YES
LIB_DEPENDS= rsaref.2::security/rsaref
CONFIGURE_ARGS+= --with-rsaref="${LOCALBASE}/lib"