From owner-freebsd-ports Tue Apr 20 12:52:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2648D14D15 for ; Tue, 20 Apr 1999 12:52:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA25534; Tue, 20 Apr 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BCE6714EEE; Tue, 20 Apr 1999 12:50:59 -0700 (PDT) Message-Id: <19990420195059.BCE6714EEE@hub.freebsd.org> Date: Tue, 20 Apr 1999 12:50:59 -0700 (PDT) From: Arjan.deVet@adv.iae.nl To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11239: mutt 0.95.4 fails to detect sendmail location Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11239 >Category: ports >Synopsis: mutt 0.95.4 fails to detect sendmail location >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 20 12:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Arjan de Vet >Release: 3.1-stable >Organization: >Environment: FreeBSD adv.iae.nl 3.1-STABLE FreeBSD 3.1-STABLE #4: Mon Apr 19 08:12:40 CEST 1999 root@adv.iae.nl:/usr/src/sys/compile/ADV i386 >Description: The mutt port seems not to be able to find sendmail due to a syntax error in a test(1) command in the configure script. I fixed this by using some configure code from mutt 0.95 which finds sendmail correctly. >How-To-Repeat: Run make and you will see: [...] checking for POSIXized ISC... no checking for sendmail... test: syntax error no checking for gpg... no [...] >Fix: Updated patch-04 file for the mutt port: --- configure.orig Sun Feb 28 09:08:02 1999 +++ configure Tue Apr 20 21:35:41 1999 @@ -1156,7 +1156,7 @@ ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in $PATH:/usr/sbin:/usr/lib$ac_dummy; do + for ac_dir in `echo $PATH | sed "s/:/ /"` /usr/sbin /usr/lib$ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then ac_cv_path_SENDMAIL="$ac_dir/$ac_word" @@ -1725,6 +1725,9 @@ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char $ac_func(); +#ifdef __FreeBSD__ +#define bkgdset initscr +#endif int main() { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message