summaryrefslogtreecommitdiffstats
path: root/util/mkrc.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-11 12:59:33 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-11 17:08:38 +0100
commit1407f856ab790f8028db1ecfb354d64bfb8ca054 (patch)
treee968c1c70c473949d6cd66e74443d98dc4ef5c4a /util/mkrc.pl
parentcedbb1462a1732bf255c4b7767d8a0e4e0d20e30 (diff)
Make util/mkrc.pl location agnostic and adapt Makefile.shared
With this, Cygwin and Mingw builds stand a much better chance to be able to build outside of the source tree with the unified build. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util/mkrc.pl')
-rwxr-xr-xutil/mkrc.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/util/mkrc.pl b/util/mkrc.pl
index e20a50283c..8b74ff8adc 100755
--- a/util/mkrc.pl
+++ b/util/mkrc.pl
@@ -1,6 +1,13 @@
#!/bin/env perl
#
-open FD,"include/openssl/opensslv.h";
+
+use lib ".";
+use configdata;
+use File::Spec::Functions;
+
+my $versionfile = catfile($config{sourcedir},"include/openssl/opensslv.h");
+
+open FD, $versionfile or die "Couldn't open include/openssl/opensslv.h: $!\n";
while(<FD>) {
if (/OPENSSL_VERSION_NUMBER\s+(0x[0-9a-f]+)/i) {
$ver = hex($1);