diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2017-02-22 22:13:33 +0100 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2017-02-22 22:13:33 +0100 |
commit | db982bbaa150dceb91e2f839e97c4e1a5f2ddd24 (patch) | |
tree | 0d742438c138bc4ee78b6c630d37d85adc0c1f97 /main/php.h | |
parent | f9959ee7c2004919675d9cdc7c82f886f099f15f (diff) | |
download | php-git-db982bbaa150dceb91e2f839e97c4e1a5f2ddd24.tar.gz |
Fix PHP_OS_FAMILY for Linux (Joe)
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index fcf7b8cef5..d08aa21d47 100644 --- a/main/php.h +++ b/main/php.h @@ -51,6 +51,8 @@ #elif defined(__sun__) # define PHP_OS_FAMILY "Solaris" #elif defined(__linux__) +# define PHP_OS_FAMILY "Linux" +#else # define PHP_OS_FAMILY "Unknown" #endif |