OSDN Git Service

It's not currently used in hengband, but bring over the change to mouse event handlin...
[hengbandforosx/hengbandosx.git] / src / h-config.h
index 95b301f..001f2c2 100644 (file)
@@ -1,22 +1,25 @@
-/* File: h-config.h */
-
-#ifndef INCLUDED_H_CONFIG_H
-#define INCLUDED_H_CONFIG_H
-
-/*
+/*!
+ * @file h-config.h
+ * @brief 変愚時追加された基本事項のヘッダーファイル /
+ * The most basic "include" file. This file simply includes other low level header files.
+ * @date 2014/08/15
+ * @author
+ * 不明(変愚蛮怒スタッフ?)
+ * @details
+ * <pre>
  * Choose the hardware, operating system, and compiler.
  * Also, choose various "system level" compilation options.
  * A lot of these definitions take effect in "h-system.h"
- *
  * Note that you may find it simpler to define some of these
  * options in the "Makefile", especially any options describing
  * what "system" is being used.
+ * no system definitions are needed for 4.3BSD, SUN OS, DG/UX
+ * </pre>
  */
 
+#ifndef INCLUDED_H_CONFIG_H
+#define INCLUDED_H_CONFIG_H
 
-/*
- * no system definitions are needed for 4.3BSD, SUN OS, DG/UX
- */
 
 /*
  * OPTION: Compile on a Macintosh (see "A-mac-h" or "A-mac-pch")
 
 #ifdef USE_IBM
 
-  /*
-   * OPTION: Compile on an IBM (automatic)
-   */
-  #ifndef MSDOS
-    #define MSDOS
-  #endif
-
-
   /* Use the new SVGA code */
   #ifndef USE_IBM_SVGA
     #define USE_IBM_SVGA
 #endif
 
 /*
- * OPTION: Compile on a SYS III version of UNIX
- */
-#ifndef SYS_III
-/* #define SYS_III */
-#endif
-
-/*
- * OPTION: Compile on a SYS V version of UNIX (not Solaris)
- */
-#ifndef SYS_V
-/* #define SYS_V */
-#endif
-
-/*
  * OPTION: Compile on a HPUX version of UNIX
  */
 #ifndef HPUX
 #endif
 
 /*
- * OPTION: Compile on a SunOS machine
- */
-#ifndef SUNOS
-/* #define SUNOS */
-#endif
-
-/*
  * OPTION: Compile on a Solaris machine
  */
 #ifndef SOLARIS
 #endif
 
 
-
-/*
- * Extract the "SUNOS" flag from the compiler
- */
-#if defined(sun)
-# ifndef SUNOS
-#   define SUNOS
-# endif
-#endif
-
 /*
  * Extract the "ULTRIX" flag from the compiler
  */
 #endif
 
 /*
- * Extract the "ATARI" flag from the compiler [cjh]
- */
-#if defined(__atarist) || defined(__atarist__)
-# ifndef ATARI
-#  define ATARI
-# endif
-#endif
-
-/*
  * Extract the "ACORN" flag from the compiler
  */
 #ifdef __riscos
 #endif
 
 /*
- * Extract the "MSDOS" flag from the compiler
- */
-#ifdef __MSDOS__
-# ifndef MSDOS
-#  define MSDOS
-# endif
-#endif
-
-/*
  * Extract the "WINDOWS" flag from the compiler
  */
 #if defined(_Windows) || defined(__WINDOWS__) || \
  * or for the "Atari" platform which is Unix-like, apparently
  */
 #if !defined(MACINTOSH) && !defined(WINDOWS) && \
-    !defined(MSDOS) && !defined(USE_EMX) && \
-    !defined(AMIGA) && !defined(ACORN) && !defined(VM)
+    !defined(ACORN) && !defined(VM)
 # define SET_UID
 #endif
 
  * involving userid's, or multiple users on a single machine, etc.
  */
 #ifdef SET_UID
-# if defined(SYS_III) || defined(SYS_V) || defined(SOLARIS) || \
-     defined(HPUX) || defined(SGI) || defined(ATARI)
+# if defined(SOLARIS) || \
+     defined(HPUX) || defined(SGI)
 #  ifndef USG
 #   define USG
 #  endif
 # undef PATH_SEP
 # define PATH_SEP "\\"
 #endif
-#if defined(MSDOS) || defined(OS2) || defined(USE_EMX)
+#if defined(OS2)
 # undef PATH_SEP
 # define PATH_SEP "\\"
 #endif
-#ifdef AMIGA
-# undef PATH_SEP
-# define PATH_SEP "/"
-#endif
 #ifdef __GO32__
 # undef PATH_SEP
 # define PATH_SEP "/"
 #endif
-#ifdef VM
-# undef PATH_SEP
-# define PATH_SEP ""
-#endif
 
 
 /*
 # elif defined(SJIS)
 #  define iskanji(x) ((0x81 <= (unsigned char)(x) && (unsigned char)(x) <= 0x9f) || (0xe0 <= (unsigned char)(x) && (unsigned char)(x) <= 0xfc))
 #  define iskana(x)  (((unsigned char)(x) >= 0xA0) && ((unsigned char)(x) <= 0xDF))
-# elif defined(MSDOS)
-#  include <jctype.h>
 # else
 #  error Oops! Please define "EUC" or "SJIS" for kanji-code of your system.
-# endif /* MSDOS */
+# endif
 #endif
 
 #endif /* INCLUDED_H_CONFIG_H */