Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/euler/files: configure-gentoo.patch
Date: Mon, 09 Jun 2014 16:31:28
Message-Id: 20140609163124.887692004F@flycatcher.gentoo.org
1 bicatali 14/06/09 16:31:24
2
3 Modified: configure-gentoo.patch
4 Log:
5 Fixed for glibc underlinking, thanks to Ted Tanberry and Kobboi, bug #512472
6
7 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
8
9 Revision Changes Path
10 1.2 sci-mathematics/euler/files/configure-gentoo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/euler/files/configure-gentoo.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/euler/files/configure-gentoo.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/euler/files/configure-gentoo.patch?r1=1.1&r2=1.2
15
16 Index: configure-gentoo.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/euler/files/configure-gentoo.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- configure-gentoo.patch 12 Feb 2006 15:45:26 -0000 1.1
23 +++ configure-gentoo.patch 9 Jun 2014 16:31:24 -0000 1.2
24 @@ -10,6 +10,17 @@
25 AC_PROG_CC
26 AM_PROG_CC_STDC
27 AC_HEADER_STDC
28 +@@ -21,6 +19,10 @@
29 +
30 +
31 + dnl Checks for libraries.
32 ++dnl Check for libm for fmod()
33 ++AC_SEARCH_LIBS([fmod], [m], [], [
34 ++ AC_MSG_ERROR([unable to find the fmod() function])
35 ++])
36 +
37 +
38 + dnl Checks for header files.
39 diff -Naur euler-1.61.0/src/Makefile.am euler-1.61.0-new/src/Makefile.am
40 --- euler-1.61.0/src/Makefile.am 2005-10-30 22:48:35.000000000 +0000
41 +++ euler-1.61.0-new/src/Makefile.am 2006-02-08 23:41:32.000000000 +0000