From 0928db307e75b30b1ba75d36eb37539cd09cd32d Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sat, 28 Jul 2007 17:51:27 +0200 Subject: [PATCH] Support building on GNU/Hurd GNU/Hurd systems don't have strlcpy either. Signed-off-by: Thomas Schwinge --- Makefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 73b487f..682892f 100644 --- a/Makefile +++ b/Makefile @@ -456,6 +456,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 -- 1.5.3.rc3.26.g6c58-dirty