summaryrefslogtreecommitdiff
path: root/devel/st
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-2/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2009-03-10Update devel/st all the way from 1.5.1 to 1.8.gson5-29/+31
Changes from 1.7 to 1.8. -------------------------- o Added support for kqueue and epoll on platforms that support them. Added ability to choose the event notification system at program startup. o Long-overdue public definitions of ST_UTIME_NO_TIMEOUT (-1ULL) and ST_UTIME_NO_WAIT (0) [bug 1514436]. o Documentation patch for st_utime() [bug 1514484]. o Documentation patch for st_timecache_set() [bug 1514486]. o Documentation patch for st_netfd_serialize_accept() [bug 1514494]. o Added st_writev_resid() [rfe 1538344]. o Added st_readv_resid() [rfe 1538768] and, for symmetry, st_readv(). Changes from 1.6 to 1.7. ------------------------ o Support glibc 2.4, which breaks programs that manipulate jump buffers. Replaced Linux IA64 special cases with new md.S that covers all Linux. Changes from 1.5.2 to 1.6. -------------------------- none Changes from 1.5.1 to 1.5.2. ---------------------------- o Alfred Perlstein's context switch callback feature. o Claus Assmann's st_recvmsg/st_sendmsg wrappers. o Extra stack padding for platforms that need it. o Ron Arts's timeout clarifications in the reference manual. o Raymond Bero and Anton Berezin's AMD64 FreeBSD port. o Claus Assmann's AMD64 SunOS 5.10 port. o Claus Assmann's AMD64 OpenBSD port. o Michael Abd-El-Malek's Mac OS X port. o Michael Abd-El-Malek's stack printing patch.
2008-03-03Mechanical changes to add DESTDIR support to packages that installjlam1-9/+11
their files via a custom do-install target.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-06-16Create directories before installing files into them.jlam1-1/+3
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-02-23Add RMD160 digests.agc1-1/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-11-27Updated st to version 1.5.1.gson4-23/+8
Changes from 1.5.0 to 1.5.1. ---------------------------- o Andreas Gustafsson's USE_POLL fix. o Gene's st_set_utime_function() enhancement. Changes from 1.4 to 1.5.0. -------------------------- o Andreas Gustafsson's performance patch. o New extensions: Improved DNS resolver, generic LRU cache, in-process DNS cache, and a program to test the resolver and cache. o Support for AMD Opteron 64-bit CPUs under Linux. o Support for SPARC-64 under Solaris. o Andreas Gustafsson's support for VAX under NetBSD. o Changed unportable #warning directives in md.h to #error.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-04-03Added support for NetBSD/vax.gson3-3/+18
2003-04-03Updated to version 1.4.gson5-92/+18
2002-08-25Add st: non-preemptive thread library for Internet applicationsgson7-0/+256
The State Threads Library is a small application library which provides a foundation for writing fast and highly scalable Internet applications (such as web servers, proxy servers, mail transfer agents, and so on, really any network-data-driven application) on UNIX-like platforms. It combines the simplicity of the multithreaded programming paradigm, in which one thread supports each simultaneous connection, with the performance and scalability of an event-driven state machine architecture. In other words, this library offers a threading API for structuring an Internet application as a state machine.