mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
68fd09e24a
Patch for bug #6269 When linking against tevent you also need to link against talloc. This patch fixes external/libevent.m4 to do so.
8 lines
221 B
Plaintext
8 lines
221 B
Plaintext
AC_SUBST(TEVENT_OBJ)
|
|
AC_SUBST(TEVENT_CFLAGS)
|
|
AC_SUBST(TEVENT_LIBS)
|
|
|
|
AC_CHECK_HEADER(tevent.h,
|
|
[AC_CHECK_LIB(tevent, tevent_context_init, [TEVENT_LIBS="-ltevent"], , -ltalloc) ],
|
|
[PKG_CHECK_MODULES(TEVENT, tevent)])
|