From: Thomas Schwinge Date: Thu, 2 Aug 2007 08:56:42 +0000 (+0200) Subject: Support building on GNU/Hurd X-Git-Tag: v1.5.3-rc4~6 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=c29ba0c3edc513259eee572f9c9257ec7cd94a56;p=git.git Support building on GNU/Hurd GNU/Hurd systems don't have strlcpy. Signed-off-by: Thomas Schwinge Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index b593446ef..2f3b9b23e 100644 --- a/Makefile +++ b/Makefile @@ -458,6 +458,10 @@ ifeq ($(uname_S),AIX) NO_STRLCPY = YesPlease NEEDS_LIBICONV=YesPlease endif +ifeq ($(uname_S),GNU) + # GNU/Hurd + NO_STRLCPY=YesPlease +endif ifeq ($(uname_S),IRIX64) NO_IPV6=YesPlease NO_SETENV=YesPlease