summaryrefslogtreecommitdiff
path: root/benchmarks/nettest/patches/patch-aa
blob: aff473e14eba4fe886578be370d0006228ccc828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$NetBSD: patch-aa,v 1.7 2015/11/07 20:07:07 dholland Exp $

 - uname might be in /usr/bin
 - add configury for modern OSes

--- Makefile.orig	1992-11-05 22:03:14.000000000 +0000
+++ Makefile
@@ -3,10 +3,8 @@ MAKE=make
 FILES=README Makefile nettest.h nettest.c nettestd.c nettest.8
 
 all:
-	@if [ -f /bin/hostname -o -f /usr/bin/hostname ]; then \
-		$(MAKE) `hostname`; \
-	elif [ -f /bin/uname ]; then \
-		$(MAKE) `uname -n`; \
+	@if [ -f /bin/uname -o -f /usr/bin/uname ]; then \
+		$(MAKE) `uname -s`; \
 	else \
 		echo You must specify what machine you are on,;\
 		echo e.g. \"make sun\", \"make cray2\", \"make pyramid\", \"make xmp\";\
@@ -33,6 +31,30 @@ unicos60 unicos61:
 		DEFINES="-DWAIT3CODE -DNO_ISO" \
 		LIBS="" OPT="-O"
 
+IRIX IRIX64:
+	$(MAKE) objs \
+		INCLUDE="-I." \
+		DEFINES="-DWAIT3CODE -DNONVOID_SETPGRP -DNAMEDPIPES -DNO_ISO" \
+		LIBS="" OPT="-O"
+
+Linux:
+	$(MAKE) objs \
+		INCLUDE="-I." \
+		DEFINES="-DWAIT3CODE -DNAMEDPIPES -DNO_ISO" \
+		LIBS="" OPT="-O"
+
+SunOS:
+	$(MAKE) objs \
+		INCLUDE="-I." \
+		DEFINES="-DSYSV -DWAIT3CODE -DNAMEDPIPES -DNO_ISO" \
+		LIBS="-lsocket -lnsl" OPT="-O"
+
+NetBSD FreeBSD DragonFly OpenBSD Bitrig Darwin:
+	$(MAKE) objs \
+		INCLUDE="" \
+		DEFINES="-DWAIT3CODE -DBSD44 -DNAMEDPIPES -DNO_ISO -DNONVOID_SETPGRP" \
+		OPT="-O" LIBS="-lcompat"
+
 4.4alpha:
 	$(MAKE) objs \
 		INCLUDE="" \