summaryrefslogtreecommitdiff
path: root/www/tclhttpd/scripts
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2001-02-07 22:36:13 +0000
committerMikhail Teterin <mi@FreeBSD.org>2001-02-07 22:36:13 +0000
commitcf390065f5ff18d3571054d68a6a324e1baf0d84 (patch)
tree71da20274f82d3d0641a1a5db0f3b6455007beb1 /www/tclhttpd/scripts
parentClean up more.. (diff)
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
Notes
Notes: svn path=/head/; revision=38084
Diffstat (limited to 'www/tclhttpd/scripts')
-rw-r--r--www/tclhttpd/scripts/pre-build18
1 files changed, 0 insertions, 18 deletions
diff --git a/www/tclhttpd/scripts/pre-build b/www/tclhttpd/scripts/pre-build
deleted file mode 100644
index 3885e7a6000c..000000000000
--- a/www/tclhttpd/scripts/pre-build
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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