diff options
author | Scott MacVicar <scottmac@php.net> | 2008-07-29 01:20:28 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2008-07-29 01:20:28 +0000 |
commit | e30b104148dc20f0e862abb6593545ae7076faf2 (patch) | |
tree | fd4d5dbe0b69cbe30a99379aba0ae90b366694e0 /ext/standard/php_crypt_r.h | |
parent | 2b040f2d66bf1f79a4eae6038b6707d8e6d3fa72 (diff) | |
download | php-git-e30b104148dc20f0e862abb6593545ae7076faf2.tar.gz |
Fix build where __const is already defined like OS X.
Diffstat (limited to 'ext/standard/php_crypt_r.h')
-rw-r--r-- | ext/standard/php_crypt_r.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/php_crypt_r.h b/ext/standard/php_crypt_r.h index ad4e23add5..39456398c1 100644 --- a/ext/standard/php_crypt_r.h +++ b/ext/standard/php_crypt_r.h @@ -32,6 +32,8 @@ extern "C" #else #define __CONST #endif +#else +#define __CONST __const #endif void php_init_crypt_r(); |