about summary refs log tree commit diff
path: root/buildtools
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-29 19:32:13 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-29 19:32:13 +0000
commit51eb5e0d2722f0cf1033ac158d2fdbcd82b6e800 (patch)
tree3b763ebf105fc1136ebcac13b7d4dafca114be68 /buildtools
parent1610a1f6aa54ad1d97926c1d8605720933059df7 (diff)
downloadnetpbm-mirror-51eb5e0d2722f0cf1033ac158d2fdbcd82b6e800.tar.gz
netpbm-mirror-51eb5e0d2722f0cf1033ac158d2fdbcd82b6e800.tar.xz
netpbm-mirror-51eb5e0d2722f0cf1033ac158d2fdbcd82b6e800.zip
Reverse messed up commit
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2222 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/configure.pl18
-rwxr-xr-xbuildtools/debian/mkdeb6
-rw-r--r--buildtools/manpage.mk6
3 files changed, 6 insertions, 24 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index 44493ca1..056b705d 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -1048,19 +1048,6 @@ sub getSse($) {
 }
 
 
-sub getIcon($$) {
-
-    my ($platform, $wantIconR) = @_;
-
-    if ($platform eq 'WINDOWS') {
-        print("Include an icon in each executable?\n");
-        $$wantIconR = promptYesNo("y");
-    } else {
-        $$wantIconR = $FALSE;
-    }
-}
-
-
 
 # TODO: These should do test compiles to see if the headers are in the
 # default search path, both to create a default to offer and to issue a
@@ -2095,8 +2082,6 @@ getSse(\my $wantSse);
 
 findProcessManagement(\my $dontHaveProcessMgmt);
 
-getIcon($platform, \my $wantIcon);
-
 #******************************************************************************
 #
 #  FIND THE PREREQUISITE LIBRARIES
@@ -2385,9 +2370,6 @@ if ($platform eq "GNU") {
     if ($subplatform ne "cygwin") {
         push(@config_mk, "MSVCRT = Y\n");
     }
-    if ($wantIcon) {
-        push(@config_mk, 'WINICON_OBJECT = $(BUILDDIR)/icon.netpbm.o');
-    }
 } elsif ($platform eq "BEOS") {
     push(@config_mk, "LDSHLIB = -nostart\n");
 } elsif ($platform eq "OPENBSD") {
diff --git a/buildtools/debian/mkdeb b/buildtools/debian/mkdeb
index 42a986eb..9c7b1735 100755
--- a/buildtools/debian/mkdeb
+++ b/buildtools/debian/mkdeb
@@ -133,12 +133,12 @@ sub control($$) {
     $control{'Installed-Size'} = '6164';
     $control{'Depends'} =
         'libc6, ' .
-        'libjpeg62, ' .
+        'libjpeg8, ' .
         'libpng12-0, ' .
         'libsvga1, ' .
-        'libtiff4, ' .
+        'libtiff5, ' .
         'libx11-6, ' .
-        'libxml2, ' .
+        'libxml2a, ' .
         'zlib1g, ' .
         'ghostscript, ' .
         'perl, ' .
diff --git a/buildtools/manpage.mk b/buildtools/manpage.mk
index 47d890c3..e1c0bce2 100644
--- a/buildtools/manpage.mk
+++ b/buildtools/manpage.mk
@@ -354,7 +354,7 @@ MAN5 = \
 	ppm.5 \
 
 # These things do get converted to man pages and installed.
-MANPAGES = netpbm.1 $(MAN1) $(MAN3) $(MAN5)
+MANPAGES = $(MAN1) netpbm.1 $(MAN3) $(MAN5)
 HTMLMANUALS = $(MAN1:.1=.html) $(MAN3:.3=.html) $(MAN5:.5=.html)
 
 # These things don't get converted to manual pages.
@@ -388,13 +388,13 @@ xmlpages:
 # This will install the generated man pages
 installman:
 	set -x
-	for f in netpbm.1 $(MAN1); do if [ -f $$f ]; then gzip <$$f >$(MANDIR)/man1/$$f.gz; fi; done
+	for f in $(MAN1); do if [ -f $$f ]; then gzip <$$f >$(MANDIR)/man1/$$f.gz; fi; done
 	for f in $(MAN3); do if [ -f $$f ]; then gzip <$$f >$(MANDIR)/man3/$$f.gz; fi; done
 	for f in $(MAN5); do if [ -f $$f ]; then gzip <$$f >$(MANDIR)/man5/$$f.gz; fi; done
 
 # This will uninstall them
 uninstallman:
-	for f in netpbm.1 $(MAN1); do rm -f $(MANDIR)/man1/$$f.gz; fi; done
+	for f in $(MAN1); do rm -f $(MANDIR)/man1/$$f.gz; fi; done
 	for f in $(MAN3); do rm -f $(MANDIR)/man3/$$f.gz; fi; done
 	for f in $(MAN5); do rm -f $(MANDIR)/man5/$$f.gz; fi; done