- [1] Fix the use of SRV resource queries via DNS;
caused by failure to detect resolv.h and res_query() http://lists.gnu.org/archive/html/help-shishi/2012-07/msg00001.html - Minor style cleanups - Bump PORTREVISION Submitted by: Mats Erik Andersson <openbsd@gisladisker.se> [1]
This commit is contained in:
parent
119ad92dbc
commit
7c708173b3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301018
@ -8,16 +8,17 @@
|
||||
|
||||
PORTNAME= shishi
|
||||
PORTVERSION= 1.0.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= GNU
|
||||
|
||||
MAINTAINER= johans@FreeBSD.org
|
||||
COMMENT= A free implementation of the Kerberos 5 network security system
|
||||
|
||||
LIB_DEPENDS= idn.17:${PORTSDIR}/dns/libidn \
|
||||
tasn1.4:${PORTSDIR}/security/libtasn1 \
|
||||
gcrypt.18:${PORTSDIR}/security/libgcrypt \
|
||||
gnutls.47:${PORTSDIR}/security/gnutls
|
||||
LIB_DEPENDS= idn:${PORTSDIR}/dns/libidn \
|
||||
tasn1:${PORTSDIR}/security/libtasn1 \
|
||||
gcrypt:${PORTSDIR}/security/libgcrypt \
|
||||
gnutls:${PORTSDIR}/security/gnutls
|
||||
|
||||
USE_AUTOTOOLS= libtool
|
||||
USE_PERL5_BUILD= yes
|
||||
|
59
security/shishi/files/patch-configure
Normal file
59
security/shishi/files/patch-configure
Normal file
@ -0,0 +1,59 @@
|
||||
The upstream configuration is not able to properly detect
|
||||
the use of "resolv.h" and res_query() on BSD systems.
|
||||
As a consequence of this the built library libshishi.so
|
||||
is not able to question a DNS server for SRV resources.
|
||||
|
||||
http://lists.gnu.org/archive/html/help-shishi/2012-07/msg00001.html
|
||||
|
||||
--- configure.bak 2012-07-17 17:41:29.000000000 +0200
|
||||
+++ configure 2012-07-17 17:48:44.000000000 +0200
|
||||
@@ -6688,10 +6688,11 @@
|
||||
|
||||
fi
|
||||
|
||||
-for ac_header in termios.h pwd.h syslog.h resolv.h arpa/nameser.h netinet/in6.h
|
||||
+for ac_header in termios.h pwd.h syslog.h arpa/nameser.h netinet/in6.h
|
||||
do :
|
||||
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
|
||||
+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
|
||||
+"
|
||||
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
||||
@@ -6701,6 +6702,15 @@
|
||||
|
||||
done
|
||||
|
||||
+# Check for resolv.h
|
||||
+ac_fn_c_check_header_mongrel "$LINENO" "resolv.h" "as_ac_resolv_h" "$ac_includes_default
|
||||
+#include <sys/types.h>
|
||||
+#include <netinet/in.h>"
|
||||
+if test "x$as_ac_resolv_h" = x"yes"; then :
|
||||
+ cat >>confdefs.h <<_ACEOF
|
||||
+#define HAVE_RESOLV_H 1
|
||||
+_ACEOF
|
||||
+fi
|
||||
|
||||
# Used when creating libshishi-XX.def.
|
||||
SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}`
|
||||
@@ -33526,7 +33536,7 @@
|
||||
fi
|
||||
|
||||
# Checks for library functions.
|
||||
-for ac_func in signal select ngettext gethostbyname getpwnam getuid
|
||||
+for ac_func in signal select ngettext gethostbyname getpwnam getuid res_query
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
--- lib/resolv.c.bak 2012-02-08 13:17:44.000000000 +0100
|
||||
+++ lib/resolv.c 2012-07-17 17:41:29.000000000 +0200
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#include "internal.h"
|
||||
|
||||
-#ifdef HAVE_LIBRESOLV
|
||||
+#ifdef HAVE_RES_QUERY
|
||||
|
||||
/* the largest packet we'll send and receive */
|
||||
#if PACKETSZ > 1024
|
@ -35,4 +35,4 @@ libdata/pkgconfig/shishi.pc
|
||||
@dirrmtry etc/shishi
|
||||
@dirrmtry lib/security
|
||||
@exec mkdir -m 0700 -p /var/shishi
|
||||
@dirrmtry /var/shishi
|
||||
@unexec rmdir /var/shishi 2>/dev/null || true
|
||||
|
Loading…
Reference in New Issue
Block a user