diff options
author | Marcus Boerger <helly@php.net> | 2007-02-04 13:21:40 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2007-02-04 13:21:40 +0000 |
commit | 1c690cb9d4f509e5aa9a64960264daf4a6fb5d39 (patch) | |
tree | f1bc4298c4f90d42843e8f927718cc006ac0d1e7 /ext/phar/config.w32 | |
parent | a35a29e4a5d9b2e7ecb8d0d2c6ae25d0a65ca2ad (diff) | |
download | php-git-1c690cb9d4f509e5aa9a64960264daf4a6fb5d39.tar.gz |
- Add path sanitizer for new paths
- Add test for a few things we check with the sanitizer
# We might want to use the sanitizer for opening as well
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r-- | ext/phar/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index 3ad36b4d89..d2392aa483 100644 --- a/ext/phar/config.w32 +++ b/ext/phar/config.w32 @@ -4,7 +4,7 @@ ARG_ENABLE("phar", "enable phar support", "no"); if (PHP_PHAR != "no") { - EXTENSION("phar", "phar.c phar_object.c"); + EXTENSION("phar", "phar.c phar_object.c phar_path_check.c"); ADD_EXTENSION_DEP('phar', 'zlib', true); ADD_EXTENSION_DEP('phar', 'bz2', true); ADD_EXTENSION_DEP('phar', 'spl', false); |