From: Dennis Stosberg Date: Mon, 26 Jun 2006 08:26:13 +0000 (+0200) Subject: Solaris needs inclusion of signal.h for signal() X-Git-Tag: v1.4.1-rc2~24 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e898081dfbedcb77e3dfcdc9c347669f6c093d65;p=git.git Solaris needs inclusion of signal.h for signal() Currently the compilation fails in connect.c and merge-index.c Signed-off-by: Junio C Hamano --- diff --git a/connect.c b/connect.c index db7342e4d..66e78a290 100644 --- a/connect.c +++ b/connect.c @@ -8,6 +8,7 @@ #include #include #include +#include static char *server_capabilities = NULL; diff --git a/merge-index.c b/merge-index.c index 190e12fb7..0498a6f45 100644 --- a/merge-index.c +++ b/merge-index.c @@ -1,5 +1,6 @@ #include #include +#include #include "cache.h"