Prefer /usr/sbin/sendmail to /usr/lib/sendmail.

* configure.in (sendmail_path): Prefer /usr/sbin/sendmail to
/usr/lib/sendmail.
This commit is contained in:
Raja R Harinath 1998-11-09 01:18:19 +00:00
parent 0f63aac1e8
commit f3fe31a693
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
1998-11-08 Raja R Harinath <harinath@cs.umn.edu>
* configure.in (sendmail_path): Prefer /usr/sbin/sendmail to
/usr/lib/sendmail.
1998-11-07 Jay Cox <jaycox@earthlink.net>
* libgimp/{gimp.h, gimpchannel.c, gimpdrawable.c, gimplayer.c}:

View File

@ -406,7 +406,7 @@ AC_ARG_ENABLE(sendmail_path, [ --with-sendmail=DIR set sendmail command loc
if eval "test x$with_sendmail != x"; then
sendmail_path=$with_sendmail
fi)
AC_PATH_PROG(SENDMAIL, "sendmail", $sendmail_path, $PATH:/usr/lib:/usr/sbin)
AC_PATH_PROG(SENDMAIL, "sendmail", $sendmail_path, $PATH:/usr/sbin:/usr/lib)
if test $ac_cv_path_SENDMAIL != ":"; then
MAILER="-DMAILER=\\\"$ac_cv_path_SENDMAIL\\\""
@ -470,8 +470,8 @@ if eval "test x$enable_perl != xno"; then
AC_MSG_RESULT(yes)
dnl perl does not allow VPATH builds (yet)
if test ! -e plug-ins/perl/Makefile.PL; then
mkdir plug-ins
if test ! -f plug-ins/perl/Makefile.PL; then
mkdir plug-ins || true
cp -r $srcdir/plug-ins/perl plug-ins/perl
fi