tags 554371 patch
thanks
On 2009-11-04 Peter Fritzsche <peter.fritzs...@gmx.de> wrote:
> Source: freewheeling
> Version: 0.6-1
[...]
> Tried to build your package and it fails to build with GNU binutils-gold. The
> important difference is that --no-add-needed is the default behavior of of GNU
> binutils-gold. Please provide all needed libraries to the linker when building
> your executables.
[...]

Hello,
freewheeling nowadays fails with the sid toolchain. 
http://lists.debian.org/debian-devel-announce/2011/02/msg00011.html

Find attached a minimal patch to fix the issue.

I have uploaded a fixed package with the following changelog entry to
delayed/7:
-------------------------------
Link against both libSDL and libogg (040_linkoggandSDL.diff) and run
autoreconf (041_autoreconf.diff). Fixes FTBFS --no-copy-dt-needed-entries.
Closes: #554371
-------------------------------

The complete package can be temporarily found on
http://www.bebt.de/tmp/freewheeling/

I have uploaded directly to delayed since my Debian time on work days
is limited. My interest for this bug is that freewheeling would block
gnutls migration.
http://lists.debian.org/debian-release/2011/03/msg00405.html

cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'
Description: Link against libSDL and libogg
Author: Andreas Metzler <ametz...@debian.org>
Bug-Debian: http://bugs.debian.org/554371

--- freewheeling-0.6.orig/configure.ac
+++ freewheeling-0.6/configure.ac
@@ -36,6 +36,9 @@ AC_CHECK_FUNC(filledPieRGBA, [AC_DEFINE(
 AC_CHECK_LIB([SDL_ttf], [main], , 
   [AC_MSG_ERROR(VIDEO: You need libsdl-ttf2.0-dev installed.
 		http://www.libsdl.org/projects/SDL_ttf/)])
+AC_CHECK_LIB([SDL], [main], , 
+  [AC_MSG_ERROR(AUDIO: You need SDL 1.2 installed.
+		http://www.libsdl.org/)])
 
 AC_CHECK_LIB([xml2], [main], , 
   [AC_MSG_ERROR(CONFIG: You need libxml2-dev installed.
@@ -83,6 +86,9 @@ fi
 #		          http://www.libsdl.org/])
 #)
 
+AC_CHECK_LIB([ogg], [main], , 
+  [AC_MSG_ERROR(AUDIO: You need libogg-dev installed.
+		http://www.xiph.org/ogg/)])
 AC_CHECK_LIB([vorbis], [main], , 
   [AC_MSG_ERROR(AUDIO: You need libvorbis-dev installed.
 		http://www.xiph.org/ogg/vorbis/)])

Reply via email to