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

« back to all changes in this revision

Viewing changes to source/i18n/i18n.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
 
// Version Resource file for ICU I18N library.
2
 
 
3
 
// Do not edit with Microsoft Developer Studio Resource Editor.
4
 
//   It will permanently substitute version numbers that are intended to be
5
 
//   picked up by the pre-processor during each build.
6
 
//
7
 
 
8
 
#define APSTUDIO_READONLY_SYMBOLS
9
 
/////////////////////////////////////////////////////////////////////////////
10
 
//
11
 
// Generated from the TEXTINCLUDE 2 resource.
12
 
//
13
 
#include "winresrc.h"
14
 
 
15
 
/////////////////////////////////////////////////////////////////////////////
16
 
#undef APSTUDIO_READONLY_SYMBOLS
17
 
 
18
 
/////////////////////////////////////////////////////////////////////////////
19
 
//
20
 
 
21
 
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
22
 
#pragma code_page(1252)
23
 
 
24
 
#include "unicode\uversion.h"
25
 
 
26
 
/////////////////////////////////////////////////////////////////////////////
27
 
//
28
 
// Version
29
 
//
30
 
#define STR(s) #s
31
 
#define CommaVersionString(a, b, c, d) STR(a) ", " STR(b) ", " STR(c) ", " STR(d) "\0"
32
 
 
33
 
VS_VERSION_INFO VERSIONINFO
34
 
 FILEVERSION U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0
35
 
 PRODUCTVERSION U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0
36
 
 FILEFLAGSMASK 0x3fL
37
 
#ifdef _DEBUG
38
 
 FILEFLAGS 0x1L
39
 
#else
40
 
 FILEFLAGS 0x0L
41
 
#endif
42
 
 FILEOS VOS__WINDOWS32
43
 
 FILETYPE VFT_DLL
44
 
 FILESUBTYPE 0x0L
45
 
BEGIN
46
 
    BLOCK "StringFileInfo"
47
 
    BEGIN
48
 
        BLOCK "00000000"
49
 
        BEGIN
50
 
            VALUE "Comments", "http://oss.software.ibm.com/icu\0"
51
 
            VALUE "CompanyName", "IBM Corporation and others\0"
52
 
            VALUE "FileDescription", "IBM ICU I18N DLL\0"
53
 
            VALUE "FileVersion",  CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0)
54
 
            VALUE "LegalCopyright", U_COPYRIGHT_STRING "\0"
55
 
#ifdef _DEBUG
56
 
            VALUE "OriginalFilename", "icuin" U_ICU_VERSION_SHORT "d.dll\0")
57
 
#else
58
 
            VALUE "OriginalFilename", "icuin" U_ICU_VERSION_SHORT ".dll\0")
59
 
#endif
60
 
 
61
 
            VALUE "PrivateBuild", "\0"
62
 
            VALUE "ProductName", "International Components for Unicode\0"
63
 
            VALUE "ProductVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, 0)
64
 
            VALUE "SpecialBuild", "\0"
65
 
        END
66
 
    END
67
 
    BLOCK "VarFileInfo"
68
 
    BEGIN
69
 
        VALUE "Translation", 0x000, 0000
70
 
    END
71
 
END
72
 
 
73
 
/////////////////////////////////////////////////////////////////////////////
74