~ubuntu-branches/ubuntu/precise/libgpg-error/precise

« back to all changes in this revision

Viewing changes to src/versioninfo.rc.in

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2006-03-04 15:53:20 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060304155320-vti2rjivte4051gl
Tags: 1.2-1
New upstream version. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* versioninfo.rc.in - for libgpg-error
 
2
 *    Copyright (C) 2005 g10 Code GmbH
 
3
 * 
 
4
 * This file is free software; as a special exception the author gives
 
5
 * unlimited permission to copy and/or distribute it, with or without
 
6
 * modifications, as long as this notice is preserved.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 
10
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
11
 */
 
12
 
 
13
/* This file is processed by configure to create versioninfo.rc */
 
14
 
 
15
#line __LINE__ "versioninfo.rc.in"
 
16
 
 
17
#include <afxres.h>
 
18
 
 
19
 
 
20
VS_VERSION_INFO VERSIONINFO
 
21
 FILEVERSION @BUILD_FILEVERSION@
 
22
 PRODUCTVERSION @BUILD_FILEVERSION@
 
23
 FILEFLAGSMASK 0x3fL
 
24
#ifdef _DEBUG
 
25
 FILEFLAGS 0x21L
 
26
#else
 
27
 FILEFLAGS 0x20L
 
28
#endif
 
29
 FILEOS 0x40004L
 
30
 FILETYPE 0x1L
 
31
 FILESUBTYPE 0x0L
 
32
BEGIN
 
33
    BLOCK "StringFileInfo"
 
34
    BEGIN
 
35
        BLOCK "040904b0"
 
36
        BEGIN
 
37
            VALUE "Comments", "Provided under the terms of the GNU Lesser General Public License.\0"
 
38
            VALUE "CompanyName", "g10 Code GmbH\0"
 
39
            VALUE "FileDescription", "libgpg-error - Common error codes\0"
 
40
            VALUE "FileVersion", "@VERSION@\0"
 
41
            VALUE "InternalName", "libgpg-error\0"
 
42
            VALUE "LegalCopyright", "Copyright � 2005 g10 Code GmbH\0"
 
43
            VALUE "LegalTrademarks", "\0"
 
44
            VALUE "OriginalFilename", "libgpg-error.dll\0"
 
45
            VALUE "PrivateBuild", "\0"
 
46
            VALUE "ProductName", "libgpg-error\0"
 
47
            VALUE "ProductVersion", "@VERSION@\0"
 
48
            VALUE "SpecialBuild", "@BUILD_TIMESTAMP@\0"
 
49
        END
 
50
    END
 
51
END
 
52