#
a65a75e9 |
| 05-Apr-2018 |
patelvivekv1993 <37296449+patelvivekv1993@users.noreply.github.com> |
build-openssl.bat: allow custom paths for VS and perl Fixes #2430 Closes #2457
|
#
daf959f6 |
| 08-Feb-2018 |
Steve Holme |
build-openssl.bat: Follow up to 648679ab8e to suppress copy/move output
|
#
648679ab |
| 08-Feb-2018 |
Steve Holme |
build-openssl.bat: Fixed incorrect move if destination build folder exists
|
#
ff070895 |
| 06-Feb-2018 |
Steve Holme |
build-openssl.bat/build-wolfssl.bat: Build platform is optional Whilst the compiler parameter is mandatory, platform is optional as it is automatically calculated by the :configure secti
build-openssl.bat/build-wolfssl.bat: Build platform is optional Whilst the compiler parameter is mandatory, platform is optional as it is automatically calculated by the :configure section. This partially reverts commit 6d62d2c55d.
show more ...
|
#
be033641 |
| 05-Feb-2018 |
Steve Holme |
build-openssl.bat: Extend VC15 support to include Enterprise and Professional ...and not just the Community Edition.
|
#
a4e88317 |
| 22-Dec-2017 |
Steve Holme |
build-openssl.bat: Added support for VC15
|
Revision tags: curl-7_57_0, curl-7_56_1 |
|
#
e702df7a |
| 04-Oct-2017 |
Jay Satiro |
build-openssl.bat: Warn OpenSSL 1.1.0 not yet supported Ref: https://github.com/curl/curl/issues/1002
|
Revision tags: curl-7_56_0, curl-7_55_1, curl-7_55_0, curl-7_54_1, curl-7_54_0, curl-7_53_1, curl-7_53_0, curl-7_52_1, curl-7_52_0, curl-7_51_0, curl-7_50_3, curl-7_50_2, curl-7_50_1, curl-7_50_0, curl-7_49_1, curl-7_49_0, curl-7_48_0 |
|
#
8f9be011 |
| 06-Mar-2016 |
Steve Holme |
build-openssl/checksrc.bat: Fixed prepend vs append of Perl path Fixed inconsistency from commit 1eae114065 and 0ad6c72227 of the order in which Perl was added to the PATH.
|
#
1eae1140 |
| 05-Mar-2016 |
Steve Holme |
build-openssl.bat: Fixed cannot find perl if installed but not in path
|
Revision tags: curl-7_47_1 |
|
#
4af40b36 |
| 02-Feb-2016 |
Daniel Stenberg |
URLs: change all http:// URLs to https://
|
Revision tags: curl-7_47_0, curl-7_46_0, curl-7_45_0, curl-7_44_0 |
|
#
a8e9e0c2 |
| 08-Aug-2015 |
Steve Holme |
scripts: Added missing comments
|
#
4aee1f9c |
| 08-Aug-2015 |
Steve Holme |
scripts: Allow -help to be specified in any argument Allow the -help command line argument to be specified in any argument and not just as the first.
|
#
a728225a |
| 26-Jul-2015 |
Steve Holme |
build-openssl.bat: Added support for VC14
|
#
6d62d2c5 |
| 25-Jul-2015 |
Jay Satiro |
build-openssl.bat: Show syntax if required args are missing
|
Revision tags: curl-7_43_0, curl-7_42_1, curl-7_42_0 |
|
#
e2a9ebb3 |
| 02-Apr-2015 |
Jay Satiro |
build-openssl.bat: Fix mixed line endings Use LF not CRLF, throughout. msysgit will only convert a file to CRLF on checkout if it's not mixed.
|
Revision tags: curl-7_41_0 |
|
#
5f09947d |
| 16-Jan-2015 |
Steve Holme |
build-openssl.bat: Added check for Perl installation
|
Revision tags: curl-7_40_0, curl-7_39_0 |
|
#
80c5ae1d |
| 02-Nov-2014 |
Jay Satiro |
build-openssl.bat: Fix x64 release build Prior to this change if x64 release was specified a failed attempt was made to build x86 release instead.
|
#
006b61eb |
| 12-Sep-2014 |
Ray Satiro |
newlines: fix mixed newlines to LF-only I use the curl repo mainly on Windows with the typical Windows git checkout which converts the LF line endings in the curl repo to CRLF automa
newlines: fix mixed newlines to LF-only I use the curl repo mainly on Windows with the typical Windows git checkout which converts the LF line endings in the curl repo to CRLF automatically on checkout. The automatic conversion is not done on files in the repo with mixed line endings. I recently noticed some weird output with projects/build-openssl.bat that I traced back to mixed line endings, so I scanned the repo and there are files (excluding the test data) that have mixed line endings. I used this command below to do the scan. Unfortunately it's not as easy as git grep, at least not on Windows. This gets the names of all the files in the repo's HEAD, gets each of those files raw from HEAD, checks for mixed line endings of both LF and CRLF, and prints the name if mixed. I excluded path tests/data/test* because those can have mixed line endings if I understand correctly. for f in `git ls-tree --name-only --full-tree -r HEAD`; do if [ -n "${f##tests/data/test*}" ]; then git show "HEAD:$f" | \ perl -0777 -ne 'exit 1 if /([^\r]\n.*\r\n)|(\r\n.*[^\r]\n)/'; if [ $? -ne 0 ]; then echo "$f"; fi; fi; done
show more ...
|
Revision tags: curl-7_38_0, curl-7_37_1, curl-7_37_0 |
|
#
274f9323 |
| 20-May-2014 |
Steve Holme |
build-openssl.bat: Added check for OpenSSL source directory
|
#
0c467c9c |
| 20-May-2014 |
Steve Holme |
build-openssl.bat: Added default source directory when not specified Added a default source directory so the user doesn't have to specify one - the same as that, which the Visual Studio
build-openssl.bat: Added default source directory when not specified Added a default source directory so the user doesn't have to specify one - the same as that, which the Visual Studio project files expect the OpenSSL dependencies to be in.
show more ...
|
#
f07fa85b |
| 06-May-2014 |
Ivo Bellin Salarin |
build-openssl.bat: Corrected use of angled brackets in help output Angled brackets were used in the help output to indicate that the compiler and platform arguments are mandatory. Unfort
build-openssl.bat: Corrected use of angled brackets in help output Angled brackets were used in the help output to indicate that the compiler and platform arguments are mandatory. Unfortunately this caused a "< was unexpected at this time" error as the characters are interpreted as re-direction characters when not escaped.
show more ...
|
#
dce748d3 |
| 01-May-2014 |
Steve Holme |
build: Added OpenSSL VC build helper for side-by-side compilations
|