Displaying 3 results from an estimated 3 matches for "with_curl".
Did you mean:
auth_curl
2003 Nov 04
10
portupgrade and PHP
Hello,
When I run portupgrade -ra and PHP needs upgrading I am faced with
having to select all the options I want PHP compiled with (again). I
hate this.
How can I continually compile PHP with the same options as the last time?
Thanks!
Rick
2019 Mar 06
0
[PATCH nbdkit] Add ssh plugin using libssh.
...ad1 AUTHORS
+
+Richard W.M. Jones
+
+Parts derived from Pino 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@:...
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.