Version bump
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
#! /usr/bin/env perl
|
||||
# Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the OpenSSL license (the "License"). You may not use
|
||||
# this file except in compliance with the License. You can obtain a copy
|
||||
# in the file LICENSE in the source distribution or at
|
||||
# https://www.openssl.org/source/license.html
|
||||
|
||||
use lib '.';
|
||||
use configdata;
|
||||
|
||||
use File::Compare qw(compare_text);
|
||||
|
||||
my $buildfile = $config{build_file};
|
||||
my $buildfile_new = "$buildfile-$$";
|
||||
my $depext = $target{dep_extension} || ".d";
|
||||
my @deps =
|
||||
grep { -f $_ }
|
||||
map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
|
||||
grep { $unified_info{sources}->{$_}->[0] =~ /\.cc?$/ }
|
||||
keys %{$unified_info{sources}};
|
||||
|
||||
open IBF, $buildfile or die "Trying to read $buildfile: $!\n";
|
||||
open OBF, '>', $buildfile_new or die "Trying to write $buildfile_new: $!\n";
|
||||
while (<IBF>) {
|
||||
$force_rewrite = 0;
|
||||
last if /^# DO NOT DELETE THIS LINE/;
|
||||
print OBF or die "$!\n";
|
||||
$force_rewrite = 1;
|
||||
}
|
||||
close IBF;
|
||||
|
||||
print OBF "# DO NOT DELETE THIS LINE -- make depend depends on it.\n";
|
||||
|
||||
foreach (@deps) {
|
||||
open IBF,$_ or die "Trying to read $_: $!\n";
|
||||
while (<IBF>) {
|
||||
print OBF or die "$!\n";
|
||||
}
|
||||
close IBF;
|
||||
}
|
||||
close OBF;
|
||||
|
||||
if (compare_text($buildfile_new, $buildfile) != 0) {
|
||||
rename $buildfile_new, $buildfile
|
||||
or die "Trying to rename $buildfile_new -> $buildfile: $!\n";
|
||||
}
|
||||
# On VMS, we want to remove all generations of this file, in case there are
|
||||
# more than one
|
||||
while (unlink $buildfile_new) {}
|
||||
Executable → Regular
+2
-2
@@ -99,9 +99,9 @@ package main;
|
||||
# This adds quotes (") around the given string, and escapes any $, @, \,
|
||||
# " and ' by prepending a \ to them.
|
||||
sub quotify1 {
|
||||
my $s = shift @_;
|
||||
my $s = my $orig = shift @_;
|
||||
$s =~ s/([\$\@\\"'])/\\$1/g;
|
||||
'"'.$s.'"';
|
||||
$s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
|
||||
}
|
||||
|
||||
# quotify_l LIST
|
||||
|
||||
Executable → Regular
Executable → Regular
@@ -4521,3 +4521,4 @@ OSSL_STORE_SEARCH_by_alias 4462 1_1_1 EXIST::FUNCTION:
|
||||
OSSL_STORE_LOADER_set_find 4463 1_1_1 EXIST::FUNCTION:
|
||||
OSSL_STORE_SEARCH_free 4464 1_1_1 EXIST::FUNCTION:
|
||||
OSSL_STORE_SEARCH_get0_digest 4465 1_1_1 EXIST::FUNCTION:
|
||||
RAND_DRBG_set_reseed_defaults 4466 1_1_1 EXIST::FUNCTION:
|
||||
@@ -477,3 +477,10 @@ SSL_stateless 477 1_1_1 EXIST::FUNCTION:
|
||||
SSL_verify_client_post_handshake 478 1_1_1 EXIST::FUNCTION:
|
||||
SSL_force_post_handshake_auth 479 1_1_1 EXIST::FUNCTION:
|
||||
SSL_export_keying_material_early 480 1_1_1 EXIST::FUNCTION:
|
||||
SSL_CTX_use_cert_and_key 481 1_1_1 EXIST::FUNCTION:
|
||||
SSL_use_cert_and_key 482 1_1_1 EXIST::FUNCTION:
|
||||
SSL_SESSION_get0_ticket_appdata 483 1_1_1 EXIST::FUNCTION:
|
||||
SSL_SESSION_set1_ticket_appdata 484 1_1_1 EXIST::FUNCTION:
|
||||
SSL_CTX_set_session_ticket_cb 485 1_1_1 EXIST::FUNCTION:
|
||||
SSL_CTX_set_stateless_cookie_generate_cb 486 1_1_1 EXIST::FUNCTION:
|
||||
SSL_CTX_set_stateless_cookie_verify_cb 487 1_1_1 EXIST::FUNCTION:
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
@@ -248,7 +248,9 @@ SSL_CTX_build_cert_chain define
|
||||
SSL_CTX_clear_chain_certs define
|
||||
SSL_CTX_clear_extra_chain_certs define
|
||||
SSL_CTX_clear_mode define
|
||||
SSL_CTX_decrypt_session_ticket_fn define
|
||||
SSL_CTX_disable_ct define
|
||||
SSL_CTX_generate_session_ticket_fn define
|
||||
SSL_CTX_get0_chain_certs define
|
||||
SSL_CTX_get_default_read_ahead define
|
||||
SSL_CTX_get_max_cert_list define
|
||||
|
||||
Executable → Regular
Executable → Regular
Reference in New Issue
Block a user