[BACK]Return to make_SMTPAUTH_sendmail CVS log [TXT][DIR] Up to [local] / openbsd / update_openbsd

Annotation of openbsd/update_openbsd/make_SMTPAUTH_sendmail, Revision 1.2

1.1       andrew      1: #!/bin/sh
1.2     ! andrew      2: # $RedRiver: make_SMTPAUTH_sendmail,v 1.1 2008/05/20 21:17:42 andrew Exp $
1.1       andrew      3:
                      4: pkg_info -e cyrus-sasl-* > /dev/null
                      5: if [ $? -ne 0 ]; then
                      6:        echo Installing cyrus-sasl
                      7:        $SUDO pkg_add -i cyrus-sasl
                      8:        if [ $? -ne 0 ]; then
                      9:                exit
                     10:        fi
                     11: fi
                     12:
                     13: WANT_SMTPAUTH=Yes
                     14:
                     15: cd /usr/src/gnu/usr.sbin/sendmail/sendmail/
                     16: echo Making sendmail
                     17: make clean
                     18: make depend
                     19: make
                     20:
                     21: gzip -o ${OLDPWD}/sendmail.gz sendmail
1.2     ! andrew     22: echo sendmail with SMTPAUTH is now in ${OLDPWD}/sendmail.gz
1.1       andrew     23: make clean

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>