summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/config.h11
-rw-r--r--src/h-config.h4
-rw-r--r--src/h-system.h2
3 files changed, 3 insertions, 14 deletions
diff --git a/src/config.h b/src/config.h
index 6da767c3..8c1b6360 100644
--- a/src/config.h
+++ b/src/config.h
@@ -205,17 +205,6 @@
/*
- * OPTION: Hack -- EMX stuff
- */
-#ifdef USE_EMX
-
-/* Do not handle signals */
-# undef HANDLE_SIGNALS
-
-#endif
-
-
-/*
* OPTION: Set the "default" path to the angband "lib" directory.
*
* See "main.c" for usage, and note that this value is only used on
diff --git a/src/h-config.h b/src/h-config.h
index d69876cc..53670e8f 100644
--- a/src/h-config.h
+++ b/src/h-config.h
@@ -165,7 +165,7 @@
* or for the "Atari" platform which is Unix-like, apparently
*/
#if !defined(MACINTOSH) && !defined(WINDOWS) && \
- !defined(MSDOS) && !defined(USE_EMX)
+ !defined(MSDOS)
# define SET_UID
#endif
@@ -204,7 +204,7 @@
# undef PATH_SEP
# define PATH_SEP "\\"
#endif
-#if defined(MSDOS) || defined(OS2) || defined(USE_EMX)
+#if defined(MSDOS) || defined(OS2)
# undef PATH_SEP
# define PATH_SEP "\\"
#endif
diff --git a/src/h-system.h b/src/h-system.h
index 465c3170..50cc0af8 100644
--- a/src/h-system.h
+++ b/src/h-system.h
@@ -51,7 +51,7 @@
# include <unix.h>
#endif
-#if defined(WINDOWS) || defined(MSDOS) || defined(USE_EMX)
+#if defined(WINDOWS) || defined(MSDOS)
# include <io.h>
#endif