util/qemu-openpty.c: Don't assume pty.h is glibc-only
authorDavid CARLIER <devnexen@gmail.com>
Mon, 13 Jul 2020 13:36:09 +0000 (14:36 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 13 Jul 2020 13:36:09 +0000 (14:36 +0100)
commitc9c8b88f0bee1bf9e5f2011c67f8b579b6cf68d0
treeebff8e7163a5d887ecf6467a8df662ce6defafec
parentfc4334303e042a78b672a2f31c55960958ba14ca
util/qemu-openpty.c: Don't assume pty.h is glibc-only

Instead of using an OS-specific ifdef test to select the "openpty()
is in pty.h" codepath, make configure check for the existence of
the header and use the new CONFIG_PTY instead.

This is necessary to build on Haiku, which also provides openpty()
via pty.h.

Signed-off-by: David Carlier <devnexen@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20200703145614.16684-3-peter.maydell@linaro.org
[PMM: Expanded commit message; rename to HAVE_PTY_H]
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
configure
util/qemu-openpty.c