Issue 2063: Define the constant SIGTERM if not defined

This commit is contained in:
Michael Vogel 2016-05-22 12:31:32 +02:00
parent 3ba026b501
commit 22676f7e21
1 changed files with 4 additions and 0 deletions

View File

@ -387,6 +387,10 @@ define ( 'GRAVITY_COMMENT', 6);
/* @}*/ /* @}*/
// Normally this constant is defined - but not if "pcntl" isn't installed
if (!defined("SIGTERM"))
define("SIGTERM", 15);
/** /**
* *
* Reverse the effect of magic_quotes_gpc if it is enabled. * Reverse the effect of magic_quotes_gpc if it is enabled.