mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r18098: use m4_include() instead of sinclude()
this breaks ./autogen.sh in lib/ldb/, but the ldb build is broken
anyway
metze
(This used to be commit 816fa197a7
)
This commit is contained in:
parent
2249817680
commit
99b2e8fdc9
@ -48,10 +48,10 @@ AC_SUBST(MODULESDIR)
|
||||
TESTS=""
|
||||
EXTRA_OBJ=""
|
||||
|
||||
sinclude(popt.m4)
|
||||
sinclude(replace/config.m4)
|
||||
m4_include(popt.m4)
|
||||
m4_include(../replace/libreplace.m4)
|
||||
|
||||
sinclude(ldap.m4)
|
||||
m4_include(ldap.m4)
|
||||
if test x"$with_ldap_support" = x"yes"; then
|
||||
LIBS="$LIBS -llber -lldap"
|
||||
CFLAGS="$CFLAGS -DHAVE_LDAP=1"
|
||||
@ -59,7 +59,7 @@ if test x"$with_ldap_support" = x"yes"; then
|
||||
TESTS="$TESTS test-ldap.sh"
|
||||
fi
|
||||
|
||||
sinclude(sqlite3.m4)
|
||||
m4_include(sqlite3.m4)
|
||||
if test x"$with_sqlite3_support" = x"yes"; then
|
||||
LIBS="$LIBS -lsqlite3"
|
||||
CFLAGS="$CFLAGS -DHAVE_SQLITE3=1"
|
||||
@ -70,10 +70,10 @@ fi
|
||||
AC_SUBST(TESTS)
|
||||
AC_SUBST(EXTRA_OBJ)
|
||||
|
||||
sinclude(replace.m4)
|
||||
m4_include(replace.m4)
|
||||
SMB_REPLACE_FUNCS(strtoll)
|
||||
|
||||
sinclude(config.m4)
|
||||
sinclude(../talloc/config.m4)
|
||||
sinclude(../tdb/config.m4)
|
||||
m4_include(config.m4)
|
||||
m4_include(../talloc/config.m4)
|
||||
m4_include(../tdb/config.m4)
|
||||
AC_OUTPUT(Makefile ldb.pc)
|
||||
|
@ -11,5 +11,5 @@ AC_CHECK_SIZEOF(off_t,cross)
|
||||
AC_CHECK_SIZEOF(size_t,cross)
|
||||
AC_CHECK_SIZEOF(ssize_t,cross)
|
||||
AC_FUNC_MMAP
|
||||
sinclude(config.m4)
|
||||
m4_include(config.m4)
|
||||
AC_OUTPUT(Makefile tdb.pc)
|
||||
|
Loading…
Reference in New Issue
Block a user