search for: have_sys_poll_h

Displaying 8 results from an estimated 8 matches for "have_sys_poll_h".

2007 Sep 18
2
poll.h vs sys/poll.h on QNX Neutrino
...older systems, and some not-quite-XSI-compliant systems such as QNX Neutrino, still have <sys/poll.h> but not <poll.h>. I suggest having configure.ac look for both, and put the check for <poll.h> first in atomicio.c, as in: #ifdef HAVE_POLL_H #include <poll.h> #else #ifdef HAVE_SYS_POLL_H #include <sys/poll.h> #endif #endif dB
2014 Apr 29
3
[Bug 2237] New: monitor_fdpass.c: poll.h
...; LDFLAGS='-L/opt/qnx632/target/qnx6/x86/lib -L/opt/qnx632/target/qnx6/x86/usr/lib -L/home/williams/openss/openssl/x86/install/lib' --sysconfdir=/etc/ssh The file monitor_fdpass.c cannot find the file poll.h since it is in the /usr/include/sys directory. The HAVE_POLL_H is not defined and HAVE_SYS_POLL_H is defined; both are correctly set. mux.c, scp.c, monitor.c, atomicio.c all say: #ifdef HAVE_POLL_H #include <poll.h> #else # ifdef HAVE_SYS_POLL_H # include <sys/poll.h> # endif #endif The only file that does not say this is monitor_fdpass.c which says: #ifdef HAVE_POLL_H #include...
2012 May 09
1
warning from configuring openssh-6.0p1
...ES_H 1 | #define HAVE_SECURITY_PAM_APPL_H 1 | #define HAVE_SHADOW_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_BITYPES_H 1 | #define HAVE_SYS_CDEFS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_STROPTS_H 1 | #define HAVE_SYS_STATVFS_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_TTYENT_H 1 | #define H...
2008 Mar 13
11
Testing wanted: OpenSSH 4.8
Hi, We are preparing to make the release of OpenSSH 4.8 soon, so we would greatly appreciate testing of snapshot releases in as many environments and on as many operating systems as possible. The highlights of this release are: * Added chroot(2) support for sshd(8), controlled by a new option "ChrootDirectory". Please refer to sshd_config(5) for details, and please use this
1999 Dec 21
0
Problem with UTMP recording
...the <poll.h> header file. */ /* #undef HAVE_POLL_H */ /* Define if you have the <pty.h> header file. */ /* #undef HAVE_PTY_H */ /* Define if you have the <shadow.h> header file. */ #define HAVE_SHADOW_H 1 /* Define if you have the <sys/poll.h> header file. */ #define HAVE_SYS_POLL_H 1 /* Define if you have the <sys/select.h> header file. */ /* #undef HAVE_SYS_SELECT_H */ /* Define if you have the <sys/stropts.h> header file. */ /* #undef HAVE_SYS_STROPTS_H */ /* Define if you have the <sys/time.h> header file. */ #define HAVE_SYS_TIME_H 1 /* Define if...
2009 Apr 08
3
libedit not found on SUse 11.1
Included below is a diff between the output from configure on a 64 bit SUse 11.1 (doesn't find libedit) and a 64 bit Suse 10.3 (does find libedit) for otherwise identical setups. 1. How can I get the output set up to look at conftest.c? 2. I added a set -x to configure above LIBEDIT_MSG=no 3. ./configure --with-ldflags="-L/usr/lib64" --with-cflags="-ggdb3
2011 Jun 02
2
preauth privsep logging via monitor
...s/openssh/monitor.c,v retrieving revision 1.147 diff -u -p -r1.147 monitor.c --- monitor.c 29 May 2011 11:39:38 -0000 1.147 +++ monitor.c 2 Jun 2011 04:02:42 -0000 @@ -45,6 +45,14 @@ #include <string.h> #include <unistd.h> +#ifdef HAVE_POLL_H +#include <poll.h> +#else +# ifdef HAVE_SYS_POLL_H +# include <sys/poll.h> +# endif +#endif + #ifdef SKEY #include <skey.h> #endif @@ -52,6 +60,7 @@ #include <openssl/dh.h> #include "openbsd-compat/sys-queue.h" +#include "atomicio.h" #include "xmalloc.h" #include "ssh.h" #include...
2010 Jan 14
1
ssh(1) multiplexing rewrite
...r/cvs/openssh/monitor_fdpass.c,v retrieving revision 1.30 diff -u -p -r1.30 monitor_fdpass.c --- monitor_fdpass.c 12 Jan 2010 23:54:46 -0000 1.30 +++ monitor_fdpass.c 14 Jan 2010 03:15:36 -0000 @@ -36,6 +36,10 @@ #include <errno.h> #ifdef HAVE_POLL_H #include <poll.h> +#else +# ifdef HAVE_SYS_POLL_H +# include <sys/poll.h> +# endif #endif #include <string.h> #include <stdarg.h> @@ -82,7 +86,7 @@ mm_send_fd(int sock, int fd) pfd.fd = sock; pfd.events = POLLOUT; while ((n = sendmsg(sock, &msg, 0)) == -1 && - (errno == EAGAIN || errno == EINTR)) { +...