search for: have_curl

Displaying 9 results from an estimated 9 matches for "have_curl".

Did you mean: dhave_curl
2004 Aug 06
2
libshout2, ices0-3 and ices2 on Win32. Announce
Well...since this is a port to Win32 patches may not make sense. Pathnames to the required libraries are relative, but hardcoded from the point of reference. Without that, it will not build. Since there are lot more files (related to the IDE as well as some project build settings which link to libraries in Win32) which have no close equivalents in the non-Win32 world. Hence can't do patches.
2011 Aug 07
2
Trouble getting in icecast Directory
...FO 1 #define HAVE_ENDHOSTENT 1 #define HAVE_GETADDRINFO 1 #define HAVE_INET_ATON 1 #define HAVE_WRITEV 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_INET_PTON 1 #define HAVE_XSLTSAVERESULTTOSTRING 1 #define HAVE_OGG 1 #define HAVE_PTHREAD_SPIN_LOCK 1 #define HAVE_PTHREAD 1 #define HAVE_CURL_CURL_H 1 #define HAVE_CURL 1 #define HAVE_AUTH_URL 1 #define HAVE_CURL_GLOBAL_INIT 1 #define USE_YP 1 ========================== Which says curl is available and YP is selected, the two things I noted were required to support YP interaction. Here is the admin information to see if you can spot a...
2003 Aug 30
1
Fink's vorbis-tools patch
...t;*** or that you have moved libcurl since it was installed." ]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + CURL_CFLAGS="" + CURL_LIBS="" + ifelse([$2], , :, [$2]) + fi fi + AC_DEFINE(HAVE_CURL, 1, [Define if you have libcurl.]) else CURL_CFLAGS="" CURL_LIBS="" fi - AC_SUBST(CURL_CFLAGS) - AC_SUBST(CURL_LIBS) - rm -f conf.curltest +AC_SUBST(CURL_CFLAGS) +AC_SUBST(CURL_LIBS) +rm -f conf.curltest ]) diff -urN vorbis-tools-1.0.orig/ogg123/Makefile.am vorbi...
2020 Jul 15
0
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
...+Note that this exposes a tar file over NBD. See also +L<nbdkit-tar-filter(1)>. + =head1 DEBUG FLAG =over 4 diff --git a/plugins/curl/Makefile.am b/plugins/curl/Makefile.am index ddf1a215..0dd78199 100644 --- a/plugins/curl/Makefile.am +++ b/plugins/curl/Makefile.am @@ -38,6 +38,8 @@ if HAVE_CURL plugin_LTLIBRARIES = nbdkit-curl-plugin.la nbdkit_curl_plugin_la_SOURCES = \ + curldefs.h \ + scripts.c \ curl.c \ $(top_srcdir)/include/nbdkit-plugin.h \ $(NULL) diff --git a/tests/Makefile.am b/tests/Makefile.am index b830d80e..2641910b 100644 --- a/tests/Makefile.am +++ b/tests/Makefil...
2020 Jul 15
2
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
Evolution of this patch series: https://www.redhat.com/archives/libguestfs/2020-July/thread.html#00073 Instead of auth-script, this implements header-script and cookie-script. It can be used for similar purposes but the implementation is somewhat saner. Rich.
2020 Jul 14
0
[PATCH nbdkit RFC 2/2] curl: Implement authorization scripts.
...+Note that this exposes a tar file over NBD. See also +L<nbdkit-tar-filter(1)>. + =head1 DEBUG FLAG =over 4 diff --git a/plugins/curl/Makefile.am b/plugins/curl/Makefile.am index ddf1a215..2083ba66 100644 --- a/plugins/curl/Makefile.am +++ b/plugins/curl/Makefile.am @@ -38,6 +38,8 @@ if HAVE_CURL plugin_LTLIBRARIES = nbdkit-curl-plugin.la nbdkit_curl_plugin_la_SOURCES = \ + curldefs.h \ + auth-script.c \ curl.c \ $(top_srcdir)/include/nbdkit-plugin.h \ $(NULL) diff --git a/plugins/curl/curldefs.h b/plugins/curl/curldefs.h new file mode 100644 index 00000000..8b8a339e --- /dev/null...
2019 Mar 06
0
[PATCH nbdkit] Add ssh plugin using libssh.
...no Toscano’s qemu libssh driver. + +=head1 COPYRIGHT + +Copyright (C) 2014-2019 Red Hat Inc. diff --git a/configure.ac b/configure.ac index 467d48f..748e5aa 100644 --- a/configure.ac +++ b/configure.ac @@ -630,6 +630,21 @@ AS_IF([test "$with_curl" != "no"],[ ]) AM_CONDITIONAL([HAVE_CURL],[test "x$CURL_LIBS" != "x"]) +dnl Check for libssh (only if you want to compile the ssh plugin). +AC_ARG_WITH([ssh], + [AS_HELP_STRING([--without-ssh], + [disable ssh plugin @<:@default=check@:>@])], + [], + [with_ssh=check]) +AS_IF([test &qu...
2019 Mar 06
2
[PATCH nbdkit] Add ssh plugin using libssh.
This adds a simple plugin using libssh (not libssh2). The intended use for this is with virt-v2v when sourcing guests from VMware over SSH. We've had several years of problems getting our libssh-based driver into qemu. By putting it into nbdkit instead we can bypass that. However this also lets us combine ssh access with filters, in particular the recently written ‘rate’ filter. Rich.
2020 Jul 14
3
[PATCH nbdkit RFC 0/2] curl: Implement authorization scripts.
This is an RFC only, at the very least it lacks tests. This implements a rather complex new feature in nbdkit-curl-plugin allowing you to specify an external shell script that can be used to fetch an authorization token for services which requires a token or cookie for access, especially if that token must be renewed periodically. The motivation can be seen in the changes to the docs in patch 2.