aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-06-12 15:15:47 -0400
committerGlenn Morris2012-06-12 15:15:47 -0400
commit1cce69208a638b9ce789e4c21df55b2315efd97c (patch)
tree5d5fea43b2c36db2f3293d5ee386afd676ba270c
parentb4492cba7a034185fecea38790b58c20667bfee0 (diff)
downloademacs-1cce69208a638b9ce789e4c21df55b2315efd97c.tar.gz
emacs-1cce69208a638b9ce789e4c21df55b2315efd97c.zip
Combine adjacent case blocks.
-rw-r--r--configure.in43
1 files changed, 21 insertions, 22 deletions
diff --git a/configure.in b/configure.in
index 1f18937dbd9..6c5ba7a06b9 100644
--- a/configure.in
+++ b/configure.in
@@ -3133,29 +3133,28 @@ case $opsys in
3133esac 3133esac
3134 3134
3135case $opsys in 3135case $opsys in
3136 hpux11) 3136 gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
3137 dnl SA_RESTART resets the timeout of `select', so don't use it. 3137
3138 AC_DEFINE(BROKEN_SA_RESTART, 1, [Define if SA_RESTART should not 3138 hpux11)
3139 be used.]) 3139 dnl SA_RESTART resets the timeout of `select', so don't use it.
3140 dnl It works to open the pty's tty in the parent (Emacs), then 3140 AC_DEFINE(BROKEN_SA_RESTART, 1, [Define if SA_RESTART should not
3141 dnl close and reopen it in the child. 3141 be used.])
3142 AC_DEFINE(USG_SUBTTY_WORKS, 1, [Define for USG systems where it 3142 dnl It works to open the pty's tty in the parent (Emacs), then
3143 works to open a pty's tty in the parent process, then close and 3143 dnl close and reopen it in the child.
3144 reopen it in the child.]) 3144 AC_DEFINE(USG_SUBTTY_WORKS, 1, [Define for USG systems where it
3145 3145 works to open a pty's tty in the parent process, then close and
3146 opsysfile="s/hpux10-20.h" 3146 reopen it in the child.])
3147 ;; 3147
3148 3148 opsysfile="s/hpux10-20.h"
3149 sol2-10) 3149 ;;
3150 AC_DEFINE(_STRUCTURED_PROC, 1, [Needed for system_process_attributes
3151 on Solaris.])
3152 opsysfile="s/sol2-6.h"
3153 ;;
3154esac
3155 3150
3156case $opsys in 3151 openbsd) opsysfile="s/netbsd.h" ;;
3157 gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;; 3152
3158 openbsd) opsysfile="s/netbsd.h" ;; 3153 sol2-10)
3154 AC_DEFINE(_STRUCTURED_PROC, 1, [Needed for system_process_attributes
3155 on Solaris.])
3156 opsysfile="s/sol2-6.h"
3157 ;;
3159esac 3158esac
3160 3159
3161# Set up the CFLAGS for real compilation, so we can substitute it. 3160# Set up the CFLAGS for real compilation, so we can substitute it.