diff options
author | Damien Miller <djm@mindrot.org> | 2014-01-17 16:47:04 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-01-17 16:47:04 +1100 |
commit | 868ea1ea1c1bfdbee5dbad78f81999c5983ecf31 (patch) | |
tree | cd0d26dd73bc147951ef9a3aeb967448912e9c4f /Makefile.in | |
parent | a9d186a8b50d18869a10e9203abf71c83ddb1f79 (diff) |
- (djm) [Makefile.in configure.ac sandbox-capsicum.c sandbox-darwin.c]
[sandbox-null.c sandbox-rlimit.c sandbox-seccomp-filter.c]
[sandbox-systrace.c ssh-sandbox.h sshd.c] Support preauth sandboxing
using the Capsicum API introduced in FreeBSD 10. Patch by Dag-Erling
Smorgrav, updated by Loganaden Velvindron @ AfriNIC; ok dtucker@
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 4a930c665..f5dd3b834 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.349 2014/01/09 23:58:53 djm Exp $ | 1 | # $Id: Makefile.in,v 1.350 2014/01/17 05:47:04 djm Exp $ |
2 | 2 | ||
3 | # uncomment if you run a non bourne compatable shell. Ie. csh | 3 | # uncomment if you run a non bourne compatable shell. Ie. csh |
4 | #SHELL = @SH@ | 4 | #SHELL = @SH@ |
@@ -96,7 +96,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ | |||
96 | sftp-server.o sftp-common.o \ | 96 | sftp-server.o sftp-common.o \ |
97 | roaming_common.o roaming_serv.o \ | 97 | roaming_common.o roaming_serv.o \ |
98 | sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o \ | 98 | sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o \ |
99 | sandbox-seccomp-filter.o | 99 | sandbox-seccomp-filter.o sandbox-capsicum.o |
100 | 100 | ||
101 | MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-keysign.8.out ssh-pkcs11-helper.8.out sshd_config.5.out ssh_config.5.out | 101 | MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-keysign.8.out ssh-pkcs11-helper.8.out sshd_config.5.out ssh_config.5.out |
102 | MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-keysign.8 ssh-pkcs11-helper.8 sshd_config.5 ssh_config.5 | 102 | MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-keysign.8 ssh-pkcs11-helper.8 sshd_config.5 ssh_config.5 |
@@ -472,4 +472,3 @@ package: $(CONFIGFILES) $(MANPAGES) $(TARGETS) | |||
472 | if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ | 472 | if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ |
473 | sh buildpkg.sh; \ | 473 | sh buildpkg.sh; \ |
474 | fi | 474 | fi |
475 | |||