diff options
author | Jose <jose@zeroc.com> | 2016-12-08 12:01:35 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-12-08 12:01:35 +0100 |
commit | 5c8d413fc656ad35febbeec6fcfbc63832e4ffac (patch) | |
tree | 2f152e9a4d6e462025fa106b41e16048d19c350c /php/src | |
parent | Fixed Slice\generation test failure (diff) | |
download | ice-5c8d413fc656ad35febbeec6fcfbc63832e4ffac.tar.bz2 ice-5c8d413fc656ad35febbeec6fcfbc63832e4ffac.tar.xz ice-5c8d413fc656ad35febbeec6fcfbc63832e4ffac.zip |
Fix Ice for PHP ZTS (Thread Safe) Windows builds
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/php7/msbuild/php_ice.vcxproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/php/src/php7/msbuild/php_ice.vcxproj b/php/src/php7/msbuild/php_ice.vcxproj index 2e5e38b5d26..73ae3551b61 100644 --- a/php/src/php7/msbuild/php_ice.vcxproj +++ b/php/src/php7/msbuild/php_ice.vcxproj @@ -121,6 +121,7 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <TargetName>$(ProjectName)</TargetName> <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <PhpThreadSafe>yes</PhpThreadSafe> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Debug|Win32'"> <TargetName>$(ProjectName)_nts</TargetName> @@ -140,6 +141,7 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <TargetName>$(ProjectName)</TargetName> <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <PhpThreadSafe>yes</PhpThreadSafe> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Release|Win32'"> <TargetName>$(ProjectName)_nts</TargetName> @@ -149,6 +151,7 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <TargetName>$(ProjectName)</TargetName> <OutDir>..\..\..\lib\$(Platform)\$(Configuration)\</OutDir> + <PhpThreadSafe>yes</PhpThreadSafe> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NTS-Release|x64'"> <TargetName>$(ProjectName)_nts</TargetName> |