summaryrefslogtreecommitdiff
path: root/ext/standard/file.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-10-23 11:14:51 +0000
committerfoobar <sniper@php.net>2001-10-23 11:14:51 +0000
commitf73ee14bd9f8d2f35b3f860c6f85f0c88d2465ab (patch)
treeb2ad995dcc659fa68774255808305bdc0683436a /ext/standard/file.c
parent76fcdc1afbfa34c2de136d83172bec91b1891ed2 (diff)
downloadphp-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.c2
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)