Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: third_party/yasm/patched-yasm/Mkfiles/vc9/config.h

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

Powered by Google App Engine
This is Rietveld 408576698