I am trying to install IMP Webmail on my linux server here and have seemed to run into a snag, I am not exaclty an expert on linux and I found what seems to be a good step by step install for IMP Webmail however one of the commands is giving me problems here is what I have
This is the set of instructions I am on right now:
apt-get install libpam0g-dev
wget
ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
tar zxvf c-client.tar.Z
cd imap-2001.BETA.SNAP-*
make lnp
cp c-client/c-client.a /usr/local/lib/
cp c-client/rfc822.h c-client/mail.h c-client/linkage.h /usr/local/include/
ldconfig
cd /usr/src/php-4.0.4pl1
make distclean
CFLAGS='-O2 -I/usr/local/src/openssl-0.9.6a/include' && ./configure \
--with-apache=../apache_1.3.20 --enable-track-vars \
--enable-inline-optimization --enable-memory-limit \
--with-mysql=/usr/local/mysql --with-imap
make
make install
cd ../apache_1.3.20
CFLAGS=''
./config.status
make
make install
I have made it to the make disclean command and this is what I get when I try it will all the options, I changed the apache version to match what is on my system, here is my terminal output:
[root@webserver src]# ls
apache_1.3.22 linux-2.4.7-10 php-4.1.2
apache_1.3.22.tar.gz openssl-0.9.6a php-4.1.2.tar.gz
linux-2.4 openssl-0.9.6a.tar.gz redhat
[root@webserver src]# cd php-4.1.2
[root@webserver php-4.1.2]#
[root@webserver php-4.1.2]# make distclean CFLAGS='-O2 -I/usr/local/src/openssl-0.9.6a/include' && ./configure --with-apache=../apache_1.3.22 --enable-track-vars --enable-inline-optimization --enable-memory-limit --with-mysql=/usr/local/mysql --with-imap
make: *** No rule to make target `distclean'. Stop.
[root@webserver php-4.1.2]#
Anyone have any ideas? the only thing I have changed from the instructions is I removed the "\" spaces from the ends of the lines since I am cutting and pasting into the terminal.
-Marcus-