summaryrefslogtreecommitdiff
path: root/lib/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
...
* README.pipelining: removedDaniel Stenberg2015-05-151-2/+2
| | | | All the details mentioned here are better documented in man pages
* dist: include {src,lib}/checksrc.whitelistDaniel Stenberg2015-04-221-2/+2
|
* vtls: created subdir, moved sslgen.[ch] there, updated all include linesDaniel Stenberg2013-12-201-9/+4
|
* Makefile.am: use LDFLAGS as well when linking libcurlDaniel Stenberg2013-07-231-1/+1
| | | | | | | | Linking on Solaris 10 x86 with Sun Studio 12 failed when we upgraded automake for the release builds. Bug: http://curl.haxx.se/bug/view.cgi?id=1217 Reported-by: Dagobert Michelsen
* curl.h: stricter CURL_EXTERN linkage decorations logicYang Tse2013-03-121-27/+20
| | | | | | No API change involved. Info: http://curl.haxx.se/mail/lib-2013-02/0234.html
* Makefile.am: empty AM_LDFLAGS definition for automake 1.7 compatibilityYang Tse2013-03-091-0/+2
|
* configure: use XC_LIBTOOL for portability across libtool versionsYang Tse2013-03-081-12/+15
|
* move msvc IDE related files to 'vc' directory treeYang Tse2013-02-131-65/+7
|
* vms: config-vms.h is removed, no use trying to distribute itcurl-7_29_0Daniel Stenberg2013-02-061-11/+10
|
* build: fix circular header inclusion with other packagesYang Tse2013-01-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-42/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* test 1222: 8 chars object name generation && test 1221: adjustmentsYang Tse2013-01-031-1/+2
|
* build: make use of 93 lib/*.c renamed filesYang Tse2013-01-031-11/+41
| | | | | | 93 *.c source files renamed to use our standard naming scheme. This change affects 77 files in libcurl's source tree.
* build and tests: curl_10char_object_name() shell functionYang Tse2013-01-021-1/+2
| | | | | | | | | | | | | | | | | | lib/objnames.inc provides definition of curl_10char_object_name() shell function. The intended purpose of this function is to transliterate a (*.c) source file name that may be longer than 10 characters, or not, into a string with at most 10 characters which may be used as an OS/400 object name. Test case 1221 does unit testng of this function and also verifies that it is possible to generate distinct short object names for all curl and libcurl *.c source file names. lib/objnames-test.sh is the shell script used for test case 1221. tests/runtests.pl modified to accept shell script test cases. More details inside lib/objnames.inc and lib/objnames-test.sh
* build: explain current role of LIBS in our Makefile.am filesYang Tse2012-12-041-1/+1
| | | | | | | BLANK_AT_MAKETIME may be used in our Makefile.am files to blank LIBS variable used in generated makefile at makefile processing time. Doing this functionally prevents LIBS from being used for all link targets in given makefile.
* build: prevent global LIBS from influencing src and lib build targetsYang Tse2012-12-031-0/+3
| | | | Currently, LIBS is already used through other macros.
* libcurl: VERSIONINFO updateDaniel Stenberg2012-11-081-2/+2
| | | | | | | Since we added the curl_multi_wait function, the VERSIONINFO needed updating. Reported by: Patrick Monnerat
* uniformly use AM_CPPFLAGS, avoid deprecated INCLUDESDave Reisner2012-11-061-14/+12
| | | | | | | | | | | | | Since automake 1.12.4, the warnings are issued on running automake: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Avoid INCLUDES and roll these flags into AM_CPPFLAGS. Compile tested on: Ubuntu 10.04 (automake 1:1.11.1-1) Ubuntu 12.04 (automake 1:1.11.3-1ubuntu2) Arch Linux (automake 1.12.4)
* Removed libcurl.imp from Makefile.am.Guenter Knauf2012-07-111-8/+8
| | | | Updated .gitignore for NetWare created files.
* build adjustments: commit 9e24b9c7 follow-upYang Tse2012-04-171-3/+3
|
* build adjustments: CURL_HIDDEN_SYMBOLS no longer defined in config filesYang Tse2012-04-111-0/+11
| | | | | | | | | | | configure script now provides conditional definitions for Makefile.am that result in CURL_HIDDEN_SYMBOLS being defined by resulting makefiles when appropriate. Additionally, configure script option for symbol hiding control is now named --enable-symbol-hiding --disable-symbol-hiding. While still valid, old option name --enable-hidden-symbols --disable-hidden-symbols will be deprecated in some future release.
* configure: Windows cross-compilation fixesYang Tse2012-04-091-1/+13
| | | | | | BUILDING_LIBCURL and CURL_STATICLIB are no longer defined in curl_config.h, configure will generate appropriate conditionals so that mentioned symbols get defined and used in Makefiles at compilation time
* curl tool: use configuration files from lib directory - follow-up IYang Tse2012-04-071-1/+1
| | | | amigaos.[ch] now integrates nicely with any libcurl build
* configure: add symbols versioning optionAlessandro Ghedini2011-12-191-1/+5
| | | | | | | | | Allow, at configure time, the production of versioned symbols. The symbols will look like "CURL_<FLAVOUR>_<VERSION> <SYMBOL>", where <FLAVOUR> represents the SSL flavour (e.g. OPENSSL, GNUTLS, NSS, ...), <VERSION> is the major SONAME version and <SYMBOL> is the actual symbol name. If no SSL library is enabled the symbols will be just "CURL_<VERSION> <SYMBOL>".
* unit tests: more build adjustmentsYang Tse2011-06-011-9/+9
|
* makefile: avoid preprocessor definition usage when linkingYang Tse2011-06-011-1/+1
|
* Makefile.am: fix spurious CFLAGS duplicationYang Tse2011-05-301-1/+1
|
* make: add checksrc.pl to distDaniel Stenberg2011-04-271-1/+1
|
* make: add 'checksrc' as target to check code styleDaniel Stenberg2011-04-271-3/+5
| | | | | | | | The make target checksrc now works in the root makefile and in both the src and lib directories. It is also run automatically on "all" if configure --enable-debug was used.
* lib/make: run checksrc.pl once for all filesDaniel Stenberg2011-04-271-1/+1
| | | | | Since it now supports multiple files this will be faster and will show problems for more file than one at a time - more convenient.
* Makefile: run checksrc if debug enabledDaniel Stenberg2011-04-271-1/+5
| | | | And make the build fail if a warning or error was detected
* source cleanup: unify look, style and indent levelsDaniel Stenberg2011-04-271-0/+3
| | | | | By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
* unittesting: build a separate static libDaniel Stenberg2011-01-031-3/+14
| | | | | | | When configure --enable-debug has been used, all files in lib/ are now built twice and a separate static library crafted for unit-testing will be linked. The unit tests in the tests/unit subdir will use that library.
* build: lib/config.dos renamed to lib/config-dos.hYang Tse2010-12-031-1/+1
|
* build: move config-vms.h from subdir 'packages/vms' into 'lib'Yang Tse2010-12-031-1/+1
|
* Removed the native Makefile.riscos filesDan Fandrich2010-10-211-1/+1
| | | | | | | | These haven't worked in at least 8 years due to missing source files, and most active RiscOS developers these days apparently cross-compile anyway. Signed-off-by: James Bursa <james@zamez.org>
* Added mk-ca-bundle.vbs script.Guenter Knauf2010-08-201-1/+2
| | | | | | | | | | | | The script works exactly same as the Perl one except for one thing: when the text descriptions generated with openssl are included then the md5 fingerprints are missing; seems openssl has either a bug or a feature which prints the md5 fingerprint output to stdout instead of writing them to specified file; this script could here do the same as what the Perl scripr does (redirect stdout into file) but this makes the script take up double the time because it needs to launch cmd.exe 140 times (fo each openssl call). So I think for now we just ommit the md5 fingerprints, and see if openssl will be fixed.
* build: Enable configure --enable-werrorBen Greear2010-07-211-0/+3
| | | | | | | This passes -Werror to gcc when building curl and libcurl, allowing easy dection of compile warnings. Signed-off-by: Ben Greear <greearb@candelatech.com>
* removed README.cmake due to the improved situationDaniel Stenberg2010-03-311-1/+1
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* removed trailing whitespaceYang Tse2010-02-141-1/+1
|
* set VERSIONINFO accordingly for the 7.20.0 releaseDaniel Stenberg2010-02-091-3/+3
|
* introducing IMAP, POP3 and SMTP support (still lots of polish left to do)Daniel Stenberg2009-12-121-1/+1
|
* I removed leading 'curl' path on the 'curlbuild.h' include statement inYang Tse2009-11-051-9/+12
| | | | | curl.h, adjusting auto-makefiles include path, to enhance portability to OS's without an orthogonal directory tree structure such as OS/400.
* describe the cmake situationDaniel Stenberg2009-11-021-1/+1
|
* README.NSS is goneDaniel Stenberg2009-10-171-1/+1
|
* renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf2009-07-141-3/+3
| | | | libcurl is used with other projects which also have a config.h.
* Revert delegating c-ares linking magic on libtool and auto-makefiles when usingYang Tse2009-06-061-8/+0
| | | | | | the uninstalled c-ares libtool archive built from the CVS embedded tree. This embedded c-ares linking is again handled from the configure script.
* allow building libcurl for VxWorksYang Tse2009-06-041-1/+1
|
* c-ares embbeded builds header include paths fully defined in makefilesYang Tse2009-06-041-0/+7
|