diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-14 03:40:07 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-14 03:40:07 +0000 |
commit | 1d452080ef303a7e6e18aba6746db95236cec108 (patch) | |
tree | 81fe1e841aa903489e476b66708d678067a84d94 /graphics/png2html/files | |
parent | 50444721a96d80425f590e24e76bea8d0c82235f (diff) |
Notes
Diffstat (limited to 'graphics/png2html/files')
-rw-r--r-- | graphics/png2html/files/patch-aa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/graphics/png2html/files/patch-aa b/graphics/png2html/files/patch-aa new file mode 100644 index 000000000000..15e2d33c1ca0 --- /dev/null +++ b/graphics/png2html/files/patch-aa @@ -0,0 +1,19 @@ +--- Makefile.orig Thu Nov 11 11:27:38 1999 ++++ Makefile Thu Nov 11 19:00:05 1999 +@@ -1,12 +1,14 @@ + # Makefile for png2html, (c) 1999 Geoff Holden + + CC = gcc +-CFLAGS = -O2 -Wall -lpng -lgd ++INCLUDES= -ICHANGE_ME/include/gd ++LDFLAGS = -LCHANGE_ME/lib ++LIBS = -lpng -lgd + + all: png2html + + png2html: +- $(CC) -o png2html png2html.c $(CFLAGS) ++ $(CC) -o png2html png2html.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) $(LIBS) + + clean: + rm -f *~ png2html |