Makefile: add -D__NO_STRING_INLINES -D__NO_INLINE__ for posix arch as well
diff --git a/Makefile b/Makefile
index 007a3ca..eb6464a 100644
--- a/Makefile
+++ b/Makefile
@@ -139,7 +139,7 @@
     ARCH_LDFLAGS := -lpthread -L/usr/local/include -lrt
     # CygWin's gcc doesn't accept -fPIC (all code is position independent)
     ifeq (Windows,$(findstring Windows,$(OS)))
-      LIBS_CFLAGS = -fno-stack-protector -fno-builtin
+      LIBS_CFLAGS = -fno-stack-protector -fno-builtin -D__NO_STRING_INLINES -D__NO_INLINE__
     endif
     # OS Posix
 endif