head	1.2;
access;
symbols
	RELEASE_4_2_0:1.1
	RELEASE_4_1_1:1.1;
locks; strict;
comment	@# @;


1.2
date	2001.02.07.22.36.13;	author mi;	state dead;
branches;
next	1.1;

1.1
date	2000.07.20.11.55.59;	author nbm;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Bring to the latest version. Link all of the little external libraries
needed by the tclhttpd into one file. I submitted this back in December,
but nobody cared since. Now I can commit this myself :)

PR:		ports/23310
Submitted by:	mi
@
text
@#!/bin/sh

crypt_SRCS="crypt.c cryptLib.c"
setuid_SRCS=setuid.c
limit_SRCS=limit.c

cd ${WRKSRC}/src

for l in crypt setuid limit
do
	make INTERNALLIB=Y NOPROFILE=Y \
		LIB=${l} SHLIB_MAJOR=1 SHLIB_MINOR=0 \
		SRCS="`eval echo \\$${l}_SRCS`" -ECFLAGS \
		CFLAGS="${CFLAGS} -I${PREFIX}/include/tcl${TCL_DVER} -DUSE_TCL_STUBS" \
		LDADD="-L${PREFIX}/lib -ltclstub${TCL_VER} -lcrypt" \
		-f bsd.lib.mk \
	|| exit 1
done
@


1.1
log
@Add tclhttpd, a pure-Tcl implementation of a HTTP server.

PR:		ports/19870
Submitted by:	Mikhail Teterin <mi@@privatelabs.com>
@
text
@@

