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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bison/src/bison/2.4.1/bison-2.4.1/resource/bison-res.rc
===================================================================
--- bison/src/bison/2.4.1/bison-2.4.1/resource/bison-res.rc (revision 0)
+++ bison/src/bison/2.4.1/bison-2.4.1/resource/bison-res.rc (revision 0)
@@ -0,0 +1,134 @@
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+#include <winver.h>
+
+#define VER_FILEVERSION 2,4,1,3411
+#define VER_FILEVERSION_STR "2.4.1.3411"
+#define VER_FILELTVERSION_STR "-1"
+#define VER_LEGALCOPYRIGHT_STR "© 2009 Free Software Foundation"
+//#define VER_COMMENT_STR ""
+
+#define VER_FILEDESCRIPTION_STR "Bison: Yacc-compatible parser generator"
+#define VER_INTERNALNAME_STR "bison"
+#define VER_ORIGINALFILENAME_STR "bison.exe"
+#define VER_WWW_STR "http://www.gnu.org/software/bison/bison.html"
+#define VER_COMPANYNAME_STR "GnuWin32 <http://gnuwin32.sourceforge.net>"
+#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. "
+#define VER_LEGALTRADEMARKS_STR "GnuWin32®, Bison®, bison®"
+
+#define VER_PRODUCTNAME_STR "Bison"
+#define VER_PRODUCTVERSION 2,4,1,3411
+#define VER_PRODUCTVERSION_STR "2.4.1.3411"
+
+
+#define OFFICIAL 1
+#define FINAL 1
+
+#define GNUWIN32_SPECIALBUILD_STR "GNU for Win32 <gnuwin32.sourceforge.net>"
+
+#define VER_FILETYPE VFT_APP
+#ifndef VER_FILETYPE
+#define VER_FILETYPE VFT_APP
+#endif
+
+#define VER_FILESUBTYPE VFT2_UNKNOWN
+
+#ifndef DEBUG
+#define VER_DEBUG 0
+#else /* DEBUG */
+#define VER_DEBUG VS_FF_DEBUG
+#endif
+
+#ifndef PATCHED
+#define VER_PATCHED 0
+#else /* PATCHED */
+#define VER_PATCHED VS_FF_PATCHED
+#endif
+
+#ifndef OFFICIAL
+#define VER_SPECIALBUILD VS_FF_SPECIALBUILD
+#ifndef VER_SPECIALBUILD_STR
+#define VER_SPECIALBUILD_STR GNUWIN32_SPECIALBUILD_STR
+#endif
+#else /* OFFICIAL */
+#define VER_SPECIALBUILD 0
+#endif /* OFFICIAL */
+
+#ifndef FINAL
+#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
+#ifndef VER_PRIVATEBUILD_STR
+#define VER_PRIVATEBUILD_STR "Pre-release"
+#endif /* VER_PRIVATEBUILD_STR */
+#define VER_PRERELEASE VS_FF_PRERELEASE
+#else /* FINAL */
+#define VER_PRIVATEBUILD 0
+#define VER_PRERELEASE 0
+#endif /* FINAL */
+
+#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_SPECIALBUILD|VER_PRERELEASE|VER_DEBUG|VER_PATCHED)
+
+#define VER_FILEOS VOS__WINDOWS32
+
+#ifdef RC_INVOKED
+
+VS_VERSION_INFO VERSIONINFO
+FILEVERSION VER_FILEVERSION
+PRODUCTVERSION VER_PRODUCTVERSION
+FILEFLAGSMASK VER_FILEFLAGSMASK
+FILEFLAGS VER_FILEFLAGS
+FILEOS VER_FILEOS
+FILETYPE VER_FILETYPE
+FILESUBTYPE VER_FILESUBTYPE
+
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ /* language ID = U.S. English, char set = Windows, Multilingual */
+ BEGIN
+#ifdef VER_COMMENT_STR
+ VALUE "Comments", VER_COMMENT_STR
+#endif
+ VALUE "CompanyName", VER_COMPANYNAME_STR
+ VALUE "License", VER_LICENSE_STR
+ VALUE "FileDescription", VER_FILEDESCRIPTION_STR
+ VALUE "FileVersion", VER_FILEVERSION_STR
+#if !(VER_FILETYPE-VFT_DLL)
+ VALUE "LibToolFileVersion",VER_FILELTVERSION_STR
+#endif
+ VALUE "InternalName", VER_INTERNALNAME_STR
+#ifdef VER_LEGALCOPYRIGHT_STR
+ VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
+#endif
+#ifdef VER_LEGALTRADEMARKS_STR
+ VALUE "LegalTrademarks", VER_LEGALTRADEMARKS_STR
+#endif
+ VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
+ VALUE "ProductName", VER_PRODUCTNAME_STR
+ VALUE "ProductVersion", VER_PRODUCTVERSION_STR
+#ifdef VER_PATCHLEVEL_STR
+ VALUE "Patch level", VER_PATCHLEVEL_STR
+#endif
+#ifdef VER_PRIVATEBUILD_STR
+ VALUE "PrivateBuild", VER_PRIVATEBUILD_STR
+#endif
+#ifdef VER_SPECIALBUILD_STR
+ VALUE "SpecialBuild", VER_SPECIALBUILD_STR
+#endif
+#ifdef VER_AUTHOR_STR
+ VALUE "Authors", VER_AUTHOR_STR
+#endif
+#ifdef VER_WWW_STR
+ VALUE "WWW", VER_WWW_STR
+#endif
+END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+END
+
+#endif /* RC_INVOKED */
+500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "gnu.ico"
« 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