mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
acfb01a8f6
This is needed to prevent samba3 and samba4 from using an ABI incompatible system version of talloc See ongoing discussion on the samba-technical mailing list
29 lines
484 B
Plaintext
29 lines
484 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(talloc, 2.0.0)
|
|
AC_CONFIG_SRCDIR([talloc.c])
|
|
AC_SUBST(datarootdir)
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
AC_LIBREPLACE_ALL_CHECKS
|
|
|
|
AC_LD_PICFLAG
|
|
AC_LD_SHLIBEXT
|
|
AC_LD_SONAMEFLAG
|
|
AC_LD_VERSIONSCRIPT
|
|
AC_LIBREPLACE_SHLD
|
|
AC_LIBREPLACE_SHLD_FLAGS
|
|
|
|
m4_include(libtalloc.m4)
|
|
|
|
AC_PATH_PROG(XSLTPROC,xsltproc)
|
|
DOC_TARGET=""
|
|
if test -n "$XSLTPROC"; then
|
|
DOC_TARGET=doc
|
|
fi
|
|
AC_SUBST(DOC_TARGET)
|
|
|
|
m4_include(build_macros.m4)
|
|
BUILD_WITH_SHARED_BUILD_DIR
|
|
|
|
AC_OUTPUT(Makefile talloc.pc)
|