1
1

Protect #include of zlib.h if we build without zlib.

Этот коммит содержится в:
Simon Josefsson 2007-04-04 14:44:50 +00:00
родитель e7b3a2efc5
Коммит 348b914ab7

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

@ -1,4 +1,4 @@
/* Copyright (c) 2004-2006, Sara Golemon <sarag@libssh2.org>
/* Copyright (c) 2004-2007, Sara Golemon <sarag@libssh2.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms,
@ -36,7 +36,9 @@
*/
#include "libssh2_priv.h"
#include <zlib.h>
#ifdef LIBSSH2_HAVE_ZLIB
# include <zlib.h>
#endif
/* ********
* none *