Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
$NetBSD: patch-af,v 1.1 2003/04/30 04:08:27 grant Exp $
--- data/Makefile.orig Thu Mar 21 07:14:44 1996
+++ data/Makefile
@@ -1,10 +1,10 @@
all: data rservice xor
data: data.c
- cc -s -O -o data data.c
+ $(CC) $(CFLAGS) -s -o data data.c
rservice: rservice.c
- cc -s -O -o rservice rservice.c
+ $(CC) $(CFLAGS) -s -o rservice rservice.c
xor: xor.c
- cc -s -O -o xor xor.c
+ $(CC) $(CFLAGS) -s -o xor xor.c
clean:
rm -f *.o data rservice xor