[Bug 194116] [Port update] devel/ding-libs 0.1.3_1 -> 0.4.0
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Thu Oct 23 18:18:42 UTC 2014
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194116
lukas.slebodnik at intrak.sk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lukas.slebodnik at intrak.sk
--- Comment #8 from lukas.slebodnik at intrak.sk ---
This update of ding-libs port caused linking problems in sssd port.
http://pkg.supranet.net/data/latest-per-pkg/sssd/1.9.6_9/84amd64-default.log
http://pkg.supranet.net/data/latest-per-pkg/sssd/1.9.6_9/91amd64-default.log
{{{
root at fbsd10:/usr/ports/security/sssd # make V=0
//snip
CCLD sss_ssh_authorizedkeys
/usr/local/lib/libini_config.so: undefined reference to `libiconv'
/usr/local/lib/libini_config.so: undefined reference to `libiconv_close'
/usr/local/lib/libini_config.so: undefined reference to `libiconv_open'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Makefile:5357: recipe for target 'sss_ssh_authorizedkeys' failed
gmake[4]: *** [sss_ssh_authorizedkeys] Error 1
gmake[4]: Leaving directory '/usr/ports/security/sssd/work/sssd-1.9.6'
Makefile:9283: recipe for target 'all-recursive' failed
gmake[3]: *** [all-recursive] Error 1
gmake[3]: Leaving directory '/usr/ports/security/sssd/work/sssd-1.9.6'
Makefile:3592: recipe for target 'all' failed
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory '/usr/ports/security/sssd/work/sssd-1.9.6'
===> Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
the maintainer.
*** Error code 1
Stop.
make[1]: stopped in /usr/ports/security/sssd
}}}
The problem is that new version of ding-libs use iconv but was not linked with
libiconv.
{{{
# ldd /usr/local/lib/libini_config.so
/usr/local/lib/libini_config.so:
libcollection.so.4 => /usr/local/lib/libcollection.so.4 (0x281f6000)
libpath_utils.so.1 => /usr/local/lib/libpath_utils.so.1 (0x28202000)
libref_array.so.1 => /usr/local/lib/libref_array.so.1 (0x28205000)
libbasicobjects.so.0 => /usr/local/lib/libbasicobjects.so.0
(0x28208000)
libc.so.7 => /lib/libc.so.7 (0x2806c000)
# nm --dynamic --undefined-only /usr/local/lib/libini_config.so | grep iconv
U libiconv
U libiconv_close
U libiconv_open
}}}
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list