From 1610a1f6aa54ad1d97926c1d8605720933059df7 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 29 Jun 2014 19:18:54 +0000 Subject: Update Advanced series to Release 10.67 git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2221 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- doc/HISTORY | 40 ++++++++++++++++++++++++++-------------- doc/INSTALL | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 14 deletions(-) (limited to 'doc') diff --git a/doc/HISTORY b/doc/HISTORY index c1cee9e4..ff05d4ba 100644 --- a/doc/HISTORY +++ b/doc/HISTORY @@ -4,26 +4,30 @@ Netpbm. CHANGE HISTORY -------------- -14.06.27 BJH Release 10.66.04 +14.06.29 BJH Release 10.67.00 + + sgitopnm: add ability to convert 2-channel SGI image. + Thanks Prophet of the Way . + + sgitopnm: add ability to work with non-seekable input (e.g. a + pipe). Thanks Prophet of the Way . + + pamtotiff: add -output, use Standard Output normally (before, it + had to be seekable. Also, you could do an append operation to + Standard Output; now you have to use -output for that). Thanks + Prophet of the Way . + + pamsharpness: put primary output on Standard Output instead of + on Standard Error as a Netpbm message. 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 in Netpbm 10.53 (December 2010). Thanks Prophet of the Way . - Build: fix bug in which null value is not taken to mean - "in the system search path" for JBIGHDR_DIR and JASPERHDR_DIR. - -14.04.24 BJH Release 10.66.02 - - pamsharpness: put primary output on Standard Output instead of - on Standard Error as a Netpbm message. - jpegtopnm -dumpexif: fix incorrect display of resolution. Always broken. (-dumpexif was new in Netpbm 9.18 September 2001). @@ -36,11 +40,19 @@ CHANGE HISTORY Always broken. (-dumpexif was new in Netpbm 9.18 September 2001). -14.04.02 BJH Release 10.66.01 + Windows build: include an icon in every executable. The icon + was designed by Ron Vantreese (ait_frog-netpbm@yahoo.com). + + Build: fix bug in which null value is not taken to mean + "in the system search path" for JBIGHDR_DIR and JASPERHDR_DIR. Build: Fix inconsistent use of upper and lower case Y and N in make variables, causing static library not to get built. - Introduced in 10.66.00. + Introduced in 10.66. + + Build: fix dependencies in .deb package so they work with + Debian 6 at least. Always broken (.deb capability was new in + 10.66). 14.03.30 BJH Release 10.66.00 @@ -83,7 +95,7 @@ CHANGE HISTORY both -xsize and -ysize. Introduced in 10.65. pgmramp: fix bogus output with really large images. Thanks - Prophet of the Way . + Prophet of the Way . Always broken. ppmrelief: fix out-of-bound values in output. Always broken. ppmrelief was new in primordial Netpbm in 1989. diff --git a/doc/INSTALL b/doc/INSTALL index 33bb4bc7..9ed6e131 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -170,6 +170,32 @@ If you figure out how to install on other platforms, contact the Netpbm maintainer to have the 'configure' program or these instructions improved for the next person. +If you want to use a compiler other than your system default, set +the CC value in config.mk to the shell command name for your compiler, +e.g. + + CC=clang-3 + +You can also override it on the Make command line, which is especially +useful if you want to build some parts with one compiler and other parts +with another compiler: + + $ make pamflip CC=clang-3 + +To get appropriate defaults when you run 'configure', you can also set what +compiler Configure assumes you will be using to build, with an environment +variable: + + $ CC=clang-3 ./configure + +Likewise, you can add compiler flags with a CFLAGS make variable, either set +in config.mk or on the make command line and you can get better get more +appropriate defaults from Configure if you pass the same CFLAGS to Configure +via environment variable. LDFLAGS (linker options) and CPPFLAGS (C +preprocessor options) are similar. + + $ make CFLAGS=-O0 + CUSTOM INSTALLATION ------------------- -- cgit 1.4.1