1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-29 04:23:51 +03:00
Files
samba-mirror/source/lib/basic.mk
Andrew Tridgell 0d51511d40 r3507: - added deferred replies on sharing violation in pvfs open. The
deferred reply is short-circuited immediately when the file is
  closed by another user, allowing it to be opened by the waiting user.

- added a sane set of timeval manipulation routines

- converted all the events code and code that uses it to use struct
  timeval instead of time_t, which allows for microsecond resolution
  instead of 1 second resolution. This was needed for doing the pvfs
  deferred open code, and is why the patch is so big.
2007-10-10 13:05:23 -05:00

81 lines
1.6 KiB
Makefile

# LIB BASIC subsystem
##############################
# Start SUBSYSTEM LIBREPLACE
[SUBSYSTEM::LIBREPLACE]
INIT_OBJ_FILES = lib/replace.o
ADD_OBJ_FILES = \
lib/snprintf.o
# End SUBSYSTEM LIBREPLACE
##############################
##############################
# Start SUBSYSTEM LIBNETIF
[SUBSYSTEM::LIBNETIF]
INIT_OBJ_FILES = \
lib/netif/interface.o
ADD_OBJ_FILES = \
lib/netif/netif.o
# End SUBSYSTEM LIBNETIF
##############################
##############################
# Start SUBSYSTEM LIBCRYPTO
[SUBSYSTEM::LIBCRYPTO]
INIT_OBJ_FILES = \
lib/crypto/crc32.o
ADD_OBJ_FILES = \
lib/crypto/md5.o \
lib/crypto/hmacmd5.o \
lib/crypto/md4.o
# End SUBSYSTEM LIBCRYPTO
##############################
##############################
# Start SUBSYSTEM LIBBASIC
[SUBSYSTEM::LIBBASIC]
INIT_OBJ_FILES = lib/version.o
ADD_OBJ_FILES = \
lib/debug.o \
lib/fault.o \
lib/getsmbpass.o \
lib/pidfile.o \
lib/signal.o \
lib/system.o \
lib/time.o \
lib/genrand.o \
lib/username.o \
lib/dprintf.o \
lib/xfile.o \
lib/wins_srv.o \
lib/util_str.o \
lib/util_strlist.o \
lib/util_sid.o \
lib/util_secdesc.o \
lib/util_uuid.o \
lib/util_unistr.o \
lib/util_file.o \
lib/data_blob.o \
lib/util.o \
lib/util_sock.o \
lib/talloc.o \
lib/substitute.o \
lib/fsusage.o \
lib/ms_fnmatch.o \
lib/select.o \
lib/pam_errors.o \
intl/lang_tdb.o \
lib/gencache.o \
lib/module.o \
lib/mutex.o \
lib/events.o \
lib/db_wrap.o \
lib/server_mutex.o \
lib/idtree.o \
lib/unix_privs.o
REQUIRED_SUBSYSTEMS = \
LIBTDB CHARSET LIBREPLACE LIBNETIF LIBCRYPTO
# End SUBSYSTEM LIBBASIC
##############################