diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-10 04:05:29 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-10 04:05:29 +0000 |
commit | 9373f0969b465b88d9404cb16ef85b269b8e2cb2 (patch) | |
tree | a8151f3fcddb09f04cb0802f7718c0d2aaad0ed5 /www/w3c-httpd/files/patch-bb | |
parent | Update master site. (diff) |
Port is no longer broken for ELF. Also turn off DEBUG and handle FD sets
properly.
PR: 11606
Submitted by: Pedro F. Giffuni <pfgiffun@bachue.usc.unal.edu.co>
Notes
Notes:
svn path=/head/; revision=18720
Diffstat (limited to '')
-rw-r--r-- | www/w3c-httpd/files/patch-bb | 43 |
1 files changed, 34 insertions, 9 deletions
diff --git a/www/w3c-httpd/files/patch-bb b/www/w3c-httpd/files/patch-bb index e7bd67a2316a..d3cdcf8f4fd0 100644 --- a/www/w3c-httpd/files/patch-bb +++ b/www/w3c-httpd/files/patch-bb @@ -1,19 +1,44 @@ -*** All/freebsd/Makefile.include.orig Mon Dec 30 17:18:49 1996 ---- All/freebsd/Makefile.include Mon Dec 30 17:19:46 1996 +*** All/freebsd/Makefile.include.orig Wed Jan 10 20:07:31 1996 +--- All/freebsd/Makefile.include Sat May 8 12:30:11 1999 *************** -*** 5,11 **** +*** 4,14 **** + # For W3 distribution, machine type for subdirectories WWW_MACH = freebsd - CFLAGS += -DDEBUG -D__BSD__ +! CFLAGS += -DDEBUG -D__BSD__ ! LFLAGS = # Directory for installed binary: - BINDIR = /usr/local/bin ---- 5,11 ---- +! BINDIR = /usr/local/bin + + # Where is the W3 object library to be installed (not normally done)? + LIBDIR = $(WWW)/Library/Implementation/$(WWW_MACH) +--- 4,14 ---- + # For W3 distribution, machine type for subdirectories WWW_MACH = freebsd - CFLAGS += -DDEBUG -D__BSD__ -! LFLAGS = -lcrypt +! CFLAGS += -D__BSD__ +! LFLAGS += -lcrypt # Directory for installed binary: - BINDIR = /usr/local/bin +! BINDIR = $(PREFIX)/bin + + # Where is the W3 object library to be installed (not normally done)? + LIBDIR = $(WWW)/Library/Implementation/$(WWW_MACH) +*************** +*** 25,31 **** + # + # Uncomment these six lines (and edit them, if necessary). + # +! # WAIS = ../../../freeWAIS + # WAISLIB = $(WAIS)/bin/client.a $(WAIS)/bin/wais.a + # MATHLIB = -lm + # WAISINC = -I$(WAIS)/include +--- 25,31 ---- + # + # Uncomment these six lines (and edit them, if necessary). + # +! # WAIS = ${PORTSDIR}/net/wais/work/freeWAIS-0.5/src + # WAISLIB = $(WAIS)/bin/client.a $(WAIS)/bin/wais.a + # MATHLIB = -lm + # WAISINC = -I$(WAIS)/include |