- Patch to fix usage with C++

- Bump PORTREVISION

PR:		93505
Submitted by:	maintainer
This commit is contained in:
Marcus Alves Grando 2006-02-18 02:59:18 +00:00
parent ee11ea6623
commit 3c48b72920
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156251
2 changed files with 21 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= libdnsres
PORTVERSION= 0.1a
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://monkey.org/~provos/

View file

@ -0,0 +1,20 @@
--- dnsres.h.orig Fri Feb 17 16:51:37 2006
+++ dnsres.h Fri Feb 17 16:52:14 2006
@@ -431,6 +431,8 @@
int dnsres_net_addrcmp(struct sockaddr *, struct sockaddr *);
int dnsres_getrrsetbyname(const char *, unsigned int, unsigned int, unsigned int, struct dnsres_rrsetinfo **);
void dnsres_freerrset(struct dnsres_rrsetinfo *);
+int dnsres_init(struct dnsres *);
+void dnsres_cancel_lookup(void *);
__END_DECLS
/*
@@ -502,8 +504,5 @@
struct dnsres_hostent_state hostent_state;
struct dnsres_servent_state servent_state;
};
-
-int dnsres_init(struct dnsres *_resp);
-void dnsres_cancel_lookup(void *handle);
#endif /* _DNSRES_H_ */