mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
- Fixed broken bugfix for /dev/ptmx on Linux systems which lack openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
This commit is contained in:
parent
8f92649441
commit
62a52ef08d
@ -4,6 +4,8 @@
|
|||||||
- Released 1.2.1pre26
|
- Released 1.2.1pre26
|
||||||
|
|
||||||
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
|
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
|
||||||
|
- Fixed broken bugfix for /dev/ptmx on Linux systems which lack
|
||||||
|
openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
|
||||||
|
|
||||||
20000115
|
20000115
|
||||||
- Add --with-xauth-path configure directive and explicit test for
|
- Add --with-xauth-path configure directive and explicit test for
|
||||||
|
@ -507,7 +507,7 @@ AC_ARG_WITH(dante,
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
if test ! -z "$no_dev_ptmx" ; then
|
if test -z "$no_dev_ptmx" ; then
|
||||||
AC_CHECK_FILE("/dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
|
AC_CHECK_FILE("/dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
|
||||||
fi
|
fi
|
||||||
AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))
|
AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user