about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-11-27 03:12:47 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-11-27 03:12:47 +0000
commitacd527864efe6651f58a291ec6d707188ea20b29 (patch)
tree4eb1a9be86b54bd3fdb46d32281725b95420a640
parent5e62b9f6918945350269c751cbb3124c7e48c6f1 (diff)
downloadnetpbm-mirror-acd527864efe6651f58a291ec6d707188ea20b29.tar.gz
netpbm-mirror-acd527864efe6651f58a291ec6d707188ea20b29.tar.xz
netpbm-mirror-acd527864efe6651f58a291ec6d707188ea20b29.zip
Release 10.35.18
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@146 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--Makefile.version2
-rwxr-xr-xbuildtools/configure.pl2
-rw-r--r--doc/HISTORY7
-rw-r--r--lib/libppmcolor.c1
4 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.version b/Makefile.version
index d481103e..2260378d 100644
--- a/Makefile.version
+++ b/Makefile.version
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 35
-NETPBM_POINT_RELEASE = 17
+NETPBM_POINT_RELEASE = 18
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index e061b13b..464c89d0 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -586,7 +586,7 @@ sub libSuffix($) {
 
     if ($platform eq 'windows') {
         $suffix = '.a';
-    } elsif ($platform= 'darwin') {
+    } elsif ($platform eq 'darwin') {
         $suffix = '.dylib';
     } else {
         $suffix = '.so';
diff --git a/doc/HISTORY b/doc/HISTORY
index ab59d041..55f1055e 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,13 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+06.11.27 BJH  Release 10.35.18
+
+              Configure: Fix incorrect .dylib suffix in shared library default.
+
+              libnetpbm: fix bogus results from ppm_parsecolor() of
+              rgb:0/0/0 style color name.
+
 06.11.18 BJH  Release 10.35.17
 
               ppmtogif: fix garbage output with non-ppm-raw input;
diff --git a/lib/libppmcolor.c b/lib/libppmcolor.c
index 7cfacd29..8ecfd80d 100644
--- a/lib/libppmcolor.c
+++ b/lib/libppmcolor.c
@@ -145,6 +145,7 @@ parseHexDigits(const char *   const string,
     pixval n;
     
     digitCount = 0;
+    n = 0;
     while (string[digitCount] != delim) {
         char const digit = string[digitCount];
         if (digit == '\0')