opengl32: Add "Not Microsoft" to Copyright string to satisfy CATIA.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2015-11-16 14:34:51 -06:00 committed by Alexandre Julliard
parent 230217e4d2
commit b54c3811fe
2 changed files with 6 additions and 1 deletions

View File

@ -20,6 +20,7 @@
#define WINE_FILENAME_STR "opengl32.dll"
#define WINE_FILEVERSION 5,1,2600,2082
#define WINE_FILEVERSION_STR "5.1.2600.2082"
#define WINE_LEGALCOPYRIGHT "Copyright (c) 1993-2015 the Wine project. Not Microsoft" /* CATIA needs 'Microsoft' in both CompanyName _and_ LegalCopyright */
#define WINE_PRODUCTVERSION 5,1,2600,2082
#define WINE_PRODUCTVERSION_STR "5.1"

View File

@ -73,6 +73,10 @@ never complain.
#define WINE_FILESUBTYPE VFT2_UNKNOWN
#endif
#ifndef WINE_LEGALCOPYRIGHT
#define WINE_LEGALCOPYRIGHT "Copyright (c) 1993-2015 the Wine project authors (see the file AUTHORS for a complete list)"
#endif
#ifndef WINE_PRODUCTVERSION
#define WINE_PRODUCTVERSION 1,0,0,0
#endif
@ -106,7 +110,7 @@ FILESUBTYPE WINE_FILESUBTYPE
VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
VALUE "FileVersion", WINE_FILEVERSION_STR
VALUE "InternalName", WINE_FILENAME
VALUE "LegalCopyright", "Copyright (c) 1993-2015 the Wine project authors (see the file AUTHORS for a complete list)"
VALUE "LegalCopyright", WINE_LEGALCOPYRIGHT
VALUE "OriginalFilename", WINE_FILENAME_STR
VALUE "ProductName", WINE_PRODUCTNAME_STR
VALUE "ProductVersion", WINE_PRODUCTVERSION_STR