summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2008-07-19 04:02:50 +0000
committerDoug Goldstein <cardoe@gentoo.org>2008-07-19 04:02:50 +0000
commit177fbeb989ea30a83568ca53d561b41dbca0e723 (patch)
treed3b2dd4f575c5393d81e1e618cc88dea6e4ef886 /x11-libs/pixman/files
parentVersion of yelp using xulrunner 1.9 (diff)
downloadhistorical-177fbeb989ea30a83568ca53d561b41dbca0e723.tar.gz
historical-177fbeb989ea30a83568ca53d561b41dbca0e723.tar.bz2
historical-177fbeb989ea30a83568ca53d561b41dbca0e723.zip
fix bug #232126. Patch from Søren Sandmann <sandmann@redhat.com> to fix SSE2 check
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.25-gentoo-r5 x86_64
Diffstat (limited to 'x11-libs/pixman/files')
-rw-r--r--x11-libs/pixman/files/pixman-0.11.8-sse2-intrinsics-check.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/x11-libs/pixman/files/pixman-0.11.8-sse2-intrinsics-check.patch b/x11-libs/pixman/files/pixman-0.11.8-sse2-intrinsics-check.patch
new file mode 100644
index 000000000000..9d4eaced5524
--- /dev/null
+++ b/x11-libs/pixman/files/pixman-0.11.8-sse2-intrinsics-check.patch
@@ -0,0 +1,19 @@
+From: Søren Sandmann Pedersen <sandmann@redhat.com>
+Date: Fri, 18 Jul 2008 18:49:35 +0000 (-0400)
+Subject: Fix typo in sse2 configure logic
+X-Git-Url: http://gitweb.freedesktop.org/?p=pixman.git;a=commitdiff;h=51576cda8ba830c0d7dbbeaebb79fbef276f7e2d
+
+Fix typo in sse2 configure logic
+---
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -250,7 +250,7 @@ if test $have_sse2_intrinsics = yes ; th
+ fi
+
+ AC_MSG_RESULT($have_sse2_intrinsics)
+-if test $enable_sse2 = yes && test $have_sse_intrinsics = no ; then
++if test $enable_sse2 = yes && test $have_sse2_intrinsics = no ; then
+ AC_MSG_ERROR([SSE2 intrinsics not detected])
+ fi
+