1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: Add a patch to force linking against libm.
2016-09-19
Jump regress_1 test. THe upstream says that can
be safely ignore because the lib was developed on OpenBSD
and floating point numbers are rounded differently on Linux
https://github.com/jedisct1/libpuzzle/issues/2
Author: Logan Rosen <logan@ubuntu.com>
Reviewed-by: Herbert Parentes Fortes Neto <hpfn@debian.org>
Origin: https://bugs.debian.org/734564
Bug-Debian: https://bugs.debian.org/734564
Forwarded: no
Last-Update: 2016-09-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: libpuzzle-0.11/src/Makefile.am
===================================================================
--- libpuzzle-0.11.orig/src/Makefile.am
+++ libpuzzle-0.11/src/Makefile.am
@@ -32,15 +32,13 @@ puzzle_diff_SOURCES = \
puzzle.h
puzzle_diff_LDADD = \
- libpuzzle.la
+ libpuzzle.la -lm
TESTS = \
- regress_1 \
regress_2 \
regress_3
check_PROGRAMS = \
- regress_1 \
regress_2 \
regress_3
|