emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108582: Remove src/s/hpux11.h


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108582: Remove src/s/hpux11.h
Date: Tue, 12 Jun 2012 14:44:31 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108582
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2012-06-12 14:44:31 -0400
message:
  Remove src/s/hpux11.h
  
  * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS): New AC_DEFINEs.
  (opsysfile): Set specially for hpux11.
  
  * src/s/hpux11.h: Remove file.
removed:
  src/s/hpux11.h
modified:
  ChangeLog
  configure.in
  src/ChangeLog
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-06-12 17:53:25 +0000
+++ b/ChangeLog 2012-06-12 18:44:31 +0000
@@ -1,3 +1,9 @@
+2012-06-12  Glenn Morris  <address@hidden>
+
+       * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
+       New AC_DEFINEs, for hpux11.
+       (opsysfile): Set specially for hpux11.
+
 2012-06-12  Paul Eggert  <address@hidden>
 
        * configure.in: Coalesce some function checking.

=== modified file 'configure.in'
--- a/configure.in      2012-06-12 18:06:08 +0000
+++ b/configure.in      2012-06-12 18:44:31 +0000
@@ -3125,8 +3125,19 @@
   ;;
 esac
 
+if test "$opsys" = hpux11; then
+  dnl SA_RESTART resets the timeout of `select', so don't use it.
+  AC_DEFINE(BROKEN_SA_RESTART, 1, [Define if SA_RESTART should not be used.])
+  dnl It works to open the pty's tty in the parent (Emacs), then close
+  dnl and reopen it in the child.
+  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.])
+fi
+
 case $opsys in
   gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
+  hpux11) opsysfile="s/hpux10-20.h" ;;
   openbsd) opsysfile="s/netbsd.h" ;;
 esac
 

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-06-12 17:53:25 +0000
+++ b/src/ChangeLog     2012-06-12 18:44:31 +0000
@@ -1,6 +1,6 @@
 2012-06-12  Glenn Morris  <address@hidden>
 
-       * s/gnu-kfreebsd.h, s/openbsd.h: Remove files.
+       * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h: Remove files.
 
        * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
        Move BROKEN_SIGIO to configure.

=== removed file 'src/s/hpux11.h'
--- a/src/s/hpux11.h    2011-01-25 03:47:47 +0000
+++ b/src/s/hpux11.h    1970-01-01 00:00:00 +0000
@@ -1,9 +0,0 @@
-#include "hpux10-20.h"
-
-/* SA_RESTART resets the timeout of `select', so don't use it.  */
-#define BROKEN_SA_RESTART
-
-/* It does work on HPUX to open the pty's tty in the parent (Emacs),
-   then close and reopen it in the child.  */
-#define USG_SUBTTY_WORKS
-


reply via email to

[Prev in Thread] Current Thread [Next in Thread]