summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-08 19:05:43 +0000
committerMatt Caswell <matt@openssl.org>2015-01-08 19:21:24 +0000
commit5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb (patch)
treed9399cb8e1df8035b613b45b432d4c2d1ec98a85
parent103b171d8fc282ef435f8de9afbf7782e312961f (diff)
Fix build failure on Windows due to undefined cflags identifier
Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r--crypto/cversion.c2
-rwxr-xr-xutil/mkbuildinf.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cversion.c b/crypto/cversion.c
index 0336adaa57..881957e892 100644
--- a/crypto/cversion.c
+++ b/crypto/cversion.c
@@ -77,7 +77,7 @@ const char *SSLeay_version(int t)
if (t == SSLEAY_CFLAGS)
{
#ifdef CFLAGS
- return(cflags);
+ return(CFLAGS);
#else
return("compiler: information not available");
#endif
diff --git a/util/mkbuildinf.pl b/util/mkbuildinf.pl
index 9d7b81c76e..ffa8a39933 100755
--- a/util/mkbuildinf.pl
+++ b/util/mkbuildinf.pl
@@ -7,7 +7,7 @@ $date = localtime();
print <<"END_OUTPUT";
#ifndef MK1MF_BUILD
/* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */
- #define CFLAGS
+ #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