diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-31 23:30:50 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-31 13:13:33 +0000 |
commit | 97c0def79d123406b44289a131c054ebe863823d (patch) | |
tree | 9a6368c766e1af7fba8c05798a81f58cab865683 | |
parent | f99c009b61c9e8b5968a9b074546408ce93db73c (diff) | |
download | samba-97c0def79d123406b44289a131c054ebe863823d.tar.gz samba-97c0def79d123406b44289a131c054ebe863823d.tar.bz2 samba-97c0def79d123406b44289a131c054ebe863823d.zip |
s4-auth: added a dependency on com_err
this helps with the gentoo build. The problem is that without the
depenency, we don't add the cflags from the pkgconfig for com_err to
the build of auth/gensec. That really reflects a more general problem
with propogation of include dependencies, but this simple fix should
be enough for now.
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sun Oct 31 13:13:33 UTC 2010 on sn-devel-104
-rw-r--r-- | source4/auth/gensec/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 902de0b152..dff6dc6fab 100644 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -23,7 +23,7 @@ bld.SAMBA_MODULE('gensec_gssapi', source='gensec_gssapi.c', subsystem='gensec', init_function='gensec_gssapi_init', - deps='gssapi CREDENTIALS authkrb5' + deps='gssapi CREDENTIALS authkrb5 com_err' ) |