diff options
author | David CARLIER <devnexen@gmail.com> | 2020-07-13 14:36:09 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-07-13 14:36:09 +0100 |
commit | c9c8b88f0bee1bf9e5f2011c67f8b579b6cf68d0 (patch) | |
tree | ebff8e7163a5d887ecf6467a8df662ce6defafec /util | |
parent | fc4334303e042a78b672a2f31c55960958ba14ca (diff) | |
download | qemu-c9c8b88f0bee1bf9e5f2011c67f8b579b6cf68d0.zip qemu-c9c8b88f0bee1bf9e5f2011c67f8b579b6cf68d0.tar.gz qemu-c9c8b88f0bee1bf9e5f2011c67f8b579b6cf68d0.tar.bz2 |
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>
Diffstat (limited to 'util')
-rw-r--r-- | util/qemu-openpty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/qemu-openpty.c b/util/qemu-openpty.c index 4b8df96..eb17f5b 100644 --- a/util/qemu-openpty.c +++ b/util/qemu-openpty.c @@ -35,7 +35,7 @@ #include "qemu/osdep.h" #include "qemu-common.h" -#if defined(__GLIBC__) +#if defined HAVE_PTY_H # include <pty.h> #elif defined CONFIG_BSD # include <termios.h> |