Gentoo Archives: gentoo-commits

From: "Lennart Kolmodin (kolmodin)" <kolmodin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/x11/files: x11-1.4.2-with-xinerama.patch
Date: Sun, 25 May 2008 21:26:41
Message-Id: E1K0Nji-0006UD-Kf@stork.gentoo.org
1 kolmodin 08/05/25 21:26:38
2
3 Added: x11-1.4.2-with-xinerama.patch
4 Log:
5 Add missing patch to dev-haskell/x11.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch?rev=1.1&content-type=text/plain
13
14 Index: x11-1.4.2-with-xinerama.patch
15 ===================================================================
16 This makes both --with-xinerama and --without-xinerama work.
17
18 --- old-X11-1.4.2/configure.ac 2008-05-24 13:25:52.000000000 +0200
19 +++ new-X11-1.4.2/configure.ac 2008-05-24 13:25:52.000000000 +0200
20 @@ -56,11 +56,11 @@
21 AC_MSG_CHECKING([whether to build Xinerama])
22 AC_ARG_WITH(xinerama,
23 AS_HELP_STRING([--without-xinerama], [do not build Xinerama support]),
24 - want_xinerama=no,
25 - want_xinerama=yes)
26 -AC_MSG_RESULT([$want_xinerama])
27 + [],
28 + [with_xinerama=yes])
29 +AC_MSG_RESULT([$with_xinerama])
30
31 -if test "$want_xinerama" = yes; then
32 +if test "$with_xinerama" = yes; then
33 AC_CHECK_HEADERS([X11/extensions/Xinerama.h], [have_xinerama=yes])
34 if test "$have_xinerama" = yes; then
35 EXTRA_LIBRARIES="extra-libraries: Xinerama Xext"
36
37
38
39
40 --
41 gentoo-commits@l.g.o mailing list