All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] libsndfile: disable external library dependencies
@ 2017-01-19 20:11 Peter Seiderer
  2017-01-20  2:22 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Seiderer @ 2017-01-19 20:11 UTC (permalink / raw)
  To: buildroot

Fixes static linking of pifmrds [1]:

host/usr/bin/arm-linux-gcc -static -o pi_fm_rds rds.o waveforms.o pi_fm_rds.o fm_mpx.o control_pipe.o -lsndfile -lm
.../host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(flac.o): In function `sf_flac_error_callback':
 flac.c:(.text+0x44c): undefined reference to `FLAC__StreamDecoderErrorStatusString'

host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(ogg.o): In function `ogg_close':
 ogg.c:(.text+0x10): undefined reference to `ogg_sync_clear'

host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(ogg_vorbis.o): In function `vorbis_read_sample':
ogg_vorbis.c:(.text+0x26c): undefined reference to `vorbis_synthesis_pcmout'

[1] http://autobuild.buildroot.net/results/9b7/9b7638caa8f3e82e38fb68b0321cb649618a0131

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/libsndfile/libsndfile.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/libsndfile/libsndfile.mk b/package/libsndfile/libsndfile.mk
index aaef6571f..c5cd1de10 100644
--- a/package/libsndfile/libsndfile.mk
+++ b/package/libsndfile/libsndfile.mk
@@ -10,4 +10,9 @@ LIBSNDFILE_INSTALL_STAGING = YES
 LIBSNDFILE_LICENSE = LGPLv2.1+
 LIBSNDFILE_LICENSE_FILES = COPYING
 
+LIBSNDFILE_CONF_OPTS = \
+	--disable-sqlite \
+	--disable-alsa \
+	--disable-external-libs
+
 $(eval $(autotools-package))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH v1] libsndfile: disable external library dependencies
  2017-01-19 20:11 [Buildroot] [PATCH v1] libsndfile: disable external library dependencies Peter Seiderer
@ 2017-01-20  2:22 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2017-01-20  2:22 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 19 Jan 2017 21:11:32 +0100, Peter Seiderer wrote:
> Fixes static linking of pifmrds [1]:
> 
> host/usr/bin/arm-linux-gcc -static -o pi_fm_rds rds.o waveforms.o pi_fm_rds.o fm_mpx.o control_pipe.o -lsndfile -lm
> .../host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(flac.o): In function `sf_flac_error_callback':
>  flac.c:(.text+0x44c): undefined reference to `FLAC__StreamDecoderErrorStatusString'
> 
> host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(ogg.o): In function `ogg_close':
>  ogg.c:(.text+0x10): undefined reference to `ogg_sync_clear'
> 
> host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsndfile.a(ogg_vorbis.o): In function `vorbis_read_sample':
> ogg_vorbis.c:(.text+0x26c): undefined reference to `vorbis_synthesis_pcmout'
> 
> [1] http://autobuild.buildroot.net/results/9b7/9b7638caa8f3e82e38fb68b0321cb649618a0131
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/libsndfile/libsndfile.mk | 5 +++++
>  1 file changed, 5 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-01-20  2:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-19 20:11 [Buildroot] [PATCH v1] libsndfile: disable external library dependencies Peter Seiderer
2017-01-20  2:22 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.