aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/s/irix6-5.h2
-rw-r--r--src/s/usg5-4-common.h8
3 files changed, 5 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4a7c481b8b1..9f26c236fed 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12012-07-13 Glenn Morris <rgm@gnu.org>
2
3 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
4 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
5
12012-07-13 Jan Djärv <jan.h.d@swipnet.se> 62012-07-13 Jan Djärv <jan.h.d@swipnet.se>
2 7
3 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP. 8 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h
index a7365a76a91..1d1989ad9ac 100644
--- a/src/s/irix6-5.h
+++ b/src/s/irix6-5.h
@@ -22,8 +22,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22#undef _longjmp /* use system versions, not conservative aliases */ 22#undef _longjmp /* use system versions, not conservative aliases */
23#undef _setjmp 23#undef _setjmp
24 24
25#undef SETUP_SLAVE_PTY
26
27#ifdef emacs 25#ifdef emacs
28char *_getpty(); 26char *_getpty();
29#endif 27#endif
diff --git a/src/s/usg5-4-common.h b/src/s/usg5-4-common.h
index 93a05ebec54..6ead01d3712 100644
--- a/src/s/usg5-4-common.h
+++ b/src/s/usg5-4-common.h
@@ -52,11 +52,3 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
52 this is all we need. */ 52 this is all we need. */
53#define TIOCSIGSEND TIOCSIGNAL 53#define TIOCSIGSEND TIOCSIGNAL
54 54
55/* Push various streams modules onto a PTY channel. */
56#define SETUP_SLAVE_PTY \
57 if (ioctl (xforkin, I_PUSH, "ptem") == -1) \
58 fatal ("ioctl I_PUSH ptem"); \
59 if (ioctl (xforkin, I_PUSH, "ldterm") == -1) \
60 fatal ("ioctl I_PUSH ldterm"); \
61 if (ioctl (xforkin, I_PUSH, "ttcompat") == -1) \
62 fatal ("ioctl I_PUSH ttcompat");