1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-17 09:19:15 -04:00
ports/net/openafs/files/patch-acinclude.m4
Benjamin Kaduk 0c12ee8016 Update to 1.6.4
Build fixes for 10-CURRENT will come in a separate commit.

Approved by:	hrs (mentor, ports committer)
2013-07-04 18:40:01 +00:00

31 lines
736 B
Text

--- ./acinclude.m4.orig 2012-03-26 19:03:34.000000000 -0400
+++ ./acinclude.m4 2012-12-30 21:23:20.000000000 -0500
@@ -158,6 +158,14 @@
,
[enable_transarc_paths="no"])
+dnl Deprecated crypto
+AC_ARG_ENABLE([kauth],
+ [AS_HELP_STRING([--disable-kauth],
+ [do not install the deprecated kauth server and utilities (defaults to
+ enabled)])],
+ ,
+ [enable_kauth="yes"])
+
dnl Optimization and debugging flags.
AC_ARG_ENABLE([strip-binaries],
[AS_HELP_STRING([--disable-strip-binaries],
@@ -1315,6 +1323,13 @@
fi
AC_SUBST(BUILD_LOGIN)
+if test "$enable_kauth" = yes; then
+ INSTALL_KAUTH="yes"
+else
+ INSTALL_KAUTH="no"
+fi
+AC_SUBST(INSTALL_KAUTH)
+
AC_CHECK_FUNCS([ \
daemon \
flock \