Annotation of openbsd/update_openbsd/make_SMTPAUTH_sendmail, Revision 1.1
1.1 ! andrew 1: #!/bin/sh
! 2: # $RedRiver$
! 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
! 22: make clean
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>