diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2006-05-13 13:47:45 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2006-05-13 13:47:45 +0000 |
| commit | ed22e27d8a1315950938ff1080b06b31aa0df3bb (patch) | |
| tree | 74ec58d937814ef5ae4b74379961ddfd2a9fc64e /secure | |
| parent | 2d39807f07592a8d92bd18ab388bd331af84dd66 (diff) | |
Notes
Diffstat (limited to 'secure')
| -rw-r--r-- | secure/lib/libssh/Makefile | 2 | ||||
| -rw-r--r-- | secure/libexec/sftp-server/Makefile | 2 | ||||
| -rw-r--r-- | secure/libexec/ssh-keysign/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/scp/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/sftp/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/ssh-add/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/ssh-agent/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/ssh-keygen/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/ssh-keyscan/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.bin/ssh/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.sbin/sshd/Makefile | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index 374a391d7b326..410d953a23f53 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -28,7 +28,7 @@ SRCS+= version.c SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c .endif -CFLAGS+= -I${SSHDIR} +CFLAGS+= -I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBZ} LDADD= -lz diff --git a/secure/libexec/sftp-server/Makefile b/secure/libexec/sftp-server/Makefile index 28cff683e037b..6dce308e5dc66 100644 --- a/secure/libexec/sftp-server/Makefile +++ b/secure/libexec/sftp-server/Makefile @@ -3,7 +3,7 @@ PROG= sftp-server SRCS= sftp-server.c sftp-common.c MAN= sftp-server.8 -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz diff --git a/secure/libexec/ssh-keysign/Makefile b/secure/libexec/ssh-keysign/Makefile index 3f2ed519dcb03..9ea924118df3d 100644 --- a/secure/libexec/ssh-keysign/Makefile +++ b/secure/libexec/ssh-keysign/Makefile @@ -3,7 +3,7 @@ PROG= ssh-keysign SRCS= ssh-keysign.c readconf.c MAN= ssh-keysign.8 -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h .if defined(ENABLE_SUID_SSH) BINMODE=4511 .endif diff --git a/secure/usr.bin/scp/Makefile b/secure/usr.bin/scp/Makefile index d6d5abafc3837..e6bb501dd6495 100644 --- a/secure/usr.bin/scp/Makefile +++ b/secure/usr.bin/scp/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= scp -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz diff --git a/secure/usr.bin/sftp/Makefile b/secure/usr.bin/sftp/Makefile index 08512e8604573..4a4265960de91 100644 --- a/secure/usr.bin/sftp/Makefile +++ b/secure/usr.bin/sftp/Makefile @@ -2,7 +2,7 @@ PROG= sftp SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c progressmeter.c -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} ${LIBEDIT} LDADD= -lssh -lcrypt -lcrypto -lz -ledit diff --git a/secure/usr.bin/ssh-add/Makefile b/secure/usr.bin/ssh-add/Makefile index 2716a62ed5b35..7be6c0d70ee33 100644 --- a/secure/usr.bin/ssh-add/Makefile +++ b/secure/usr.bin/ssh-add/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= ssh-add -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz diff --git a/secure/usr.bin/ssh-agent/Makefile b/secure/usr.bin/ssh-agent/Makefile index 2f88a6d969c58..49905a5bf57d5 100644 --- a/secure/usr.bin/ssh-agent/Makefile +++ b/secure/usr.bin/ssh-agent/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= ssh-agent -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz diff --git a/secure/usr.bin/ssh-keygen/Makefile b/secure/usr.bin/ssh-keygen/Makefile index 5dc86992ec965..af39dec4ff06e 100644 --- a/secure/usr.bin/ssh-keygen/Makefile +++ b/secure/usr.bin/ssh-keygen/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= ssh-keygen -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} LDADD= -lssh -lcrypt -lcrypto -lz diff --git a/secure/usr.bin/ssh-keyscan/Makefile b/secure/usr.bin/ssh-keyscan/Makefile index 1c5ab3ed6b80d..86afab8a901a3 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 diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index 43ade1295ff54..213f035d12cfd 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -4,7 +4,7 @@ .include <bsd.own.mk> PROG= ssh -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h LINKS= ${BINDIR}/ssh ${BINDIR}/slogin MAN= ssh.1 ssh_config.5 MLINKS= ssh.1 slogin.1 diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 7567505434316..2ae483f448fbe 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -20,7 +20,7 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ # gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile MAN= sshd.8 sshd_config.5 -CFLAGS+=-I${SSHDIR} +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM} LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM} |
