From a09cdb27b8e998a58534978d044bf7b6a6eb9538 Mon Sep 17 00:00:00 2001 From: Nathan Neulinger Date: Sun, 3 Jun 2001 17:52:05 +0000 Subject: [PATCH] fix-afsmonitor-patch-for-string-h-existance-check-20010602 as not all platforms may have string.h --- src/afsmonitor/Makefile | 1 + src/afsmonitor/afsmon-win.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/afsmonitor/Makefile b/src/afsmonitor/Makefile index c535dc120..a02e155bd 100644 --- a/src/afsmonitor/Makefile +++ b/src/afsmonitor/Makefile @@ -14,6 +14,7 @@ COMPONENT=afsmonitor include ../config/Makefile.${SYS_NAME} CFLAGS=-g -I. \ + -I${TOP_SRCDIR}/config \ -I${SRCDIR}include \ -I${SRCDIR}include/afs \ -I${SRCDIR} ${XCFLAGS} diff --git a/src/afsmonitor/afsmon-win.c b/src/afsmonitor/afsmon-win.c index cd1f9979e..87c989c71 100644 --- a/src/afsmonitor/afsmon-win.c +++ b/src/afsmonitor/afsmon-win.c @@ -17,7 +17,10 @@ #include #include #include +#include +#ifdef HAVE_STRING_H #include +#endif #undef IN #include -- 2.39.5