Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/starpu/files: starpu-1.0.1-detect-qt.patch
Date: Thu, 31 May 2012 19:15:34
Message-Id: 20120531191509.E906C2004C@flycatcher.gentoo.org
1 bicatali 12/05/31 19:15:09
2
3 Added: starpu-1.0.1-detect-qt.patch
4 Log:
5 Added doc, examples, and gcc-plugin flags. Fixed a wrong autoconf macro when checking for qt4
6
7 (Portage version: 2.1.10.63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/starpu/files/starpu-1.0.1-detect-qt.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/starpu/files/starpu-1.0.1-detect-qt.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/starpu/files/starpu-1.0.1-detect-qt.patch?rev=1.1&content-type=text/plain
14
15 Index: starpu-1.0.1-detect-qt.patch
16 ===================================================================
17 --- configure.ac.orig 2012-05-31 19:31:03.000000000 +0100
18 +++ configure.ac 2012-05-31 19:50:42.000000000 +0100
19 @@ -1085,13 +1085,13 @@
20 AC_ARG_ENABLE([starpu-top],
21 [AS_HELP_STRING([--disable-starpu-top],
22 [build StarPU-Top])],
23 - [enable_starpu_top="no"],
24 + [enable_starpu_top="$enableval"],
25 [enable_starpu_top="maybe"])
26
27 # Check whether StarPU-Top can be built
28 AC_MSG_CHECKING(for StarPU-Top)
29
30 -if test "x$enable_starpu_top" = "xmaybe" ; then
31 +if test "x$enable_starpu_top" != "xno" ; then
32 can_build_starpu_top=no
33 AC_PATH_PROGS([QMAKE], [qmake-qt4 qmake], [not-found])
34 if test x$QMAKE != xnot-found; then
35 @@ -1133,7 +1133,7 @@
36 fi
37 fi
38
39 -if test "x$enable_starpu_top" = "xmaybe" ; then
40 +if test "x$enable_starpu_top" != "xno" ; then
41 build_starpu_top=$can_build_starpu_top
42 else
43 build_starpu_top=no