The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / heimdal / 0004-compile_et.patch
1 Use compile_et from e2fsprogs rather than building the native and useless one
2 from heimdal.
3
4 Idea from:
5 http://comments.gmane.org/gmane.comp.encryption.kerberos.heimdal.general/6572
6
7 Status: Backport from upstream git.
8
9 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
10
11 diff -Nura heimdal-1.5.3.orig/cf/check-compile-et.m4 heimdal-1.5.3.et/cf/check-compile-et.m4
12 --- heimdal-1.5.3.orig/cf/check-compile-et.m4   2012-12-09 19:06:44.000000000 -0300
13 +++ heimdal-1.5.3.et/cf/check-compile-et.m4     2013-12-18 14:20:04.025925879 -0300
14 @@ -3,12 +3,12 @@
15  dnl CHECK_COMPILE_ET
16  AC_DEFUN([CHECK_COMPILE_ET], [
17  
18 -AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et])
19 +AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et], [no])
20  
21  krb_cv_compile_et="no"
22  krb_cv_com_err_need_r=""
23  krb_cv_compile_et_cross=no
24 -if test "${COMPILE_ET}" = "compile_et"; then
25 +if test "$COMPILE_ET" != "no"; then
26  
27  dnl We have compile_et.  Now let's see if it supports `prefix' and `index'.
28  AC_MSG_CHECKING(whether compile_et has the features we need)