Skip to content
Snippets Groups Projects
Commit 5cee7238 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix build failure on Windows due to undefined cflags identifier


Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
(cherry picked from commit 5c5e7e1a)
parent 7c6a3cf2
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment