diff options
author | Will Andrews <will@FreeBSD.org> | 2000-07-04 07:00:08 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-07-04 07:00:08 +0000 |
commit | 99f7f4ed1d019afc8569d71a7fd14c359dc0cd1e (patch) | |
tree | d2dcaec5ab69f0865e2ad84207de33ca6c7d9d76 /graphics/tiff2png/files | |
parent | Add pngcheck, a PNG image integrity checker. (diff) |
Add tiff2png, a TIFF-to-PNG image converter.
Diffstat (limited to 'graphics/tiff2png/files')
-rw-r--r-- | graphics/tiff2png/files/patch-aa | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/graphics/tiff2png/files/patch-aa b/graphics/tiff2png/files/patch-aa new file mode 100644 index 000000000000..d889c288c965 --- /dev/null +++ b/graphics/tiff2png/files/patch-aa @@ -0,0 +1,40 @@ +--- Makefile Sun Feb 13 15:39:40 2000 ++++ Makefile.new Tue Jul 4 02:51:02 2000 +@@ -2,9 +2,9 @@ + # Copyright (C) 1996 Willem van Schaik + + #CC=cc +-CC=gcc ++CC?=gcc + OPTIMFLAGS = -O3 +-DEBUGFLAGS = -g -Wall -W ++DEBUGFLAGS = -Wall -W + #COPY=cp + COPY=/bin/cp -p + DEL=/bin/rm -f +@@ -49,21 +49,15 @@ + #ZLIB=/usr/lib + ZLIB=/usr/local/lib + #ZLIB=../zlib +-ZINC=/usr/local/include ++#ZINC=/usr/local/include + #ZINC=$(ZLIB) + + INSTALL=/usr/local + + # GRR 19990713: FAXPECT is a custom conversion option for stretched faxes +-CFLAGS=$(TIFF_VERSION) -DFAXPECT $(MIN_INVERT) $(OPTIMFLAGS) $(DEBUGFLAGS) \ +- -I$(TIFFINC) \ +- -I$(PNGINC) \ +- -I$(ZINC) +-LDFLAGS=-L. \ +- -L$(LIBTIFF)/ \ +- -L$(LIBPNG)/ \ +- -L$(ZLIB)/ \ +- -lpng -lz -ltiff -ljpeg -lm ++CFLAGS+=$(TIFF_VERSION) -DFAXPECT $(MIN_INVERT) $(OPTIMFLAGS) $(DEBUGFLAGS) \ ++ -I$(INSTALL)/include ++LDFLAGS=-L. -L$(INSTALL)/lib -lpng -lz -ltiff -ljpeg -lm + SLDFLAGS=-L. \ + $(LIBTIFF)/libtiff.a $(LIBJPEG)/libjpeg.a \ + $(LIBPNG)/libpng.a \ |