mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 09:00:33 -04:00
Changelog: - Bug 4942: --with-filedescriptors does not do anything - Bug 4928: Cannot convert non-IPv4 to IPv4 - Bug 4823: assertion failed: "lowestOffset () <= target_offset" - Bug 4796: comm.cc !isOpen(conn->fd) assertion when rotating logs - Fix squidclient authentication to origin servers - Fix stack-based buffer-overflow when parsing SNMP messages - Add support for buffer-size= to UDP logging - TLS: When using OpenSSL, trust intermediate CAs from trusted store PR: 237882 Submitted by: timp87@gmail.com (maintainer) Sponsored by: Netzkommune GmbH
92 lines
2.8 KiB
Text
92 lines
2.8 KiB
Text
--- configure.orig 2019-02-19 03:04:42 UTC
|
|
+++ configure
|
|
@@ -34701,7 +34701,7 @@ done
|
|
##
|
|
|
|
BUILD_HELPER="NIS"
|
|
-for ac_header in sys/types.h rpc/rpc.h rpcsvc/ypclnt.h rpcsvc/yp_prot.h crypt.h
|
|
+for ac_header in sys/types.h rpc/rpc.h rpcsvc/ypclnt.h rpcsvc/yp_prot.h rpcsvc/crypt.h
|
|
do :
|
|
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "
|
|
@@ -34716,8 +34716,10 @@ if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
|
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
_ACEOF
|
|
|
|
-else
|
|
- BUILD_HELPER=""
|
|
+# XXX: On FreeBSD we have to do this to make NIS work
|
|
+# until https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=188247
|
|
+# is resolved.
|
|
+ BUILD_HELPER="NIS"
|
|
fi
|
|
|
|
done
|
|
@@ -35190,7 +35192,7 @@ done
|
|
|
|
# unconditionally requires crypt(3), for now
|
|
if test "x$ac_cv_func_crypt" != "x"; then
|
|
- for ac_header in unistd.h crypt.h shadow.h
|
|
+ for ac_header in unistd.h rpcsvc/crypt.h shadow.h
|
|
do :
|
|
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
|
|
@@ -37582,7 +37584,7 @@ for ac_header in \
|
|
arpa/nameser.h \
|
|
assert.h \
|
|
bstring.h \
|
|
- crypt.h \
|
|
+ rpcsvc/crypt.h \
|
|
ctype.h \
|
|
direct.h \
|
|
errno.h \
|
|
@@ -37790,6 +37792,7 @@ ac_fn_cxx_check_header_compile "$LINENO" "$ac_header"
|
|
#include <netinet/ip.h>
|
|
#endif
|
|
#if HAVE_NETINET_IP_COMPAT_H
|
|
+#include <net/if.h> /* IFNAMSIZ */
|
|
#include <netinet/ip_compat.h>
|
|
#endif
|
|
#if HAVE_NETINET_IP_FIL_H
|
|
@@ -41819,6 +41822,7 @@ if test "x$enable_ipf_transparent" != "xno" ; then
|
|
# include <sys/ioccom.h>
|
|
# include <netinet/in.h>
|
|
|
|
+# include <net/if.h> /* IFNAMSIZ */
|
|
# include <netinet/ip_compat.h>
|
|
# include <netinet/ip_fil.h>
|
|
# include <netinet/ip_nat.h>
|
|
@@ -41849,6 +41853,7 @@ else
|
|
# include <sys/ioccom.h>
|
|
# include <netinet/in.h>
|
|
#undef minor_t
|
|
+# include <net/if.h> /* IFNAMSIZ */
|
|
# include <netinet/ip_compat.h>
|
|
# include <netinet/ip_fil.h>
|
|
# include <netinet/ip_nat.h>
|
|
@@ -41893,6 +41898,7 @@ _ACEOF
|
|
ip_fil_compat.h \
|
|
ip_fil.h \
|
|
ip_nat.h \
|
|
+ net/if.h \
|
|
netinet/ip_compat.h \
|
|
netinet/ip_fil_compat.h \
|
|
netinet/ip_fil.h \
|
|
@@ -41922,6 +41928,7 @@ ac_fn_cxx_check_header_compile "$LINENO" "$ac_header"
|
|
#if HAVE_IP_COMPAT_H
|
|
#include <ip_compat.h>
|
|
#elif HAVE_NETINET_IP_COMPAT_H
|
|
+#include <net/if.h> /* IFNAMSIZ */
|
|
#include <netinet/ip_compat.h>
|
|
#endif
|
|
#if HAVE_IP_FIL_H
|
|
@@ -41985,8 +41992,7 @@ _ACEOF
|
|
|
|
|
|
fi
|
|
-ac_fn_cxx_check_member "$LINENO" "struct natlookup" "nl_realipaddr.in6"
|
|
- "ac_cv_member_struct_natlookup_nl_realipaddr_in6___" "
|
|
+ac_fn_cxx_check_member "$LINENO" "struct natlookup" "nl_realipaddr.in6" "ac_cv_member_struct_natlookup_nl_realipaddr_in6___" "
|
|
#if USE_SOLARIS_IPFILTER_MINOR_T_HACK
|
|
#define minor_t fubar
|
|
#endif
|