diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-03-15 18:10:20 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-03-15 18:10:20 +0100 |
commit | 44787565715f0622cc1d049854427d735ca1c14b (patch) | |
tree | 4357b3d1d5a0fdb31348061ba20845bd464b622a /source4/build | |
parent | e548ec9c24d7f05fea81910b8c7cf3fc0bd137db (diff) | |
download | samba-44787565715f0622cc1d049854427d735ca1c14b.tar.gz |
Strip /usr/include from include flags, so we don't end up including
the system tevent if it's too old.
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/m4/public.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/build/m4/public.m4 b/source4/build/m4/public.m4 index 6860e56e7fc..732de1e20e0 100644 --- a/source4/build/m4/public.m4 +++ b/source4/build/m4/public.m4 @@ -101,10 +101,12 @@ AC_DEFUN([SMB_EXT_LIB_FROM_PKGCONFIG], ac_cv_$1_libs_only_other="`$PKG_CONFIG --libs-only-other '$2'` `$PKG_CONFIG --libs-only-L '$2'`" LIB_REMOVE_USR_LIB(ac_cv_$1_libs_only_other) + ac_cv_$1_includedir_only="`$PKG_CONFIG --cflags-only-I '$2'`" + CFLAGS_REMOVE_USR_INCLUDE(ac_cv_$1_includedir_only) SMB_EXT_LIB($1, [`$PKG_CONFIG --libs-only-l '$2'`], [`$PKG_CONFIG --cflags-only-other '$2'`], - [`$PKG_CONFIG --cflags-only-I '$2'`], + [$ac_cv_$1_includedir_only], [$ac_cv_$1_libs_only_other]) ac_cv_$1_found=yes |