pkgsrc/sysutils/zidrav/patches/patch-aa
minskim 0914da4806 Import zidrav from pkgsrc-wip. Packaged by Tobias Nygren.
Zidrav is a file corruption detection and repair program.  It is
designed to provide a way to fix file damage without having to
redownload the entire (potentially large) file over a (potentially
slow) connection.  A checksum file is generated for the broken file.
The checksum file can then be used together with the correct file to
produce a binary patch file for repair.
2005-10-21 04:00:56 +00:00

19 lines
553 B
Text

$NetBSD: patch-aa,v 1.1.1.1 2005/10/21 04:00:56 minskim Exp $
--- Makefile.orig 2005-05-19 22:13:43.000000000 +0200
+++ Makefile
@@ -1,11 +1,11 @@
zidrav: zidrav.cpp flayer.o core.o flayer.h
- g++ -O2 -Wall -o zidrav zidrav.cpp flayer.o core.o
+ $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -o zidrav zidrav.cpp flayer.o core.o
flayer.o: flayer.cpp core.h
- g++ -O2 -Wall -c flayer.cpp
+ $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -c flayer.cpp
core.o: core.cpp core.h
- g++ -O2 -Wall -c core.cpp
+ $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -c core.cpp
.PHONY:
clean: