Changeset: 615bd690736a for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=615bd690736a Modified Files: sql/backends/monet5/vaults/vault.c Branch: default Log Message:
vault: drop private includes, only curl/curl.h should be included Not sure where types.h and easy.h come from, but the official examples don't mention them (as referred to in the code). Fact is, they don't have to be installed always, so we can't just unconditionally include them. It shouldn't be necessary, curl/curl.h should include itself whatever it needs to get everything (including easy_curl). diffs (12 lines): diff --git a/sql/backends/monet5/vaults/vault.c b/sql/backends/monet5/vaults/vault.c --- a/sql/backends/monet5/vaults/vault.c +++ b/sql/backends/monet5/vaults/vault.c @@ -121,8 +121,6 @@ #ifdef HAVE_CURL #include <curl/curl.h> -#include <curl/types.h> -#include <curl/easy.h> #endif _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
