Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Oct 2023 10:56:59 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: dee420703ee1 - main - graphics/libgphoto2: fix build with lld 17
Message-ID:  <202310211056.39LAuxoo020885@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dim:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dee420703ee18ac8be9d10a488a3f650481aff78

commit dee420703ee18ac8be9d10a488a3f650481aff78
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2023-10-07 14:54:00 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2023-10-21 10:52:22 +0000

    graphics/libgphoto2: fix build with lld 17
    
    Building graphics/libgphoto2 with lld 17 results in the following link
    error:
    
      libtool: link: cc -shared  -fPIC -DPIC  .libs/libgphoto2_port_la-gphoto2-port-info-list.o .libs/libgphoto2_port_la-gphoto2-port-log.o .libs/libgphoto2_port_la-gphoto2-port-version.o .libs/libgphoto2_port_la-gphoto2-port.o .libs/libgphoto2_port_la-gphoto2-port-portability.o .libs/libgphoto2_port_la-gphoto2-port-result.o   -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/local/lib/libltdl.so -lintl -lpthread -lregex  -O2 -fstack-protector-strong -Wl,--version-script=./libgphoto2_port.ver -fstack-protector-strong -Wl,-rpath -Wl,/usr/local/lib   -Wl,-soname -Wl,libgphoto2_port.so.12 -o .libs/libgphoto2_port.so.12.0.0
      ld: error: version script assignment of 'LIBGPHOTO2_INTERNAL' to symbol 'gpi_gphoto_port_type_map' failed: symbol not defined
      cc: error: linker command failed with exit code 1 (use -v to see invocation)
    
    The mentioned symbol has been removed from libgphoto2 a long time ago,
    so remove it from the linker version script.
    
    PR:             274334
    Approved by:    maintainer timeout (2 weeks)
    MFH:            2023Q4
---
 ...atch-libgphoto2__port_libgphoto2__port_libgphoto2__port.ver | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/graphics/libgphoto2/files/patch-libgphoto2__port_libgphoto2__port_libgphoto2__port.ver b/graphics/libgphoto2/files/patch-libgphoto2__port_libgphoto2__port_libgphoto2__port.ver
new file mode 100644
index 000000000000..cec70d8e0ad5
--- /dev/null
+++ b/graphics/libgphoto2/files/patch-libgphoto2__port_libgphoto2__port_libgphoto2__port.ver
@@ -0,0 +1,10 @@
+--- libgphoto2_port/libgphoto2_port/libgphoto2_port.ver.orig	2019-02-05 07:18:06 UTC
++++ libgphoto2_port/libgphoto2_port/libgphoto2_port.ver
+@@ -70,7 +70,6 @@ LIBGPHOTO2_INTERNAL {
+ 
+ # These are only supposed to be used by libgphoto2 internally.
+ LIBGPHOTO2_INTERNAL {
+-	gpi_gphoto_port_type_map;
+ 	gpi_enum_to_string;
+ 	gpi_string_to_enum;
+ 	gpi_string_to_flag;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202310211056.39LAuxoo020885>