Created attachment 171525 [details] fix build of devel/fossil with FUSE option Build of devel/fossil with FUSE option enabled fails in linking because it cannot find libfuse without -L{LOCALBASE}/lib. The proper solution is to move -L{LOCALBASE}/lib from CFLAGS to LDFLAGS so it is used during linking instead of only triggering warnings about being an used flag when compiling. However, the configure test then fails to find libfuse_mount because it is only using CFLAGS when linking library detection tests. So, patch the build framework to respect LDFLAGS when building library checking routines.
A commit references this bug: Author: bapt Date: Fri Jun 17 22:21:22 UTC 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 Changes: head/devel/fossil/Makefile head/devel/fossil/files/patch-autosetup_cc.tcl
thank you!