Patch for Makefile - LIBMD_SHA1: -lmd on FreeBSD

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxx>
 WWW: http://g-rave.nl/
--- 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: pgpWNxquONum9.pgp
Description: PGP signature


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux