mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
61ce7c4a22
will be used to support SOCKS operation in the soon-to-be-released next version of CVSup. A tip of the hat to: Darryl Okahata, who developed the patches necessary to make the SOCKS library work with Modula-3's multithreaded I/O system.
11 lines
180 B
Bash
11 lines
180 B
Bash
#! /bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "Usage: $0 command [arguments]" >&2
|
|
exit 2
|
|
fi
|
|
|
|
export M3SOCKS=1
|
|
export LD_PRELOAD=/usr/local/lib/m3/FreeBSD2/libm3socks.so
|
|
exec "$@"
|