diff options
author | Michael Adam <obnox@samba.org> | 2008-08-06 13:56:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-08-06 13:56:52 +0200 |
commit | e9a501a501e111208cc39f3a9f8c345b8c55ad97 (patch) | |
tree | 959f21c299b7d4f5267ca7a05cf2baaca1207be3 /source3/Makefile.in | |
parent | f8534d5c78bf98a54e918aa62f5cea812483f17a (diff) | |
download | samba-e9a501a501e111208cc39f3a9f8c345b8c55ad97.tar.gz samba-e9a501a501e111208cc39f3a9f8c345b8c55ad97.tar.xz samba-e9a501a501e111208cc39f3a9f8c345b8c55ad97.zip |
libnetapi: fix build of shared library after libnet_join changes.
This needs create_builtin_administrators() and create_builtin_users()
from token_utils now. Did not pop up because the only users of the
shared lib currently are the examples in lib/netapi/examples/
which are not automatically built.
Michael
(This used to be commit 8dca23a5597a717c7f79bab0494122e71528272b)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5dbac10cf8a..fa58378edab 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1839,7 +1839,8 @@ LIBNETAPI_OBJ = $(LIBNETAPI_OBJ1) $(LIBNET_OBJ) \ $(LIBSMB_OBJ) $(KRBCLIENT_OBJ) \ $(LIBMSRPC_OBJ) $(LIBMSRPC_GEN_OBJ) $(RPC_PARSE_OBJ) \ $(PASSDB_OBJ) @LIBWBCLIENT_STATIC@ $(SMBLDAP_OBJ) $(GROUPDB_OBJ) $(LDB_OBJ) \ - $(DCUTIL_OBJ) $(LIBADS_OBJ) $(PRIVILEGES_BASIC_OBJ) + $(DCUTIL_OBJ) $(LIBADS_OBJ) $(PRIVILEGES_BASIC_OBJ) \ + auth/token_util.o LIBNETAPI_SHARED_TARGET=@LIBNETAPI_SHARED_TARGET@ LIBNETAPI_SOVER=@LIBNETAPI_SOVER@ |