about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-03-27 02:06:28 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-03-27 02:06:28 +0000
commit411f99f4445ea8b8fe85ff393e01dd6ef700cb48 (patch)
tree86a0cd6f8b2ec51d360ec2fbe0baebeaec023071
parentfcdd46b1c437b5c4c9103f96eced98dc494bea62 (diff)
downloadnetpbm-mirror-411f99f4445ea8b8fe85ff393e01dd6ef700cb48.tar.gz
netpbm-mirror-411f99f4445ea8b8fe85ff393e01dd6ef700cb48.tar.xz
netpbm-mirror-411f99f4445ea8b8fe85ff393e01dd6ef700cb48.zip
Fix selection of default library suffix
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@258 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rwxr-xr-xbuildtools/configure.pl6
-rw-r--r--doc/HISTORY6
2 files changed, 10 insertions, 2 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index 9b0f136a..cb1723eb 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -611,9 +611,11 @@ sub libSuffix($) {
 #-----------------------------------------------------------------------------
     my $suffix;
 
-    if ($platform eq 'windows') {
+    if ($platform eq 'WINDOWS') {
+        $suffix = '.dll';
+    } elsif ($platform eq 'AIX') {
         $suffix = '.a';
-    } elsif ($platform eq 'darwin') {
+    } elsif ($platform eq 'DARWIN') {
         $suffix = '.dylib';
     } else {
         $suffix = '.so';
diff --git a/doc/HISTORY b/doc/HISTORY
index 317a6bbb..58d44633 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -9,6 +9,10 @@ not yet  BJH  Release 10.38.0
               pamtogif: Speed up for monochrome images.  Thanks
               Prophet of the Way <afu@wta.att.ne.jp>.
 
+              pamtogif: Speed up for small images by using smaller
+              hash table (so smaller memory footprint).  Thanks
+              Prophet of the Way <afu@wta.att.ne.jp>.
+
               pamtogif: Add -aspect.  Thanks
               Prophet of the Way <afu@wta.att.ne.jp>.
 
@@ -79,6 +83,8 @@ not yet  BJH  Release 10.38.0
 
               installnetpbm: use 2-argument open() for old Perl.
     
+              configure: fix choice of default library suffix.
+
               configure: default to 'none' for Svgalib if it doesn't appear
               to be installed.