add config vars for phpize where conf opts aren't enabled

This commit is contained in:
Anatol Belski 2015-05-04 16:07:27 +02:00
parent 6f917e279f
commit 8f2b0e64d7

View File

@ -1987,6 +1987,14 @@ function generate_phpize()
CJ.WriteLine("var PHP_ZTS =" + '"' + PHP_ZTS + '"');
CJ.WriteLine("var PHP_DLL_LIB =" + '"' + get_define('PHPLIB') + '"');
CJ.WriteLine("var PHP_DLL =" + '"' + get_define('PHPDLL') + '"');
/* The corresponding configure options aren't enabled through phpize,
thus these dummy declarations are required. */
CJ.WriteLine("var PHP_ANALYZER =" + '"no"');
CJ.WriteLine("var PHP_PGO =" + '"no"');
CJ.WriteLine("var PHP_PGI =" + '"no"');
CJ.WriteLine("var PHP_ALL_SHARED =" + '"no"');
CJ.WriteBlankLines(1);
CJ.Close();
}