1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

MFkde-freebsd Repository:

Add a patch that defuses a configure-check
which keeps blowing up on some people.

Submitted by: Alexander Kirillov <nevis2us@infline.ru>,
	      Charles Anderson <caa@midgard.dhs.org>
This commit is contained in:
Tilman Keskinoz 2003-05-12 12:12:46 +00:00
parent ecb1fa8756
commit fda9b49929
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80824
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- configure.orig Fri May 2 15:23:56 2003
+++ configure Fri May 2 15:24:28 2003
@@ -26016,7 +26016,7 @@ fi
echo "$as_me:$LINENO: result: $ac_cv_x86_sse" >&5
echo "${ECHO_T}$ac_cv_x86_sse" >&6
-if eval "test \"`echo `$ac_cv_x86_sse\" = yes"; then
+if test $ac_cv_x86_sse = yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_X86_SSE 1

View File

@ -0,0 +1,11 @@
--- configure.orig Fri May 2 15:23:56 2003
+++ configure Fri May 2 15:24:28 2003
@@ -26016,7 +26016,7 @@ fi
echo "$as_me:$LINENO: result: $ac_cv_x86_sse" >&5
echo "${ECHO_T}$ac_cv_x86_sse" >&6
-if eval "test \"`echo `$ac_cv_x86_sse\" = yes"; then
+if test $ac_cv_x86_sse = yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_X86_SSE 1