diff options
author | jlam <jlam@pkgsrc.org> | 2003-03-14 19:37:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-03-14 19:37:30 +0000 |
commit | 3ef633718c6eecbd852195de9329d45632a10352 (patch) | |
tree | 4ee2e06249d68477cf3fb68be1f095453bcec90d /security/ssh | |
parent | 1940384395085677c2036358dfcccfad791a4dd8 (diff) | |
download | pkgsrc-3ef633718c6eecbd852195de9329d45632a10352.tar.gz |
(1) Publicly export the value of _OPSYS_RPATH_NAME as RPATH_FLAG;
Makefiles simply need to use this value often, for better or for
worse.
(2) Create a new variable FIX_RPATH that lists variables that should
be cleansed of -R or -rpath values if ${_USE_RPATH} is "no". By
default, FIX_RPATH contains LIBS, X11_LDFLAGS, and LDFLAGS, and
additional variables may be appended from package Makefiles.
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 4a815a993e2..86ec7287e3c 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.103 2003/01/04 11:51:29 cjep Exp $ +# $NetBSD: Makefile,v 1.104 2003/03/14 19:37:55 jlam Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -57,8 +57,10 @@ CONFIGURE_ENV+= X_CFLAGS="-I${LOCALBASE}/include" .if defined(USE_RSAREF2) && ${USE_RSAREF2} == YES DEPENDS+= rsaref-2.0p3:../../security/rsaref CONFIGURE_ARGS+= --with-rsaref="${LOCALBASE}/lib" -CONFIGURE_ENV+= LDFLAGS="-Wl,-R${LOCALBASE}/lib" +CONFIGURE_ENV+= LDFLAGS="${SSH_LDFLAGS}" CFLAGS+= -I${LOCALBASE}/include +SSH_LDFLAGS= -Wl,${RPATH_FLAG}${LOCALBASE}/lib +FIX_RPATH+= SSH_LDFLAGS .endif # Include support for the SecureID card |