mirror of
https://github.com/php/php-src.git
synced 2024-12-01 13:54:10 +08:00
8e202b40a0
- fix logic in time convertion - force shared on windows, will fix the dirent issue later (no, it is not enough to simply remove the dep or header include) - add myself before I forget again
26 lines
805 B
JavaScript
26 lines
805 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("fileinfo", "fileinfo support", "no");
|
|
|
|
if (PHP_FILEINFO != 'no') {
|
|
if (CHECK_HEADER_ADD_INCLUDE("dirent.h", "CFLAGS_FILEINFO") &&
|
|
CHECK_LIB("dirent_a.lib", "fileinfo", PHP_FILEINFO)) {
|
|
LIBMAGIC_SOURCES=" apprentice.c apptype.c ascmagic.c \
|
|
cdf.c cdf_time.c compress.c \
|
|
encoding.c fsmagic.c funcs.c \
|
|
is_tar.c magic.c print.c \
|
|
readcdf.c readelf.c softmagic.c";
|
|
|
|
if (VCVERS < 1500) {
|
|
ADD_FLAG('CFLAGS', '/Zm1000');
|
|
}
|
|
|
|
EXTENSION('fileinfo', 'fileinfo.c', true, "/I" + configure_module_dirname + "/libmagic /I" + configure_module_dirname);
|
|
ADD_SOURCES(configure_module_dirname + '\\libmagic', LIBMAGIC_SOURCES, "fileinfo");
|
|
} else {
|
|
WARNING("fileinfo not enabled; libraries and headers not found");
|
|
PHP_FILEINFO = "no";
|
|
}
|
|
}
|