Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/hugin/files: hugin-0.8.0_rc3-unset_lapack.patch
Date: Fri, 19 Jun 2009 09:20:32
Message-Id: E1MHaGs-0008Bd-8v@stork.gentoo.org
1 dev-zero 09/06/19 09:20:30
2
3 Added: hugin-0.8.0_rc3-unset_lapack.patch
4 Log:
5 Added patch to unset LAPACK_LIBRARIES if lapack is not found, otherwise cmake sets it to NOTFOUND leading to an error.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-gfx/hugin/files/hugin-0.8.0_rc3-unset_lapack.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/files/hugin-0.8.0_rc3-unset_lapack.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/hugin/files/hugin-0.8.0_rc3-unset_lapack.patch?rev=1.1&content-type=text/plain
13
14 Index: hugin-0.8.0_rc3-unset_lapack.patch
15 ===================================================================
16 --- CMakeModules/FindLAPACK.cmake.orig 2009-06-19 11:13:06.922006535 +0200
17 +++ CMakeModules/FindLAPACK.cmake 2009-06-19 11:13:38.566170050 +0200
18 @@ -17,5 +17,6 @@
19
20 IF(LAPACK_LIBRARIES)
21 SET( LAPACK_FOUND "YES" )
22 +ELSE(LAPACK_LIBRARIES)
23 + SET( LAPACK_LIBRARIES "")
24 ENDIF(LAPACK_LIBRARIES)
25 -