diff options
author | Vollstrecker <werner@vollstreckernet.de> | 2025-02-18 08:47:58 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2025-02-18 15:00:15 -0800 |
commit | 5a82f71ed1dfc0bec044d9702463dbdf84ea3b71 (patch) | |
tree | 973c98322bf8da6ce656bdd45500f3397615492e /zlib.h | |
parent | 7108497fda9d4536a1afade7f42266e06dca4488 (diff) | |
download | zlib-develop.tar.gz zlib-develop.tar.bz2 zlib-develop.zip |
This restores the inclusion of the local zconf.h (double quoted)
in normal usage.
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -31,7 +31,11 @@ | |||
31 | #ifndef ZLIB_H | 31 | #ifndef ZLIB_H |
32 | #define ZLIB_H | 32 | #define ZLIB_H |
33 | 33 | ||
34 | #include <zconf.h> | 34 | #ifdef ZLIB_BUILD |
35 | # include <zconf.h> | ||
36 | #else | ||
37 | # include "zconf.h" | ||
38 | #endif | ||
35 | 39 | ||
36 | #ifdef __cplusplus | 40 | #ifdef __cplusplus |
37 | extern "C" { | 41 | extern "C" { |