- Fix performing SRV DNS records lookup for XMPP domain

names.

PR:		137959
Submitted by:	Ashish SHUKLA <wahjava@gmail.com> (maintainer)
Feature safe:	yes
This commit is contained in:
Martin Wilke 2009-09-19 12:52:23 +00:00
parent ae27602562
commit 74ff45081b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=241728
2 changed files with 24 additions and 2 deletions

View file

@ -7,9 +7,9 @@
PORTNAME= bitlbee-otr
PORTVERSION= 1.2.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= irc
MASTER_SITES= http://wahjava.googlepages.com/
MASTER_SITES= ${MASTER_SITE_FREEBSD}
MAINTAINER= wahjava@gmail.com
COMMENT= An IRC to other chat networks gateway with support for OTR

View file

@ -0,0 +1,22 @@
$FreeBSD$
--- configure.orig
+++ configure
@@ -350,13 +350,11 @@
echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings
-for i in $systemlibdirs; do
- if [ -f $i/libresolv.a ]; then
+if [ "$arch" = FreeBSD ]; then
+ if [ `strings /lib/libc.so.* |grep res_query |wc -l` -gt 0 ]; then
echo '#define HAVE_RESOLV_A' >> config.h
- echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings
- break
fi
-done
+fi
STORAGES="text xml"