]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove src/s/hpux10-20.h
authorGlenn Morris <rgm@gnu.org>
Tue, 31 Jul 2012 01:32:19 +0000 (21:32 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 31 Jul 2012 01:32:19 +0000 (21:32 -0400)
* configure.ac (opsysfile): Set to empty on hpux*.

* src/conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.

* src/s/hpux10-20.h: Remove file, which is now empty.

ChangeLog
configure.ac
src/ChangeLog
src/conf_post.h
src/s/hpux10-20.h [deleted file]

index b0860362b1c26ff5ced5ed4df40b53c92bf1e87d..5eb06140c7682b147d5e24a56bbc5e7dd571bd7d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-07-31  Glenn Morris  <rgm@gnu.org>
+
+       * configure.ac (opsysfile): Set to empty on hpux*.
+
 2012-07-30  Glenn Morris  <rgm@gnu.org>
 
        * configure.ac (AH_BOTTOM): Use an include file, so that the
index 402524f436dfce6579e139b3142d4ce0a92c265a..f11a6c4cec636a4d4bc2b13626aeec8246b2247a 100644 (file)
@@ -3723,6 +3723,7 @@ case $opsys in
     ;;
 
   hpux*)
+    opsysfile=
     AC_DEFINE(USG, [])
     AC_DEFINE(USG5, [])
     AC_DEFINE(HPUX, [], [Define if the system is HPUX.])
@@ -3773,8 +3774,6 @@ case $opsys in
     AC_DEFINE(USG_SUBTTY_WORKS, 1, [Define for USG systems where it
       works to open a pty's tty in the parent process, then close and
       reopen it in the child.])
-
-    opsysfile="s/hpux10-20.h"
     ;;
 
   irix6-5)
index f3e8b58e071426fce68c7227a9f18b1db4386bb0..baf73fb870c4cefb701474d08bbcf724363041be 100644 (file)
@@ -1,3 +1,8 @@
+2012-07-31  Glenn Morris  <rgm@gnu.org>
+
+       * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
+       * s/hpux10-20.h: Remove file, which is now empty.
+
 2012-07-30  Glenn Morris  <rgm@gnu.org>
 
        * conf_post.h: New, split from configure.ac's AH_BOTTOM.
index 5efecfb8c059c572b401488df0d14badea8d6e35..d81763b1a73b9c0d86b760e50ad68c65bb443189 100644 (file)
@@ -51,6 +51,17 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #endif
 #endif
 
+/* We have to go this route, rather than the old hpux9 approach of
+   renaming the functions via macros.  The system's stdlib.h has fully
+   prototyped declarations, which yields a conflicting definition of
+   srand48; it tries to redeclare what was once srandom to be srand48.
+   So we go with HAVE_LRAND48 being defined.  Note we also undef
+   HAVE_RANDOM via configure.  */
+#ifdef HPUX
+#undef srandom
+#undef random
+#endif
+
 /* Define AMPERSAND_FULL_NAME if you use the convention
    that & in the full name stands for the login id.  */
 /* Turned on June 1996 supposing nobody will mind it.  */
diff --git a/src/s/hpux10-20.h b/src/s/hpux10-20.h
deleted file mode 100644 (file)
index 94b46a7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* System description file for hpux version 10.20.
-
-Copyright (C) 1999, 2001-2012  Free Software Foundation, Inc.
-
-This file is part of GNU Emacs.
-
-GNU Emacs is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-GNU Emacs is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
-
-/* We have to go this route, rather than hpux9's approach of renaming the
-   functions via macros.  The system's stdlib.h has fully prototyped
-   declarations, which yields a conflicting definition of srand48; it
-   tries to redeclare what was once srandom to be srand48.  So we go
-   with HAVE_LRAND48 being defined.
-   Note we also undef HAVE_RANDOM via configure.  */
-#undef srandom
-#undef random