Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2014 18:18:42 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 194116] [Port update] devel/ding-libs 0.1.3_1 -> 0.4.0
Message-ID:  <bug-194116-13-czfFJ7Hr5M@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-194116-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-194116-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194116

lukas.slebodnik@intrak.sk changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lukas.slebodnik@intrak.sk

--- Comment #8 from lukas.slebodnik@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@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-194116-13-czfFJ7Hr5M>