summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-03-03 20:59:35 +0100
committerBardur Arantsson <bardur@scientician.net>2012-03-29 20:57:25 +0200
commit1eaf454bd4f6c1f36391552cc1fc7188f9901f7e (patch)
treecf40fdfdb7d1d00487cb981e4584053da6cc8942 /src
parenta866fe494cd5cbe4e54e623772b76ee0eaa12c02 (diff)
Refactor: USE_EMX compile-time flag never set
Diffstat (limited to 'src')
-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