<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/projects/Windows/VC7/src, 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>VC: Add crypt32.lib to Visual Sudio project template files</title>
<updated>2016-06-22T08:57:55+00:00</updated>
<author>
<name>Joel Depooter</name>
<email>joel.depooter@safe.com</email>
</author>
<published>2016-06-01T23:29:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=66c447e51e7c066f2ef425e912cee5157c363d55'/>
<id>66c447e51e7c066f2ef425e912cee5157c363d55</id>
<content type='text'>
Closes #854
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #854
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Changed the Visual Studio projects warning level from 3 to 4</title>
<updated>2016-04-01T19:39:34+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2016-04-01T19:39:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=7bc64561a2e63ca93e4b0b31d350773ba80955c2'/>
<id>7bc64561a2e63ca93e4b0b31d350773ba80955c2</id>
<content type='text'>
After squashing most of our compiler warnings, up'ed the default
warning level from 3 to 4 in order to increase the likelyhood of
catching future warnings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After squashing most of our compiler warnings, up'ed the default
warning level from 3 to 4 in order to increase the likelyhood of
catching future warnings.
</pre>
</div>
</content>
</entry>
<entry>
<title>gitignore: Sort for readability</title>
<updated>2015-08-18T05:03:05+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2015-08-18T05:03:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=9518139c73452251b5ea4371d41cc3fa4532a0f9'/>
<id>9518139c73452251b5ea4371d41cc3fa4532a0f9</id>
<content type='text'>
find . -name .gitignore -print0 | xargs -i -0 sort -o '{}' '{}'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
find . -name .gitignore -print0 | xargs -i -0 sort -o '{}' '{}'
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Use $(ProjectName) macro for curl.exe and curld.exe filenames</title>
<updated>2015-07-28T19:44:59+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2015-07-26T19:44:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=d9efd369071d3feb0433cc128cc7a8f63fc871bd'/>
<id>d9efd369071d3feb0433cc128cc7a8f63fc871bd</id>
<content type='text'>
This wasn't possible with the old curlsrc project filenames, but like
commit 2a615a2b64 and 11397eb6dd for libcurl use the built in Visual
Studio macros for the output filenames.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This wasn't possible with the old curlsrc project filenames, but like
commit 2a615a2b64 and 11397eb6dd for libcurl use the built in Visual
Studio macros for the output filenames.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Renamed curl src Visual Studio project files</title>
<updated>2015-07-28T19:44:14+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2015-07-26T19:22:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=1627930177a4724a61d84eea4e4b0e66c8b6d4d9'/>
<id>1627930177a4724a61d84eea4e4b0e66c8b6d4d9</id>
<content type='text'>
Following commit 957fcd9049 and in preparation for adding the VC14
project files renamed the curl source project files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Following commit 957fcd9049 and in preparation for adding the VC14
project files renamed the curl source project files.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Enabled DEBUGBUILD in Visual Studio debug builds</title>
<updated>2015-02-02T12:43:02+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2015-02-01T21:02:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=f826bf37eadf6c3a7c1bc4eb7e42317863bf5b58'/>
<id>f826bf37eadf6c3a7c1bc4eb7e42317863bf5b58</id>
<content type='text'>
Defined the DEBUGBUILD pre-processor variable to allow extra logging,
which is particularly useful in debug builds, as we use this and Visual
Studio typically uses _DEBUG.

We could define DEBUBBUILD, in curl_setup.h, when _MSC_VER and _DEBUG is
defined but that would also affect the makefile based builds which we
probably don't want to do.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Defined the DEBUGBUILD pre-processor variable to allow extra logging,
which is particularly useful in debug builds, as we use this and Visual
Studio typically uses _DEBUG.

We could define DEBUBBUILD, in curl_setup.h, when _MSC_VER and _DEBUG is
defined but that would also affect the makefile based builds which we
probably don't want to do.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Removed WIN32 definition from the Visual Studio projects</title>
<updated>2014-12-24T14:57:06+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2014-12-24T14:56:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=383a4d0990f2cd35c81a1174a3f852d9da454399'/>
<id>383a4d0990f2cd35c81a1174a3f852d9da454399</id>
<content type='text'>
As this pre-processor definition is defined in curl_setup.h there is no
need to include it in the Visual Studio project files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As this pre-processor definition is defined in curl_setup.h there is no
need to include it in the Visual Studio project files.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Added WinIDN build configuration options</title>
<updated>2014-11-02T16:31:20+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2014-11-02T16:23:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=ab4b49262aee3f40821b03745e081bbb4172552a'/>
<id>ab4b49262aee3f40821b03745e081bbb4172552a</id>
<content type='text'>
Added support for WinIDN build configurations to the VC7 and VC7.1
project files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added support for WinIDN build configurations to the VC7 and VC7.1
project files.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Fixed the pre-processor separator in Visual Studio project files</title>
<updated>2014-11-02T16:04:19+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2014-11-02T14:47:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=850346cbaff47fb70c9125e312d7799e66852b63'/>
<id>850346cbaff47fb70c9125e312d7799e66852b63</id>
<content type='text'>
A left over from the VC6 project files, so mainly cosmetic in Visual
Studio .NET as it can handle both comma and semi-colon characters for
separating multiple pre-processor definitions.

However, the IDE uses semi-colons if the value is edited, and as such,
this may cause problems in future for anyone updating the files or
merging patches.

Used the Visual Studio IDE to correct the separator character.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A left over from the VC6 project files, so mainly cosmetic in Visual
Studio .NET as it can handle both comma and semi-colon characters for
separating multiple pre-processor definitions.

However, the IDE uses semi-colons if the value is edited, and as such,
this may cause problems in future for anyone updating the files or
merging patches.

Used the Visual Studio IDE to correct the separator character.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Removed unnecessary Precompiled Header file directive in VC7 to VC12</title>
<updated>2014-07-17T19:39:16+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2014-06-28T12:41:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=af46c96d65c42944c9b06976017968599fa86024'/>
<id>af46c96d65c42944c9b06976017968599fa86024</id>
<content type='text'>
The curl tool project files for VC7 to VC12 would set this settings to
$(IntDir)$(TargetName).pch which is the Visual Studio default value. To
avoid confusion when viewing settings from within Visual Studio and for
consistency with the libcurl project files removed this setting.

Conflicts:
	projects/Windows/VC10/src/curlsrc.tmpl
	projects/Windows/VC11/src/curlsrc.tmpl
	projects/Windows/VC12/src/curlsrc.tmpl
	projects/Windows/VC8/src/curlsrc.tmpl
	projects/Windows/VC9/src/curlsrc.tmpl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The curl tool project files for VC7 to VC12 would set this settings to
$(IntDir)$(TargetName).pch which is the Visual Studio default value. To
avoid confusion when viewing settings from within Visual Studio and for
consistency with the libcurl project files removed this setting.

Conflicts:
	projects/Windows/VC10/src/curlsrc.tmpl
	projects/Windows/VC11/src/curlsrc.tmpl
	projects/Windows/VC12/src/curlsrc.tmpl
	projects/Windows/VC8/src/curlsrc.tmpl
	projects/Windows/VC9/src/curlsrc.tmpl
</pre>
</div>
</content>
</entry>
</feed>
