diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2001-09-12 13:40:51 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2001-09-12 13:40:51 +0000 |
commit | 509ac898295ba8ab236ac48977d1914cadb5b8f5 (patch) | |
tree | 51045a3cad554bd65367828677ba9dd9560e9126 /textproc/gpp/files | |
parent | Fix BUILD_DEPENDS. (diff) |
Add gpp 2.0 - a generic text pre-processor.
PR: 30410
Submitted by: Jos Backus <josb@cncdsl.com>
Notes
Notes:
svn path=/head/; revision=47752
Diffstat (limited to 'textproc/gpp/files')
-rw-r--r-- | textproc/gpp/files/patch-Makefile | 11 | ||||
-rw-r--r-- | textproc/gpp/files/patch-gpp.c | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/textproc/gpp/files/patch-Makefile b/textproc/gpp/files/patch-Makefile new file mode 100644 index 000000000000..294e45ed4f01 --- /dev/null +++ b/textproc/gpp/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Thu Sep 6 12:54:40 2001 ++++ Makefile Thu Sep 6 12:55:01 2001 +@@ -4,7 +4,7 @@ + all: gpp gpp.1 gpp.html + + gpp: gpp.c +- gcc -O2 -Wall gpp.c -o gpp ++ gcc $(CFLAGS) gpp.c -o gpp + + gpp.1: gpp gpphelp.pp + ./gpp -H -Dman gpphelp.pp -o gpp.1 diff --git a/textproc/gpp/files/patch-gpp.c b/textproc/gpp/files/patch-gpp.c new file mode 100644 index 000000000000..4eeb7ecb4d2a --- /dev/null +++ b/textproc/gpp/files/patch-gpp.c @@ -0,0 +1,10 @@ +--- gpp.c.orig Thu Sep 6 12:51:44 2001 ++++ gpp.c Thu Sep 6 12:52:57 2001 +@@ -40,7 +40,6 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> +-#include <malloc.h> + + #define STACKDEPTH 50 + #define MAXARGS 100 |