mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
23ba558a82
- Please note, that a Windows NT client (v1.02) is also available !!! - Make port web server independent, you have to decide, which one to choose from the ports collection - made port PREFIX clean - every patch adds !!PREFIX!! and !!HOSTNAME!! hooks the configure script uses perl, to substitute it with actual PREFIX and hostname
21 lines
455 B
Plaintext
21 lines
455 B
Plaintext
--- src/Makefile.freebsd.orig Mon May 18 23:18:48 1998
|
|
+++ src/Makefile.freebsd Mon May 18 23:19:26 1998
|
|
@@ -1,6 +1,6 @@
|
|
SHELL = /bin/sh
|
|
-MAKE = make
|
|
-CC = gcc
|
|
+MAKE?= make
|
|
+CC?= gcc
|
|
|
|
# FLAGS REQUIRED FOR PORTING
|
|
# SUNOS 4.1.4, HPUX 10.0, and LINUX NEED NOTHING DEFINED
|
|
@@ -13,7 +13,7 @@
|
|
#LIBS = -ll -lnsl -lsocket # SOLARIS NEEDS THIS
|
|
|
|
# FREEBSD NEEDS SPECIAL ZOMBIE HANDLING
|
|
-CFLAGS=-DZOMBIE -O
|
|
+CFLAGS+=-DZOMBIE
|
|
|
|
all: bb bbd bbnet touchtime
|
|
|