summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-haskell/x11')
-rw-r--r--dev-haskell/x11/ChangeLog6
-rw-r--r--dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch21
2 files changed, 26 insertions, 1 deletions
diff --git a/dev-haskell/x11/ChangeLog b/dev-haskell/x11/ChangeLog
index 55727793e892..41124a8061b8 100644
--- a/dev-haskell/x11/ChangeLog
+++ b/dev-haskell/x11/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-haskell/x11
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/x11/ChangeLog,v 1.8 2008/05/25 11:17:06 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/x11/ChangeLog,v 1.9 2008/05/25 21:26:37 kolmodin Exp $
+
+ 25 May 2008; Lennart Kolmodin <kolmodin@gentoo.org>
+ +files/x11-1.4.2-with-xinerama.patch:
+ Add missing patch.
*x11-1.4.2 (25 May 2008)
diff --git a/dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch b/dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch
new file mode 100644
index 000000000000..97efd70c60d7
--- /dev/null
+++ b/dev-haskell/x11/files/x11-1.4.2-with-xinerama.patch
@@ -0,0 +1,21 @@
+This makes both --with-xinerama and --without-xinerama work.
+
+--- old-X11-1.4.2/configure.ac 2008-05-24 13:25:52.000000000 +0200
++++ new-X11-1.4.2/configure.ac 2008-05-24 13:25:52.000000000 +0200
+@@ -56,11 +56,11 @@
+ AC_MSG_CHECKING([whether to build Xinerama])
+ AC_ARG_WITH(xinerama,
+ AS_HELP_STRING([--without-xinerama], [do not build Xinerama support]),
+- want_xinerama=no,
+- want_xinerama=yes)
+-AC_MSG_RESULT([$want_xinerama])
++ [],
++ [with_xinerama=yes])
++AC_MSG_RESULT([$with_xinerama])
+
+-if test "$want_xinerama" = yes; then
++if test "$with_xinerama" = yes; then
+ AC_CHECK_HEADERS([X11/extensions/Xinerama.h], [have_xinerama=yes])
+ if test "$have_xinerama" = yes; then
+ EXTRA_LIBRARIES="extra-libraries: Xinerama Xext"
+