git.patch 594 B

12345678910111213141516
  1. Index: git-1.2.2/Makefile
  2. --- git-1.2.2/Makefile.orig 2006-02-19 01:19:00 +0100
  3. +++ git-1.2.2/Makefile 2006-02-20 13:42:06 +0100
  4. @@ -293,9 +293,9 @@
  5. ifdef CURLDIR
  6. # This is still problematic -- gcc does not always want -R.
  7. ALL_CFLAGS += -I$(CURLDIR)/include
  8. - CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
  9. + CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl -lssl -lcrypto
  10. else
  11. - CURL_LIBCURL = -lcurl
  12. + CURL_LIBCURL = -lcurl -lssl -lcrypto
  13. endif
  14. PROGRAMS += git-http-fetch$X
  15. curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)