This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebuild win32 builds with forcing winidn
- Loading branch information
Showing
5 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
This libcurl was built with msys2. We only added | ||
|
||
export curl_disallow_strtok_r="yes" | ||
|
||
The OpenSSL build has to be linked using: | ||
This libcurl was built with msys2. The OpenSSL build has to be linked using: | ||
|
||
-lcurl -lssh2 -lz -lssl -lcrypto -lgdi32 -lws2_32 -lcrypt32 -lwldap32 | ||
|
||
The WinSSL (native SecureChannel) build has to be linked using: | ||
|
||
-lcurl -lz -lws2_32 -lcrypt32 -lwldap32 | ||
-lcurl -lz -lws2_32 -lcrypt32 -lwldap32 | ||
|
||
Both libs were compiled with native Windows SSPI and IDN. | ||
Both builds are configured with: | ||
|
||
--with-winidn | ||
--enable-sspi | ||
--without-librtmp | ||
--without-libidn2 | ||
|
||
We also used the following vars: | ||
|
||
export curl_disallow_strtok_r="yes" | ||
export CPPFLAGS="-DUSE_WIN32_IDN -DWINVER=0x0600" | ||
|
||
The latter is needed to work around an autoconf bug which does not correclty detect winidn on mingw32. |