summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-10-25 16:55:00 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-10-25 16:55:00 +0000
commit76020ba5c0360b9e9adf619d4249f82d1e3b83b6 (patch)
tree546693632cc2fb7ac77b5e7e512e9510c12d40bf
parentdf1b6452ee4d70b73b665d8a85e2580f82bb15d5 (diff)
- (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
- (bal) Apply fixes to configure.in pointed out by Pavel Roskin <proski@gnu.org>
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog3
-rw-r--r--configure.in5
3 files changed, 7 insertions, 2 deletions
diff --git a/CREDITS b/CREDITS
index 809778802..139f61717 100644
--- a/CREDITS
+++ b/CREDITS
@@ -57,6 +57,7 @@ Martin Johansson <fatbob@acc.umu.se> - Linux fixes
57Mark Miller <markm@swoon.net> - Bugfixes 57Mark Miller <markm@swoon.net> - Bugfixes
58Matt Richards <v2matt@btv.ibm.com> - AIX patches 58Matt Richards <v2matt@btv.ibm.com> - AIX patches
59Michael Stone <mstone@cs.loyola.edu> - Irix enhancements 59Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
60Nakaji Hiroyuki <nakaji@tutrp.tut.ac.jp> - Sony News-OS patch
60Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch 61Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
61Nate Itkin <nitkin@europa.com> - SunOS 4.1.x fixes 62Nate Itkin <nitkin@europa.com> - SunOS 4.1.x fixes
62Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches 63Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
diff --git a/ChangeLog b/ChangeLog
index d493affb6..b4922091a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
2 - (djm) Added WARNING.RNG file and modified configure to ask users of the 2 - (djm) Added WARNING.RNG file and modified configure to ask users of the
3 builtin entropy code to read it. 3 builtin entropy code to read it.
4 - (djm) Prefer builtin regex to PCRE. 4 - (djm) Prefer builtin regex to PCRE.
5 - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
6 - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
7 <proski@gnu.org>
5 8
620001020 920001020
7 - (djm) Don't define _REENTRANT for SNI/Reliant Unix 10 - (djm) Don't define _REENTRANT for SNI/Reliant Unix
diff --git a/configure.in b/configure.in
index 90e75bef4..5a30819b4 100644
--- a/configure.in
+++ b/configure.in
@@ -138,6 +138,7 @@ mips-sony-bsd|mips-sony-newsos4)
138 MAIL=/usr/spool/mail 138 MAIL=/usr/spool/mail
139 AC_DEFINE(HAVE_NEXT) 139 AC_DEFINE(HAVE_NEXT)
140 AC_DEFINE(BROKEN_REALPATH) 140 AC_DEFINE(BROKEN_REALPATH)
141 AC_DEFINE(USE_PIPES)
141 CFLAGS="$CFLAGS -I/usr/local/include" 142 CFLAGS="$CFLAGS -I/usr/local/include"
142 ;; 143 ;;
143*-*-solaris*) 144*-*-solaris*)
@@ -916,7 +917,7 @@ AC_ARG_WITH(rsh,
916AC_ARG_WITH(xauth, 917AC_ARG_WITH(xauth,
917 [ --with-xauth=PATH Specify path to xauth program ], 918 [ --with-xauth=PATH Specify path to xauth program ],
918 [ 919 [
919 if test "x$withval" != "$xno" ; then 920 if test "x$withval" != "xno" ; then
920 xauth_path=$withval 921 xauth_path=$withval
921 fi 922 fi
922 ], 923 ],
@@ -1082,7 +1083,7 @@ AC_ARG_WITH(afs,
1082 [ 1083 [
1083 if test "x$withval" != "xno" ; then 1084 if test "x$withval" != "xno" ; then
1084 1085
1085 if test "x$withval" != "$xyes" ; then 1086 if test "x$withval" != "xyes" ; then
1086 CFLAGS="$CFLAGS -I${withval}/include" 1087 CFLAGS="$CFLAGS -I${withval}/include"
1087 LFLAGS="$LFLAGS -L${withval}/lib" 1088 LFLAGS="$LFLAGS -L${withval}/lib"
1088 fi 1089 fi