update output; remove unused define

This commit is contained in:
Steffen Jaeckel 2014-07-16 15:11:14 +02:00
parent 97256daeed
commit 1a61b42775

View File

@ -184,12 +184,8 @@ const char *crypt_build_settings =
" CBC\n" " CBC\n"
#endif #endif
#if defined(LTC_CTR_MODE) #if defined(LTC_CTR_MODE)
" CTR " " CTR\n"
#endif #endif
#if defined(LTC_CTR_OLD)
" (CTR_OLD) "
#endif
"\n"
#if defined(LTC_LRW_MODE) #if defined(LTC_LRW_MODE)
" LRW" " LRW"
#if defined(LRW_TABLES) #if defined(LRW_TABLES)
@ -291,7 +287,9 @@ const char *crypt_build_settings =
#endif #endif
"\nCompiler:\n" "\nCompiler:\n"
#if defined(WIN32) #if defined(_WIN64)
" WIN64 platform detected.\n"
#elif defined(_WIN32)
" WIN32 platform detected.\n" " WIN32 platform detected.\n"
#endif #endif
#if defined(__CYGWIN__) #if defined(__CYGWIN__)
@ -315,7 +313,7 @@ const char *crypt_build_settings =
" x86-64 detected.\n" " x86-64 detected.\n"
#endif #endif
#if defined(LTC_PPC32) #if defined(LTC_PPC32)
" PPC32 defined \n" " PPC32 detected.\n"
#endif #endif
"\nVarious others: " "\nVarious others: "
@ -379,15 +377,15 @@ const char *crypt_build_settings =
#if defined(TFM_DESC) #if defined(TFM_DESC)
" TFM_DESC " " TFM_DESC "
#endif #endif
#if defined(LTC_MECC_ACCEL)
" LTC_MECC_ACCEL "
#endif
#if defined(GMP_DESC) #if defined(GMP_DESC)
" GMP_DESC " " GMP_DESC "
#endif #endif
#if defined(LTC_EASY) #if defined(LTC_EASY)
" LTC_EASY " " LTC_EASY "
#endif #endif
#if defined(LTC_MECC_ACCEL)
" LTC_MECC_ACCEL "
#endif
#if defined(LTC_MECC_FP) #if defined(LTC_MECC_FP)
" LTC_MECC_FP " " LTC_MECC_FP "
#endif #endif