about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-27 02:09:36 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-27 02:09:36 +0000
commit99eb1b4c7590cc6a8328245e6ec1427ca4d16555 (patch)
tree83b656469a27bfa1c0c82c27bfb94b1ad86ae0de
parent5b2ab4418541e294abff56a37d861a4f1cc38db9 (diff)
downloadnetpbm-mirror-99eb1b4c7590cc6a8328245e6ec1427ca4d16555.tar.gz
netpbm-mirror-99eb1b4c7590cc6a8328245e6ec1427ca4d16555.tar.xz
netpbm-mirror-99eb1b4c7590cc6a8328245e6ec1427ca4d16555.zip
Release 10.66.04
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2214 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--doc/HISTORY6
-rw-r--r--editor/pamflip/pamflip.c2
-rw-r--r--version.mk2
3 files changed, 8 insertions, 2 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 5620065c..c1cee9e4 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,12 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+14.06.27 BJH  Release 10.66.04
+
+              pamflip: fix bug when built with WANT_SSE=n: column-for-row
+              transformations of PBM produce garbage output.  Introduced in
+              10.65 (December 2013).
+
 14.06.15 BJH  Release 10.66.03
 
               sgitopnm: fix bug: no output if input is RLE compressed.  Broken
diff --git a/editor/pamflip/pamflip.c b/editor/pamflip/pamflip.c
index 2f711184..b1d114c9 100644
--- a/editor/pamflip/pamflip.c
+++ b/editor/pamflip/pamflip.c
@@ -78,7 +78,7 @@
 enum xformType {LEFTRIGHT, TOPBOTTOM, TRANSPOSE};
 
 #ifndef SIMD_PBM_TRANSPOSITION
-  #if HAVE_GCC_SSE2 && defined(__SSE2__)
+  #if HAVE_GCC_SSE2 && WANT_SSE && defined(__SSE2__)
     #define SIMD_PBM_TRANSPOSITION 1
   #else
     #define SIMD_PBM_TRANSPOSITION 0
diff --git a/version.mk b/version.mk
index e3e4d9e6..b785d55d 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 66
-NETPBM_POINT_RELEASE = 3
+NETPBM_POINT_RELEASE = 4