From: <sba...@us...> - 2021-03-13 22:45:55
|
This is an automated email from the git hooks/post-receive-user script. sbaldovi pushed a commit to branch master in repository libspectrum. View the commit online: https://sourceforge.net/p/fuse-emulator/libspectrum/ci/a722bee5ad717f4ca5375f287085800850eb3e21/ commit a722bee5ad717f4ca5375f287085800850eb3e21 Author: Sergio Baldoví <ser...@gm...> AuthorDate: Sat Mar 13 12:27:17 2021 +0100 We need strings.h for strcasecmp() --- zip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zip.c b/zip.c index f7931e8..826dfff 100644 --- a/zip.c +++ b/zip.c @@ -27,6 +27,9 @@ #include "config.h" #include <string.h> +#ifdef HAVE_STRINGS_H +#include <strings.h> /* Needed for strcasecmp() on QNX6 */ +#endif /* #ifdef HAVE_STRINGS_H */ #define ZLIB_CONST #include <zlib.h> |