From owner-svn-ports-all@FreeBSD.ORG Thu Feb 12 20:52:27 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD62F4A2; Thu, 12 Feb 2015 20:52:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8989A81; Thu, 12 Feb 2015 20:52:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1CKqRar098156; Thu, 12 Feb 2015 20:52:27 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1CKqRDt098155; Thu, 12 Feb 2015 20:52:27 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201502122052.t1CKqRDt098155@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Thu, 12 Feb 2015 20:52:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378895 - head/ftp/bsdftpd-ssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2015 20:52:27 -0000 Author: sbruno Date: Thu Feb 12 20:52:26 2015 New Revision: 378895 URL: https://svnweb.freebsd.org/changeset/ports/378895 QAT: https://qat.redports.org/buildarchive/r378895/ Log: Explicitly link against libpam. Fixes builds with external toolchains (qemu powered poudriere). PR: 196966 Approved by: maintainer timeout Modified: head/ftp/bsdftpd-ssl/Makefile Modified: head/ftp/bsdftpd-ssl/Makefile ============================================================================== --- head/ftp/bsdftpd-ssl/Makefile Thu Feb 12 20:48:26 2015 (r378894) +++ head/ftp/bsdftpd-ssl/Makefile Thu Feb 12 20:52:26 2015 (r378895) @@ -25,6 +25,9 @@ USE_RC_SUBR= ${PORTNAME} OPTIONS_DEFAULT=SERVER .endif +# explicitly link against libpam to support external toolchains. +LDFLAGS+= -lpam + .include .if ${PORT_OPTIONS:MSERVER} && ${PORT_OPTIONS:MEXAMPLES}