Make `openssl version' output lines consistent.
This commit is contained in:
parent
5a0611297b
commit
d10f052be5
3
CHANGES
3
CHANGES
@ -5,6 +5,9 @@
|
|||||||
|
|
||||||
Changes between 0.9.1c and 0.9.2
|
Changes between 0.9.1c and 0.9.2
|
||||||
|
|
||||||
|
*) Make `openssl version' output lines consistent.
|
||||||
|
[Ralf S. Engelschall]
|
||||||
|
|
||||||
*) Fix Win32 symbol export lists for BIO functions: Added
|
*) Fix Win32 symbol export lists for BIO functions: Added
|
||||||
BIO_get_ex_new_index, BIO_get_ex_num, BIO_get_ex_data and BIO_set_ex_data
|
BIO_get_ex_new_index, BIO_get_ex_num, BIO_get_ex_data and BIO_set_ex_data
|
||||||
to ms/libeay{16,32}.def.
|
to ms/libeay{16,32}.def.
|
||||||
|
@ -107,7 +107,7 @@ char **argv;
|
|||||||
if (platform) printf("%s\n",SSLeay_version(SSLEAY_PLATFORM));
|
if (platform) printf("%s\n",SSLeay_version(SSLEAY_PLATFORM));
|
||||||
if (options)
|
if (options)
|
||||||
{
|
{
|
||||||
printf("options:");
|
printf("options: ");
|
||||||
printf("%s ",BN_options());
|
printf("%s ",BN_options());
|
||||||
#ifndef NO_MD2
|
#ifndef NO_MD2
|
||||||
printf("%s ",MD2_options());
|
printf("%s ",MD2_options());
|
||||||
|
@ -18,7 +18,7 @@ AR= ar r
|
|||||||
PEX_LIBS=
|
PEX_LIBS=
|
||||||
EX_LIBS=
|
EX_LIBS=
|
||||||
|
|
||||||
CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS=" \"$(CC) $(CFLAG)\" " -DPLATFORM=" \"$(PLATFORM)\" "
|
CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS="\"$(CC) $(CFLAG)\"" -DPLATFORM="\"$(PLATFORM)\""
|
||||||
|
|
||||||
ERR=crypto
|
ERR=crypto
|
||||||
ERRC=cpt_err
|
ERRC=cpt_err
|
||||||
|
@ -70,34 +70,34 @@ int t;
|
|||||||
if (t == SSLEAY_BUILT_ON)
|
if (t == SSLEAY_BUILT_ON)
|
||||||
{
|
{
|
||||||
#ifdef DATE
|
#ifdef DATE
|
||||||
static char buf[sizeof(DATE)+10];
|
static char buf[sizeof(DATE)+11];
|
||||||
|
|
||||||
sprintf(buf,"built on %s",DATE);
|
sprintf(buf,"built on: %s",DATE);
|
||||||
return(buf);
|
return(buf);
|
||||||
#else
|
#else
|
||||||
return("build date not available");
|
return("built on: date not available");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (t == SSLEAY_CFLAGS)
|
if (t == SSLEAY_CFLAGS)
|
||||||
{
|
{
|
||||||
#ifdef CFLAGS
|
#ifdef CFLAGS
|
||||||
static char buf[sizeof(CFLAGS)+10];
|
static char buf[sizeof(CFLAGS)+11];
|
||||||
|
|
||||||
sprintf(buf,"C flags:%s",CFLAGS);
|
sprintf(buf,"compiler: %s",CFLAGS);
|
||||||
return(buf);
|
return(buf);
|
||||||
#else
|
#else
|
||||||
return("C flags not available");
|
return("compiler: information not available");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (t == SSLEAY_PLATFORM)
|
if (t == SSLEAY_PLATFORM)
|
||||||
{
|
{
|
||||||
#ifdef PLATFORM
|
#ifdef PLATFORM
|
||||||
static char buf[sizeof(PLATFORM)+10];
|
static char buf[sizeof(PLATFORM)+11];
|
||||||
|
|
||||||
sprintf(buf,"Platform:%s",PLATFORM);
|
sprintf(buf,"platform: %s", PLATFORM);
|
||||||
return(buf);
|
return(buf);
|
||||||
#else
|
#else
|
||||||
return("Platform information not available");
|
return("platform: information not available");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
return("not available");
|
return("not available");
|
||||||
|
Loading…
Reference in New Issue
Block a user