diff options
author | foobar <sniper@php.net> | 2001-10-23 11:14:51 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-10-23 11:14:51 +0000 |
commit | f73ee14bd9f8d2f35b3f860c6f85f0c88d2465ab (patch) | |
tree | b2ad995dcc659fa68774255808305bdc0683436a /ext/standard/file.c | |
parent | 76fcdc1afbfa34c2de136d83172bec91b1891ed2 (diff) | |
download | php-git-f73ee14bd9f8d2f35b3f860c6f85f0c88d2465ab.tar.gz |
Check that realpath is available. Bug: #9469
# TSRM still uses it without checking. I can't fix that.
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index df03be59e9..e4b91526ba 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -2270,7 +2270,7 @@ PHP_FUNCTION(fgetcsv) /* }}} */ -#if (!defined(PHP_WIN32) && !defined(__BEOS__)) || defined(ZTS) +#if (!defined(PHP_WIN32) && !defined(__BEOS__) && HAVE_REALPATH) || defined(ZTS) /* {{{ proto string realpath(string path) Return the resolved path */ PHP_FUNCTION(realpath) |