diff options
author | Gerrit Pape <pape@smarden.org> | 2006-07-29 18:26:18 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-30 22:36:12 +0200 |
commit | ca7a741647f961eb3b6b9df14d079c99fdc9a827 (patch) | |
tree | d7cf6dacdce5afaea26f7f3ce44d6591c8ecc663 /Makefile | |
parent | Merge branch 'lt/web' (diff) | |
download | git-ca7a741647f961eb3b6b9df14d079c99fdc9a827.tar.xz git-ca7a741647f961eb3b6b9df14d079c99fdc9a827.zip |
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 |