~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/common/common.rc

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//Do not edit with Microsoft Developer Studio because it will modify this
2
 
//script in the wrong way.
3
 
//
4
 
#define APSTUDIO_READONLY_SYMBOLS
5
 
/////////////////////////////////////////////////////////////////////////////
6
 
//
7
 
// Generated from the TEXTINCLUDE 2 resource.
8
 
//
9
 
#include "winresrc.h"
10
 
 
11
 
/////////////////////////////////////////////////////////////////////////////
12
 
#undef APSTUDIO_READONLY_SYMBOLS
13
 
 
14
 
/////////////////////////////////////////////////////////////////////////////
15
 
//
16
 
 
17
 
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
18
 
#pragma code_page(1252)
19
 
 
20
 
#include "unicode\uversion.h"
21
 
 
22
 
/////////////////////////////////////////////////////////////////////////////
23
 
//
24
 
// Version
25
 
//
26
 
#define STR(s) #s
27
 
#define CommaVersionString(a, b, c, d) STR(a) ", " STR(b) ", " STR(c) ", " STR(d) "\0"
28
 
 
29
 
VS_VERSION_INFO VERSIONINFO
30
 
 FILEVERSION U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0
31
 
 PRODUCTVERSION U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0
32
 
 FILEFLAGSMASK 0x3fL
33
 
#ifdef _DEBUG
34
 
 FILEFLAGS 0x1L
35
 
#else
36
 
 FILEFLAGS 0x0L
37
 
#endif
38
 
 FILEOS VOS__WINDOWS32
39
 
 FILETYPE VFT_DLL
40
 
 FILESUBTYPE 0x0L
41
 
BEGIN
42
 
    BLOCK "StringFileInfo"
43
 
    BEGIN
44
 
        BLOCK "00000000"
45
 
        BEGIN
46
 
            VALUE "Comments", "http://oss.software.ibm.com/icu\0"
47
 
            VALUE "CompanyName", "IBM Corporation and others\0"
48
 
            VALUE "FileDescription", "IBM ICU Common DLL\0"
49
 
            VALUE "FileVersion",  CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0)
50
 
            VALUE "LegalCopyright", U_COPYRIGHT_STRING "\0"
51
 
#ifdef _DEBUG
52
 
            VALUE "OriginalFilename", "icuuc" U_ICU_VERSION_SHORT "d.dll\0")
53
 
#else
54
 
            VALUE "OriginalFilename", "icuuc" U_ICU_VERSION_SHORT ".dll\0")
55
 
#endif
56
 
 
57
 
            VALUE "PrivateBuild", "\0"
58
 
            VALUE "ProductName", "International Components for Unicode\0"
59
 
            VALUE "ProductVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0)
60
 
            VALUE "SpecialBuild", "\0"
61
 
        END
62
 
    END
63
 
    BLOCK "VarFileInfo"
64
 
    BEGIN
65
 
        VALUE "Translation", 0x000, 0000
66
 
    END
67
 
END
68
 
 
69
 
/////////////////////////////////////////////////////////////////////////////
70