diff options
author | Gerrit Pape <pape@smarden.org> | 2006-07-29 16:26:18 +0000 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-30 13:36:12 -0700 |
commit | ca7a741647f961eb3b6b9df14d079c99fdc9a827 (patch) | |
tree | d7cf6dacdce5afaea26f7f3ce44d6591c8ecc663 /Makefile | |
parent | e6a4e5816e0b521713e899cafa60b0dd6bc74eec (diff) | |
download | git-ca7a741647f961eb3b6b9df14d079c99fdc9a827.tar.gz git-ca7a741647f961eb3b6b9df14d079c99fdc9a827.tar.xz |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |