External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.1KB

  1. Forwarded: https://github.com/xiph/vorbis/pull/65
  2. From: Matthias Klose <doko@ubuntu.com>
  3. Date: Mon, 11 Oct 2010 10:32:05 +0200
  4. Subject: Fix build failure with DSO link changes.
  5. Make sure to link tests with -lm to fix linker error.
  6. Origin: http://launchpadlibrarian.net/57621522/libvorbis_1.3.1-1_1.3.1-1ubuntu1.diff.gz
  7. Bug-Debian: http://bugs.debian.org/604797
  8. Reviewed-By: Petter Reinholdtsen <pere@debian.org>
  9. Last-Update: 2014-10-14
  10. ---
  11. test/Makefile.am | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. Index: libvorbis/test/Makefile.am
  14. ===================================================================
  15. --- libvorbis.orig/test/Makefile.am 2018-03-22 08:15:14.098604347 +0100
  16. +++ libvorbis/test/Makefile.am 2018-03-22 08:15:14.094604308 +0100
  17. @@ -10,7 +10,7 @@
  18. AM_CPPFLAGS = -I$(top_srcdir)/include @OGG_CFLAGS@
  19. test_SOURCES = util.c util.h write_read.c write_read.h test.c
  20. -test_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la @OGG_LIBS@ @VORBIS_LIBS@
  21. +test_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la @OGG_LIBS@ @VORBIS_LIBS@ -lm
  22. debug:
  23. $(MAKE) check CFLAGS="@DEBUG@"