1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/www/tclhttpd/files/metaPackage.c
Mikhail Teterin cf390065f5 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
2001-02-07 22:36:13 +00:00

14 lines
211 B
C

#include <tcl.h>
Tcl_PackageInitProc Crypt_Init, Limit_Init, Setuid_Init, Utime_Init;
int Tclhttpdbin_Init(Tcl_Interp *I) {
Crypt_Init(I);
Limit_Init(I);
Setuid_Init(I);
Utime_Init(I);
return TCL_OK;
}