diff options
author | steve <steve@FreeBSD.org> | 1999-06-07 01:17:35 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-07 01:17:35 +0800 |
commit | b798d7e6694fd6e14090a66e53d83c2b67aee073 (patch) | |
tree | 4263ba3cfb82fddd9c0e87e4d49c91c1f07c1ae6 /textproc/perl2html/files | |
parent | f83f9205b3086c7c1ac2e71b3354f15162155ba2 (diff) | |
download | freebsd-ports-gnome-b798d7e6694fd6e14090a66e53d83c2b67aee073.tar.gz freebsd-ports-gnome-b798d7e6694fd6e14090a66e53d83c2b67aee073.tar.zst freebsd-ports-gnome-b798d7e6694fd6e14090a66e53d83c2b67aee073.zip |
Initial import of perl2html version 0.6.1.
A Perl source to HTML converter.
PR: 11907
Submitted by: Martin Kammerhofer <mkamm@gmx.net>
Diffstat (limited to 'textproc/perl2html/files')
-rw-r--r-- | textproc/perl2html/files/patch-aa | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/textproc/perl2html/files/patch-aa b/textproc/perl2html/files/patch-aa new file mode 100644 index 000000000000..3da005399ff4 --- /dev/null +++ b/textproc/perl2html/files/patch-aa @@ -0,0 +1,20 @@ +--- Makefile.in.orig Wed May 26 19:31:36 1999 ++++ Makefile.in Thu May 27 21:54:22 1999 +@@ -9,7 +9,7 @@ + # for gzip because otherwise the load on the web server + # grows without having big benefits. + # COMPRESSION = -DCOMPRESSION=4 +-COMPRESSION = -DCOMPRESSION=1 ++COMPRESSION ?= -DCOMPRESSION=1 + + # Dont change things beyond this line. + TARGET = @PROJECT_NAME@ +@@ -40,7 +40,7 @@ + srcdir = @srcdir@ + CPPFLAGS = @CPPFLAGS@ + +-CFLAGS += -O2 -Wall ++CFLAGS ?= -O2 -Wall + ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION) + + all: $(TARGET) |