diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2006-11-27 03:12:11 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2006-11-27 03:12:11 +0000 |
commit | e304835519fb5985a426a3e097722d7439685f30 (patch) | |
tree | cec791ab4b94bb3c8489ca704fe5bfe9a3deab97 | |
parent | 36a2bd5e22900327b6ca04d1a34c0f4a0da04248 (diff) | |
download | netpbm-mirror-e304835519fb5985a426a3e097722d7439685f30.tar.gz netpbm-mirror-e304835519fb5985a426a3e097722d7439685f30.tar.xz netpbm-mirror-e304835519fb5985a426a3e097722d7439685f30.zip |
Release 10.36.13
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@145 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r-- | Makefile.version | 2 | ||||
-rwxr-xr-x | buildtools/configure.pl | 2 | ||||
-rw-r--r-- | doc/HISTORY | 7 | ||||
-rw-r--r-- | lib/libppmcolor.c | 1 |
4 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.version b/Makefile.version index 5f8411f0..e864d02f 100644 --- a/Makefile.version +++ b/Makefile.version @@ -1,4 +1,4 @@ NETPBM_MAJOR_RELEASE = 10 NETPBM_MINOR_RELEASE = 36 -NETPBM_POINT_RELEASE = 12 +NETPBM_POINT_RELEASE = 13 diff --git a/buildtools/configure.pl b/buildtools/configure.pl index b3dd3ca9..f8b46608 100755 --- a/buildtools/configure.pl +++ b/buildtools/configure.pl @@ -613,7 +613,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 f3dadce6..876d8893 100644 --- a/doc/HISTORY +++ b/doc/HISTORY @@ -4,6 +4,13 @@ Netpbm. CHANGE HISTORY -------------- +06.11.27 BJH Release 10.36.13 + + 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.36.12 ppmtogif: fix garbage output with non-ppm-raw input; diff --git a/lib/libppmcolor.c b/lib/libppmcolor.c index a200ab2b..06b6776c 100644 --- a/lib/libppmcolor.c +++ b/lib/libppmcolor.c @@ -146,6 +146,7 @@ parseHexDigits(const char * const string, pixval n; digitCount = 0; + n = 0; while (string[digitCount] != delim) { char const digit = string[digitCount]; if (digit == '\0') |