Skip to content
Snippets Groups Projects
Commit 6476643e authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#13961: fix build without SSLv2 fix warnings

parent 0324fbbb
No related branches found
No related tags found
No related merge requests found
...@@ -52,9 +52,12 @@ ...@@ -52,9 +52,12 @@
# define wcsicmp _wcsicmp # define wcsicmp _wcsicmp
# define wcsnicmp _wcsnicmp # define wcsnicmp _wcsnicmp
#else #else
#ifndef stricmp
# define stricmp strcasecmp # define stricmp strcasecmp
#endif
#ifndef strnicmp
# define strnicmp strncasecmp # define strnicmp strncasecmp
#endif
# if defined(PJ_NATIVE_STRING_IS_UNICODE) && PJ_NATIVE_STRING_IS_UNICODE!=0 # if defined(PJ_NATIVE_STRING_IS_UNICODE) && PJ_NATIVE_STRING_IS_UNICODE!=0
# error "Implement Unicode string functions" # error "Implement Unicode string functions"
# endif # endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment