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
Bitcrazed/enable windows vt support - fixes #3008 #3011
Closed
bitcrazed
wants to merge
18
commits into
curl:master
from
bitcrazed:bitcrazed/enable-windows-vt-support
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
da09994
Enabled Windows VT Support
8bd279c
Merge branch 'master' of github.com:curl/curl into bitcrazed/enable-w…
e7d3e63
Reset Windows Console VT mode settings on exit
56c2542
In-progress
89c3e88
Colorized VT mode success message
bitcrazed 5c55d5f
Corrected ENABL_VIRTUAL_TERMINAL_INPUT declararion
bitcrazed 8876fcb
Set codepage to UTF-8 and restore on exit
bitcrazed e627ffc
Test if nmake can be found, and display helpful error if not
bitcrazed f87048b
Removed unnecessary setting of input mode
bitcrazed db10da8
Merge branch 'master' of github.com:curl/curl into bitcrazed/enable-w…
bitcrazed f46a974
Corrected TerminalSettings struct declaration
bitcrazed 1cd451e
Updated comments to C90 style
bitcrazed 7127e40
Declare terminal config functions as accepting no args
bitcrazed 765dc68
Made terminal config functions static
bitcrazed 31aed7b
Fixed Travis code-cleanliness issues
bitcrazed 50ea0e8
Removed trailing whitespace
a28770a
Fixed accidental typo 'emset' -->'memset'!
79dd69a
Fixed brace positioning
File filter
Filter by extension
Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,3 +56,5 @@ scripts/_curl | |
| curl_fuzzer | ||
| curl_fuzzer_seed_corpus.zip | ||
| libstandaloneengine.a | ||
| .vscode/ | ||
| *.debugtarget | ||
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
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 |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| @echo off | ||
|
|
||
| where.exe nmake.exe >nul 2>&1 | ||
|
|
||
| IF %ERRORLEVEL == 1 ( | ||
| ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt | ||
| ECHO. | ||
| ) ELSE ( | ||
| nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes | ||
| IF %ERRORLEVEL% NEQ 0 (ECHO "Error: Build Failed") | ||
| ) | ||
|
|
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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| @echo off | ||
| start cmd /k ..\builds\libcurl-vc-x86-debug-static-ipv6-sspi-winssl\bin\curl.exe https://wttr.in/seattle |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Being development environment specific, these two are probably better handled locally in
$GIT_DIR/info/exclude