OLD | NEW |
1 /* $Id: config.h 1137 2004-09-04 01:24:57Z peter $ */ | 1 /* $Id: config.h 1137 2004-09-04 01:24:57Z peter $ */ |
2 | 2 |
3 #define yasm__splitpath(path, tail) yasm__splitpath_win(path, tail) | 3 #define yasm__splitpath(path, tail) yasm__splitpath_win(path, tail) |
4 #define yasm__abspath(path) yasm__abspath_win(path) | 4 #define yasm__abspath(path) yasm__abspath_win(path) |
5 #define yasm__combpath(from, to) yasm__combpath_win(from, to) | 5 #define yasm__combpath(from, to) yasm__combpath_win(from, to) |
6 | 6 |
7 /* Command name to run C preprocessor */ | 7 /* Command name to run C preprocessor */ |
8 #define CPP_PROG "cpp" | 8 #define CPP_PROG "cpp" |
9 | 9 |
10 /* */ | 10 /* */ |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 /* Define to 1 if you have the `_stricmp' function. */ | 110 /* Define to 1 if you have the `_stricmp' function. */ |
111 #define HAVE__STRICMP 1 | 111 #define HAVE__STRICMP 1 |
112 | 112 |
113 /* Name of package */ | 113 /* Name of package */ |
114 #define PACKAGE "yasm" | 114 #define PACKAGE "yasm" |
115 | 115 |
116 /* Define to the address where bug reports for this package should be sent. */ | 116 /* Define to the address where bug reports for this package should be sent. */ |
117 #define PACKAGE_BUGREPORT "bug-yasm@tortall.net" | 117 #define PACKAGE_BUGREPORT "bug-yasm@tortall.net" |
118 | 118 |
119 /* Define to build version of this package. */ | 119 /* Define to build version of this package. */ |
120 #define PACKAGE_BUILD "2194" | 120 #define PACKAGE_BUILD "2352" |
121 | 121 |
122 /* Define to internal version of this package. */ | 122 /* Define to internal version of this package. */ |
123 #define PACKAGE_INTVER "0.8.0" | 123 #define PACKAGE_INTVER "1.1.0" |
124 | 124 |
125 /* Define to the full name of this package. */ | 125 /* Define to the full name of this package. */ |
126 #define PACKAGE_NAME "yasm" | 126 #define PACKAGE_NAME "yasm" |
127 | 127 |
128 /* Define to the full name and version of this package. */ | 128 /* Define to the full name and version of this package. */ |
129 #define PACKAGE_STRING "yasm 0.8.0" | 129 #define PACKAGE_STRING "yasm 1.1.0" |
130 | 130 |
131 /* Define to the one symbol short name of this package. */ | 131 /* Define to the one symbol short name of this package. */ |
132 #define PACKAGE_TARNAME "yasm" | 132 #define PACKAGE_TARNAME "yasm" |
133 | 133 |
134 /* Define to the version of this package. */ | 134 /* Define to the version of this package. */ |
135 #define PACKAGE_VERSION "0.8.0" | 135 #define PACKAGE_VERSION "1.1.0" |
136 | 136 |
137 /* Define if the C compiler supports function prototypes. */ | 137 /* Define if the C compiler supports function prototypes. */ |
138 #define PROTOTYPES 1 | 138 #define PROTOTYPES 1 |
139 | 139 |
140 /* The size of a `char', as computed by sizeof. */ | 140 /* The size of a `char', as computed by sizeof. */ |
141 /* #undef SIZEOF_CHAR */ | 141 /* #undef SIZEOF_CHAR */ |
142 | 142 |
143 /* The size of a `int', as computed by sizeof. */ | 143 /* The size of a `int', as computed by sizeof. */ |
144 /* #undef SIZEOF_INT */ | 144 /* #undef SIZEOF_INT */ |
145 | 145 |
146 /* The size of a `long', as computed by sizeof. */ | 146 /* The size of a `long', as computed by sizeof. */ |
147 /* #undef SIZEOF_LONG */ | 147 /* #undef SIZEOF_LONG */ |
148 | 148 |
149 /* The size of a `short', as computed by sizeof. */ | 149 /* The size of a `short', as computed by sizeof. */ |
150 /* #undef SIZEOF_SHORT */ | 150 /* #undef SIZEOF_SHORT */ |
151 | 151 |
152 /* The size of a `void*', as computed by sizeof. */ | 152 /* The size of a `void*', as computed by sizeof. */ |
153 /* #undef SIZEOF_VOIDP */ | 153 /* #undef SIZEOF_VOIDP */ |
154 | 154 |
155 /* Define if you have the ANSI C header files. */ | 155 /* Define if you have the ANSI C header files. */ |
156 #define STDC_HEADERS 1 | 156 #define STDC_HEADERS 1 |
157 | 157 |
158 /* Version number of package */ | 158 /* Version number of package */ |
159 #define VERSION "0.8.0" | 159 #define VERSION "1.1.0" |
160 | 160 |
161 /* Define if using the dmalloc debugging malloc package */ | 161 /* Define if using the dmalloc debugging malloc package */ |
162 /* #undef WITH_DMALLOC */ | 162 /* #undef WITH_DMALLOC */ |
163 | 163 |
164 /* Define like PROTOTYPES; this can be used by system headers. */ | 164 /* Define like PROTOTYPES; this can be used by system headers. */ |
165 #define __PROTOTYPES 1 | 165 #define __PROTOTYPES 1 |
166 | 166 |
167 /* Define to empty if `const' does not conform to ANSI C. */ | 167 /* Define to empty if `const' does not conform to ANSI C. */ |
168 /* #undef const */ | 168 /* #undef const */ |
169 | 169 |
170 /* Define as `__inline' if that's what the C compiler calls it, or to nothing | 170 /* Define as `__inline' if that's what the C compiler calls it, or to nothing |
171 if it is not supported. */ | 171 if it is not supported. */ |
172 #ifndef __cplusplus | 172 #ifndef __cplusplus |
173 /* #undef inline */ | 173 /* #undef inline */ |
174 #endif | 174 #endif |
175 | 175 |
176 /* Define to `unsigned' if <sys/types.h> doesn't define. */ | 176 /* Define to `unsigned' if <sys/types.h> doesn't define. */ |
177 /* #undef size_t */ | 177 /* #undef size_t */ |
OLD | NEW |