From 675333350a645cfe209127bfd040b81c2fc42f58 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 12 Apr 2003 17:12:31 +0000 Subject: [PATCH] Patch from Armijn Hemel to fix build on FreeBSD 5 systems with a broken krb5-config --- source/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/configure.in b/source/configure.in index 84d0c177c0f..d6ed8fac621 100644 --- a/source/configure.in +++ b/source/configure.in @@ -2149,8 +2149,8 @@ if test x"$with_ads_support" = x"yes"; then AC_MSG_CHECKING(for working krb5-config) if test -x "$KRB5_CONFIG"; then LIBS="$LIBS `$KRB5_CONFIG --libs`" - CFLAGS="$CFLAGS `$KRB5_CONFIG --cflags`" - CPPFLAGS="$CPPFLAGS `$KRB5_CONFIG --cflags`" + CFLAGS="$CFLAGS `$KRB5_CONFIG --cflags | sed s/@INCLUDE_des@//`" + CPPFLAGS="$CPPFLAGS `$KRB5_CONFIG --cflags | sed s/@INCLUDE_des@//`" FOUND_KRB5=yes AC_MSG_RESULT(yes) else -- 2.11.4.GIT