mirror of
https://github.com/samba-team/samba.git
synced 2025-08-05 12:22:11 +03:00
Import talloc_stack into util library.
This commit is contained in:
@ -26,6 +26,7 @@ LIBSAMBA-UTIL_OBJ_FILES = $(addprefix $(libutilsrcdir)/, \
|
|||||||
idtree.o \
|
idtree.o \
|
||||||
become_daemon.o \
|
become_daemon.o \
|
||||||
rbtree.o \
|
rbtree.o \
|
||||||
|
talloc_stack.o \
|
||||||
params.o)
|
params.o)
|
||||||
|
|
||||||
PUBLIC_HEADERS += $(addprefix $(libutilsrcdir)/, util.h \
|
PUBLIC_HEADERS += $(addprefix $(libutilsrcdir)/, util.h \
|
||||||
|
@ -44,6 +44,7 @@ extern const char *panic_action;
|
|||||||
#include "../lib/util/xfile.h"
|
#include "../lib/util/xfile.h"
|
||||||
#include "../lib/util/mutex.h"
|
#include "../lib/util/mutex.h"
|
||||||
#include "../lib/util/byteorder.h"
|
#include "../lib/util/byteorder.h"
|
||||||
|
#include "../lib/util/talloc_stack.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* assert macros
|
* assert macros
|
||||||
|
@ -320,7 +320,7 @@ UTIL_OBJ = ../lib/util/rbtree.o ../lib/util/signal.o ../lib/util/time.o \
|
|||||||
../lib/util/xfile.o ../lib/util/util_strlist.o \
|
../lib/util/xfile.o ../lib/util/util_strlist.o \
|
||||||
../lib/util/util_file.o ../lib/util/data_blob.o \
|
../lib/util/util_file.o ../lib/util/data_blob.o \
|
||||||
../lib/util/util.o ../lib/util/fsusage.o \
|
../lib/util/util.o ../lib/util/fsusage.o \
|
||||||
../lib/util/params.o
|
../lib/util/params.o ../lib/util/talloc_stack.o
|
||||||
|
|
||||||
CRYPTO_OBJ = ../lib/crypto/crc32.o ../lib/crypto/md5.o \
|
CRYPTO_OBJ = ../lib/crypto/crc32.o ../lib/crypto/md5.o \
|
||||||
../lib/crypto/hmacmd5.o ../lib/crypto/arcfour.o \
|
../lib/crypto/hmacmd5.o ../lib/crypto/arcfour.o \
|
||||||
@ -328,7 +328,7 @@ CRYPTO_OBJ = ../lib/crypto/crc32.o ../lib/crypto/md5.o \
|
|||||||
|
|
||||||
LIB_OBJ = $(LIBSAMBAUTIL_OBJ) $(UTIL_OBJ) $(CRYPTO_OBJ) \
|
LIB_OBJ = $(LIBSAMBAUTIL_OBJ) $(UTIL_OBJ) $(CRYPTO_OBJ) \
|
||||||
lib/messages.o librpc/gen_ndr/ndr_messaging.o lib/messages_local.o \
|
lib/messages.o librpc/gen_ndr/ndr_messaging.o lib/messages_local.o \
|
||||||
lib/messages_ctdbd.o lib/packet.o lib/ctdbd_conn.o lib/talloc_stack.o \
|
lib/messages_ctdbd.o lib/packet.o lib/ctdbd_conn.o \
|
||||||
lib/interfaces.o lib/memcache.o \
|
lib/interfaces.o lib/memcache.o \
|
||||||
lib/util_transfer_file.o lib/async_req.o \
|
lib/util_transfer_file.o lib/async_req.o \
|
||||||
lib/async_sock.o \
|
lib/async_sock.o \
|
||||||
|
@ -654,7 +654,7 @@ struct smb_iconv_convenience *lp_iconv_convenience(void *lp_ctx);
|
|||||||
#include "dbwrap.h"
|
#include "dbwrap.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include "ctdbd_conn.h"
|
#include "ctdbd_conn.h"
|
||||||
#include "talloc_stack.h"
|
#include "../lib/util/talloc_stack.h"
|
||||||
#include "memcache.h"
|
#include "memcache.h"
|
||||||
#include "async_req.h"
|
#include "async_req.h"
|
||||||
#include "async_smb.h"
|
#include "async_smb.h"
|
||||||
|
Reference in New Issue
Block a user