Displaying 2 results from an estimated 2 matches for "id3lib_found".
2004 Sep 10
2
Re: non-PIC code in shared libs again
On Tue, Feb 11, 2003 at 05:14:45PM +0000, Christian Weisgerber wrote:
> Ben Hines <bhines@alumni.ucsd.edu> wrote:
>
> > The patch fixed the problem with your libs. However, when linking the
> > xmms plugin i still get:
> >
> > *** Warning: This library needs some functionality provided by -lstdc++.
>
> This is because of id3lib, which is written in
2004 Sep 10
0
Re: non-PIC code in shared libs again
...lstdc++" "-lid3 -lz" "-lid3 -lz -lstdc++"
- for xtra_stdcpp in "" " -lstdc++" ; do
+ for xtra_stdcpp in "" " " ; do
for xtra_z in "" " -lz" ; do
if test "x$id3lib_found" = "x" ; then
ac_save_CFLAGS="$CFLAGS"
Works fine. As i said, the -lstdc++ isn't needed on darwin, because we
have a static C++ library that's already linked into id3. Perhaps you
could conditionalize that for the darwin platform...