diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-02-19 17:11:06 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-02-19 17:11:06 +0000 |
commit | 9b2396034e598a1ecc0558fd87a91497c3c7e85e (patch) | |
tree | 4d049d93b78192ad6e182e7b739670fcc74f1094 /devel/libdnsres/Makefile | |
parent | b70df58b70da11d98d26984e81e43c7aef509efa (diff) | |
download | pkgsrc-9b2396034e598a1ecc0558fd87a91497c3c7e85e.tar.gz |
Libdnsres provides a non-blocking thread-safe API for resolving DNS names.
It requires that your main application is built on top of libevent. Libdnsres'
API essentially mirrors the traditional gethostbyname and getaddrinfo
interfaces. All return values have been replaced by callbacks instead.
The code borrows heavily from the BSD resolver library. In fact, it is an
extremely ugly hack to make the BSD resolver library non-blocking and
thread-safe without changing the API too much.
Diffstat (limited to 'devel/libdnsres/Makefile')
-rw-r--r-- | devel/libdnsres/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/devel/libdnsres/Makefile b/devel/libdnsres/Makefile new file mode 100644 index 00000000000..2f68a570a08 --- /dev/null +++ b/devel/libdnsres/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/02/19 17:11:06 adrianp Exp $ +# + +DISTNAME= libdnsres-0.1a +CATEGORIES= devel +MASTER_SITES= http://www.monkey.org/~provos/ + +MAINTAINER= adrianp@NetBSD.org +HOMEPAGE= http://www.monkey.org/~provos/ +COMMENT= Non-blocking thread-safe API for resolving DNS names + +USE_PKGLOCALEDIR= YES +USE_LIBTOOL= YES +GNU_CONFIGURE= YES + +.include "../../mk/bsd.pkg.mk" |