-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
INSTALL.md: cygwin details and add source code link #17485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Added more details to help with cygwin install, adding links to curl source code where relevant to help save people a little time. The cygwin install process I used for the instructions are: 1. Windows Sandox 2. Install winget 3. Install cygwin 4. Download curl source code: - curl https://mirrors.kernel.org/sources.redhat.com/cygwin/x86_64/release/curl/curl-8.13.0-1-src.tar.xz -o src.tar.xz - tar -xJf src.tar.xz && rm src.tar.xz - move curl-8.13.0-1.src\curl-8.13.0.tar.xz curl.tar.xz - tar -xJf curl.tar.xz && rm curl.tar.xz - move curl-8.13.0 curl - cd curl - sh configure --without-ssl - make - ${test_commands} 5. Run curl ${test_commands}: - src\curl --help - src\curl http://example.com - src\curl -I http://example.com - src\curl -H "accept-language: en-US,en;q=0.9" http://example.com - src\curl -L http://example.com
Correct errors from spellcheck, badwords-synopsis, and mischecks.
Correct errors from spellcheck, badwords-synopsis, and mischecks.
Correct error from spellcheck.
But they link to different anchors on the download page, which seems mostly wrong. Most of the specific packages listed on the download page are not source code at all so several links are definitely wrong. I think it is better to direct users to the curl release tarballs at the top of the download page. Probably then completely without any fragment in the URL. |
Commit suggestions. Co-authored-by: Viktor Szakats <vszakats@users.noreply.github.com>
Removed the redundant links to curl source code.
Implement suggestions. Co-authored-by: Viktor Szakats <vszakats@users.noreply.github.com>
Tested build without suggested packages. It worked.
Change cygwin setup-x86_64 syntax that provides better search search results.
@vszakats is there a 👍 from you on this? |
Yes, looking good! |
Thanks! |
Added more details to help with cygwin install, adding links to curl source code (where relevant) to help save people a little time.
The cygwin install process I used for the instructions are:
Windows Sandox
Install winget
Install cygwin
Download curl source code:
curl https://mirrors.kernel.org/sources.redhat.com/cygwin/x86_64/release/curl/curl-8.13.0-1-src.tar.xz -o src.tar.xz
tar -xJf src.tar.xz && rm src.tar.xz
move curl-8.13.0-1.src\curl-8.13.0.tar.xz curl.tar.xz
tar -xJf curl.tar.xz && rm curl.tar.xz
move curl-8.13.0 curl
cd curl
sh configure --without-ssl
make - ${test_commands}
Run curl ${test_commands}:
-
src\curl --help
-
src\curl http://example.com
-
src\curl -I http://example.com
-
src\curl -H "accept-language: en-US,en;q=0.9" http://example.com
-
src\curl -L http://example.com