| 12345678910111213141516 |
- Index: Makefile
- --- Makefile.orig 2006-10-19 01:32:58 +0200
- +++ Makefile 2006-10-19 07:59:35 +0200
- @@ -432,9 +432,9 @@
- ifdef CURLDIR
- # This is still problematic -- gcc does not always want -R.
- BASIC_CFLAGS += -I$(CURLDIR)/include
- - CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
- + CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl -lssl -lcrypto
- else
- - CURL_LIBCURL = -lcurl
- + CURL_LIBCURL = -lcurl -lssl -lcrypto
- endif
- PROGRAMS += git-http-fetch$X
- curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
|