diff options
author | mi <mi@FreeBSD.org> | 2001-02-08 06:36:13 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-02-08 06:36:13 +0800 |
commit | 13ad1c9811166d630f066bb40b8ad8ca1391c59c (patch) | |
tree | 5dcefdc5da594086450c5d8829ca275b2fb42587 /www/tclhttpd/files/pkgIndex.tcl | |
parent | b7c2c5dbd0851871d8a7639e86954feb742b25f6 (diff) | |
download | freebsd-ports-gnome-13ad1c9811166d630f066bb40b8ad8ca1391c59c.tar.gz freebsd-ports-gnome-13ad1c9811166d630f066bb40b8ad8ca1391c59c.tar.zst freebsd-ports-gnome-13ad1c9811166d630f066bb40b8ad8ca1391c59c.zip |
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
Diffstat (limited to 'www/tclhttpd/files/pkgIndex.tcl')
-rw-r--r-- | www/tclhttpd/files/pkgIndex.tcl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/tclhttpd/files/pkgIndex.tcl b/www/tclhttpd/files/pkgIndex.tcl index 40dbfd49fc20..1bbba5b30465 100644 --- a/www/tclhttpd/files/pkgIndex.tcl +++ b/www/tclhttpd/files/pkgIndex.tcl @@ -1,5 +1,6 @@ # Tiny helper binaries for thc TclHttp-daemon providing the # functionality not available in the TCL itself: -package ifneeded crypt 1.0 [list load [file join $dir libcrypt.so]] -package ifneeded setuid 1.0 [list load [file join $dir libsetuid.so]] -package ifneeded limit 1.0 [list load [file join $dir liblimit.so]] +package ifneeded crypt 1.0 [list load $dir/@LIB@] +package ifneeded setuid 1.0 [list load $dir/@LIB@] +package ifneeded limit 1.0 [list load $dir/@LIB@] +package ifneeded utime 1.0 [list load $dir/@LIB@] |