From owner-svn-ports-all@freebsd.org Fri Jun 17 22:21:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0800A7854F; Fri, 17 Jun 2016 22:21:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 A1DBA1DDA; Fri, 17 Jun 2016 22:21:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5HMLLu7014592; Fri, 17 Jun 2016 22:21:21 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5HMLLxi014590; Fri, 17 Jun 2016 22:21:21 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201606172221.u5HMLLxi014590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 17 Jun 2016 22:21:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417039 - in head/devel/fossil: . files 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.22 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: Fri, 17 Jun 2016 22:21:22 -0000 Author: bapt Date: Fri Jun 17 22:21:21 2016 New Revision: 417039 URL: https://svnweb.freebsd.org/changeset/ports/417039 Log: Fix build with fuse option on PR: 210359 Submitted by: matthew@reztek.cz Added: head/devel/fossil/files/patch-autosetup_cc.tcl (contents, props changed) Modified: head/devel/fossil/Makefile Modified: head/devel/fossil/Makefile ============================================================================== --- head/devel/fossil/Makefile Fri Jun 17 21:48:09 2016 (r417038) +++ head/devel/fossil/Makefile Fri Jun 17 22:21:21 2016 (r417039) @@ -2,6 +2,7 @@ PORTNAME= fossil PORTVERSION= 1.35 +PORTREVISION= 1 DISTVERSIONPREFIX= src- PORTEPOCH= 2 CATEGORIES= devel www @@ -31,7 +32,8 @@ JSON_CONFIGURE_ON= --json STATIC_CONFIGURE_ON= --static FUSE_CONFIGURE_OFF= --disable-fusefs FUSE_LIB_DEPENDS= libfuse.so:sysutils/fusefs-libs -FUSE_CFLAGS= -I${LOCALBASE}/include -L${LOCALBASE}/lib +FUSE_CFLAGS= -I${LOCALBASE}/include +FUSE_LDFLAGS= -L${LOCALBASE}/lib post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fossil Added: head/devel/fossil/files/patch-autosetup_cc.tcl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fossil/files/patch-autosetup_cc.tcl Fri Jun 17 22:21:21 2016 (r417039) @@ -0,0 +1,11 @@ +--- autosetup/cc.tcl.orig 2016-06-14 11:10:39 UTC ++++ autosetup/cc.tcl +@@ -501,6 +501,8 @@ proc cctest {args} { + if {!$opts(-link)} { + set tmp conftest__.o + lappend cmdline -c ++ } else { ++ lappend cmdline {*}[get-define LDFLAGS] + } + lappend cmdline {*}$opts(-cflags) {*}[get-define cc-default-debug ""] +