65276b8c27
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.
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2009/03/10 11:13:09 gson Exp $
|
|
#
|
|
|
|
DISTNAME= st-1.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=state-threads/}
|
|
|
|
MAINTAINER= gson@NetBSD.org
|
|
HOMEPAGE= http://state-threads.sourceforge.net/
|
|
COMMENT= Non-preemptive thread library for Internet applications
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-sparc NetBSD-*-vax
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
BUILD_TARGET= netbsd-debug
|
|
|
|
HTMLDIR= ${PREFIX}/share/doc/html/st
|
|
|
|
INSTALLATION_DIRS= bin include lib
|
|
|
|
do-install:
|
|
${LIBTOOL} --mode=install ${INSTALL_LIB} \
|
|
${WRKSRC}/libst.la ${DESTDIR}${PREFIX}/lib
|
|
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
|
|
${WRKSRC}/examples/lookupdns ${DESTDIR}${PREFIX}/bin/st-lookupdns
|
|
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
|
|
${WRKSRC}/examples/proxy ${DESTDIR}${PREFIX}/bin/st-proxy
|
|
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
|
|
${WRKSRC}/examples/server ${DESTDIR}${PREFIX}/bin/st-server
|
|
${INSTALL_DATA} ${WRKSRC}/public.h ${DESTDIR}${PREFIX}/include/st.h
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${HTMLDIR}
|
|
cd ${WRKSRC}/docs; ${INSTALL_DATA} *.html *.gif ${DESTDIR}${HTMLDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|