1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Patch from Armijn Hemel <armijn@nl.linux.org> to fix build on

FreeBSD 5 systems with a broken krb5-config
(This used to be commit 675333350a)
This commit is contained in:
Jelmer Vernooij 2003-04-12 17:12:31 +00:00
parent e1ea87ff03
commit 74b163a83a

View File

@ -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