1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
From: Bastian Germann <bage@debian.org>
Subject: Include termios.h on unknown systems
---
--- gridengine-8.1.9+dfsg.orig/source/libs/uti/sge_pty.c
+++ gridengine-8.1.9+dfsg/source/libs/uti/sge_pty.c
@@ -58,7 +58,7 @@
# include <sys/ioctl.h>
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "uti/sge_rmon.h"
--- gridengine-8.1.9+dfsg.orig/source/libs/gdi/sge_gdi_ctx.c
+++ gridengine-8.1.9+dfsg/source/libs/gdi/sge_gdi_ctx.c
@@ -61,7 +61,7 @@
#elif defined(FREEBSD) || defined(NETBSD)
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "comm/commlib.h"
--- gridengine-8.1.9+dfsg.orig/source/3rdparty/qtcsh/sh.h
+++ gridengine-8.1.9+dfsg/source/3rdparty/qtcsh/sh.h
@@ -280,7 +280,7 @@ static inline void ignore(intptr_t a)
# ifndef _UWIN
# include <termios.h>
# else
-# include <termio.h>
+# include <termios.h>
# endif /* _UWIN */
# if SYSVREL > 3
# undef TIOCGLTC /* we don't need those, since POSIX has them */
--- gridengine-8.1.9+dfsg.orig/source/clients/common/sge_client_ijs.c
+++ gridengine-8.1.9+dfsg/source/clients/common/sge_client_ijs.c
@@ -50,7 +50,7 @@
# include <termios.h>
# include <sys/ioctl.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include <sys/timeb.h>
--- gridengine-8.1.9+dfsg.orig/source/clients/qsh/qsh.c
+++ gridengine-8.1.9+dfsg/source/clients/qsh/qsh.c
@@ -102,7 +102,7 @@
#elif defined(FREEBSD) || defined(NETBSD)
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "uti/sge_pty.h"
--- gridengine-8.1.9+dfsg.orig/source/daemons/shepherd/sge_shepherd_ijs.c
+++ gridengine-8.1.9+dfsg/source/daemons/shepherd/sge_shepherd_ijs.c
@@ -59,7 +59,7 @@
# include <sys/ioctl.h>
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "uti/sge_stdlib.h"
--- gridengine-8.1.9+dfsg.orig/source/daemons/shepherd/shepherd.c
+++ gridengine-8.1.9+dfsg/source/daemons/shepherd/shepherd.c
@@ -100,7 +100,7 @@
#elif defined(FREEBSD) || defined(NETBSD)
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "sge_ijs_comm.h"
--- gridengine-8.1.9+dfsg.orig/source/libs/ijs/sge_ijs_lib.c
+++ gridengine-8.1.9+dfsg/source/libs/ijs/sge_ijs_lib.c
@@ -16,7 +16,7 @@
#elif defined(FREEBSD) || defined(NETBSD)
# include <termios.h>
#else
-# include <termio.h>
+# include <termios.h>
#endif
#include "uti/sge_rmon.h"
|