MOON
Server: Apache
System: Linux vps.thepromohut.com 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: caretrak (507)
PHP: 5.2.10
Disabled: NONE
Upload Files
File: //scripts.20110601.041516.15411/buildbsdexpect
#!/bin/sh

if [ `uname -s` != 'FreeBSD' ];
then
        echo "This script is for FreeBSD ONLY, exiting"
	exit
fi

mkdir /usr/expect-build
cd /usr/expect-build
tar xfzv expect.tar.gz
fetch http://expect.nist.gov/expect.tar.gz
tar xfzv expect.tar.gz
cd expect-*

export LDFLAGS="-lutil"
./configure --enable-shared \
                --with-tclconfig=/usr/local/lib/tcl8.3 \
                --with-tclinclude=/usr/local/include/tcl8.3

make
make install