aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2023-09-25 19:19:43 +0000
committerDimitry Andric <dim@FreeBSD.org>2023-10-06 17:48:53 +0000
commit9b934eb81abe3155ced3ea0a592b6256169ea595 (patch)
treeaa42019c22f256821e8beab898b433589d3fa08f
parente5019ec343524cf41f4f0c059296036cf228a135 (diff)
downloadports-9b934eb81abe3155ced3ea0a592b6256169ea595.tar.gz
ports-9b934eb81abe3155ced3ea0a592b6256169ea595.zip
devel/gamin: fix build with lld 17
Building devel/gamin with lld 17 results in the following link error: cc -shared .libs/gam_api.o .libs/gam_data.o .libs/gam_fork.o .libs/gam_error.o .libs/gam_event.o -lpthread -L/usr/local/lib -fstack-protector-strong -Wl,--version-script=./gamin_sym.version -fstack-protector-strong -Wl,-soname -Wl,libfam.so.0 -o .libs/libfam.so.0.0.0 ld: error: version script assignment of 'global' to symbol 'FAMDebugLevel' failed: symbol not defined ld: error: version script assignment of 'global' to symbol 'FAMDebug' failed: symbol not defined cc: error: linker command failed with exit code 1 (use -v to see invocation) This is because the FAMDebugLevel and FAMDebug symbols are only defined when gamin is configured with --enable-debug, which we have no option for in the port. So fix it by removing the undefined symbols from the linker version script. PR: 274089 MFH: 2023Q4
-rw-r--r--devel/gamin/files/patch-libgamin_gamin__sym.version11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/gamin/files/patch-libgamin_gamin__sym.version b/devel/gamin/files/patch-libgamin_gamin__sym.version
new file mode 100644
index 000000000000..34fa1968003a
--- /dev/null
+++ b/devel/gamin/files/patch-libgamin_gamin__sym.version
@@ -0,0 +1,11 @@
+--- libgamin/gamin_sym.version.orig 2007-07-04 13:36:48 UTC
++++ libgamin/gamin_sym.version
+@@ -2,8 +2,6 @@
+ global:
+ FAMCancelMonitor;
+ FAMClose;
+- FAMDebugLevel;
+- FAMDebug;
+ FamErrlist;
+ FAMErrno;
+ FAMMonitorCollection;