aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-07-30 23:19:40 -0700
committerGlenn Morris2012-07-30 23:19:40 -0700
commit7552f3ee025f0741d5cfe7ed6c9b91699f372f48 (patch)
tree7fa80d2d5b113dbdf6dad5a12611e835561ae2d2
parent14c114ae549b8f682e8513f1379b671cd15b01ae (diff)
downloademacs-7552f3ee025f0741d5cfe7ed6c9b91699f372f48.tar.gz
emacs-7552f3ee025f0741d5cfe7ed6c9b91699f372f48.zip
Remove src/s/irix6-5.h
* configure.ac (opsysfile): Set to s/usg5-4-common.h on irix6-5. * src/conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here. * src/s/irix6-5.h: Remove file.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac1
-rw-r--r--src/ChangeLog3
-rw-r--r--src/conf_post.h8
-rw-r--r--src/s/irix6-5.h26
5 files changed, 14 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
index c73d7b81b48..e51d91059ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
12012-07-31 Glenn Morris <rgm@gnu.org> 12012-07-31 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.ac (opsysfile): Set to empty on hpux*, darwin. 3 * configure.ac (opsysfile): Set to empty on hpux*, darwin;
4 and to s/usg5-4-common.h on irix6-5.
4 5
52012-07-30 Glenn Morris <rgm@gnu.org> 62012-07-30 Glenn Morris <rgm@gnu.org>
6 7
diff --git a/configure.ac b/configure.ac
index 83b3fec1d0f..fd68e93beb6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3731,6 +3731,7 @@ case $opsys in
3731 ;; 3731 ;;
3732 3732
3733 irix6-5) 3733 irix6-5)
3734 opsysfile="s/usg5-4-common.h"
3734 AC_DEFINE(USG, []) 3735 AC_DEFINE(USG, [])
3735 AC_DEFINE(USG5, []) 3736 AC_DEFINE(USG5, [])
3736 AC_DEFINE(IRIX6_5, [], [Define if the system is IRIX.]) 3737 AC_DEFINE(IRIX6_5, [], [Define if the system is IRIX.])
diff --git a/src/ChangeLog b/src/ChangeLog
index 37e3bf61897..cd146728208 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -8,6 +8,9 @@
8 8
92012-07-31 Glenn Morris <rgm@gnu.org> 92012-07-31 Glenn Morris <rgm@gnu.org>
10 10
11 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
12 * s/irix6-5.h: Remove file.
13
11 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here. 14 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
12 * s/darwin.h: Remove file. 15 * s/darwin.h: Remove file.
13 16
diff --git a/src/conf_post.h b/src/conf_post.h
index 98f51f22fef..32fdc899da9 100644
--- a/src/conf_post.h
+++ b/src/conf_post.h
@@ -78,6 +78,14 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
78#undef random 78#undef random
79#endif 79#endif
80 80
81#ifdef IRIX6_5
82#ifdef emacs
83char *_getpty();
84#endif
85
86#undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */
87#endif
88
81/* Define AMPERSAND_FULL_NAME if you use the convention 89/* Define AMPERSAND_FULL_NAME if you use the convention
82 that & in the full name stands for the login id. */ 90 that & in the full name stands for the login id. */
83/* Turned on June 1996 supposing nobody will mind it. */ 91/* Turned on June 1996 supposing nobody will mind it. */
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h
deleted file mode 100644
index 338c18cca52..00000000000
--- a/src/s/irix6-5.h
+++ /dev/null
@@ -1,26 +0,0 @@
1/* Definitions file for GNU Emacs running on Silicon Graphics Irix system 6.5.
2
3Copyright (C) 1999-2012 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "usg5-4-common.h"
21
22#ifdef emacs
23char *_getpty();
24#endif
25
26#undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */