<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/projects, branch gemini-meta</title>
<subtitle>cURL mirror with patches applied
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/'/>
<entry>
<title>curl_multibyte: add to curlx</title>
<updated>2020-05-14T16:13:27+00:00</updated>
<author>
<name>Marcel Raad</name>
<email>Marcel.Raad@teamviewer.com</email>
</author>
<published>2019-04-13T20:55:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=a55c835e6b99f96e595ad11888a2714447998378'/>
<id>a55c835e6b99f96e595ad11888a2714447998378</id>
<content type='text'>
This will also be needed in the tool and tests.

Ref: https://github.com/curl/curl/pull/3758#issuecomment-482197512
Closes https://github.com/curl/curl/pull/3784
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will also be needed in the tool and tests.

Ref: https://github.com/curl/curl/pull/3758#issuecomment-482197512
Closes https://github.com/curl/curl/pull/3784
</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='https://git.benburwell.com/mirrors/curl/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>checksrc.bat: Fix not being able to run script from the main curl directory</title>
<updated>2020-02-07T21:51:36+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2020-02-07T16:51:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=511e0c197ad369ff9dae43d1fdcc65025627e636'/>
<id>511e0c197ad369ff9dae43d1fdcc65025627e636</id>
<content type='text'>
If the script was ran from the main curl directory rather then the
projects directory then the script would simply exit without error:

C:\url&gt; projects\checksrc.bat

The user would either need to change to the projects directory,
explicitly specify the current working directory, or perform a
oneline hacky workaround:

C:\url&gt; cd projects
C:\url\projects&gt; checksrc.bat

C:\url&gt; checksrc.bat %cd%

C:\url&gt; pushd projects &amp; checksrc.bat &amp; popd

Closes #4894
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the script was ran from the main curl directory rather then the
projects directory then the script would simply exit without error:

C:\url&gt; projects\checksrc.bat

The user would either need to change to the projects directory,
explicitly specify the current working directory, or perform a
oneline hacky workaround:

C:\url&gt; cd projects
C:\url\projects&gt; checksrc.bat

C:\url&gt; checksrc.bat %cd%

C:\url&gt; pushd projects &amp; checksrc.bat &amp; popd

Closes #4894
</pre>
</div>
</content>
</entry>
<entry>
<title>checksrc.bat: Add a check for vquic and vssh directories</title>
<updated>2019-11-24T08:16:25+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2019-11-24T07:53:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=8d2dac7dec17286adc05415b4b748e246d238f14'/>
<id>8d2dac7dec17286adc05415b4b748e246d238f14</id>
<content type='text'>
Ref: https://github.com/curl/curl/pull/4607
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ref: https://github.com/curl/curl/pull/4607
</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='https://git.benburwell.com/mirrors/curl/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>projects: Fix Visual Studio wolfSSL configurations</title>
<updated>2019-11-18T23:42:34+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2019-11-18T23:42:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=821171dbfd72982607701054158764577efefb04'/>
<id>821171dbfd72982607701054158764577efefb04</id>
<content type='text'>
- s/USE_CYASSL/USE_WOLFSSL/

- Remove old compatibility macros.

Follow-up to 1c6c59a from several months ago when CyaSSL named symbols
were renamed to wolfSSL. The wolfSSL library was formerly named CyaSSL
and we kept using their old name for compatibility reasons, until
earlier this year.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- s/USE_CYASSL/USE_WOLFSSL/

- Remove old compatibility macros.

Follow-up to 1c6c59a from several months ago when CyaSSL named symbols
were renamed to wolfSSL. The wolfSSL library was formerly named CyaSSL
and we kept using their old name for compatibility reasons, until
earlier this year.
</pre>
</div>
</content>
</entry>
<entry>
<title>build-openssl: fix build with Visual Studio 2019</title>
<updated>2019-08-26T12:34:26+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2019-08-26T10:06:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c661d731becc17b038ca707af27a82863a3e516d'/>
<id>c661d731becc17b038ca707af27a82863a3e516d</id>
<content type='text'>
Reviewed-by: Marcel Raad
Contributed-by: osabc on github
Fixes #4188
Closes #4266
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Marcel Raad
Contributed-by: osabc on github
Fixes #4188
Closes #4266
</pre>
</div>
</content>
</entry>
<entry>
<title>checksrc.bat: Ignore snprintf warnings in docs/examples</title>
<updated>2019-05-11T06:32:49+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2019-05-10T19:28:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=edf2f6a6f60debd80ae3cef7a68fb84faaef7c5d'/>
<id>edf2f6a6f60debd80ae3cef7a68fb84faaef7c5d</id>
<content type='text'>
.. because we allow snprintf use in docs/examples.

Closes https://github.com/curl/curl/pull/3862
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
.. because we allow snprintf use in docs/examples.

Closes https://github.com/curl/curl/pull/3862
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Schannel, stop calling it "winssl"</title>
<updated>2019-04-10T21:05:38+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2019-04-09T19:34:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=37c43bf70c43ae02d36a774e511dc9fa20f64980'/>
<id>37c43bf70c43ae02d36a774e511dc9fa20f64980</id>
<content type='text'>
Stick to "Schannel" everywhere - follow up to 180501cb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Stick to "Schannel" everywhere - follow up to 180501cb.
</pre>
</div>
</content>
</entry>
<entry>
<title>build-openssl.bat: Fixed support for OpenSSL v1.1.0+</title>
<updated>2019-04-08T21:36:23+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2018-02-10T15:28:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c4e0be44089408d65220ab0174ad3443724092a0'/>
<id>c4e0be44089408d65220ab0174ad3443724092a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
