<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<channel>
<title>Apache Lounge</title>
<link>http://www.apachelounge.com/</link>
<description>Apache Webmasters Home</description>
<managingEditor>steffen@land10web.com (Steffen)</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language>
<lastBuildDate>Fri, 19 Jun 2026 13:25:20 GMT</lastBuildDate>
<image>
<url>http://www.apachelounge.com/images/apachelounge.png</url>
<title>Apache Lounge</title>
<link>http://www.apachelounge.com/</link>
<width>118</width>
<height>26</height>
</image>
<atom:link href="http://feeds.feedburner.com/ApacheLounge" rel="self" type="application/rss+xml" />
<item>
<title>RE: HOWTO: Building Apache and dependencies using CMake</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44441#44441</link>
<pubDate>Fri, 19 Jun 2026 13:01:09 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44441#44441</guid>
<description>
Release 5.0 includes the following build dependency updates:
&lt;br /&gt;

&lt;br /&gt;
OPENSSL (3.6.3)
&lt;br /&gt;

&lt;br /&gt;
Other changes are to build the mod_proxy_uwsgi module, which is omitted from the ASF CMake build for some reason.
&lt;br /&gt;

&lt;br /&gt;
A section to build ZSTD (1.5.7) libraries has been added, to aid future support for this compression standard.
&lt;br /&gt;

&lt;br /&gt;
A bunch of historical release comments have also been removed for clarity; previous details for this topic if needed can be found at &lt;a href=&quot;https://web.archive.org&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://web.archive.org&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Topic Replies: 111&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>How-to's &amp; Documentation &amp; Tips</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=39754#39754" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44440#44440</link>
<pubDate>Fri, 19 Jun 2026 09:21:04 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44440#44440</guid>
<description>
Thanks to you and @Jan-E for following this through with the PHP developers so quickly, and yes, it looks like their solution going forward will be to link with ZSTD statically. So there will be no need to change the ZSTD names in the Apache Lounge build.
&lt;br /&gt;

&lt;br /&gt;
What's interesting in looking through the PHP post is reference to winlib-builder patch &lt;a href=&quot;https://github.com/winlibs/winlib-builder/blob/master/patches/libzstd.patch&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://github.com/winlibs/winlib-builder/blob/master/patches/libzstd.patch&lt;/a&gt;, where a decision was made to change the ZSTD library names from zstd to libzstd. This is what has caused this issue, in a similar way to the problems ZLIB caused by changing the names of their libraries in their most recent update.
&lt;br /&gt;

&lt;br /&gt;
The downside of linking things statically is programs sizes and memory requirements go up; like most things in life it's a compromise.
&lt;br /&gt;

&lt;br /&gt;
Regarding the 'ecosystem' needing to adapt, we are looking at the Open Source movement. There are some really clever guys out there, who as developers choose to give their own time and expertise in co-operative ventures to the best of their abilities. I take my hat off to them.&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44439#44439</link>
<pubDate>Fri, 19 Jun 2026 06:07:47 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44439#44439</guid>
<description>
Frankly I can not answer, why PHP builds libzstd.dll. As far as I understood, they statically build and include the library via cmake or something like that.
&lt;br /&gt;

&lt;br /&gt;
Good news is, that it should not happen with the next PHP release, see &lt;a href=&quot;https://github.com/php/php-src/issues/22359#issuecomment-4745323072&quot; target=&quot;_blank&quot;&gt;https://github.com/php/php-src/issues/22359#issuecomment-4745323072&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
* copied the file as mentioned in apache/bin (zstd.dll =&amp;gt; libzstd.dll).
&lt;br /&gt;
* removed LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot; from my httpd.conf.
&lt;br /&gt;
* restarted the Apache service
&lt;br /&gt;
* reloaded page with phpinfo output
&lt;br /&gt;
* curl is successfully loaded now
&lt;br /&gt;

&lt;br /&gt;
So it seems it is connected to the lib* =&amp;gt; * renaming. Something similar happenend with zlib. Why that is so? I don't know.
&lt;br /&gt;

&lt;br /&gt;
To me as someone from the outside it looks like this:
&lt;br /&gt;
* curl changed their requirements (breaking change imho, made in a minor update)
&lt;br /&gt;
* the whole ecosystem has to adapt (PHP, Apache and likely other distros, packages, ...)
&lt;br /&gt;

&lt;br /&gt;
Not sure if and how well this was communicated in the ecosystem.&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44437#44437</link>
<pubDate>Fri, 19 Jun 2026 05:13:30 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44437#44437</guid>
<description>
First try copy zstd.dll to libzstd.dll to see if that works. 
&lt;br /&gt;

&lt;br /&gt;
I want first the reason why PHP builds libzstd.dll ?&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44436#44436</link>
<pubDate>Thu, 18 Jun 2026 21:02:09 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44436#44436</guid>
<description>
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;danielruf wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I've now added only the following, instead of brotlidec + libzstd:
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I've been looking into this issue and trying to reason it through.
&lt;br /&gt;

&lt;br /&gt;
Since you say your setup works without specifying the PHP based brotlidec.dll file, that rather suggests it's happy with the Apache bundled version (which I'd expect).
&lt;br /&gt;

&lt;br /&gt;
So out of interest, I wonder what happens if you copy the Apache zstd.dll to a file named libzstd.dll, whether Apache will then start without the extra PHP LoadFile directive?
&lt;br /&gt;

&lt;br /&gt;
For some reason it would seem the PHP (8.5.7) build process (winlib-builder) chooses a different name for the ZSTD libraries compared to those which come with the standard CMake build on Windows.
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp; &amp;nbsp; ZSTD&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PHP
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -----&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -----
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; zstd.dll&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;libzstd.dll
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; zstd.lib&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;libzstd.lib&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span&gt; ....&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44436#44436&quot;&gt;Continue this post on  Apache Lounge&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44434#44434</link>
<pubDate>Thu, 18 Jun 2026 11:10:25 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44434#44434</guid>
<description>
Understood, thank you.
&lt;br /&gt;

&lt;br /&gt;
I've now added only the following, instead of brotlidec + libzstd:
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
This seems to work (we generally load the versions shipped with the PHP builds for Windows).
&lt;br /&gt;

&lt;br /&gt;
I'll try to report the requirement for this LoadFile in the PHP project. Maybe ther eis something that can be fixed / improved. At least to me it makes not much sense to manually add this, when the libraries are there in Apache and PHP is running as Apache module.
&lt;br /&gt;

&lt;br /&gt;
Edit: opened an issue at &lt;a href=&quot;https://github.com/php/php-src/issues/22359&quot; target=&quot;_blank&quot;&gt;https://github.com/php/php-src/issues/22359&lt;/a&gt; - maybe some mismatch leads to this&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44433#44433</link>
<pubDate>Thu, 18 Jun 2026 11:02:58 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44433#44433</guid>
<description>
Just try only to include zstd, to see if the issue is brotli or zstd 
&lt;br /&gt;

&lt;br /&gt;
I think it is a PHP issue. The way it is build causes add some LoadFile.&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>admin</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44432#44432</link>
<pubDate>Thu, 18 Jun 2026 10:21:13 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44432#44432</guid>
<description>
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Just try only the zstd.dll and libzstd.dll.
&lt;br /&gt;
...
&lt;br /&gt;
And have no libzstd.dll&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
I'm not sure I understand. 
&lt;br /&gt;

&lt;br /&gt;
My question basically boils down to: why do we even have to manually add some LoadFile entries for the curl extension?
&lt;br /&gt;

&lt;br /&gt;
Is this expected and if so, should this be documented somewhere? Why was zstd then included but I still need the LoadFile entry?
&lt;br /&gt;

&lt;br /&gt;
I'm currently on your latest build with 2.4.68 (httpd-2.4.68-260617-Win64-VS18).&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44431#44431</link>
<pubDate>Thu, 18 Jun 2026 09:13:58 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44431#44431</guid>
<description>
Just try only the zstd.dll and libzstd.dll. 
&lt;br /&gt;

&lt;br /&gt;
brotli we have it already for years. 
&lt;br /&gt;

&lt;br /&gt;
We build from zstd-1.5.7.tar.gz from the bottom of page &lt;a href=&quot;https://github.com/facebook/zstd/releases.&quot; target=&quot;_blank&quot;&gt;https://github.com/facebook/zstd/releases.&lt;/a&gt; 
&lt;br /&gt;

&lt;br /&gt;
And have no libzstd.dll&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>admin</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: Wampserver addons &amp; applications</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44430#44430</link>
<pubDate>Thu, 18 Jun 2026 06:58:10 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44430#44430</guid>
<description>
Hi,
&lt;br /&gt;

&lt;br /&gt;
- InnoSetup installer created from the Apache Lounge binary
&lt;br /&gt;

&lt;br /&gt;
- Apache 2.4.68.1
&lt;br /&gt;
&lt;a href=&quot;https://wampserver.aviatechno.net/files/apache/wampserver3_x64_addon_apache2.4.68.1.exe&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://wampserver.aviatechno.net/files/apache/wampserver3_x64_addon_apache2.4.68.1.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 133&lt;br /&gt;
</description>
<dc:creator>Otomatic</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=42139#42139" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44429#44429</link>
<pubDate>Thu, 18 Jun 2026 06:49:58 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44429#44429</guid>
<description>
following tried:
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;bin/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;bin/zstd.dll&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
Results in:
&lt;br /&gt;

&lt;br /&gt;
[18-Jun-2026 06:41:40 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'curl' (tried: C:\...\php\ext\curl (Das angegebene Modul wurde nicht gefunden), C:\...\php\ext\php_curl.dll (Das angegebene Modul wurde nicht gefunden)) in Unknown on line 0
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Tried:
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;/bin/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;/bin/zstd.dll&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
Leads to the Apache Service not starting on Windows (Fails with an error:
&lt;br /&gt;

&lt;br /&gt;
Der Dienst &amp;quot;apache2.4&amp;quot; wurde mit dem folgenden dienstspezifischen Fehler beendet: 
&lt;br /&gt;
Unzul�ssige Funktion.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Tried:
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/apache/bin/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;${basePath}/apache/bin/zstd.dll&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
Results in:
&lt;br /&gt;

&lt;br /&gt;
[18-Jun-2026 06:45:28 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'curl' (tried: C:\...\php\ext\curl (Das angegebene Modul wurde nicht gefunden), C:\...\php\ext\php_curl.dll (Das angegebene Modul wurde nicht gefunden)) in Unknown on line 0
&lt;br /&gt;

&lt;br /&gt;
Only the following works for me and adds the curl section in the Output of phpinfo():
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot;&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: VS18 mod_maxminddb.so and mod_ip2location</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44427#44427</link>
<pubDate>Thu, 18 Jun 2026 01:50:46 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44427#44427</guid>
<description>
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;tangent wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;@Stray78 - are you now able to add a suitable ip2proxy section to your Apache configuration?
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
I haven't tried. I just use ip2location to hide my contact form on my business website. I was getting a lot of spam from other countries.&lt;br /&gt;&lt;br /&gt;Topic Replies: 20&lt;br /&gt;
</description>
<dc:creator>Stray78</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44337#44337" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44426#44426</link>
<pubDate>Wed, 17 Jun 2026 22:08:12 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44426#44426</guid>
<description>
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;danielruf wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Hm, I still have to add the following to apache/conf/httpd.conf to have curl loaded according to phpinfo():
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
Apache has shipped with brotlidec.dll for a long time now, so the fact you're having to name a specific path to a brotlidec.dll image with a LoadFile directive, is somewhat surprising.
&lt;br /&gt;

&lt;br /&gt;
Also notable, when building zstd with CMake (as per the new AL build), the default DLL filename produced by the package is zstd.dll not libzstd.dll
&lt;br /&gt;
&lt;ul&gt;Install the project...
&lt;br /&gt;
-- Install configuration: &amp;quot;Release&amp;quot;
&lt;br /&gt;
-- Installing: C:/Apache24/lib/pkgconfig/libzstd.pc
&lt;br /&gt;
-- Installing: C:/Apache24/include/zdict.h
&lt;br /&gt;
-- Installing: C:/Apache24/include/zstd.h
&lt;br /&gt;
-- Installing: C:/Apache24/include/zstd_errors.h
&lt;br /&gt;
-- Installing: C:/Apache24/lib/zstd.lib
&lt;br /&gt;
-- Installing: C:/Apache24/bin/zstd.dll
&lt;br /&gt;
-- Installing: C:/Apache24/lib/zstd_static.lib
&lt;br /&gt;
-- Installing: C:/Apache24/bin/zstd.exe
&lt;br /&gt;
-- Installing: C:/Apache24/lib/cmake/zstd/zstdTargets.cmake
&lt;br /&gt;
-- Installing: C:/Apache24/lib/cmake/zstd/zstdTargets-release.cmake
&lt;br /&gt;
-- Installing: C:/Apache24/lib/cmake/zstd/zstdConfig.cmake
&lt;br /&gt;
-- Installing: ....&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44426#44426&quot;&gt;Continue this post on  Apache Lounge&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44425#44425</link>
<pubDate>Wed, 17 Jun 2026 20:50:11 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44425#44425</guid>
<description>
not relevant probablx, but there were some changes affecting zlib dll names: &lt;a href=&quot;https://github.com/php/php-src/issues/22157#issuecomment-4734454260&quot; target=&quot;_blank&quot;&gt;https://github.com/php/php-src/issues/22157#issuecomment-4734454260&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44424#44424</link>
<pubDate>Wed, 17 Jun 2026 20:44:00 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44424#44424</guid>
<description>
Hm, I still have to add the following to apache/conf/httpd.conf to have curl loaded according to phpinfo():
&lt;br /&gt;

&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/brotlidec.dll&amp;quot;
&lt;br /&gt;
LoadFile &amp;quot;${basePath}/php/libzstd.dll&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
So did I mix something up and this has to be manually done even with your latest changes? What is the preferred solution for users running PHP 8.5.7 on Apache 2.4.68 from 17th of June 2026?&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: Apache httpd 2.4.68 GA Available :: Update</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44423#44423</link>
<pubDate>Wed, 17 Jun 2026 16:18:01 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44423#44423</guid>
<description>
Thanks!
&lt;br /&gt;

&lt;br /&gt;
Corrected.&lt;br /&gt;&lt;br /&gt;Topic Replies: 7&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>News &amp; Hangout</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44391#44391" />
</item>
<item>
<title>RE: Apache httpd 2.4.68 GA Available :: Update</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44422#44422</link>
<pubDate>Wed, 17 Jun 2026 14:50:42 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44422#44422</guid>
<description>
&lt;span style=&quot;font-weight: bold&quot;&gt;changelog file&lt;/span&gt;
&lt;br /&gt;
The last update has the wrong date. It shows �07� instead of �17�.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;07-June-2026 Changes with Apache 2.4.68 - Announcement&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 7&lt;br /&gt;
</description>
<dc:creator>ltdeta</dc:creator>
<dc:subject>News &amp; Hangout</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44391#44391" />
</item>
<item>
<title>RE: Apache httpd 2.4.68 GA Available :: Update</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44421#44421</link>
<pubDate>Wed, 17 Jun 2026 13:05:26 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44421#44421</guid>
<description>
Updated with OpenSSL 3.6.3 and added zstd libraries.
&lt;br /&gt;

&lt;br /&gt;
See Changelog &lt;a href=&quot;https://www.apachelounge.com/Changelog-2.4.html&quot; target=&quot;_blank&quot;&gt;https://www.apachelounge.com/Changelog-2.4.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 7&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>News &amp; Hangout</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44391#44391" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44420#44420</link>
<pubDate>Wed, 17 Jun 2026 12:57:42 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44420#44420</guid>
<description>
New version available.
&lt;br /&gt;

&lt;br /&gt;
In the changelog :
&lt;br /&gt;

&lt;br /&gt;
*) Added  ZSTD libraries (zstd.dll, zstdt.exe, zstd.lib, zstd_ststic.lib) to help with third party support.
&lt;br /&gt;

&lt;br /&gt;
     
&lt;br /&gt;
*) Added ZSTD support in Curl.&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44419#44419</link>
<pubDate>Wed, 17 Jun 2026 09:19:00 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44419#44419</guid>
<description>
It is on our radar. 
&lt;br /&gt;

&lt;br /&gt;
We build the Lib and the DLL in the next APACHE.&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>admin</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: Wampserver addons &amp; applications</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44418#44418</link>
<pubDate>Wed, 17 Jun 2026 09:08:35 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44418#44418</guid>
<description>
Hi,
&lt;br /&gt;

&lt;br /&gt;
- MySQL 8.4.10 LTS
&lt;br /&gt;
&lt;a href=&quot;https://wampserver.aviatechno.net/files/mysql/wampserver3_x64_addon_mysql8.4.10.exe&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://wampserver.aviatechno.net/files/mysql/wampserver3_x64_addon_mysql8.4.10.exe&lt;/a&gt;
&lt;br /&gt;
- MySQL 9.7.1 LTS
&lt;br /&gt;
&lt;a href=&quot;https://wampserver.aviatechno.net/files/mysql/wampserver3_x64_addon_mysql9.7.1.exe&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://wampserver.aviatechno.net/files/mysql/wampserver3_x64_addon_mysql9.7.1.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 133&lt;br /&gt;
</description>
<dc:creator>Otomatic</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=42139#42139" />
</item>
<item>
<title>PHP 8.5.7 and curl 8.20.0 require loading of brotli and zstd</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44417#44417</link>
<pubDate>Tue, 16 Jun 2026 06:45:03 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44417#44417</guid>
<description>
It seems newer PHP versions (also includes PHP 8.4.x) ship with curl 8.20.0, which requires to load brotli(dec.dll) and (lib)zstd(.dll).
&lt;br /&gt;

&lt;br /&gt;
Otherwise Apache fails to start, when one of the newer PHP releases with curl 8.20.0 or newer is used.
&lt;br /&gt;

&lt;br /&gt;
Is this on the radar of the ApacheLounge team? Will there be some changes in the ApacheLounge Apache builds or is this just something that has to be documented, so PHP users are aware of it and related bugreports can be pointed to the documentation?
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;https://github.com/php/php-src/issues/22157&quot; target=&quot;_blank&quot;&gt;https://github.com/php/php-src/issues/22157&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;https://github.com/php/php-src/pull/21925&quot; target=&quot;_blank&quot;&gt;https://github.com/php/php-src/pull/21925&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 14&lt;br /&gt;
</description>
<dc:creator>danielruf</dc:creator>
<dc:subject>Other Software </dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44417#44417" />
</item>
<item>
<title>RE: Apache httpd 2.4.68 GA Available :: Update</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44416#44416</link>
<pubDate>Mon, 15 Jun 2026 15:12:16 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44416#44416</guid>
<description>
Thank you for your response and apologies that we missed your earlier request. 
&lt;br /&gt;

&lt;br /&gt;
The AL filename format changed with the switch to CMake builds, since the source official template file docs/conf/httpd.conf.in contains the references to access_log and error_log which end up in httpd.conf.
&lt;br /&gt;

&lt;br /&gt;
For as long as I can remember those have been the default names when building with CMake or using the configure script under Linux. The only exception I know is Apache builds on Ubuntu, which defaults to access.log and error.log.
&lt;br /&gt;

&lt;br /&gt;
We are not changing it. It is part of the official Apache source code. 
&lt;br /&gt;

&lt;br /&gt;
You have to change it manual.&lt;br /&gt;&lt;br /&gt;Topic Replies: 7&lt;br /&gt;
</description>
<dc:creator>admin</dc:creator>
<dc:subject>News &amp; Hangout</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44391#44391" />
</item>
<item>
<title>RE: VS18 mod_maxminddb.so and mod_ip2location</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44415#44415</link>
<pubDate>Mon, 15 Jun 2026 13:06:58 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44415#44415</guid>
<description>
Added the GEO modules to the  download page.&lt;br /&gt;&lt;br /&gt;Topic Replies: 20&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44337#44337" />
</item>
<item>
<title>GEO support modules Available</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44414#44414</link>
<pubDate>Mon, 15 Jun 2026 11:33:40 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44414#44414</guid>
<description>
On request.
&lt;br /&gt;

&lt;br /&gt;
See also discussion at :       &lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44368&quot; target=&quot;_blank&quot;&gt;https://www.apachelounge.com/viewtopic.php?p=44368&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
In this post some users has tested the modules.&lt;br /&gt;&lt;br /&gt;Topic Replies: 0&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44414#44414" />
</item>
<item>
<title>RE: mod_qos :: updated</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44413#44413</link>
<pubDate>Mon, 15 Jun 2026 10:30:54 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44413#44413</guid>
<description>
Updated to 11.79.  Changes in the zip.&lt;br /&gt;&lt;br /&gt;Topic Replies: 31&lt;br /&gt;
</description>
<dc:creator>Steffen</dc:creator>
<dc:subject>Third-party Modules</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=41039#41039" />
</item>
<item>
<title>RE: Apache httpd 2.4.68 GA Available :: Update</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44412#44412</link>
<pubDate>Mon, 15 Jun 2026 07:21:00 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44412#44412</guid>
<description>
Hello  &lt;img src=&quot;https://www.apachelounge.com/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; &gt; 
&lt;br /&gt;

&lt;br /&gt;
I had already pointed out some differences here : &lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44157#44157&quot; target=&quot;_blank&quot;&gt;https://www.apachelounge.com/viewtopic.php?p=44157#44157&lt;/a&gt;
&lt;br /&gt;
and there still here.  &lt;img src=&quot;https://www.apachelounge.com/images/smiles/icon_cry.gif&quot; alt=&quot;Crying or Very sad&quot; border=&quot;0&quot; &gt; 
&lt;br /&gt;

&lt;br /&gt;
I would really appreciate it if you could replace all occurrences of &lt;span style=&quot;color: darkred&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;error_log&lt;/span&gt;&lt;/span&gt; to &lt;span style=&quot;color: green&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;error.log&lt;/span&gt;&lt;/span&gt; 
&lt;br /&gt;
and &lt;span style=&quot;color: darkred&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;access_log&lt;/span&gt;&lt;/span&gt; to &lt;span style=&quot;color: green&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;access.log&lt;/span&gt;&lt;/span&gt;.
&lt;br /&gt;

&lt;br /&gt;
Thanks  &lt;img src=&quot;https://www.apachelounge.com/images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; &gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 7&lt;br /&gt;
</description>
<dc:creator>BeWog</dc:creator>
<dc:subject>News &amp; Hangout</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44391#44391" />
</item>
<item>
<title>RE: build 67 missing zlib1.dll?</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44411#44411</link>
<pubDate>Fri, 12 Jun 2026 18:36:06 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44411#44411</guid>
<description>
The switch to ZLIB 1.3.2 was picked up in Apache HTTPD release 2.4.67-260504 back in May, based on the CMake build HowTo (which switched to ZLIB 1.3.2 back in February). There is some discussion of that change and it's impact at &lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44136#44136&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://www.apachelounge.com/viewtopic.php?p=44136#44136&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Notably, as you have found, the various ZLIB libraries were renamed.
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp; &amp;nbsp; 1.3.1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1.3.2
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -----&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -----
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; bin\zlib1.dll&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bin\z.dll
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; lib\zlib.lib&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lib\z.lib
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; lib\zlibstatic.lib&amp;nbsp; &amp;nbsp;lib\zs.lib&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
Significantly, the developer's decision to change the naming convention for the libraries caused quite a lot of discussion on the net, e.g. &lt;a href=&quot;https://github.com/madler/zlib/issues/1181&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://github.com/madler/zlib/issues/1181&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
It's adverse effect on various packages such as PHP, was also discussed in detail, e.g. &lt;a href=&quot;https://github.com/crazywhalecc/static-php-cli/issues/1039&quot; target=&quot;_blank&quot;&gt; ....&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44411#44411&quot;&gt;Continue this post on  Apache Lounge&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topic Replies: 1&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>Apache</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44410#44410" />
</item>
<item>
<title>build 67 missing zlib1.dll?</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44410#44410</link>
<pubDate>Fri, 12 Jun 2026 12:55:42 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44410#44410</guid>
<description>
It seems like zlib1.dll is missing in build 67-260610.
&lt;br /&gt;

&lt;br /&gt;
Was trying to get php_curl going and had to replace various dlls.&lt;br /&gt;&lt;br /&gt;Topic Replies: 1&lt;br /&gt;
</description>
<dc:creator>sailor</dc:creator>
<dc:subject>Apache</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=44410#44410" />
</item>
<item>
<title>RE: HOWTO: Building Apache and dependencies using CMake</title>
<link>https://www.apachelounge.com/viewtopic.php?p=44409#44409</link>
<pubDate>Fri, 12 Jun 2026 09:39:04 GMT</pubDate>
<guid isPermaLink="true">https://www.apachelounge.com/viewtopic.php?p=44409#44409</guid>
<description>
Release 4.9 includes the following build dependency updates:
&lt;br /&gt;

&lt;br /&gt;
EXPAT (2.8.1)
&lt;br /&gt;
HTTPD (2.4.68)
&lt;br /&gt;

&lt;br /&gt;
Script updated to add an &amp;quot;Apache Lounge VSxx&amp;quot; string prefix to the HTTPD startup message (and build info &amp;quot;httpd -v&amp;quot;).
&lt;br /&gt;

&lt;br /&gt;
The script also includes updates to optionally support (OFF by default), a new Segment Heap functionality Microsoft has added to VS18 as of release 18.6.0 (May 2026); described here &lt;a href=&quot;https://devblogs.microsoft.com/cppblog/segment-heap-support-for-c-projects-in-visual-studio&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://devblogs.microsoft.com/cppblog/segment-heap-support-for-c-projects-in-visual-studio&lt;/a&gt;.
&lt;br /&gt;

&lt;br /&gt;
Microsoft claim this Segment Heap feature improves heap stability, and &amp;quot;provides protection against memory vulnerabilities&amp;quot;. Note this functionality only applies to executables, not libraries. Posts on the Internet suggest the jury is still out on this feature.
&lt;br /&gt;

&lt;br /&gt;
An unnecessary (legacy) edit of file apr.hw has been removed from the APR build logic.
&lt;br /&gt;

&lt;br /&gt;
CURL options to include SMB and NTLM support (where CURL &amp;gt;= 8.20.0) have been added. Thanks for @Jan-E for picking up on this issue &lt;a href=&quot;https://www.apachelounge.com/viewtopic.php?p=44354&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;https://www.apachelounge.com/viewtopic.php?p=44354&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Although OPENSSL (3.6.3) has just been released, the decision has been made to defer updating the build to this latest OPENSSL release at this time.&lt;br /&gt;&lt;br /&gt;Topic Replies: 111&lt;br /&gt;
</description>
<dc:creator>tangent</dc:creator>
<dc:subject>How-to's &amp; Documentation &amp; Tips</dc:subject>
<annotate:reference rdf:resource="https://www.apachelounge.com/viewtopic.php?p=39754#39754" />
</item>

</channel>
</rss>

