diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2006-04-24 21:40:59 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2006-04-24 21:40:59 +0000 |
commit | 850c5643a9ef0724842a46bc88e9b5cf92ca1e7a (patch) | |
tree | 2112792a1080dca575824516f566e8fc159af765 /dev-lisp/cl-jpeg/files | |
parent | added freebsd patches (#128937) and possible solution to doc generation bug (... (diff) | |
download | gentoo-2-850c5643a9ef0724842a46bc88e9b5cf92ca1e7a.tar.gz gentoo-2-850c5643a9ef0724842a46bc88e9b5cf92ca1e7a.tar.bz2 gentoo-2-850c5643a9ef0724842a46bc88e9b5cf92ca1e7a.zip |
Don't try the compile-time *quantization-optimization* test when CLISP is being used; Resolves Bug #104857.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'dev-lisp/cl-jpeg/files')
-rw-r--r-- | dev-lisp/cl-jpeg/files/1.033-quantize-optimization-clisp-gentoo.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-lisp/cl-jpeg/files/1.033-quantize-optimization-clisp-gentoo.patch b/dev-lisp/cl-jpeg/files/1.033-quantize-optimization-clisp-gentoo.patch new file mode 100644 index 000000000000..0f0edb41da5b --- /dev/null +++ b/dev-lisp/cl-jpeg/files/1.033-quantize-optimization-clisp-gentoo.patch @@ -0,0 +1,13 @@ +diff -ur cljl.orig/jpeg.lisp cljl/jpeg.lisp +--- cljl.orig/jpeg.lisp 2003-10-06 12:49:30.000000000 -0500 ++++ cljl/jpeg.lisp 2006-04-24 16:37:38.000000000 -0500 +@@ -256,7 +256,8 @@ + (finish-output) + + (defvar *quantize-optimization* +- (<= (let ((time1 (get-internal-run-time))) ++ #+clisp t ++ #-clisp (<= (let ((time1 (get-internal-run-time))) + (loop for i fixnum from 1 to 3000 do + (loop for row across *q-luminance* do + (loop for q-coef fixnum across row |