X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=util%2Fmkdef.pl;h=c2fbfe7062f3a4f7443796eb5d579d87cfec9be7;hp=ea87486547dcfe5e7442e7cc233302203ab64ed3;hb=8162f6f58aa784e242941d1168fb8fc0618cf0a2;hpb=506e28b3e3d954bd71e915aa7aa3f966ee0d24ec diff --git a/util/mkdef.pl b/util/mkdef.pl index ea87486547..c2fbfe7062 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -1,4 +1,11 @@ -#!/usr/local/bin/perl -w +#! /usr/bin/env perl +# Copyright 1995-2016 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 + # # generate a .def file # @@ -122,6 +129,7 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", "TS", # OCB mode "OCB", + "CMAC", # APPLINK (win build feature?) "APPLINK" ); @@ -239,7 +247,7 @@ $ssl.=" include/openssl/srtp.h"; my $crypto ="include/openssl/crypto.h"; $crypto.=" include/internal/o_dir.h"; $crypto.=" include/internal/o_str.h"; -$crypto.=" include/internal/threads.h"; +$crypto.=" include/internal/err.h"; $crypto.=" include/openssl/des.h" ; # unless $no_des; $crypto.=" include/openssl/idea.h" ; # unless $no_idea; $crypto.=" include/openssl/rc4.h" ; # unless $no_rc4; @@ -1316,11 +1324,11 @@ EOF print OUT $symline; $symvtextcount += length($symline) - 2; } elsif($v) { - printf OUT " %s%-39s @%-8d DATA\n", - ($W32)?"":"_",$s2,$n; + printf OUT " %s%-39s DATA\n", + ($W32)?"":"_",$s2; } else { - printf OUT " %s%-39s @%d\n", - ($W32)?"":"_",$s2,$n; + printf OUT " %s%s\n", + ($W32)?"":"_",$s2; } } }