ext/opcache/ZendAccelerator.c: Restrict MD5 header include to Windows (#15418)

As it is only ever used in accel_gen_uname_id() which is Windows only
This commit is contained in:
Gina Peter Banyard 2024-08-15 11:12:04 +01:00 committed by GitHub
parent 21fa5e15f9
commit 3e226af533
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,10 +47,11 @@
#include "zend_accelerator_hash.h"
#include "zend_file_cache.h"
#include "ext/pcre/php_pcre.h"
#include "ext/standard/md5.h"
#include "ext/standard/basic_functions.h"
#ifdef ZEND_WIN32
# include "ext/hash/php_hash.h"
# include "ext/standard/md5.h"
#endif
#ifdef HAVE_JIT