emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r108584: Combine adjacent case blocks


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108584: Combine adjacent case blocks.
Date: Tue, 12 Jun 2012 15:15:47 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108584
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2012-06-12 15:15:47 -0400
message:
  Combine adjacent case blocks.
modified:
  configure.in
=== modified file 'configure.in'
--- a/configure.in      2012-06-12 19:03:32 +0000
+++ b/configure.in      2012-06-12 19:15:47 +0000
@@ -3133,29 +3133,28 @@
 esac
 
 case $opsys in
-     hpux11)
-       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
-       dnl close 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.])
-
-       opsysfile="s/hpux10-20.h"
-     ;;
-
-     sol2-10)
-       AC_DEFINE(_STRUCTURED_PROC, 1, [Needed for system_process_attributes
-         on Solaris.])
-       opsysfile="s/sol2-6.h"
-     ;;
-esac
-
-case $opsys in
-  gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
-  openbsd) opsysfile="s/netbsd.h" ;;
+   gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
+
+   hpux11)
+     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
+     dnl close 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.])
+
+     opsysfile="s/hpux10-20.h"
+   ;;
+
+   openbsd) opsysfile="s/netbsd.h" ;;
+
+   sol2-10)
+     AC_DEFINE(_STRUCTURED_PROC, 1, [Needed for system_process_attributes
+       on Solaris.])
+     opsysfile="s/sol2-6.h"
+   ;;
 esac
 
 # Set up the CFLAGS for real compilation, so we can substitute it.


reply via email to

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