diff options
author | Dennis Stosberg <dennis@stosberg.net> | 2006-06-26 10:26:13 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-26 02:11:44 -0700 |
commit | e898081dfbedcb77e3dfcdc9c347669f6c093d65 (patch) | |
tree | bd5e794df8b3826957310088c5f2a2fb140d5177 /connect.c | |
parent | 3acb27b6a4bd98dd58c1c17234b9b53ce0d78454 (diff) | |
download | git-e898081dfbedcb77e3dfcdc9c347669f6c093d65.tar.gz |
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 <junkio@cox.net>
Diffstat (limited to 'connect.c')
-rw-r--r-- | connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -8,6 +8,7 @@ #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> +#include <signal.h> static char *server_capabilities = NULL; |