pkgsrc/misc/parchive/patches/patch-aa
fredb 0e8103604d Here are a couple of patches I submitted to the Sourceforge project
in June of this year, but for which I got no response.

1) Sourceforge PR #72673: Get the program name for the usage statement
   in the most portable fashion possible, using argv.

2) Sourceforge PR #762825, which is a rework of PR #504855, by Adam
   Lewandowski. Add a "table of contents" command, included a "+v"
   option to dump absolutely all of the information in the par file.

Bump ${PKGREVISION}.

I think it's safe to say that this is the final release. The current
"par2", for version 2 parity files, is now backwards compatible with
the version 1 parity files that this program generates. It does not,
however, seem to have the cool "table of contents" feature.
2003-08-25 20:23:06 +00:00

17 lines
490 B
Text

$NetBSD: patch-aa,v 1.3 2003/08/25 20:23:08 fredb Exp $
--- Makefile.orig Sat Nov 17 10:39:52 2001
+++ Makefile
@@ -1,8 +1,10 @@
CFLAGS=-g -W -Wall -Wno-unused -O2
-par: backend.o checkpar.o makepar.o rwpar.o rs.o md5.o fileops.o main.o readoldpar.o interface.o ui_text.o
- $(CC) -o $@ $^
+ALLSRCS= backend.o checkpar.o makepar.o rwpar.o rs.o md5.o fileops.o main.o readoldpar.o interface.o ui_text.o
+
+par: ${ALLSRCS}
+ $(CC) -o $@ ${ALLSRCS}
clean:
rm -f core par par.exe *.o