Unidiff1 files changed, 12 insertions, 3 deletions
|
diff --git a/Makefile b/Makefile index 60d8c58..4e101d3 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -13,2 +13,5 @@ INSTALL = install |
13 | # |
13 | # |
| |
14 | # Define NO_OPENSSL to disable linking with OpenSSL and use bundled SHA1 |
| |
15 | # implementation (slower). |
| |
16 | # |
14 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). |
17 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). |
@@ -70,3 +73,3 @@ endif |
70 | |
73 | |
71 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
74 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz |
72 | OBJECTS = |
75 | OBJECTS = |
@@ -125,2 +128,8 @@ ifdef NO_STRCASESTR |
125 | endif |
128 | endif |
| |
129 | ifdef NO_OPENSSL |
| |
130 | CFLAGS += -DNO_OPENSSL |
| |
131 | GIT_OPTIONS += NO_OPENSSL=1 |
| |
132 | else |
| |
133 | EXTLIBS += -lcrypto |
| |
134 | endif |
126 | |
135 | |
@@ -134,4 +143,4 @@ cgit.o: VERSION |
134 | libgit: |
143 | libgit: |
135 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a |
144 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a |
136 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a |
145 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) xdiff/lib.a |
137 | |
146 | |
|