summaryrefslogtreecommitdiff
path: root/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2008-08-07Initial support of curlbuild.h and curlrules.h which allowsYang Tse1-1/+25
to have a curl_off_t data type no longer gated to off_t.
2008-07-30Reinstate the 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4' way ofYang Tse1-0/+2
including our local m4/reentrant.m4 file. This even takes care of including the file in the distribution tarball.
2008-07-29Tests done using 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4Yang Tse1-2/+0
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-27move ACLOCAL_AMFLAGS after AUTOMAKE_OPTIONSYang Tse1-2/+2
2008-07-25move reentrant.m4 to the m4 subdirectory to avoid infinite loop inclusion ↵Yang Tse1-1/+1
problem
2008-07-24Another step towards detecting if _REENTRANT is already defined or actuallyYang Tse1-0/+2
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-05-23list all local sources the (demo) tools need, add a few missing scripts toDaniel Stenberg1-6/+6
the dist tarball and remove a two duplicate file names from EXTRA_DIST (most of it pointed out by Yang Tse)
2008-05-15remove compilation time generated filesYang Tse1-3/+2
2008-05-13add MSVC6 project for acountry sample programYang Tse1-1/+1
2008-02-14added some files which were missing in release tarballs.Gunter Knauf1-2/+3
2007-12-11build acountry tooDaniel Stenberg1-1/+4
2007-12-10grrr, the previous commit was meant to properly make sure that we don'tDaniel Stenberg1-4/+1
link any executables when doing debug builds since they kind of assume symbols provided by libcurl, but it also wrongly included acountry.c
2007-12-10when buildingDaniel Stenberg1-1/+10
2007-12-10build ahost and adig by default but don't install themDaniel Stenberg1-0/+8
2007-11-27pkgconfig fix by Andreas SchuldeiDaniel Stenberg1-0/+2
2007-09-28Bumped version to 1.5.0 for next release and soname bumped to 2 due to ABIDaniel Stenberg1-1/+1
and API changes in the progress callback (and possibly more coming up from Steinar)
2007-07-26added initial pkg-config file (attempt)Daniel Stenberg1-1/+1
2007-06-081.4.0 prepsDaniel Stenberg1-1/+1
2006-11-22Install ares_dns.h tooDaniel Stenberg1-1/+1
2006-06-26include config-win32.h in release archivesDaniel Stenberg1-1/+1
2006-05-24Copied the NO_UNDEFINED magic from libcurl to make this build fine again withDaniel Stenberg1-1/+7
libtool cross-compiled on linux with mingw32
2005-11-12removed files no longer existingDaniel Stenberg1-4/+3
2005-08-21well hit me, that wasn't possible, use 1:0:0 anyway...Daniel Stenberg1-1/+1
2005-08-21modified the version-info, we only added functionsDaniel Stenberg1-1/+1
2005-08-21increase version infoDaniel Stenberg1-1/+1
2005-04-11creditsDaniel Stenberg1-1/+1
2004-10-24maketgz now creates a ares_version.h.dist file with the given version dataDaniel Stenberg1-0/+9
properly set, and the Makefile.am is now fixed to use that when building a new package with make dist.
2004-07-22- Fixed a few variable return types for some system calls. Made configureDaniel Stenberg1-0/+57
check for ssize_t to make it possible to use that when receiving the send() error code. This is necessary to prevent compiler warnings on some systems. - Made configure create config.h, and all source files now include setup.h that might include the proper config.h (or a handicrafted alternative). - Switched to 'ares_socket_t' type for sockets in ares, since Windows don't use 'int' for that. - automake-ified and libool-ified c-ares. Now it builds libcares as a shared lib on most platforms if wanted. (This bloated the size of the release archive with another 200K!) - Makefile.am now uses Makefile.inc for the c sources, h headers and man pages, to make it easier for other makefiles to use the exact same set of files. - Adjusted 'maketgz' to use the new automake magic when building distribution archives.