We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1beb9 commit adef238Copy full SHA for adef238
cmake/cmake/platforms/Windows.cmake
@@ -197,6 +197,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
197
set(HAVE_VASPRINTF FALSE)
198
set(HAVE_WMMINTRIN_H TRUE)
199
set(HAVE_WS2TCPIP_H TRUE)
200
+ set(PHP_EXT_DATE_HAS_FWRAP FALSE)
201
set(PHP_EXT_GD_HAS_FLOORF TRUE)
202
set(PHP_EXT_OPCACHE_HAS_FLOOR TRUE)
203
set(PHP_HAS_CREATEPROCESS TRUE)
cmake/ext/date/lib/CMakeLists.txt
@@ -82,8 +82,8 @@ target_compile_definitions(
82
HAVE_STRTOLL
83
)
84
85
-check_compiler_flag(C -fwrapv _timelib_HAVE_FWRAPV)
86
-if(_timelib_HAVE_FWRAPV)
+check_compiler_flag(C -fwrapv PHP_EXT_DATE_HAS_FWRAP)
+if(PHP_EXT_DATE_HAS_FWRAP)
87
set_source_files_properties(
88
${timelibSources}
89
TARGET_DIRECTORY ${TIMELIB_TARGET}
0 commit comments