--- soltools/mkdepend/makefile.mk.orig 2008-04-11 00:06:06.000000000 +0600 +++ soltools/mkdepend/makefile.mk 2008-10-25 22:25:48.000000000 +0600 @@ -49,7 +49,7 @@ LIBSALCPPRT= UWINAPILIB= -CDEFS+=-DNO_X11 -DXP_PC -DHW_THREADS +CDEFS+=-Wno-implicit-function-declaration -DNO_X11 -DXP_PC -DHW_THREADS OBJFILES= \ $(OBJ)$/cppsetup.obj \ --- soltools/mkdepend/def.h.orig 2009-05-18 15:28:59.000000000 +0200 +++ soltools/mkdepend/def.h 2009-05-18 15:29:36.000000000 +0200 @@ -154,7 +154,7 @@ char *copy(); char *base_name(); -char *getline(); +char *ooo_getline(); char *isdefined(); struct filepointer *getfile(); struct inclist *newinclude(); --- soltools/mkdepend/main.c.orig 2009-05-18 15:29:08.000000000 +0200 +++ soltools/mkdepend/main.c 2009-05-18 15:30:23.000000000 +0200 @@ -548,7 +548,7 @@ * Get the next line. We only return lines beginning with '#' since that * is all this program is ever interested in. */ -char *getline(filep) +char *ooo_getline(filep) register struct filepointer *filep; { register char *p, /* walking pointer */ --- soltools/mkdepend/parse.c.orig 2009-05-18 15:29:17.000000000 +0200 +++ soltools/mkdepend/parse.c 2009-05-18 15:30:43.000000000 +0200 @@ -45,7 +45,7 @@ register int type; boolean recfailOK; - while ((line = getline(filep))) { + while ((line = ooo_getline(filep))) { switch(type = deftype(line, filep, file_red, file, TRUE, symbols)) { case IF: doif: @@ -168,7 +168,7 @@ register char *line; register int type; - while ((line = getline(filep))) { + while ((line = ooo_getline(filep))) { switch(type = deftype(line, filep, file_red, file, FALSE, symbols)) { case IF: case IFFALSE: