diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
commit | 60b37dbedcfe6e22fe9a61ee8432ae7bd2780483 (patch) | |
tree | 42c5d548da07f10a85c92da3191700e6f34e6829 /graphics/png2html/files/patch-Makefile | |
parent | security/arirang: Mark broken with Ruby 2.0 or newer (diff) |
Rename german/ and graphics/ patch-xy patches to reflect the files they modify.
Diffstat (limited to 'graphics/png2html/files/patch-Makefile')
-rw-r--r-- | graphics/png2html/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/png2html/files/patch-Makefile b/graphics/png2html/files/patch-Makefile new file mode 100644 index 000000000000..67a23d241226 --- /dev/null +++ b/graphics/png2html/files/patch-Makefile @@ -0,0 +1,20 @@ +--- Makefile.orig Sat Nov 13 14:42:36 1999 ++++ Makefile Sat Feb 19 02:41:12 2000 +@@ -1,12 +1,14 @@ + # Makefile for png2html, (c) 1999 Geoff Holden + +-CC = gcc +-CFLAGS = -O2 -Wall -lpng -lgd ++CC ?= gcc ++INCLUDES= -ICHANGE_ME/include ++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 |