diff options
author | Sean Bruno <sbruno@FreeBSD.org> | 2015-02-12 20:52:26 +0000 |
---|---|---|
committer | Sean Bruno <sbruno@FreeBSD.org> | 2015-02-12 20:52:26 +0000 |
commit | 0552c4fd0de94154507fb28d9b9fcfc10c578ff2 (patch) | |
tree | d812917a54c51ab1e7d4bf4b3fb7f8a60617d0db /ftp/bsdftpd-ssl | |
parent | 090230c211eb17c01d23c152f3db58be0d3abcfb (diff) |
Explicitly link against libpam. Fixes builds with external toolchains (qemu powered
poudriere).
PR: 196966
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=378895
Diffstat (limited to 'ftp/bsdftpd-ssl')
-rw-r--r-- | ftp/bsdftpd-ssl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ftp/bsdftpd-ssl/Makefile b/ftp/bsdftpd-ssl/Makefile index 69e08697412e..ec1ee4256016 100644 --- a/ftp/bsdftpd-ssl/Makefile +++ b/ftp/bsdftpd-ssl/Makefile @@ -25,6 +25,9 @@ USE_RC_SUBR= ${PORTNAME} OPTIONS_DEFAULT=SERVER .endif +# explicitly link against libpam to support external toolchains. +LDFLAGS+= -lpam + .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MSERVER} && ${PORT_OPTIONS:MEXAMPLES} |