summaryrefslogtreecommitdiffstats
path: root/util/Makefile.objs
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2013-06-05 18:44:54 +0400
committerMichael Tokarev <mjt@tls.msk.ru>2013-06-14 14:28:43 +0400
commit4efeabbbe8441cc327052304976c7b9b86309d72 (patch)
treee6c6b096c593681097bc4025a618f607eef50142 /util/Makefile.objs
parent520b6dd4d03742e285cc68cca308a2a74261c410 (diff)
downloadhqemu-4efeabbbe8441cc327052304976c7b9b86309d72.zip
hqemu-4efeabbbe8441cc327052304976c7b9b86309d72.tar.gz
create qemu_openpty_raw() helper function and move it to a separate file
In two places qemu uses openpty() which is very system-dependent, and in both places the pty is switched to raw mode as well. Make a wrapper function which does both steps, and move all the system-dependent complexity into a separate file, together with static/local implementations of openpty() and cfmakeraw() from qemu-char.c. It is in a separate file, not part of oslib-posix.c, because openpty() often resides in -lutil which is not linked to every program qemu builds. This change removes #including of <pty.h>, <termios.h> and other rather specific system headers out of qemu-common.h, which isn't a place for such specific headers really. This version has been verified to build correctly on Linux, OpenBSD, FreeBSD and OpenIndiana. On the latter it lets qemu to be built with gtk gui which were not possible there due to missing openpty() and cfmakeraw(). Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Tested-by: Andreas Färber <andreas.faerber@web.de>
Diffstat (limited to 'util/Makefile.objs')
-rw-r--r--util/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/Makefile.objs b/util/Makefile.objs
index 4a1bd4e..dc72ab0 100644
--- a/util/Makefile.objs
+++ b/util/Makefile.objs
@@ -1,6 +1,6 @@
util-obj-y = osdep.o cutils.o unicode.o qemu-timer-common.o
util-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o event_notifier-win32.o
-util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o event_notifier-posix.o
+util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o event_notifier-posix.o qemu-openpty.o
util-obj-y += envlist.o path.o host-utils.o cache-utils.o module.o
util-obj-y += bitmap.o bitops.o hbitmap.o
util-obj-y += fifo8.o
OpenPOWER on IntegriCloud