summaryrefslogtreecommitdiff
path: root/docs/INSTALL
Commit message (Collapse)AuthorAgeFilesLines
* INSTALL: converted to markdown => INSTALL.mdDaniel Stenberg2016-10-211-1107/+1
| | | | | | | 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.
* s/cURL/curlDaniel Stenberg2016-10-181-3/+3
| | | | | 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.
* URLs: change http to https in many placesViktor Szakats2016-04-061-1/+1
| | | | Closes #754
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* docs/INSTALL: Updated example minimal binary sizesDan Fandrich2015-10-121-6/+9
|
* INSTALL: Minor formatting correction in 'Legacy Windows and SSL' sectionSteve Holme2015-07-301-6/+6
| | | | ...as well as some rewording.
* INSTALL: Advise use of non-native SSL for Windows <= XPJay Satiro2015-06-201-0/+9
| | | | | | | | | 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>
* docs: update URLsViktor Szakats2015-06-161-23/+21
|
* code/docs: Use Unix rather than UNIX to avoid use of the trademarkSteve Holme2014-12-261-2/+2
| | | | | 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.
* build: updated dependencies in makefiles.Guenter Knauf2014-12-051-2/+2
|
* INSTALL: Updated pre-processor references to the old VC6 project filesSteve Holme2014-11-091-6/+13
| | | | | | | | 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.
* INSTALL: Added email protocols to the "Disabling in Win32 builds" sectionSteve Holme2014-11-091-0/+3
|
* INSTALL: Consistent spacing in section headings, paragraphs and examplesSteve Holme2014-11-041-22/+26
|
* INSTALL: Corrected MIT Kerberos and Heimdal package namesSteve Holme2014-11-041-2/+2
|
* INSTALL: Use GSS-API rather than GSSAPISteve Holme2014-11-041-2/+2
| | | | | | | 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.
* INSTALL: Updated MSVC 6 caveatsSteve Holme2014-05-191-11/+4
| | | | | To use an up to date download link as well as remove duplicate information.
* INSTALL: Updated for new Visual Studio project filesSteve Holme2014-05-191-29/+8
|
* docs: remove documentation on setting up krb4 supportNick Zitzmann2014-03-081-12/+0
| | | | | The information about building with Kerberos4 support was half a year out of date. We dropped support for that.
* tests: Made the crypto test feature usableDan Fandrich2014-02-171-1/+0
| | | | | This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
* INSTALL: Corrected mentioned version number as release 7.34.1 became 7.35.0Steve Holme2014-01-311-1/+1
|
* docs/INSTALL: Updated example minimal binary sizesDan Fandrich2014-01-261-3/+4
|
* Added libmetalink URL; added Android versions.Guenter Knauf2013-07-041-1/+2
|
* Updated zlib version in build files.Guenter Knauf2013-05-111-2/+2
|
* move msvc IDE related files to 'vs' directory treeYang Tse2013-02-131-4/+4
| | | | | Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist.
* Updated dependency libs.Guenter Knauf2013-02-091-2/+2
|
* Revert "vc: remove explicit MSVC6 IDE project file and documentation"Daniel Stenberg2013-02-071-0/+31
| | | | This reverts commit 0e66d5878edc3d7ffc445116d194b58bbc7504b9.
* vc: remove explicit MSVC6 IDE project file and documentationDaniel Stenberg2013-02-061-31/+0
| | | | | | 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.
* build: move Android.mk to packages/Android/Daniel Stenberg2013-02-061-1/+1
|
* Updated dependency libs.Guenter Knauf2013-01-281-1/+1
|
* docs: the --with-darwinssl option is available on Apple OSesNick Zitzmann2013-01-091-1/+34
|
* build: fix circular header inclusion with other packagesYang Tse2013-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Revert changes relative to lib/*.[ch] recent renamingYang Tse2013-01-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* INSTALL: unify the SSL library textsDaniel Stenberg2013-01-031-11/+8
| | | | | Make them smaller and more similar for each separate SSL library supported by the configure build
* build: make use of 76 lib/*.h renamed filesYang Tse2012-12-281-1/+1
| | | | | | 76 private header files renamed to use our standard naming scheme. This change affects 322 files in libcurl's source tree.
* Updated build docs w.r.t. Android and binary sizesDan Fandrich2012-09-031-5/+6
|
* Fixed typo.Guenter Knauf2012-07-211-1/+1
|
* Fixed some typos in documentationDan Fandrich2012-07-201-2/+2
|
* Added pointer to FAQ for linkage errors.Guenter Knauf2012-07-111-0/+3
|
* Added hint for pkg-config wrapper script.Guenter Knauf2012-06-061-0/+14
|
* Updated Android section with recent NDK.Guenter Knauf2012-06-061-2/+2
| | | | The r7b had some bugs, and shouldnt be used.
* Removed trailing spaceTatsuhiro Tsujikawa2012-05-261-1/+1
|
* Adds Metalink information to INSTALLant2012-05-261-0/+3
|
* Updated dependency libary versions.Guenter Knauf2012-05-221-5/+5
|
* Updated dependency lib versions.Guenter Knauf2012-04-261-2/+2
|
* Updated dependency lib versions.Guenter Knauf2012-04-201-2/+2
|
* Added section for Android configure cross-compile.Guenter Knauf2012-04-131-1/+24
|
* Updated dependency lib versions (2nd try).Guenter Knauf2012-04-121-1/+1
|
* Updated dependency lib versions.Guenter Knauf2012-04-121-5/+5
|
* removed trailing whitespaceYang Tse2011-12-301-1/+1
|
* Mention that BSD-style lwIP TCP/IP stack support on Windows is experimental.Yang Tse2011-09-121-0/+3
|