diff options
author | tnn <tnn@pkgsrc.org> | 2008-07-12 15:34:48 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-07-12 15:34:48 +0000 |
commit | bcab8d0c862a5e4a7ea313c1078a6c4f09e9094f (patch) | |
tree | f493062c452f6f7fd9f2150d86c023712936c0ba /x11 | |
parent | 8860ed4e906d7e7789cb07efd3c09f0baf92ff4b (diff) | |
download | pkgsrc-bcab8d0c862a5e4a7ea313c1078a6c4f09e9094f.tar.gz |
Recommit the following, which was removed a couple of weeks ago:
date: 2008/04/27 11:58:09; author: tnn; state: Exp; lines: +2 -2
Skip the SSE2 configure test if we already know we don't have SSE,
because Sun Studio gets the result of the SSE2 test wrong.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/pixman/distinfo | 4 | ||||
-rw-r--r-- | x11/pixman/patches/patch-ae | 20 |
2 files changed, 20 insertions, 4 deletions
diff --git a/x11/pixman/distinfo b/x11/pixman/distinfo index 6d33d8ab652..d2f8c61afa1 100644 --- a/x11/pixman/distinfo +++ b/x11/pixman/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.13 2008/06/19 17:51:27 bjs Exp $ +$NetBSD: distinfo,v 1.14 2008/07/12 15:34:48 tnn Exp $ SHA1 (pixman-0.11.4.tar.bz2) = e74dfcc6435edf7a397e8c42ffb4d581484e05d3 RMD160 (pixman-0.11.4.tar.bz2) = 000ec544e1c25b6ef955eed098c3906b095e10d5 @@ -7,4 +7,4 @@ SHA1 (patch-aa) = dbb1a2ef0c8f9db1e4897b60b3c8b6dc8a44dd39 SHA1 (patch-ab) = 41634a1a885fcf08800073ccd094db4f02020e3a SHA1 (patch-ac) = cce53aed1451e328a57c2f3dc80391b3959194af SHA1 (patch-ad) = c7fe169e062bbdc58db484874409a502f0f80018 -SHA1 (patch-ae) = c040428b7a1bad8c5c5f95dd7e96ffecc9d74b49 +SHA1 (patch-ae) = cf6ce4df1d116711db6e5051e513ea2dfc121dba diff --git a/x11/pixman/patches/patch-ae b/x11/pixman/patches/patch-ae index e701c21d61f..2ed3ff96db7 100644 --- a/x11/pixman/patches/patch-ae +++ b/x11/pixman/patches/patch-ae @@ -1,6 +1,6 @@ -$NetBSD: patch-ae,v 1.3 2008/06/19 17:51:27 bjs Exp $ +$NetBSD: patch-ae,v 1.4 2008/07/12 15:34:49 tnn Exp $ ---- configure.orig 2008-06-09 12:35:16.000000000 -0400 +--- configure.orig 2008-06-09 18:35:16.000000000 +0200 +++ configure @@ -19770,6 +19770,7 @@ fi @@ -19,3 +19,19 @@ $NetBSD: patch-ae,v 1.3 2008/06/19 17:51:27 bjs Exp $ if test "x$have_gcc4" = "xyes"; then CFLAGS="$CFLAGS -fvisibility=hidden" fi +@@ -19969,6 +19970,7 @@ fi + have_sse2_intrinsics=no + { echo "$as_me:$LINENO: checking whether to use SSE2 intrinsics" >&5 + echo $ECHO_N "checking whether to use SSE2 intrinsics... $ECHO_C" >&6; } ++if test $have_sse_intrinsics = yes; then + xserver_save_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -msse2 $SSE_CFLAGS" + +@@ -20013,6 +20015,7 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + CFLAGS=$xserver_save_CFLAGS ++fi + { echo "$as_me:$LINENO: result: $have_sse2_intrinsics" >&5 + echo "${ECHO_T}$have_sse2_intrinsics" >&6; } + |