- (dtucker) [configure.ac openbsd-compat/bsd-misc.h] Add setlinebuf for
platforms that don't have it. "looks good" tim@
This commit is contained in:
parent
d545a4b974
commit
34f702ae64
|
@ -1,3 +1,7 @@
|
||||||
|
20120704
|
||||||
|
- (dtucker) [configure.ac openbsd-compat/bsd-misc.h] Add setlinebuf for
|
||||||
|
platforms that don't have it. "looks good" tim@
|
||||||
|
|
||||||
20120703
|
20120703
|
||||||
- (dtucker) [configure.ac] Detect platforms that can't use select(2) with
|
- (dtucker) [configure.ac] Detect platforms that can't use select(2) with
|
||||||
setrlimit(RLIMIT_NOFILE, rl_zero) and disable the rlimit sandbox on those.
|
setrlimit(RLIMIT_NOFILE, rl_zero) and disable the rlimit sandbox on those.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.494 2012/07/03 12:48:31 dtucker Exp $
|
# $Id: configure.ac,v 1.495 2012/07/03 22:50:10 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
||||||
AC_REVISION($Revision: 1.494 $)
|
AC_REVISION($Revision: 1.495 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
|
@ -1571,6 +1571,7 @@ AC_CHECK_FUNCS([ \
|
||||||
seteuid \
|
seteuid \
|
||||||
setgroupent \
|
setgroupent \
|
||||||
setgroups \
|
setgroups \
|
||||||
|
setlinebuf \
|
||||||
setlogin \
|
setlogin \
|
||||||
setpassent\
|
setpassent\
|
||||||
setpcred \
|
setpcred \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: bsd-misc.h,v 1.20 2012/02/14 18:03:31 tim Exp $ */
|
/* $Id: bsd-misc.h,v 1.21 2012/07/03 22:50:10 dtucker Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
||||||
|
@ -51,6 +51,9 @@ int setegid(uid_t);
|
||||||
const char *strerror(int);
|
const char *strerror(int);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(HAVE_SETLINEBUF)
|
||||||
|
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_UTIMES
|
#ifndef HAVE_UTIMES
|
||||||
#ifndef HAVE_STRUCT_TIMEVAL
|
#ifndef HAVE_STRUCT_TIMEVAL
|
||||||
|
|
Loading…
Reference in New Issue