#! /bin/sh quick_fwd= for arg do case "$arg" in -help | --help | --hel | --he) quick_fwd=yes break ;; -version | --version | --versio | --versi | --vers) quick_fwd=yes break ;; *) break ;; esac done if test "x$quick_fwd" = xyes then support/configure $* else rev="build" echo "working directory: ${rev}" if test ! -d "${rev}" then echo "creating directory ${rev}..." mkdir "${rev}" fi cd "${rev}" echo "now working in directory ${rev}..." cp -p ../support/configure . if test ! -f config.h then echo "copying config.h from config.h.dist..." cp -p ../support/config.h.dist config.h fi ./configure $* if test $? = 0 then echo " Have you read doc/README? (I hope so) Next cd ${rev}, edit \"config.h\" and \"tkconf.h\", run \"make server tkserv\" to build and \"make install-server install-tkserv\" to install. NOTE: RusNet IRCD adjustment team has made the most necessary changes to config.h, but you'll have to configure interaction with TkServ, at least. It is recommended to change UID/GID as well. IT IS IMPERATIVE THAT YOU SHOULD READ INSTALL-RUSNET.TXT BEFORE RUNNING THE SERVER." fi fi