summaryrefslogtreecommitdiff
path: root/configure.in
AgeCommit message (Collapse)Author
2005-03-29Mention libevent in more docs.Nick Mathewson
svn:r3913
2005-03-23bump cvs to 0.1.0.1-rcRoger Dingledine
svn:r3845
2005-03-22Fix spacing for --with-dmallocPeter Palfrader
svn:r3819
2005-03-03Finish implementing GETINFO; make it easy to query address maps.Nick Mathewson
svn:r3732
2005-02-22Patch to localtime/gmtime handling: use the _r variants where available. ↵Nick Mathewson
Use mutexes to fake _r where necessary. Make mutexes no-ops where no threading is enabled. svn:r3653
2005-02-22Check for pthread dependency on pthread_detach as well as pthread_createNick Mathewson
svn:r3651
2005-02-22Snarf some logic from python, adapted to our own needs, to handle ↵Nick Mathewson
gethostbyname_r correctly across platforms. svn:r3649
2005-02-22Initial IRIX compatibility fixes: check for inttypes.h; check for platform ↵Nick Mathewson
cell_t. svn:r3648
2005-02-15More fixes for IRIX compilation: make very sure we have NULL in ↵Nick Mathewson
configure.in. This may work now. svn:r3627
2005-02-15Fix check for NULL representation to include string.h; this makes fixes ↵Nick Mathewson
building on Irix, I hope. svn:r3625
2005-02-12Give a better error message when zlib.h is not found.Nick Mathewson
svn:r3618
2005-02-03Use getaddrinfo and gethostbyname_r where available. Note that these are ↵Nick Mathewson
not necessarily threadsafe: this needs more thinking. Perhaps we should back down on this multithreading idea. svn:r3522
2005-02-03Also check for dmalloc.hPeter Palfrader
svn:r3510
2005-02-03fix typoRoger Dingledine
svn:r3509
2005-02-03Add --with-dmalloc configure optionPeter Palfrader
svn:r3508
2005-02-01Check for libpthreadNick Mathewson
svn:r3496
2005-01-27Add rudimentary pthread support that needs more testing.Nick Mathewson
svn:r3439
2005-01-12Make Tor use Niels Provos's libevent instead of it's currentNick Mathewson
poll-but-sometimes-select mess. This will let us use faster async cores (like epoll, kpoll, and /dev/poll), and hopefully work better on Windows too. There are some fairly nasty changes to main.c here; this will almost certainly break something. But hey, that's what alphas are for. svn:r3341
2005-01-05Forward-port OSX packaging stuff from maint branchNick Mathewson
svn:r3299
2004-12-17Bump repository version to tor-0.1.0.0-alpha-cvs. (First prerelease will be ↵Nick Mathewson
0.1.0.1-alpha svn:r3168
2004-12-15move us to 0.0.9.1Roger Dingledine
svn:r3150
2004-12-13move us to 0.0.9tor-0.0.9Roger Dingledine
svn:r3139
2004-12-08bump to 0.0.9rc7Roger Dingledine
svn:r3121
2004-12-07bump us to 0.0.9rc7-cvsRoger Dingledine
svn:r3102
2004-12-06bump us to 0.0.9rc6tor-0.0.9rc6Roger Dingledine
svn:r3089
2004-12-04bump us to 0.0.9rc6-cvsRoger Dingledine
darn these bugs svn:r3069
2004-12-01bump to 0.0.9rc5Roger Dingledine
svn:r3056
2004-11-29bump to 0.0.9rc5-cvsRoger Dingledine
svn:r3009
2004-11-28bump to 0.0.9rc4tor-0.0.9rc4Roger Dingledine
svn:r3001
2004-11-26that's enough changes to bump to rc4-cvsRoger Dingledine
svn:r2991
2004-11-25bump to 0.0.9rc3tor-0.0.9rc3Roger Dingledine
svn:r2984
2004-11-23bump to rc2Roger Dingledine
svn:r2965
2004-11-23fix some typos; move to 0.0.9rc1Roger Dingledine
svn:r2951
2004-11-20bump us to 0.0.9rc1-cvsRoger Dingledine
svn:r2916
2004-11-16bump us to 0.0.9pre6tor-0.0.9pre6Roger Dingledine
svn:r2902
2004-11-14Add coda at the end of configure.in to update versions in orconfig.h and ↵Nick Mathewson
tor.nsi as needed. svn:r2864
2004-11-14Fix "implicit declaration of ftello" warning: add AC_FUNC_FSEEKO in ↵Nick Mathewson
configure.in and always include orconfig.h before anything else svn:r2854
2004-11-14generate contrib/torctl via auto*Roger Dingledine
svn:r2846
2004-11-12Use autoconf to enable largefile support where necessary. Use ftello where ↵Nick Mathewson
available, since ftell can fail at 2GB. svn:r2806
2004-11-10Resolve FIXME items: make expand_filename handle ~ and ~usernameNick Mathewson
svn:r2789
2004-11-10bump us to 0.0.9pre6-cvsRoger Dingledine
svn:r2787
2004-11-10ship the tarball with a minimal cflags, since gcc's vary so muchRoger Dingledine
svn:r2770
2004-11-10More whitespace normalizationNick Mathewson
svn:r2768
2004-11-10separate out the cflags that cause spurious warnings, soRoger Dingledine
we don't ship those in the tarball also, bump us to 0.0.9pre5 svn:r2760
2004-11-09move -Wwrite-strings -Wredundant-decls to a separate CFLAGSRoger Dingledine
line, since they fail on my system due to bugs in my includes svn:r2718
2004-11-05Unify tor_parse_(numeric); make sure MAX_UINT32 and MAX_UINT64 are definedNick Mathewson
svn:r2688
2004-11-04Merge RPM spec patch from jbashNick Mathewson
svn:r2674
2004-11-03my gcc has never heard of -Wendif-labelsRoger Dingledine
feel free to add it back in if you can make it only used by gcc's that know about it svn:r2654
2004-11-02Handle strlcat/strlcpy correctly on platforms that have them.Nick Mathewson
svn:r2647
2004-11-02Use a stricter set of warnings; make them all pass.Nick Mathewson
svn:r2645