<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git/Makefile.am, branch bagder/manpages-https</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>winbuild: convert the instruction text to README.md</title>
<updated>2020-08-26T13:49:21+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-08-26T10:59:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=be753add31c2d8c835b77a4f3fe089a947371ff1'/>
<id>be753add31c2d8c835b77a4f3fe089a947371ff1</id>
<content type='text'>
Closes #5861
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5861
</pre>
</div>
</content>
</entry>
<entry>
<title>dist: add missing CMake Find modules to the distribution</title>
<updated>2020-08-20T22:12:55+00:00</updated>
<author>
<name>Don</name>
<email>don.j.olmstead@gmail.com</email>
</author>
<published>2020-08-20T17:41:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=7f8863f741f9a14db319701b4b3f29ed71286bf2'/>
<id>7f8863f741f9a14db319701b4b3f29ed71286bf2</id>
<content type='text'>
Closes #5836
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5836
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: add HTTP/3 support (ngtcp2+nghttp3, quiche)</title>
<updated>2020-05-10T21:36:41+00:00</updated>
<author>
<name>Peter Wu</name>
<email>peter@lekensteyn.nl</email>
</author>
<published>2020-05-08T21:13:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=5bfc874a359c229adf82ab7495c8f7d28dea992e'/>
<id>5bfc874a359c229adf82ab7495c8f7d28dea992e</id>
<content type='text'>
Add three new CMake Find modules (using the curl license, but I grant
others the right to apply the CMake BSD license instead).

This CMake config is simpler than the autotools one because it assumes
ngtcp2 and nghttp3 to be used together. Another difference is that this
CMake config checks whether QUIC is actually supported by the TLS
library (patched OpenSSL or boringssl) since this can be a common
configuration mistake that could result in build errors later.

Unlike autotools, CMake does not warn you that the features are
experimental. The user is supposed to already know that and read the
documentation. It requires a very special build environment anyway.

Tested with ngtcp2+OpenSSL+nghttp3 and quiche+boringssl, both built from
current git master. Use `LD_DEBUG=files src/curl |&amp; grep need` to figure
out which features (libldap-2.4, libssh2) to disable due to conflicts
with boringssl.

Closes #5359
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add three new CMake Find modules (using the curl license, but I grant
others the right to apply the CMake BSD license instead).

This CMake config is simpler than the autotools one because it assumes
ngtcp2 and nghttp3 to be used together. Another difference is that this
CMake config checks whether QUIC is actually supported by the TLS
library (patched OpenSSL or boringssl) since this can be a common
configuration mistake that could result in build errors later.

Unlike autotools, CMake does not warn you that the features are
experimental. The user is supposed to already know that and read the
documentation. It requires a very special build environment anyway.

Tested with ngtcp2+OpenSSL+nghttp3 and quiche+boringssl, both built from
current git master. Use `LD_DEBUG=files src/curl |&amp; grep need` to figure
out which features (libldap-2.4, libssh2) to disable due to conflicts
with boringssl.

Closes #5359
</pre>
</div>
</content>
</entry>
<entry>
<title>copyright: fix out-of-date copyright ranges and missing headers</title>
<updated>2020-03-24T14:05:59+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-03-23T13:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=9a8b3b3e131359aea1cac650fb6ac331fbe2047c'/>
<id>9a8b3b3e131359aea1cac650fb6ac331fbe2047c</id>
<content type='text'>
Reported by the new script 'scripts/copyright.pl'. The script has a
regex whitelist for the files that don't need copyright headers.

Removed three (mostly usesless) README files from docs/

Closes #5141
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by the new script 'scripts/copyright.pl'. The script has a
regex whitelist for the files that don't need copyright headers.

Removed three (mostly usesless) README files from docs/

Closes #5141
</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: add support for building with wolfSSL</title>
<updated>2020-03-16T21:56:50+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-03-12T16:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=37a05418820dfcdb68bc0d535e76e63945b45917'/>
<id>37a05418820dfcdb68bc0d535e76e63945b45917</id>
<content type='text'>
My working build cmdline:

$ cmake -DCMAKE_PREFIX_PATH=$HOME/build-wolfssl -DCMAKE_USE_WOLFSSL=ON .

Assisted-by: Brad King
Closes #5095
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
My working build cmdline:

$ cmake -DCMAKE_PREFIX_PATH=$HOME/build-wolfssl -DCMAKE_USE_WOLFSSL=ON .

Assisted-by: Brad King
Closes #5095
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: run the cd commands in a subshell</title>
<updated>2020-03-11T09:15:06+00:00</updated>
<author>
<name>Muhammad Herdiansyah</name>
<email>herdiansyah@netc.eu</email>
</author>
<published>2020-03-10T23:51:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=0cc66ff5a43a7e24bdc225d7d3b2cd9a1b0259b9'/>
<id>0cc66ff5a43a7e24bdc225d7d3b2cd9a1b0259b9</id>
<content type='text'>
In bmake, if the directory is changed (with cd or anything else), bmake
won't return to the "root directory" on the next command (in the same
Makefile rule). This commit runs the cd command in a subshell so it
would work in bmake.

Closes #5073
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In bmake, if the directory is changed (with cd or anything else), bmake
won't return to the "root directory" on the next command (in the same
Makefile rule). This commit runs the cd command in a subshell so it
would work in bmake.

Closes #5073
</pre>
</div>
</content>
</entry>
<entry>
<title>TLS: add BearSSL vtls implementation</title>
<updated>2019-11-26T07:32:23+00:00</updated>
<author>
<name>Michael Forney</name>
<email>mforney@mforney.org</email>
</author>
<published>2019-11-08T04:17:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=9b879160df01e7ddbb4770904391d3b74114302b'/>
<id>9b879160df01e7ddbb4770904391d3b74114302b</id>
<content type='text'>
Closes #4597
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4597
</pre>
</div>
</content>
</entry>
<entry>
<title>projects: Fix Visual Studio projects SSH builds</title>
<updated>2019-11-24T08:15:32+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2019-11-17T08:08:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=ee5c68a963c9959ea1a5b6762fdea1dd94de98d1'/>
<id>ee5c68a963c9959ea1a5b6762fdea1dd94de98d1</id>
<content type='text'>
- Generate VQUIC and VSSH filenames in Visual Studio project files.

Prior to this change generated Visual Studio project configurations that
enabled SSH did not build properly. Broken since SSH files were moved to
lib/vssh 3 months ago in 5b2d703.

Fixes https://github.com/curl/curl/issues/4492
Fixes https://github.com/curl/curl/issues/4630
Closes https://github.com/curl/curl/pull/4607
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Generate VQUIC and VSSH filenames in Visual Studio project files.

Prior to this change generated Visual Studio project configurations that
enabled SSH did not build properly. Broken since SSH files were moved to
lib/vssh 3 months ago in 5b2d703.

Fixes https://github.com/curl/curl/issues/4492
Fixes https://github.com/curl/curl/issues/4630
Closes https://github.com/curl/curl/pull/4607
</pre>
</div>
</content>
</entry>
<entry>
<title>plan9: add support for running on Plan 9</title>
<updated>2019-07-30T22:23:25+00:00</updated>
<author>
<name>lufia</name>
<email>lufia@lufia.org</email>
</author>
<published>2019-03-26T13:26:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=84aba180e22c1cfab41cae8074af01dcb20adb16'/>
<id>84aba180e22c1cfab41cae8074af01dcb20adb16</id>
<content type='text'>
Closes #3701
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3701
</pre>
</div>
</content>
</entry>
<entry>
<title>scripts/completion.pl: also generate fish completion file</title>
<updated>2019-03-02T10:31:18+00:00</updated>
<author>
<name>Simon Legner</name>
<email>Simon.Legner@gmail.com</email>
</author>
<published>2019-02-10T21:06:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=e075b2149b5d287b30718b31bee5ba80aba3da94'/>
<id>e075b2149b5d287b30718b31bee5ba80aba3da94</id>
<content type='text'>
This is the renamed script formerly known as zsh.pl

Closes #3545
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the renamed script formerly known as zsh.pl

Closes #3545
</pre>
</div>
</content>
</entry>
</feed>
