1*** noconfig.H	2008-09-25 15:34:56.000000000 +0900
2--- noconfig.H.linux_gcc2953	2008-09-26 13:38:28.000000000 +0900
3***************
4*** 15,21 ****
5   */
6
7  /* Define target operating-system.  */
8! #define SYSTEM              SYS_FREEBSD
9
10  /* Define target compiler.          */
11  #ifndef COMPILER
12--- 15,21 ----
13   */
14
15  /* Define target operating-system.  */
16! #define SYSTEM              SYS_LINUX
17
18  /* Define target compiler.          */
19  #ifndef COMPILER
20***************
21*** 30,36 ****
22
23  /* Version message.                 */
24  /* "MCPP V.2.* (200y/mm) compiled by " precedes VERSION_MSG */
25! #define VERSION_MSG         "GCC 3.4"
26  #if     0
27      "LCC-Win32 2006-03"
28      "Visual C 2005"
29--- 30,36 ----
30
31  /* Version message.                 */
32  /* "MCPP V.2.* (200y/mm) compiled by " precedes VERSION_MSG */
33! #define VERSION_MSG         "GCC 2.95"
34  #if     0
35      "LCC-Win32 2006-03"
36      "Visual C 2005"
37***************
38*** 280,291 ****
39  #if     COMPILER_FAMILY == GNUC
40  #define CMP_NAME            "GCC"
41  #define COMPILER_EXT        "__GNUC__"
42! #define COMPILER_EXT_VAL    "3"     /* "3" for V.3.* "4" for V.4.*  */
43  #define COMPILER_EXT2       "__GNUC_MINOR__"
44! #define COMPILER_EXT2_VAL   "4"     /* "4" for V.3.4, "1" for V.4.1 */
45  #define COMPILER_CPLUS      "__GNUG__"
46! #define COMPILER_CPLUS_VAL  "3"     /* "3" for V.3.*, "4" for V.4.* */
47! #define GCC_MAJOR_VERSION   3       /* Value of __GNUC__ as a digit */
48  #define LINE_PREFIX         "# "
49  #ifndef HAVE_DIGRAPHS
50  #define HAVE_DIGRAPHS       TRUE
51--- 280,291 ----
52  #if     COMPILER_FAMILY == GNUC
53  #define CMP_NAME            "GCC"
54  #define COMPILER_EXT        "__GNUC__"
55! #define COMPILER_EXT_VAL    "2"     /* "3" for V.3.* "4" for V.4.*  */
56  #define COMPILER_EXT2       "__GNUC_MINOR__"
57! #define COMPILER_EXT2_VAL   "95"     /* "4" for V.3.4, "1" for V.4.1 */
58  #define COMPILER_CPLUS      "__GNUG__"
59! #define COMPILER_CPLUS_VAL  "2"     /* "3" for V.3.*, "4" for V.4.* */
60! #define GCC_MAJOR_VERSION   2       /* Value of __GNUC__ as a digit */
61  #define LINE_PREFIX         "# "
62  #ifndef HAVE_DIGRAPHS
63  #define HAVE_DIGRAPHS       TRUE
64***************
65*** 293,303 ****
66  #ifndef TARGET_HAVE_LONG_LONG
67  #define TARGET_HAVE_LONG_LONG       TRUE
68  #endif
69! #define STDC_VERSION        0L  /* 199409L for V.2.9, 0L for V.3.*,V.4.*    */
70! #define CPLUS_INCLUDE_DIR1  "/usr/include/c++/3.4"  /* "/usr/include/c++/3.3.6" */  /* "/usr/include/c++/4.1.2" */
71! #define CPLUS_INCLUDE_DIR2  "/usr/include/c++/3.4/backward"     /* "/usr/include/c++/3.3.6/i386-vine-linux" */  /* "/usr/include/c++/4.1.2/i486-linux-gnu" */
72  /* #define CPLUS_INCLUDE_DIR3   */  /* "/usr/include/c++/3.3.6/backward"    */  /* "/usr/include/c++/4.1.2/backward"    */
73! /* #define C_INCLUDE_DIR1 */    /* "/usr/lib/gcc-lib/i386-vine-linux/3.3.6/include" */  /* "/usr/lib/gcc/i486-linux-gnu/4.1.2/include" */
74  /* #define C_INCLUDE_DIR2   */
75  #ifndef INC_DIR
76  #ifdef  C_INCLUDE_DIR1
77--- 293,303 ----
78  #ifndef TARGET_HAVE_LONG_LONG
79  #define TARGET_HAVE_LONG_LONG       TRUE
80  #endif
81! #define STDC_VERSION        199409L  /* 199409L for V.2.9, 0L for V.3.*,V.4.*    */
82! #define CPLUS_INCLUDE_DIR1  "/usr/include/g++-3" /* "/usr/include/c++/3.4" */ /* "/usr/include/c++/3.3.6" */  /* "/usr/include/c++/4.1.2" */
83! /* #define CPLUS_INCLUDE_DIR2  "/usr/include/c++/3.4/backward" */ /* "/usr/include/c++/3.3.6/i386-vine-linux" */  /* "/usr/include/c++/4.1.2/i486-linux-gnu" */
84  /* #define CPLUS_INCLUDE_DIR3   */  /* "/usr/include/c++/3.3.6/backward"    */  /* "/usr/include/c++/4.1.2/backward"    */
85! #define C_INCLUDE_DIR1      "/usr/lib/gcc-lib/i386-vine-linux/2.95.3/include" /* "/usr/lib/gcc-lib/i386-vine-linux/3.3.6/include" */  /* "/usr/lib/gcc/i486-linux-gnu/4.1.2/include" */
86  /* #define C_INCLUDE_DIR2   */
87  #ifndef INC_DIR
88  #ifdef  C_INCLUDE_DIR1
89***************
90*** 320,326 ****
91  #define COMPILER_SP3        "__WCHAR_TYPE__"
92  #define COMPILER_SP1_VAL    "unsigned int"
93  #define COMPILER_SP2_VAL    "int"
94! #define COMPILER_SP3_VAL    "int"
95      /* SYS_FREEBSD: "int", SYS_CYGWIN, SYS_MINGW: "short unsigned int"
96              , others: "long int"  */
97  #endif  /* GCC_MAJOR_VERSION < 3    */
98--- 320,326 ----
99  #define COMPILER_SP3        "__WCHAR_TYPE__"
100  #define COMPILER_SP1_VAL    "unsigned int"
101  #define COMPILER_SP2_VAL    "int"
102! #define COMPILER_SP3_VAL    "long int"
103      /* SYS_FREEBSD: "int", SYS_CYGWIN, SYS_MINGW: "short unsigned int"
104              , others: "long int"  */
105  #endif  /* GCC_MAJOR_VERSION < 3    */
106