git.patch 567 B

12345678910111213141516
  1. Index: Makefile
  2. --- Makefile.orig 2006-10-19 01:32:58 +0200
  3. +++ Makefile 2006-10-19 07:59:35 +0200
  4. @@ -432,9 +432,9 @@
  5. ifdef CURLDIR
  6. # This is still problematic -- gcc does not always want -R.
  7. BASIC_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)