From 5d5679c4a9e2f04f14b87167f7c87e77d69ff102 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 19 Mar 2017 22:14:14 +0100 Subject: define corresponding config macros, as we already trick symbols --- main/php.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index d08aa21d47..5a5dd40617 100644 --- a/main/php.h +++ b/main/php.h @@ -181,6 +181,7 @@ PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz); END_EXTERN_C() #undef strlcpy #define strlcpy php_strlcpy +#define HAVE_STRLCPY 1 #endif #ifndef HAVE_STRLCAT @@ -189,6 +190,7 @@ PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz); END_EXTERN_C() #undef strlcat #define strlcat php_strlcat +#define HAVE_STRLCAT 1 #endif #ifndef HAVE_EXPLICIT_BZERO -- cgit v1.2.1