1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/net-mgmt/cidr/files/patch-aa
Patrick Li b28335a0f8 Update to 2.3.2
Approved by:	2 week timeout
2002-06-04 03:17:12 +00:00

30 lines
498 B
Plaintext

--- Makefile.orig Fri Jul 20 11:11:34 2001
+++ Makefile Sat May 18 04:21:47 2002
@@ -1,9 +1,8 @@
VERSION=2.3.2
RELEASE=1
-CC=gcc
STRIP=strip
-CCFLAGS=-Wall
+CCFLAGS= $(CFLAGS)
SOL7FLAGS=-lsocket -lnsl
SOL8FLAGS=-lresolv -lnsl
@@ -13,15 +12,12 @@
all :
$(CC) $(CCFLAGS) cidr.c -o cidr
- $(STRIP) cidr
solaris8:
$(CC) $(CCFLAGS) $(SOL8FLAGS) cidr.c -o cidr
- $(STRIP) cidr
solaris7:
$(CC) $(CCFLAGS) $(SOL7FLAGS) cidr.c -o cidr
- $(STRIP) cidr
clean:
rm -f cidr cidr.o \