diff options
author | sbruno <sbruno@FreeBSD.org> | 2015-02-13 04:52:26 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2015-02-13 04:52:26 +0800 |
commit | cb5a5f06d9c485b1d80d09ca6ac658b8dfb5e14c (patch) | |
tree | d812917a54c51ab1e7d4bf4b3fb7f8a60617d0db /ftp | |
parent | 7ec0c68a62be7d86a79b28dd5a5fa08246032e8b (diff) | |
download | freebsd-ports-gnome-cb5a5f06d9c485b1d80d09ca6ac658b8dfb5e14c.tar.gz freebsd-ports-gnome-cb5a5f06d9c485b1d80d09ca6ac658b8dfb5e14c.tar.zst freebsd-ports-gnome-cb5a5f06d9c485b1d80d09ca6ac658b8dfb5e14c.zip |
Explicitly link against libpam. Fixes builds with external toolchains (qemu powered
poudriere).
PR: 196966
Approved by: maintainer timeout
Diffstat (limited to 'ftp')
-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} |