diff options
author | bland <bland@FreeBSD.org> | 2006-04-11 11:13:26 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2006-04-11 11:13:26 +0800 |
commit | bb752d917e52b2862fad24ae2de85365093e4377 (patch) | |
tree | d7b9a8d91c515c83443bf1278bea786ce25ae01f | |
parent | 360e51e3b2bbda396e3abe6c3ca1765481db3668 (diff) | |
download | freebsd-ports-gnome-bb752d917e52b2862fad24ae2de85365093e4377.tar.gz freebsd-ports-gnome-bb752d917e52b2862fad24ae2de85365093e4377.tar.zst freebsd-ports-gnome-bb752d917e52b2862fad24ae2de85365093e4377.zip |
Unbreak i686+ builds. Do not use bogus asm optimized code block.
PR: 95400
-rw-r--r-- | devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx b/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx index 7804b53c0980..113cf9728c88 100644 --- a/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx +++ b/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx @@ -1,11 +1,12 @@ --- src/ptlib/common/jidctflt.cxx.orig Wed Apr 5 07:08:00 2006 +++ src/ptlib/common/jidctflt.cxx Wed Apr 5 07:08:08 2006 -@@ -80,7 +80,7 @@ +@@ -80,7 +80,8 @@ #define DEQUANTIZE(coef,quantval) (((FAST_FLOAT) (coef)) * (quantval)) -#if defined(__GNUC__) && (defined(__i686__) || defined(__x86_64__)) -+#if defined(__GNUC__) && defined(__i686__) - ++/* asm doesn't compile properly... avoid using */ ++#if 0 + static inline unsigned char descale_and_clamp(int x, int shift) { |