diff options
Diffstat (limited to 'Utilities/cmzlib/zconf.h')
-rw-r--r-- | Utilities/cmzlib/zconf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Utilities/cmzlib/zconf.h b/Utilities/cmzlib/zconf.h index 187d135..52699ba 100644 --- a/Utilities/cmzlib/zconf.h +++ b/Utilities/cmzlib/zconf.h @@ -1,4 +1,12 @@ #include "cm_zlib_mangle.h" + +/* Disable some warnings so that we do not have to change the code much. */ +#if defined(CMZLIB_IN_C) +# if defined(__BORLANDC__) +# pragma warn -8004 /* Variable assigned a value that is not used. */ +# endif +#endif + /* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-2002 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h |