Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2006-07-29 20:26:18 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-31 00:36:12 +0400
commitca7a741647f961eb3b6b9df14d079c99fdc9a827 (patch)
treed7cf6dacdce5afaea26f7f3ce44d6591c8ecc663
parente6a4e5816e0b521713e899cafa60b0dd6bc74eec (diff)
Build on Debian GNU/kFreeBSD
Patch from Petr Salinger to make the build process detect and support the Debian GNU/kFreeBSD architecture, see http://bugs.debian.org/380209 Signed-off-by: Gerrit Pape <pape@smarden.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e9dce268f8..15864e23bd 100644
--- a/Makefile
+++ b/Makefile
@@ -265,6 +265,9 @@ LIBS = $(GITLIBS) -lz
ifeq ($(uname_S),Linux)
NO_STRLCPY = YesPlease
endif
+ifeq ($(uname_S),GNU/kFreeBSD)
+ NO_STRLCPY = YesPlease
+endif
ifeq ($(uname_S),Darwin)
NEEDS_SSL_WITH_CRYPTO = YesPlease
NEEDS_LIBICONV = YesPlease