aboutsummaryrefslogtreecommitdiff
path: root/ares/Makefile.am
AgeCommit message (Collapse)Author
2008-07-30Reinstate the 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4' way ofYang Tse
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 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-27move ACLOCAL_AMFLAGS after AUTOMAKE_OPTIONSYang Tse
2008-07-25move reentrant.m4 to the m4 subdirectory to avoid infinite loop inclusion ↵Yang Tse
problem
2008-07-24Another step towards detecting if _REENTRANT is already defined or actuallyYang 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-05-23list all local sources the (demo) tools need, add a few missing scripts toDaniel Stenberg
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 Tse
2008-05-13add MSVC6 project for acountry sample programYang Tse
2008-02-14added some files which were missing in release tarballs.Gunter Knauf
2007-12-11build acountry tooDaniel Stenberg
2007-12-10grrr, the previous commit was meant to properly make sure that we don'tDaniel Stenberg
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 Stenberg
2007-12-10build ahost and adig by default but don't install themDaniel Stenberg
2007-11-27pkgconfig fix by Andreas SchuldeiDaniel Stenberg
2007-09-28Bumped version to 1.5.0 for next release and soname bumped to 2 due to ABIDaniel Stenberg
and API changes in the progress callback (and possibly more coming up from Steinar)
2007-07-26added initial pkg-config file (attempt)Daniel Stenberg
2007-06-081.4.0 prepsDaniel Stenberg
2006-11-22Install ares_dns.h tooDaniel Stenberg
2006-06-26include config-win32.h in release archivesDaniel Stenberg
2006-05-24Copied the NO_UNDEFINED magic from libcurl to make this build fine again withDaniel Stenberg
libtool cross-compiled on linux with mingw32
2005-11-12removed files no longer existingDaniel Stenberg
2005-08-21well hit me, that wasn't possible, use 1:0:0 anyway...Daniel Stenberg
2005-08-21modified the version-info, we only added functionsDaniel Stenberg
2005-08-21increase version infoDaniel Stenberg
2005-04-11creditsDaniel Stenberg
2004-10-24maketgz now creates a ares_version.h.dist file with the given version dataDaniel Stenberg
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 Stenberg
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.