mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
1f72942873
This patch pulls the AD site name generation and site join code from
libnet/libnet_join.c and puts it into a new file, libnet/libnet_site.c.
This way, a common means for site name, configuration dn and server dn
generation exists so it doesn't need to be rewritten in new code (such
as the future libnet_leave for example).
I've made a couple of changes, but nothing dramatic. Nice work Brad!
Andrew Bartlett
(This used to be commit 45f67b3f6d
)
33 lines
974 B
Makefile
33 lines
974 B
Makefile
#################################
|
|
# Start SUBSYSTEM LIBNET
|
|
[LIBRARY::LIBNET]
|
|
MAJOR_VERSION = 0
|
|
MINOR_VERSION = 0
|
|
RELEASE_VERSION = 1
|
|
DESCRIPTION = User-friendly access to Samba interfaces
|
|
PRIVATE_PROTO_HEADER = libnet_proto.h
|
|
PUBLIC_HEADERS = libnet.h libnet_join.h libnet_lookup.h libnet_passwd.h \
|
|
libnet_rpc.h libnet_share.h libnet_time.h \
|
|
libnet_user.h libnet_site.h libnet_vampire.h \
|
|
userinfo.h userman.h
|
|
OBJ_FILES = \
|
|
libnet.o \
|
|
libnet_passwd.o \
|
|
libnet_time.o \
|
|
libnet_rpc.o \
|
|
libnet_join.o \
|
|
libnet_site.o \
|
|
libnet_vampire.o \
|
|
libnet_samdump.o \
|
|
libnet_samdump_keytab.o \
|
|
libnet_samsync_ldb.o \
|
|
libnet_user.o \
|
|
libnet_share.o \
|
|
libnet_lookup.o \
|
|
userinfo.o \
|
|
userman.o \
|
|
domain.o
|
|
REQUIRED_SUBSYSTEMS = RPC_NDR_SAMR RPC_NDR_LSA RPC_NDR_SRVSVC RPC_NDR_DRSUAPI LIBCLI_COMPOSITE LIBCLI_RESOLVE LIBCLI_FINDDCS LIBSAMBA3 LIBCLI_CLDAP LIBCLI_FINDDCS gensec_schannel
|
|
# End SUBSYSTEM LIBNET
|
|
#################################
|