1
1

win32/libssh2_config.h: Remove hardcoded #define LIBSSH2_HAVE_ZLIB.

Rationale: Everything else in this file states a fact about the win32
platform that is unconditional for that platform.  There is nothing
unconditional about the presence of zlib.  It is neither included with
Windows nor with the platform SDK.  Therefore, this is not an appropriate
place to assert its presence.  Especially as, once asserted, it cannot be
overridden using a compiler flag.

In contrast, if it is omitted, then it can easily be reasserted by adding
a compiler flag defining LIBSSH2_HAVE_ZLIB.
Этот коммит содержится в:
Alexander Lamaison 2012-05-15 17:32:06 +01:00
родитель e91d4c9790
Коммит 92a9f95279

Просмотреть файл

@ -34,9 +34,6 @@
#define strcasecmp stricmp
#endif /* _MSC_VER */
/* Compile in zlib support */
#define LIBSSH2_HAVE_ZLIB 1
/* Enable newer diffie-hellman-group-exchange-sha1 syntax */
#define LIBSSH2_DH_GEX_NEW 1