From 4b1fc6c00b0a19fb4432aa49219045b6ae2bff7a Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 25 Sep 2009 10:37:54 +0200 Subject: [PATCH] Mods for Windows compilation --- src/marchash.c | 2 +- src/marcmap.c | 4 ++-- win/makefile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/marchash.c b/src/marchash.c index 7cebcd7..6256a7b 100644 --- a/src/marchash.c +++ b/src/marchash.c @@ -35,7 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include "jenkins_hash.h" -#include +#include "marchash.h" static inline void strtrimcat(char *dest, const char *src) { diff --git a/src/marcmap.c b/src/marcmap.c index 02c876f..31d0a24 100644 --- a/src/marcmap.c +++ b/src/marcmap.c @@ -34,8 +34,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include -#include -#include +#include "marcmap.h" +#include "marchash.h" struct marcmap *marcmap_load(char *filename, NMEM nmem) { struct marcmap *mm; diff --git a/win/makefile b/win/makefile index 6157cb0..be0fbf2 100644 --- a/win/makefile +++ b/win/makefile @@ -197,8 +197,8 @@ PAZPAR2_OBJS = \ "$(OBJDIR)\client.obj" \ "$(OBJDIR)\dirent.obj" \ "$(OBJDIR)\jenkins_hash.obj" \ - "$(OBJDIR)\marcmap..obj" \ - "$(OBJDIR)\marchash..obj" \ + "$(OBJDIR)\marcmap.obj" \ + "$(OBJDIR)\marchash.obj" \ "$(OBJDIR)\connection.obj" -- 1.7.10.4