Fix CMP -days option range checking and test failing with enable-ubsan
[openssl.git] / util / mkrc.pl
1 #! /usr/bin/env perl
2 # Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the Apache License 2.0 (the "License").  You may not use
5 # this file except in compliance with the License.  You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9 use strict;
10 use warnings;
11 use lib ".";
12 use configdata;
13
14 my $cversion = "$config{version}";
15 my $version = "$config{full_version}";
16
17 # RC syntax for versions uses commas as separators, rather than period
18 $cversion =~ s|\.|,|g;
19
20 my $filename = $ARGV[0];
21 my $description = "OpenSSL library";
22 my $vft = "VFT_DLL";
23 if ( $filename =~ /openssl/i ) {
24     $description = "OpenSSL application";
25     $vft = "VFT_APP";
26 }
27
28 my $YEAR = [gmtime($ENV{SOURCE_DATE_EPOCH} || time())]->[5] + 1900;
29 print <<___;
30 #include <winver.h>
31
32 LANGUAGE 0x09,0x01
33
34 1 VERSIONINFO
35   FILEVERSION $cversion
36   PRODUCTVERSION $cversion
37   FILEFLAGSMASK 0x3fL
38 #ifdef _DEBUG
39   FILEFLAGS 0x01L
40 #else
41   FILEFLAGS 0x00L
42 #endif
43   FILEOS VOS__WINDOWS32
44   FILETYPE $vft
45   FILESUBTYPE 0x0L
46 BEGIN
47     BLOCK "StringFileInfo"
48     BEGIN
49         BLOCK "040904b0"
50         BEGIN
51             // Required:
52             VALUE "CompanyName", "The OpenSSL Project, https://www.openssl.org/\\0"
53             VALUE "FileDescription", "$description\\0"
54             VALUE "FileVersion", "$version\\0"
55             VALUE "InternalName", "$filename\\0"
56             VALUE "OriginalFilename", "$filename\\0"
57             VALUE "ProductName", "The OpenSSL Toolkit\\0"
58             VALUE "ProductVersion", "$version\\0"
59             // Optional:
60             //VALUE "Comments", "\\0"
61             VALUE "LegalCopyright", "Copyright 1998-$YEAR The OpenSSL Authors. All rights reserved.\\0"
62             //VALUE "LegalTrademarks", "\\0"
63             //VALUE "PrivateBuild", "\\0"
64             //VALUE "SpecialBuild", "\\0"
65         END
66     END
67     BLOCK "VarFileInfo"
68     BEGIN
69         VALUE "Translation", 0x409, 0x4b0
70     END
71 END
72 ___