- (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>
This commit is contained in:
parent
df1b6452ee
commit
76020ba5c0
1
CREDITS
1
CREDITS
|
@ -57,6 +57,7 @@ Martin Johansson <fatbob@acc.umu.se> - Linux fixes
|
||||||
Mark Miller <markm@swoon.net> - Bugfixes
|
Mark Miller <markm@swoon.net> - Bugfixes
|
||||||
Matt Richards <v2matt@btv.ibm.com> - AIX patches
|
Matt Richards <v2matt@btv.ibm.com> - AIX patches
|
||||||
Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
|
Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
|
||||||
|
Nakaji Hiroyuki <nakaji@tutrp.tut.ac.jp> - Sony News-OS patch
|
||||||
Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
|
Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
|
||||||
Nate Itkin <nitkin@europa.com> - SunOS 4.1.x fixes
|
Nate Itkin <nitkin@europa.com> - SunOS 4.1.x fixes
|
||||||
Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
|
Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
- (djm) Added WARNING.RNG file and modified configure to ask users of the
|
- (djm) Added WARNING.RNG file and modified configure to ask users of the
|
||||||
builtin entropy code to read it.
|
builtin entropy code to read it.
|
||||||
- (djm) Prefer builtin regex to PCRE.
|
- (djm) Prefer builtin regex to PCRE.
|
||||||
|
- (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>
|
||||||
|
|
||||||
20001020
|
20001020
|
||||||
- (djm) Don't define _REENTRANT for SNI/Reliant Unix
|
- (djm) Don't define _REENTRANT for SNI/Reliant Unix
|
||||||
|
|
|
@ -138,6 +138,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
||||||
MAIL=/usr/spool/mail
|
MAIL=/usr/spool/mail
|
||||||
AC_DEFINE(HAVE_NEXT)
|
AC_DEFINE(HAVE_NEXT)
|
||||||
AC_DEFINE(BROKEN_REALPATH)
|
AC_DEFINE(BROKEN_REALPATH)
|
||||||
|
AC_DEFINE(USE_PIPES)
|
||||||
CFLAGS="$CFLAGS -I/usr/local/include"
|
CFLAGS="$CFLAGS -I/usr/local/include"
|
||||||
;;
|
;;
|
||||||
*-*-solaris*)
|
*-*-solaris*)
|
||||||
|
@ -916,7 +917,7 @@ AC_ARG_WITH(rsh,
|
||||||
AC_ARG_WITH(xauth,
|
AC_ARG_WITH(xauth,
|
||||||
[ --with-xauth=PATH Specify path to xauth program ],
|
[ --with-xauth=PATH Specify path to xauth program ],
|
||||||
[
|
[
|
||||||
if test "x$withval" != "$xno" ; then
|
if test "x$withval" != "xno" ; then
|
||||||
xauth_path=$withval
|
xauth_path=$withval
|
||||||
fi
|
fi
|
||||||
],
|
],
|
||||||
|
@ -1082,7 +1083,7 @@ AC_ARG_WITH(afs,
|
||||||
[
|
[
|
||||||
if test "x$withval" != "xno" ; then
|
if test "x$withval" != "xno" ; then
|
||||||
|
|
||||||
if test "x$withval" != "$xyes" ; then
|
if test "x$withval" != "xyes" ; then
|
||||||
CFLAGS="$CFLAGS -I${withval}/include"
|
CFLAGS="$CFLAGS -I${withval}/include"
|
||||||
LFLAGS="$LFLAGS -L${withval}/lib"
|
LFLAGS="$LFLAGS -L${withval}/lib"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue