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

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1/resource/bison-res.rc

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months 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
(Empty)
1 #define WIN32_LEAN_AND_MEAN
2 #include <windows.h>
3 #include <winver.h>
4
5 #define VER_FILEVERSION 2,4,1,3411
6 #define VER_FILEVERSION_STR "2.4.1.3411"
7 #define VER_FILELTVERSION_STR "-1"
8 #define VER_LEGALCOPYRIGHT_STR "© 2009 Free Software Foundation"
9 //#define VER_COMMENT_STR ""
10
11 #define VER_FILEDESCRIPTION_STR "Bison: Yacc-compatible parser generator"
12 #define VER_INTERNALNAME_STR "bison"
13 #define VER_ORIGINALFILENAME_STR "bison.exe"
14 #define VER_WWW_STR "http://www.gnu.org/software/bison/bison.html"
15 #define VER_COMPANYNAME_STR "GnuWin32 <http://gnuwin32.sourceforge.net>"
16 #define VER_LICENSE_STR "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License; see www.gnu. org/copyleft/gpl.html. "
17 #define VER_LEGALTRADEMARKS_STR "GnuWin32®, Bison®, bison®"
18
19 #define VER_PRODUCTNAME_STR "Bison"
20 #define VER_PRODUCTVERSION 2,4,1,3411
21 #define VER_PRODUCTVERSION_STR "2.4.1.3411"
22
23
24 #define OFFICIAL 1
25 #define FINAL 1
26
27 #define GNUWIN32_SPECIALBUILD_STR "GNU for Win32 <gnuwin32.sourceforge.net >"
28
29 #define VER_FILETYPE VFT_APP
30 #ifndef VER_FILETYPE
31 #define VER_FILETYPE VFT_APP
32 #endif
33
34 #define VER_FILESUBTYPE VFT2_UNKNOWN
35
36 #ifndef DEBUG
37 #define VER_DEBUG 0
38 #else /* DEBUG */
39 #define VER_DEBUG VS_FF_DEBUG
40 #endif
41
42 #ifndef PATCHED
43 #define VER_PATCHED 0
44 #else /* PATCHED */
45 #define VER_PATCHED VS_FF_PATCHED
46 #endif
47
48 #ifndef OFFICIAL
49 #define VER_SPECIALBUILD VS_FF_SPECIALBUILD
50 #ifndef VER_SPECIALBUILD_STR
51 #define VER_SPECIALBUILD_STR GNUWIN32_SPECIALBUILD_STR
52 #endif
53 #else /* OFFICIAL */
54 #define VER_SPECIALBUILD 0
55 #endif /* OFFICIAL */
56
57 #ifndef FINAL
58 #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
59 #ifndef VER_PRIVATEBUILD_STR
60 #define VER_PRIVATEBUILD_STR "Pre-release"
61 #endif /* VER_PRIVATEBUILD_STR */
62 #define VER_PRERELEASE VS_FF_PRERELEASE
63 #else /* FINAL */
64 #define VER_PRIVATEBUILD 0
65 #define VER_PRERELEASE 0
66 #endif /* FINAL */
67
68 #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
69 #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_SPECIALBUILD|VER_PRERE LEASE|VER_DEBUG|VER_PATCHED)
70
71 #define VER_FILEOS VOS__WINDOWS32
72
73 #ifdef RC_INVOKED
74
75 VS_VERSION_INFO VERSIONINFO
76 FILEVERSION VER_FILEVERSION
77 PRODUCTVERSION VER_PRODUCTVERSION
78 FILEFLAGSMASK VER_FILEFLAGSMASK
79 FILEFLAGS VER_FILEFLAGS
80 FILEOS VER_FILEOS
81 FILETYPE VER_FILETYPE
82 FILESUBTYPE VER_FILESUBTYPE
83
84 BEGIN
85 BLOCK "StringFileInfo"
86 BEGIN
87 BLOCK "040904E4"
88 /* language ID = U.S. English, char set = Windows, Multilingual */
89 BEGIN
90 #ifdef VER_COMMENT_STR
91 VALUE "Comments", VER_COMMENT_STR
92 #endif
93 VALUE "CompanyName", VER_COMPANYNAME_STR
94 VALUE "License", VER_LICENSE_STR
95 VALUE "FileDescription", VER_FILEDESCRIPTION_STR
96 VALUE "FileVersion", VER_FILEVERSION_STR
97 #if !(VER_FILETYPE-VFT_DLL)
98 VALUE "LibToolFileVersion",VER_FILELTVERSION_STR
99 #endif
100 VALUE "InternalName", VER_INTERNALNAME_STR
101 #ifdef VER_LEGALCOPYRIGHT_STR
102 VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
103 #endif
104 #ifdef VER_LEGALTRADEMARKS_STR
105 VALUE "LegalTrademarks", VER_LEGALTRADEMARKS_STR
106 #endif
107 VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
108 VALUE "ProductName", VER_PRODUCTNAME_STR
109 VALUE "ProductVersion", VER_PRODUCTVERSION_STR
110 #ifdef VER_PATCHLEVEL_STR
111 VALUE "Patch level", VER_PATCHLEVEL_STR
112 #endif
113 #ifdef VER_PRIVATEBUILD_STR
114 VALUE "PrivateBuild", VER_PRIVATEBUILD_STR
115 #endif
116 #ifdef VER_SPECIALBUILD_STR
117 VALUE "SpecialBuild", VER_SPECIALBUILD_STR
118 #endif
119 #ifdef VER_AUTHOR_STR
120 VALUE "Authors", VER_AUTHOR_STR
121 #endif
122 #ifdef VER_WWW_STR
123 VALUE "WWW", VER_WWW_STR
124 #endif
125 END
126 END
127 BLOCK "VarFileInfo"
128 BEGIN
129 VALUE "Translation", 0x409, 1252
130 END
131 END
132
133 #endif /* RC_INVOKED */
134 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "gnu.ico"
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1/po/POTFILES ('k') | bison/src/bison/2.4.1/bison-2.4.1/resource/gnu.ico » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698