Skip to content
Snippets Groups Projects
Commit f4831eae authored by Stephen Hurd's avatar Stephen Hurd
Browse files

Remove pragmas telling us what we did.

parent bcf90620
Branches
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
/* The current cryptlib version: 3.4.8 */ /* The current cryptlib version: 3.4.8 */
#define CRYPTLIB_VERSION 348 #define CRYPTLIB_VERSION 348
#define CRYPTLIB_PATCHES "00000000000000000000000000000000"
/* Fixup for Windows support. We need to include windows.h for various types /* Fixup for Windows support. We need to include windows.h for various types
and prototypes needed for DLLs, but this pulls in wincrypt.h which defines and prototypes needed for DLLs, but this pulls in wincrypt.h which defines
......
...@@ -9,14 +9,6 @@ ...@@ -9,14 +9,6 @@
#define _PKCS12_DEFINED #define _PKCS12_DEFINED
#if defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ )
#if defined( USE_PKCS12_WRITE )
#pragma message( " Building with PKCS #12 read and write enabled." )
#elif defined( USE_PKCS12 )
#pragma message( " Building with PKCS #12 enabled." )
#endif /* PKCS #12 options */
#endif /* Notify PKCS #12 use */
/**************************************************************************** /****************************************************************************
* * * *
* PKCS #12 Constants * * PKCS #12 Constants *
......
...@@ -9,15 +9,6 @@ ...@@ -9,15 +9,6 @@
#define _SSH_DEFINED #define _SSH_DEFINED
#if defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ )
#ifdef USE_SSH_EXTENDED
#pragma message( " Building with extended SSH facilities enabled." )
#endif /* USE_SSH_EXTENDED */
#ifdef USE_SSH_OPENSSH
#pragma message( " Building with nonstandard OpenSSH extensions enabled." )
#endif /* USE_SSH_OPENSSH */
#endif /* Notify extended SSH facilities */
#ifdef USE_SSH #ifdef USE_SSH
/**************************************************************************** /****************************************************************************
...@@ -67,10 +58,6 @@ ...@@ -67,10 +58,6 @@
in preference to DH, uncomment the following */ in preference to DH, uncomment the following */
/* #define PREFER_ECC */ /* #define PREFER_ECC */
#if ( defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ ) ) && \
defined( PREFER_ECC )
#pragma message( " Building with ECC preferred for SSH." )
#endif /* Notify ECC preferred use */
#if defined( PREFER_ECC ) && \ #if defined( PREFER_ECC ) && \
!( defined( USE_ECDH ) && defined( USE_ECDSA ) ) !( defined( USE_ECDH ) && defined( USE_ECDSA ) )
#error PREFER_ECC can only be used with ECDH and ECDSA enabled #error PREFER_ECC can only be used with ECDH and ECDSA enabled
......
...@@ -88,10 +88,6 @@ ...@@ -88,10 +88,6 @@
following */ following */
/* #define PREFER_ECC //*/ /* #define PREFER_ECC //*/
#if ( defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ ) ) && \
defined( PREFER_ECC )
#pragma message( " Building with ECC preferred for TLS." )
#endif /* Notify preferred ECC use */
#if defined( PREFER_ECC ) && \ #if defined( PREFER_ECC ) && \
!( defined( USE_ECDH ) && defined( USE_ECDSA ) ) !( defined( USE_ECDH ) && defined( USE_ECDSA ) )
#error PREFER_ECC can only be used with ECDH and ECDSA enabled #error PREFER_ECC can only be used with ECDH and ECDSA enabled
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment