diff options
author | des <des@FreeBSD.org> | 2006-05-13 13:47:45 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2006-05-13 13:47:45 +0000 |
commit | 148092431d1700e589fcbead33eda45aeb88731d (patch) | |
tree | 74ec58d937814ef5ae4b74379961ddfd2a9fc64e /secure/usr.bin/ssh-keyscan | |
parent | 18f5285192dd391a2cc7a50f73bf1f90664fce6b (diff) | |
download | FreeBSD-src-148092431d1700e589fcbead33eda45aeb88731d.zip FreeBSD-src-148092431d1700e589fcbead33eda45aeb88731d.tar.gz |
Introduce a namespace munging hack inspired by NetBSD to avoid polluting
the namespace of applications which inadvertantly link in libssh (usually
through pam_ssh)
Suggested by: lukem@netbsd.org
MFC after: 6 weeks
Diffstat (limited to 'secure/usr.bin/ssh-keyscan')
-rw-r--r-- | secure/usr.bin/ssh-keyscan/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/usr.bin/ssh-keyscan/Makefile b/secure/usr.bin/ssh-keyscan/Makefile index 1c5ab3e..86afab8 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile +++ b/secure/usr.bin/ssh-keyscan/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= ssh-keyscan -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz |