Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-13 | move msvc IDE related files to 'vs' directory tree | Yang Tse | |
Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist. | |||
2013-02-13 | move msvc IDE related files to 'vc' directory tree | Yang Tse | |
2013-02-07 | Revert "vc: remove explicit MSVC6 IDE project file and documentation" | Daniel Stenberg | |
This reverts commit 0e66d5878edc3d7ffc445116d194b58bbc7504b9. | |||
2013-02-06 | vc: remove explicit MSVC6 IDE project file and documentation | Daniel 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-06 | msvc: move Makefile.msvc.names into winbuild/ | Daniel Stenberg | |
In an attempt to clear up misc files from the root dir | |||
2013-02-06 | build: move Android.mk to packages/Android/ | Daniel Stenberg | |
2013-02-06 | emacs files: remove from git and dist | Daniel Stenberg | |
We don't need them and I doubt many people used them. We also don't have any configs for other editors and we wouldn't want that. | |||
2012-11-23 | test: offer "automake" output and check for perl better | Daniel Stenberg | |
runtests.pl -am now uses the "PASS/FAIL: [desc]" output for each executed test. You can run 'make test-am' in the root build directory to invoke that. The reason for this output style is to better allow generic test suite parsers to also grok our test output. The test Makefile now also tests that perl was indeed found and that the PERL variable points to an executable before it tries to run the main test perl script runtests.pl, | |||
2012-07-20 | make: make distclean work again | Daniel Stenberg | |
The clean-local hook needed some polish to make sure make distclean works. Added comment describing why. | |||
2011-12-19 | configure: add symbols versioning option | Alessandro Ghedini | |
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>". | |||
2011-05-09 | include: cleanup | Daniel Stenberg | |
Made the public headers checksrc compliant Removed types.h (it's been unused since April 2004) Made the root makefile do make in include by default as well, so that TAGS and the checksrc will work better. | |||
2011-04-27 | make: add 'checksrc' as target to check code style | Daniel Stenberg | |
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. | |||
2011-01-28 | Windows build: alternative makefile | Pierre Joye | |
This is a separate makefile for MSVC builds. It is deliberately put in another dir than src/ and lib/ to allow a different build experience than the previous - at least during a period. Eventually we should unify. | |||
2011-01-06 | cmake: removed two files | Daniel Stenberg | |
CMake/CheckTypeSize.c.in and CMake/CheckTypeSize.cmake were removed in the previous cmake commit | |||
2010-12-20 | distrib: add new file to EXTRA_DIST | Yang Tse | |
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2009-11-04 | fix the find command line | Daniel Stenberg | |
2009-11-04 | avoid fiddling in the ares subdir since that isn't part of the release | Daniel Stenberg | |
tarball | |||
2009-08-11 | Include the Android make file in the source package even though the | Dan Fandrich | |
config.h issue hasn't been completely solved. This will save some effort for someone desperate to use curl on Android. | |||
2009-06-08 | Remove buildconf.bat from release and daily snapshot archives. | Yang Tse | |
buildconf.bat is only for CVS tree builds. | |||
2009-04-27 | Add missing cmake files to the tarball (thanks to Richard Atterer's report) | Daniel Stenberg | |
2009-04-25 | removed pointless file | Daniel Stenberg | |
2009-04-14 | first take at bundling cmake-related files in the tarball | Daniel Stenberg | |
2009-02-23 | adjustment for new Mac OS X framework build script | Yang Tse | |
2009-01-01 | - 'reconf' is removed since we rather have users use 'buildconf' | Daniel Stenberg | |
2008-10-01 | "make clean" now cleans out the docs and tests directories, too. | Dan Fandrich | |
2008-08-30 | vc6curl.dsw and MSVC 6 IDE build directions | Yang Tse | |
2008-08-28 | Andres Garcia pointed out these Makefile mistakes... | Daniel Stenberg | |
2008-08-23 | - Running 'make ca-firefox' in the root build dir will now run the new | Daniel Stenberg | |
firefox-db2pem.sh conversion script that converts a local Firefox db of ca certs into PEM format, suitable for use with a OpenSSL or GnuTLS built libcurl. | |||
2008-07-30 | Reinstate the 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4' way of | Yang Tse | |
including our local m4/reentrant.m4 file. This even takes care of including the file in the distribution tarball. | |||
2008-07-29 | Tests done using 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4 | Yang Tse | |
in top Makefile.am triggered a problem that prevented aclocal from running successfully on SunOS 5.10 with GNU m4 1.4.5 and GNU Autoconf 2.61 A tarball which reproduces mentioned problem is the one dated July-28-2008 http://cool.haxx.se/curl-daily/curl-7.19.0-20080728.tar.gz We actually don't need all the bells and whistles that the above mechanism provides. We only need to include our m4/reentrant.m4 file in acinclude.m4 so here we go with this simpler mechanism. | |||
2008-07-27 | move ACLOCAL_AMFLAGS after AUTOMAKE_OPTIONS | Yang Tse | |
2008-07-25 | move reentrant.m4 to the m4 subdirectory to avoid infinite loop inclusion ↵ | Yang Tse | |
problem | |||
2008-07-24 | Another step towards detecting if _REENTRANT is already defined or actually | Yang Tse | |
needed, and being able to define it if appropriate for further configure tests as well as for the generated config file. Introduced reentrant.m4 intended for our reentrant related autotools/m4 macros. | |||
2008-03-31 | Changed the makefile so the doc/examples/ programs are never built in a | Dan Fandrich | |
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal. | |||
2008-02-10 | removed 'mv' call and changed to use new backup feature of mk-ca-bundle.pl. | Gunter Knauf | |
2008-02-09 | make use of mv's backup feature so that calling the ca-bundle target more ↵ | Gunter Knauf | |
than once will never fail; ignore error which can occure if for whatever reason there's no orignial ca-bundle.crt to rename. | |||
2008-02-08 | oops, we make the copyright year ranges the simple style | Daniel Stenberg | |
2008-02-08 | provide the ca-bundle target the same way as the Makefile.dist does it so that | Daniel Stenberg | |
it works the same way for configure-based platforms as for non-configure ones | |||
2007-07-12 | Compile most of the example apps in docs/examples when doing a 'make check'. | Dan Fandrich | |
2005-11-16 | Applied Albert Chin's patch that makes the libcurl.pc pkgconfig file get | Daniel Stenberg | |
installed on 'make install' time. | |||
2005-03-31 | Updated the copyright year since changes have been this year. | Daniel Stenberg | |
2005-03-11 | Add an alert already here if 'make test' is attempted for a cross-compile | Daniel Stenberg | |
since there's no use building the whole test suite first and _then_ tell it doesn't work anyway... | |||
2004-12-13 | Dan Fandrich added libcurl.pc.in to the dist | Daniel Stenberg | |
2004-07-22 | Added buildconf buildconf.bat to the dist | Daniel Stenberg | |
2004-06-21 | testcurl.sh is dead, long live tests/testcurl.pl! | Daniel Stenberg | |
2004-05-17 | 'make test-torture' in the root now runs a full torture test | Daniel Stenberg | |
2004-03-15 | build_vms.com is removed from here | Daniel Stenberg | |
2004-01-13 | source header added | Daniel Stenberg | |
2003-10-30 | Made the dist-hook more generic for adding more files named .dist into the | Daniel Stenberg | |
dist archive. Preparing for a new maketgz. |