aboutsummaryrefslogtreecommitdiff
path: root/docs/INSTALL
AgeCommit message (Collapse)Author
2016-10-21INSTALL: converted to markdown => INSTALL.mdDaniel Stenberg
Also heavily edited for content. Removed lots of old cruft that we added like 10+ years ago that is likely incorrect by now. Also removed INSTALL.devcpp for same reason.
2016-10-18s/cURL/curlDaniel Stenberg
The tool was never called cURL, only the project. But even so, we have more and more over time switched to just use lower case.
2016-04-06URLs: change http to https in many placesViktor Szakats
Closes #754
2016-02-03URLs: change all http:// URLs to https://Daniel Stenberg
2015-10-12docs/INSTALL: Updated example minimal binary sizesDan Fandrich
2015-07-30INSTALL: Minor formatting correction in 'Legacy Windows and SSL' sectionSteve Holme
...as well as some rewording.
2015-06-20INSTALL: Advise use of non-native SSL for Windows <= XPJay Satiro
Advise that WinSSL in versions <= XP will not be able to connect to servers that no longer support the legacy handshakes and algorithms used by those versions, and to use an alternate backend like OpenSSL instead. Bug: https://github.com/bagder/curl/issues/253 Reported-by: zenden2k <zenden2k@gmail.com>
2015-06-16docs: update URLsViktor Szakats
2014-12-26code/docs: Use Unix rather than UNIX to avoid use of the trademarkSteve Holme
Use Unix when generically writing about Unix based systems as UNIX is the trademark and should only be used in a particular product's name.
2014-12-05build: updated dependencies in makefiles.Guenter Knauf
2014-11-09INSTALL: Updated pre-processor references to the old VC6 project filesSteve Holme
Reworked the two sections that discuss modifying the Visual Studio pre- processor settings, and vc6libcurl.dsw/vc6libcurl.dsp, to remove the project files references as they have been superseded by a more thorough set of project files for VC6 through VC12, but to also give the correct reference to this setting in later versions of Visual Studio.
2014-11-09INSTALL: Added email protocols to the "Disabling in Win32 builds" sectionSteve Holme
2014-11-04INSTALL: Consistent spacing in section headings, paragraphs and examplesSteve Holme
2014-11-04INSTALL: Corrected MIT Kerberos and Heimdal package namesSteve Holme
2014-11-04INSTALL: Use GSS-API rather than GSSAPISteve Holme
As implementations are refereed to GSS-API libraries as per the RFC and GSSAPI typically refers to the SASL authentication mechanism. ...and minor rewording on the same paragraph.
2014-05-19INSTALL: Updated MSVC 6 caveatsSteve Holme
To use an up to date download link as well as remove duplicate information.
2014-05-19INSTALL: Updated for new Visual Studio project filesSteve Holme
2014-03-08docs: remove documentation on setting up krb4 supportNick Zitzmann
The information about building with Kerberos4 support was half a year out of date. We dropped support for that.
2014-02-17tests: Made the crypto test feature usableDan Fandrich
This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
2014-01-31INSTALL: Corrected mentioned version number as release 7.34.1 became 7.35.0Steve Holme
2014-01-26docs/INSTALL: Updated example minimal binary sizesDan Fandrich
2013-07-04Added libmetalink URL; added Android versions.Guenter Knauf
2013-05-11Updated zlib version in build files.Guenter Knauf
2013-02-13move msvc IDE related files to 'vs' directory treeYang Tse
Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist.
2013-02-09Updated dependency libs.Guenter Knauf
2013-02-07Revert "vc: remove explicit MSVC6 IDE project file and documentation"Daniel Stenberg
This reverts commit 0e66d5878edc3d7ffc445116d194b58bbc7504b9.
2013-02-06vc: remove explicit MSVC6 IDE project file and documentationDaniel Stenberg
VC6 is _very_ old and we provide working makefiles even for that compiler. Users who build with the IDE never use that method and project file anyway and it was just lingering in the root dir.
2013-02-06build: move Android.mk to packages/Android/Daniel Stenberg
2013-01-28Updated dependency libs.Guenter Knauf
2013-01-09docs: the --with-darwinssl option is available on Apple OSesNick Zitzmann
2013-01-09build: fix circular header inclusion with other packagesYang Tse
This commit renames lib/setup.h to lib/curl_setup.h and renames lib/setup_once.h to lib/curl_setup_once.h. Removes the need and usage of a header inclusion guard foreign to libcurl. [1] Removes the need and presence of an alarming notice we carried in old setup_once.h [2] ---------------------------------------- 1 - lib/setup_once.h used __SETUP_ONCE_H macro as header inclusion guard up to commit ec691ca3 which changed this to HEADER_CURL_SETUP_ONCE_H, this single inclusion guard is enough to ensure that inclusion of lib/setup_once.h done from lib/setup.h is only done once. Additionally lib/setup.h has always used __SETUP_ONCE_H macro to protect inclusion of setup_once.h even after commit ec691ca3, this was to avoid a circular header inclusion triggered when building a c-ares enabled version with c-ares sources available which also has a setup_once.h header. Commit ec691ca3 exposes the real nature of __SETUP_ONCE_H usage in lib/setup.h, it is a header inclusion guard foreign to libcurl belonging to c-ares's setup_once.h The renaming this commit does, fixes the circular header inclusion, and as such removes the need and usage of a header inclusion guard foreign to libcurl. Macro __SETUP_ONCE_H no longer used in libcurl. 2 - Due to the circular interdependency of old lib/setup_once.h and the c-ares setup_once.h header, old file lib/setup_once.h has carried back from 2006 up to now days an alarming and prominent notice about the need of keeping libcurl's and c-ares's setup_once.h in sync. Given that this commit fixes the circular interdependency, the need and presence of mentioned notice is removed. All mentioned interdependencies come back from now old days when the c-ares project lived inside a curl subdirectory. This commit removes last traces of such fact.
2013-01-06Revert changes relative to lib/*.[ch] recent renamingYang Tse
This reverts renaming and usage of lib/*.h header files done 28-12-2012, reverting 2 commits: f871de0... build: make use of 76 lib/*.h renamed files ffd8e12... build: rename 76 lib/*.h files This also reverts removal of redundant include guard (redundant thanks to changes in above commits) done 2-12-2013, reverting 1 commit: c087374... curl_setup.h: remove redundant include guard This also reverts renaming and usage of lib/*.c source files done 3-12-2013, reverting 3 commits: 13606bb... build: make use of 93 lib/*.c renamed files 5b6e792... build: rename 93 lib/*.c files 7d83dff... build: commit 13606bbfde follow-up 1 Start of related discussion thread: http://curl.haxx.se/mail/lib-2013-01/0012.html Asking for confirmation on pushing this revertion commit: http://curl.haxx.se/mail/lib-2013-01/0048.html Confirmation summary: http://curl.haxx.se/mail/lib-2013-01/0079.html NOTICE: The list of 2 files that have been modified by other intermixed commits, while renamed, and also by at least one of the 6 commits this one reverts follows below. These 2 files will exhibit a hole in history unless git's '--follow' option is used when viewing logs. lib/curl_imap.h lib/curl_smtp.h
2013-01-03INSTALL: unify the SSL library textsDaniel Stenberg
Make them smaller and more similar for each separate SSL library supported by the configure build
2012-12-28build: make use of 76 lib/*.h renamed filesYang Tse
76 private header files renamed to use our standard naming scheme. This change affects 322 files in libcurl's source tree.
2012-09-03Updated build docs w.r.t. Android and binary sizesDan Fandrich
2012-07-21Fixed typo.Guenter Knauf
2012-07-20Fixed some typos in documentationDan Fandrich
2012-07-11Added pointer to FAQ for linkage errors.Guenter Knauf
2012-06-06Added hint for pkg-config wrapper script.Guenter Knauf
2012-06-06Updated Android section with recent NDK.Guenter Knauf
The r7b had some bugs, and shouldnt be used.
2012-05-26Removed trailing spaceTatsuhiro Tsujikawa
2012-05-26Adds Metalink information to INSTALLant
2012-05-22Updated dependency libary versions.Guenter Knauf
2012-04-26Updated dependency lib versions.Guenter Knauf
2012-04-20Updated dependency lib versions.Guenter Knauf
2012-04-13Added section for Android configure cross-compile.Guenter Knauf
2012-04-12Updated dependency lib versions (2nd try).Guenter Knauf
2012-04-12Updated dependency lib versions.Guenter Knauf
2011-12-30removed trailing whitespaceYang Tse
2011-09-12Mention that BSD-style lwIP TCP/IP stack support on Windows is experimental.Yang Tse