diff options
author | max <max@FreeBSD.org> | 1997-01-17 14:32:45 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-01-17 14:32:45 +0000 |
commit | 99b7e1733c8406b2597ff1541e867a9b06052d78 (patch) | |
tree | 9cf35ef4197da85e16035e04743e6281e2e8f842 /news/plor/files | |
parent | ef315d113fbe3630842c7cdf3fdb999b69a74340 (diff) | |
download | FreeBSD-ports-99b7e1733c8406b2597ff1541e867a9b06052d78.zip FreeBSD-ports-99b7e1733c8406b2597ff1541e867a9b06052d78.tar.gz |
New port:
plor - An alpha-release reader for reading SOUP and QWK packets.
Reviewed & Modified by: max
Submitted by: Tim Vanderhoek <ac199@freenet.hamilton.on.ca>
Diffstat (limited to 'news/plor/files')
-rw-r--r-- | news/plor/files/patch-aa | 45 | ||||
-rw-r--r-- | news/plor/files/patch-ab | 32 | ||||
-rw-r--r-- | news/plor/files/plor.1 | 10 |
3 files changed, 87 insertions, 0 deletions
diff --git a/news/plor/files/patch-aa b/news/plor/files/patch-aa new file mode 100644 index 0000000..461886f --- /dev/null +++ b/news/plor/files/patch-aa @@ -0,0 +1,45 @@ +--- Makefile.orig Thu Oct 31 06:36:14 1996 ++++ Makefile Fri Jan 17 22:56:42 1997 +@@ -14,12 +14,12 @@ + INCLUDE = ./include/ + #LIBS = + +-ifdef DEBUG ++.ifdef DEBUG + #CFLAGS = -g -Wall -m486 -O2 -ansi -pedantic -finline-functions +-FLAGS = -g -Wall -m486 -O3 -ansi -pedantic -fomit-frame-pointer +-else +-FLAGS = -m486 -O3 -fomit-frame-pointer +-endif ++FLAGS = -g -Wall -m486 -O3 -ansi -pedantic -fomit-frame-pointer -D_HAVE_PARAM_H ++.else ++FLAGS = -m486 -O3 -fomit-frame-pointer -D_HAVE_PARAM_H ++.endif + + CFLAGS = -I$(INCLUDE) $(FLAGS) + +@@ -28,18 +28,18 @@ + + ############# END USER CONFIGURATION ################## + +-ifdef DEBUG ++.ifdef DEBUG + all: TODO $(OBJECTS) del plor +-else ++.else + all: $(OBJECTS) del plor +-endif ++.endif + + plor: $(OBJECTS) + $(CC) $(FLAGS) $(OBJECTS) $(LIBS) -o plor +-ifdef DEBUG +-else ++.ifdef DEBUG ++.else + strip plor +-endif ++.endif + + # OBJECTS to compile + main.o: main.c diff --git a/news/plor/files/patch-ab b/news/plor/files/patch-ab new file mode 100644 index 0000000..7f2d360 --- /dev/null +++ b/news/plor/files/patch-ab @@ -0,0 +1,32 @@ +diff -ud work/plor/main.c src/main.c +--- work/plor/main.c Sun Oct 27 09:24:00 1996 ++++ ./main.c Mon Dec 30 09:40:07 1996 +@@ -19,10 +19,15 @@ + + */ + ++#ifdef _HAVE_PARAM_H ++#include <sys/param.h> ++#endif + #include <stdio.h> + #include <string.h> + #include <stdlib.h> ++#if !defined(BSD) + #include <getopt.h> ++#endif + + /* will be included when we will have locale support + #include <locale.h> +@@ -75,10 +80,10 @@ + Show_SConf(); + break; + case '3': +- printf("Help on Line, not yet supported!!!"); ++ printf("Help on Line, not yet supported!!!\n"); + continue; + case '4': +- printf("Replies not yet implemented!!!"); ++ printf("Replies not yet implemented!!!\n"); + continue; + case '5': + case 'q': diff --git a/news/plor/files/plor.1 b/news/plor/files/plor.1 new file mode 100644 index 0000000..4bfdf68 --- /dev/null +++ b/news/plor/files/plor.1 @@ -0,0 +1,10 @@ +.Dd Dec 30, 1996 +.Dt PLOR 1 +.Sh NAME +.Nm plor +.Nd read messages in a SOUP (HDPF) or QWK packet +.Sh DESCRIPTION +.Ar Plor +is documented is FUNKYTOKENHERE. +.Sh SEE ALSO +.Xr slnr 1 |