1998-02-02 01:25:38 +00:00
|
|
|
--- configure.orig Wed Nov 27 08:20:17 1996
|
|
|
|
+++ configure Mon Feb 2 10:21:51 1998
|
|
|
|
@@ -1,4 +1,4 @@
|
1997-05-29 06:49:26 +00:00
|
|
|
-#!/bin/sh
|
|
|
|
+#!/usr/local/bin/bash
|
1998-02-02 01:25:38 +00:00
|
|
|
# $Id: configure,v 1.401 1996/11/23 17:28:45 sam Rel $
|
|
|
|
#
|
|
|
|
# HylaFAX Facsimile Software
|
|
|
|
@@ -239,7 +239,7 @@
|
1997-05-29 06:49:26 +00:00
|
|
|
test -d /usr/ucb && PATH=$PATH:/usr/ucb # Sun and others
|
|
|
|
test -d /usr/contrib/bin && PATH=$PATH:/usr/contrib/bin # BSDi
|
|
|
|
test -d /usr/5bin && PATH=/usr/5bin:$PATH:/usr/etc # Sun and others
|
|
|
|
-test -d /usr/local/bin && PATH=/usr/local/bin:$PATH # for GNU stuff
|
|
|
|
+test -d /usr/local/bin && PATH=$PATH:/usr/local/bin # for GNU stuff
|
|
|
|
PATH=$PATH:$OPATH
|
|
|
|
|
|
|
|
POSIXLY_CORRECT=1; export POSIXLY_CORRECT # disable GNU extensions
|
1998-02-02 01:25:38 +00:00
|
|
|
@@ -1662,6 +1662,12 @@
|
|
|
|
CONFIG_OPENFIFO=O_RDONLY;
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
+ *-freebsd*) if releaseAtLeast 3.0; then
|
|
|
|
+ CONFIG_OPENFIFO=O_RDWR;
|
|
|
|
+ else
|
|
|
|
+ CONFIG_OPENFIFO=O_RDONLY;
|
|
|
|
+ fi
|
|
|
|
+ ;;
|
|
|
|
*) CONFIG_OPENFIFO=O_RDONLY;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
@@ -3928,7 +3934,8 @@
|
1997-05-29 06:49:26 +00:00
|
|
|
printConfig
|
|
|
|
checkForExecutable $PATH_SENDMAIL
|
|
|
|
checkForExecutable $PATH_GETTY
|
|
|
|
- prompt "Are these ok [yes]?"; read ok
|
|
|
|
+# prompt "Are these ok [yes]?"; read ok
|
|
|
|
+ ok=yes
|
|
|
|
test -z "$ok" && ok=yes
|
|
|
|
case "$ok" in
|
|
|
|
[1-9]|1[0-9]) promptForParameter $ok;;
|