mirror of
https://github.com/zlib-ng/minizip-ng
synced 2026-08-25 14:26:08 -04:00
28 lines
668 B
Text
28 lines
668 B
Text
#ifndef MZ_CONFIG_H
|
|
#define MZ_CONFIG_H
|
|
|
|
// Define to 1 if you have the <dirent.h> header file.
|
|
#cmakedefine01 HAVE_DIRENT_H
|
|
|
|
// Define to 1 if you have the <sys/dirent.h> header file.
|
|
#cmakedefine01 HAVE_SYS_DIRENT_H
|
|
|
|
// Define to 1 if you have the <inttypes.h> header file.
|
|
#cmakedefine01 HAVE_INTTYPES_H
|
|
|
|
// Define to 1 if you have the <stdint.h> header file.
|
|
#cmakedefine01 HAVE_STDINT_H
|
|
|
|
// Define to 1 if DIR* is defined.
|
|
#cmakedefine01 HAVE_PDIR
|
|
|
|
// Define to 1 if fseeko() is defined.
|
|
#cmakedefine01 HAVE_FSEEKO
|
|
|
|
// Define to 1 if symlink() is defined.
|
|
#cmakedefine01 HAVE_SYMLINK
|
|
|
|
// Define to 1 if readlink() is defined.
|
|
#cmakedefine01 HAVE_READLINK
|
|
|
|
#endif
|