~ubuntu-branches/ubuntu/trusty/argyll/trusty-proposed

« back to all changes in this revision

Viewing changes to libusbw/src/common.rc

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2014-02-12 00:35:39 UTC
  • mfrom: (13.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20140212003539-24tautzlitsiz61w
Tags: 1.5.1-5ubuntu1
* Merge from Debian unstable. (LP: #1275572) Remaining changes:
  - debian/control:
    + Build-depend on libtiff-dev rather than libtiff4-dev.
  - debian/control, debian/patches/06_fix_udev_rule.patch:
    + Fix udev rules to actually work; ENV{ACL_MANAGE} has
      stopped working ages ago, and with logind it's now the
      "uaccess" tag. Dropping also consolekit from Recommends.
  - debian/patches/drop-usb-db.patch:
    + Use hwdb builtin, instead of the obsolete usb-db
      in the udev rules.
* debian/patches/05_ftbfs-underlinkage.diff:
  - Dropped change, no needed anymore.
* Refresh the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* LIBUSB-WIN32, Generic Windows USB Library
2
 
 * Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License as published by
6
 
 * the Free Software Foundation; either version 2 of the License, or
7
 
 * (at your option) any later version.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 */
18
 
 
19
 
#include <winver.h>
20
 
 
21
 
#define RT_MANIFEST 24
22
 
#define ID_MANIFEST 1
23
 
 
24
 
VS_VERSION_INFO VERSIONINFO
25
 
FILEVERSION    RC_VERSION
26
 
PRODUCTVERSION RC_VERSION
27
 
FILEFLAGSMASK  0x3FL
28
 
FILEFLAGS      0x0L
29
 
FILEOS         VOS_NT_WINDOWS32
30
 
FILETYPE       RC_FILE_TYPE
31
 
FILESUBTYPE    RC_FILE_SUB_TYPE
32
 
BEGIN
33
 
    BLOCK "StringFileInfo"
34
 
    BEGIN
35
 
        BLOCK "040904b0"  
36
 
        BEGIN
37
 
            VALUE "CompanyName",     "http://libusb-win32.sourceforge.net"
38
 
            VALUE "FileDescription", RC_PRODUCT_STR
39
 
            VALUE "FileVersion",     RC_VERSION_STR
40
 
            VALUE "InternalName",    RC_FILE_NAME_STR
41
 
            VALUE "LegalCopyright",  "@ 2002-2005 S. Meyer, <ste_meyer@web.de>"
42
 
            VALUE "OriginalFilename",RC_FILE_NAME_STR
43
 
            VALUE "ProductName",     RC_PRODUCT_STR
44
 
            VALUE "ProductVersion",  RC_VERSION_STR
45
 
        END
46
 
    END
47
 
 
48
 
    BLOCK "VarFileInfo"
49
 
    BEGIN
50
 
        VALUE "Translation", 0x409, 1200
51
 
    END
52
 
END
53