mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 23:42:34 +00:00
configure --disable-pty also disabled option waitlock
This commit is contained in:
parent
000982c0a2
commit
66142aa77c
3 changed files with 5 additions and 1 deletions
2
CHANGES
2
CHANGES
|
@ -29,6 +29,8 @@ corrections:
|
||||||
|
|
||||||
corrected option handling with STDIO; usecase: cool-write
|
corrected option handling with STDIO; usecase: cool-write
|
||||||
|
|
||||||
|
configure --disable-pty also disabled option waitlock
|
||||||
|
|
||||||
fixed small bugs on systems with struct ip_mreq without struct ip_mreqn
|
fixed small bugs on systems with struct ip_mreq without struct ip_mreqn
|
||||||
(thanks to Roland Illig for sending a patch)
|
(thanks to Roland Illig for sending a patch)
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
"1.6.0.0+execpty+servres+fd_setsize+udp_sigchld+stdio_opts+interval+mreq_help"
|
"1.6.0.0+execpty+servres+fd_setsize+udp_sigchld+stdio_opts+interval+mreq_help+waitlock"
|
||||||
|
|
|
@ -1535,7 +1535,9 @@ const struct optname optionnames[] = {
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_PTY && HAVE_POLL
|
#if HAVE_PTY && HAVE_POLL
|
||||||
IF_PTY ("wait-slave", &opt_pty_wait_slave)
|
IF_PTY ("wait-slave", &opt_pty_wait_slave)
|
||||||
|
#endif /* HAVE_PTY && HAVE_POLL */
|
||||||
IF_ANY ("waitlock", &opt_waitlock)
|
IF_ANY ("waitlock", &opt_waitlock)
|
||||||
|
#if HAVE_PTY && HAVE_POLL
|
||||||
IF_PTY ("waitslave", &opt_pty_wait_slave)
|
IF_PTY ("waitslave", &opt_pty_wait_slave)
|
||||||
#endif /* HAVE_PTY && HAVE_POLL */
|
#endif /* HAVE_PTY && HAVE_POLL */
|
||||||
#ifdef VWERASE
|
#ifdef VWERASE
|
||||||
|
|
Loading…
Reference in a new issue