diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-12 17:12:31 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-12 17:12:31 +0000 |
commit | 74b163a83a7c516abe8192e3965832efa2fa64a4 (patch) | |
tree | 9ef6ccd6c2cf80507e604b0e8a2434c4833a74db /source3 | |
parent | e1ea87ff03f7029f309a119e6be726a11000ab34 (diff) | |
download | samba-74b163a83a7c516abe8192e3965832efa2fa64a4.tar.gz samba-74b163a83a7c516abe8192e3965832efa2fa64a4.tar.bz2 samba-74b163a83a7c516abe8192e3965832efa2fa64a4.zip |
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 675333350a645cfe209127bfd040b81c2fc42f58)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 84d0c177c0..d6ed8fac62 100644 --- a/source3/configure.in +++ b/source3/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 |