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-physics/harminv/files: harminv-1.3.1-configure.ac.patch
Date: Wed, 06 Feb 2008 14:23:22
Message-Id: E1JMlBH-00060b-PI@stork.gentoo.org
1 bicatali 08/02/06 14:23:19
2
3 Added: harminv-1.3.1-configure.ac.patch
4 Log:
5 Initial import. Ebuild first submitted by Ben Schwartz, see bug #170989
6 (Portage version: 2.1.4.1)
7
8 Revision Changes Path
9 1.1 sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/files/harminv-1.3.1-configure.ac.patch?rev=1.1&content-type=text/plain
13
14 Index: harminv-1.3.1-configure.ac.patch
15 ===================================================================
16 --- configure.ac.orig 2007-09-27 09:27:28.731439558 +0100
17 +++ configure.ac 2007-09-27 09:37:45.755835491 +0100
18 @@ -9,7 +9,7 @@
19 # *not* the same as the "public" version number. CURRENT:REVISION:AGE
20 SHARED_VERSION_INFO="2:4:0"
21 AC_SUBST(SHARED_VERSION_INFO)
22 -AM_ENABLE_SHARED(no) dnl shared libs cause too many headaches to be default
23 +AM_ENABLE_SHARED(yes) dnl shared libs cause too many headaches to be default
24
25 ##############################################################################
26
27 @@ -123,9 +123,16 @@
28 ###########################################################################
29
30 # Checks for BLAS/LAPACK libraries:
31 -
32 -ACX_BLAS([], [AC_MSG_ERROR([BLAS library not found])])
33 -ACX_LAPACK([], [AC_MSG_ERROR([LAPACK library not found])])
34 +sinclude(acx_blas.m4)
35 +ACX_BLAS
36 +if test x"$BLAS_LIBS" = x ; then
37 + AC_MSG_ERROR([BLAS library not found])
38 +fi
39 +sinclude(acx_lapack.m4)
40 +ACX_LAPACK
41 +if test x"$LAPACK_LIBS" = x ; then
42 + AC_MSG_ERROR([LAPACK library not found])
43 +fi
44
45 LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
46
47
48
49
50 --
51 gentoo-commits@l.g.o mailing list