mirror of
https://github.com/novatiq/packages.git
synced 2026-07-25 13:06:04 +01:00
This patch add a new package, git-http, that contains all http related commands (and ftp as extra). All http/ftp depends on libcurl. Even without SSL suport in libcurl, git compiles and it returns an informative error only at runtime. The use of symlinks now are trigged using NO_INSTALL_HARDLINKS env and not based only on Makefile patch. imap-send was kept builtin and idependent of curl (just as it was before) Template files, which are not necessary, where removed. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
12 lines
440 B
Diff
12 lines
440 B
Diff
--- git-2.3.0/Makefile.old 2015-03-08 02:14:42.857845824 -0300
|
|
+++ git-2.3.0/Makefile 2015-03-08 02:15:06.697451372 -0300
|
|
@@ -1039,7 +1039,7 @@
|
|
endif
|
|
curl_check := $(shell (echo 072200; curl-config --vernum) 2>/dev/null | sort -r | sed -ne 2p)
|
|
ifeq "$(curl_check)" "072200"
|
|
- USE_CURL_FOR_IMAP_SEND = YesPlease
|
|
+# USE_CURL_FOR_IMAP_SEND = YesPlease
|
|
endif
|
|
ifdef USE_CURL_FOR_IMAP_SEND
|
|
BASIC_CFLAGS += -DUSE_CURL_FOR_IMAP_SEND
|