diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2017-01-03 13:52:06 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2017-01-03 13:52:06 +0000 |
commit | 1003c77c0b3d3e460dfd89596ea8c299cc0946c1 (patch) | |
tree | 11190e5cb59f0dca85cdae61bb8c554029960eb6 /security/heimdal/files/patch-appl-kf-Makefile.in | |
parent | Really enable OpenMP. Bump PORTREVISION. (diff) |
Update to 7.1.0. Changes include:
- hcrypto is now thread safe on all platforms and as much as possible
hcrypto now uses the operating system's preferred crypto
implementation ensuring that optimized hardware assisted
implementations of AES-NI are used.
- RFC 6113 Generalized Framework for Kerberos Pre-Authentication
(FAST).
- Hierarchical capath support
- iprop has been revamped to fix a number of race conditions that
could lead to inconsistent replication.
- The KDC process now uses a multi-process model improving resiliency
and performance.
- AES Encryption with HMAC-SHA2 for Kerberos 5
draft-ietf-kitten-aes-cts-hmac-sha2-11
- Moved kadmin and ktutil to /usr/bin
- Stricter fcache checks (see fcache_strict_checking krb5.conf setting)
- Removed legacy applications: ftp, kx, login, popper, push, rcp, rsh,
telnet, xnlock
Notes
Notes:
svn path=/head/; revision=430468
Diffstat (limited to 'security/heimdal/files/patch-appl-kf-Makefile.in')
-rw-r--r-- | security/heimdal/files/patch-appl-kf-Makefile.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/security/heimdal/files/patch-appl-kf-Makefile.in b/security/heimdal/files/patch-appl-kf-Makefile.in new file mode 100644 index 000000000000..277d9cd3bdb9 --- /dev/null +++ b/security/heimdal/files/patch-appl-kf-Makefile.in @@ -0,0 +1,31 @@ +--- appl/kf/Makefile.in.orig 2017-01-03 13:45:01 UTC ++++ appl/kf/Makefile.in +@@ -154,9 +154,13 @@ am__installdirs = "$(DESTDIR)$(bindir)" + PROGRAMS = $(bin_PROGRAMS) $(libexec_PROGRAMS) + am_kf_OBJECTS = kf.$(OBJEXT) + kf_OBJECTS = $(am_kf_OBJECTS) +-kf_LDADD = $(LDADD) ++kf_LDADD = $(LDADD) \ ++ $(LIB_heimbase) \ ++ $(top_builddir)/lib/hx509/libhx509.la + am__DEPENDENCIES_1 = + kf_DEPENDENCIES = $(top_builddir)/lib/krb5/libkrb5.la \ ++ $(LIB_heimbase) \ ++ $(top_builddir)/lib/hx509/libhx509.la \ + $(am__DEPENDENCIES_1) $(top_builddir)/lib/asn1/libasn1.la \ + $(am__DEPENDENCIES_1) + AM_V_lt = $(am__v_lt_@AM_V@) +@@ -165,8 +169,12 @@ am__v_lt_0 = --silent + am__v_lt_1 = + am_kfd_OBJECTS = kfd.$(OBJEXT) + kfd_OBJECTS = $(am_kfd_OBJECTS) +-kfd_LDADD = $(LDADD) ++kfd_LDADD = $(LDADD) \ ++ $(LIB_heimbase) \ ++ $(top_builddir)/lib/hx509/libhx509.la + kfd_DEPENDENCIES = $(top_builddir)/lib/krb5/libkrb5.la \ ++ $(LIB_heimbase) \ ++ $(top_builddir)/lib/hx509/libhx509.la \ + $(am__DEPENDENCIES_1) $(top_builddir)/lib/asn1/libasn1.la \ + $(am__DEPENDENCIES_1) + AM_V_P = $(am__v_P_@AM_V@) |