diff options
author | Christian Ludwig <chrissicool@chrissicool.net> | 2011-06-08 23:09:21 +0200 |
---|---|---|
committer | Christian Ludwig <chrissicool@chrissicool.net> | 2011-06-08 23:09:21 +0200 |
commit | 17e4e132f552421557cc013559c874f45e0e68f2 (patch) | |
tree | b61571ea71fe821a8cd7301a5d3113d7e05fc73e | |
parent | f2e4ff0e509f69404aa11f5232d8f63110383f03 (diff) |
Fix libcurl include path
Fix the include path for libcurl, if it was installed in a location
where gcc does not look by default. The variable is declared in
the LIBCURL_CHECK_CONFIG m4 macro.
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4d4f2bb..7bc13e5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,6 +19,7 @@ minerd_SOURCES = elist.h miner.h compat.h \ sha256_cryptopp.c sha256_sse2_amd64.c minerd_LDFLAGS = $(PTHREAD_FLAGS) minerd_LDADD = @LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ +minerd_CPPFLAGS = @LIBCURL_CPPFLAGS@ if HAVE_x86_64 if HAS_YASM |