summaryrefslogtreecommitdiffstats
path: root/util/mkbuildinf.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-10 19:11:40 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-10 19:36:48 +0100
commitf4a748a17d6a38f410acd342e8539d0e7196cbdb (patch)
tree5e21fd00a5790503d5b6c926844e27d51853e030 /util/mkbuildinf.pl
parent076e596ffb75e69c9f1aad5e06cabdd37595d695 (diff)
Produce buildinf.h on Windows the same way as on Unix
Because ENGINESDIR and OPENSSLDIR typically contains backslashes, they need to be escaped just right. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util/mkbuildinf.pl')
-rwxr-xr-xutil/mkbuildinf.pl26
1 files changed, 12 insertions, 14 deletions
diff --git a/util/mkbuildinf.pl b/util/mkbuildinf.pl
index b880c7f226..9071b7114f 100755
--- a/util/mkbuildinf.pl
+++ b/util/mkbuildinf.pl
@@ -5,15 +5,14 @@ my ($cflags, $platform) = @ARGV;
$cflags = "compiler: $cflags";
$date = localtime();
print <<"END_OUTPUT";
-#ifndef MK1MF_BUILD
- /* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */
- #define CFLAGS cflags
- /*
- * Generate CFLAGS as an array of individual characters. This is a
- * workaround for the situation where CFLAGS gets too long for a C90 string
- * literal
- */
- static const char cflags[] = {
+/* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */
+#define CFLAGS cflags
+/*
+ * Generate CFLAGS as an array of individual characters. This is a
+ * workaround for the situation where CFLAGS gets too long for a C90 string
+ * literal
+ */
+static const char cflags[] = {
END_OUTPUT
my $ctr = 0;
foreach my $c (split //, $cflags) {
@@ -23,14 +22,13 @@ foreach my $c (split //, $cflags) {
if ($ctr != 1) {
print "\n";
}
- print " ";
+ print " ";
}
print "'$c',";
}
print <<"END_OUTPUT";
'\\0'
- };
- #define PLATFORM "platform: $platform"
- #define DATE "built on: $date"
-#endif
+};
+#define PLATFORM "platform: $platform"
+#define DATE "built on: $date"
END_OUTPUT