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