- 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:
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
|
@ -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
|
||||
|
|
22
irc/bitlbee-otr/files/patch-configure
Normal file
22
irc/bitlbee-otr/files/patch-configure
Normal 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"
|
||||
|
Loading…
Reference in a new issue