mirror of
https://github.com/samba-team/samba.git
synced 2025-11-26 04:23:49 +03:00
isolation of our portability environment from the main code, and also simplifies the includes system (no separate #ifdef _SAMBA_BUILD for tdb. ldb etc now)
17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""])
|
|
AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""])
|
|
AC_DEFUN([SMB_ENABLE], [echo -n ""])
|
|
AC_INIT(include/tdb.h)
|
|
AC_CONFIG_SRCDIR([common/tdb.c])
|
|
AC_CONFIG_HEADER(include/config.h)
|
|
AC_PROG_CC
|
|
AC_SYS_LARGEFILE
|
|
AC_CHECK_SIZEOF(off_t,cross)
|
|
AC_CHECK_SIZEOF(size_t,cross)
|
|
AC_CHECK_SIZEOF(ssize_t,cross)
|
|
AC_FUNC_MMAP
|
|
m4_include(libreplace.m4)
|
|
m4_include(libtdb.m4)
|
|
AC_OUTPUT(Makefile tdb.pc)
|