* Patch for Makefile - LIBMD_SHA1: -lmd on FreeBSD
@ 2007-07-10 13:19 Ed Schouten
0 siblings, 0 replies; only message in thread
From: Ed Schouten @ 2007-07-10 13:19 UTC (permalink / raw)
To: git
[-- Attachment #1.1: Type: text/plain, Size: 461 bytes --]
Hello,
Once in a while I send in some patches to the FreeBSD folks for the
devel/git port. I just wrote a patch for Git that makes it possible to
link it against the FreeBSD Message Digest library (libmd), removing the
dependency on OpenSSL.
The patch adds the switch LIBMD_SHA1. When set, it just uses sha.h and
-lmd. I've also added proper documentation to the top of the Makefile.
Yours,
--
Ed Schouten <ed@fxq.nl>
WWW: http://g-rave.nl/
[-- Attachment #1.2: git-libmd.diff --]
[-- Type: text/x-diff, Size: 835 bytes --]
--- Makefile 2007-07-10 15:16:03.000000000 +0200
+++ Makefile 2007-07-10 15:17:31.000000000 +0200
@@ -55,6 +55,9 @@
# specify your own (or DarwinPort's) include directories and
# library directories by defining CFLAGS and LDFLAGS appropriately.
#
+# Define LIBMD_SHA1 environment variable when running make to make use
+# of FreeBSD's libmd SHA1 routines.
+#
# Define PPC_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine optimized for PowerPC.
#
@@ -637,6 +640,10 @@
BASIC_CFLAGS += -DOLD_ICONV
endif
+ifdef LIBMD_SHA1
+ SHA1_HEADER = "sha.h"
+ EXTLIBS += -lmd
+else
ifdef PPC_SHA1
SHA1_HEADER = "ppc/sha1.h"
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
@@ -654,6 +661,7 @@
endif
endif
endif
+endif
ifdef NO_PERL_MAKEMAKER
export NO_PERL_MAKEMAKER
endif
[-- Attachment #2: Type: application/pgp-signature, Size: 187 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-07-10 13:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-10 13:19 Patch for Makefile - LIBMD_SHA1: -lmd on FreeBSD Ed Schouten
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.