Update the TLSv1.3 version indicator for draft-19
[openssl.git] / util / mkbuildinf.pl
index 9071b7114f311982e07d6c27efda95fe22352160..5bf0168b6a7c889f2355095b4169a9db6db14123 100755 (executable)
@@ -1,4 +1,11 @@
-#!/usr/local/bin/perl
+#! /usr/bin/env perl
+# Copyright 2014-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
+
 
 my ($cflags, $platform) = @ARGV;
 
@@ -17,7 +24,7 @@ END_OUTPUT
 my $ctr = 0;
 foreach my $c (split //, $cflags) {
     $c =~ s|([\\'])|\\$1|;
-    # Max 18 characters per line
+    # Max 16 characters per line
     if  (($ctr++ % 16) == 0) {
         if ($ctr != 1) {
             print "\n";