diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-09 08:06:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:10 -0500 |
commit | 42889e5e1e276c8957cc666991364c6f0b6bdc79 (patch) | |
tree | 0441dc1741dbbb56997dc80f8ea6b7fb9f59ba95 /source4/Makefile.in | |
parent | 72daedbeb7aff1731468ed773c34d52cddbbe039 (diff) | |
download | samba-42889e5e1e276c8957cc666991364c6f0b6bdc79.tar.gz samba-42889e5e1e276c8957cc666991364c6f0b6bdc79.tar.bz2 samba-42889e5e1e276c8957cc666991364c6f0b6bdc79.zip |
r134: - added ldb to the build of smbd
- fixed build of the ldb registry backend
(This used to be commit 0b66590330603efaa816fd2348c05a994a1580ef)
Diffstat (limited to 'source4/Makefile.in')
-rw-r--r-- | source4/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/Makefile.in b/source4/Makefile.in index 91216d11ed..fdc87934d0 100644 --- a/source4/Makefile.in +++ b/source4/Makefile.in @@ -94,6 +94,8 @@ MODULES = $(CHARSET_MODULES) $(DCERPC_MODULES) $(NTVFS_MODULES) CHARSET_OBJS = @CHARSET_OBJS@ +LIBLDB_OBJS = @LIBLDB_OBJS@ + LIBBASIC_OBJS = @LIBBASIC_OBJS@ LIBBASIC_LIBS = @LIBBASIC_LIBS@ $(LIBS) @@ -166,7 +168,8 @@ SERVER_LIBS = SMBD_OBJS = $(SERVER_OBJS) $(PROCESS_MODEL_OBJS) \ $(DCERPC_OBJS) $(SMB_OBJS) $(AUTH_OBJS) $(PASSDB_OBJS) $(NTVFS_OBJS) \ - $(LIBBASIC_OBJS) $(CONFIG_OBJS) $(LIBCMDLINE_OBJS) $(LIBSMB_OBJS) + $(LIBBASIC_OBJS) $(CONFIG_OBJS) $(LIBCMDLINE_OBJS) $(LIBSMB_OBJS) \ + $(LIBLDB_OBJS) SMBD_LIBS = $(SERVER_LIBS) $(PROCESS_MODEL_LIBS) \ $(DCERPC_LIBS) $(SMB_LIBS) $(AUTH_LIBS) $(PASSDB_LIBS) $(NTVFS_LIBS) \ $(LIBBASIC_LIBS) $(CONFIG_LIBS) $(LIBCMDLINE_LIBS) $(LIBSMB_LIBS) @@ -201,7 +204,7 @@ REGDIFF_OBJ = $(REG_OBJS) lib/registry/tools/regdiff.o $(LIBBASIC_OBJS) $(CONFIG PROTO_OBJ = $(SERVER_OBJS) $(PROCESS_MODEL_OBJS) $(CLIENT_OBJS) $(TORTURE_OBJS) \ $(DCERPC_OBJS) $(SMB_OBJS) $(AUTH_OBJS) $(PASSDB_OBJS) $(NTVFS_OBJS) \ - $(LIBBASIC_OBJS) $(CONFIG_OBJS) $(LIBCMDLINE_OBJS) $(LIBSMB_OBJS) $(REG_OBJS) + $(LIBBASIC_OBJS) $(LIBLDB_OBJS) $(CONFIG_OBJS) $(LIBCMDLINE_OBJS) $(LIBSMB_OBJS) $(REG_OBJS) ###################################################################### @@ -365,7 +368,7 @@ bin/regpatch@EXEEXT@: $(REGPATCH_OBJ) bin/.dummy bin/regdiff@EXEEXT@: $(REGDIFF_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(REGDIFF_OBJ) $(LDFLAGS) $(LIBS) $(REG_LIBS) - + install: installbin installtorture installdat # DESTDIR is used here to prevent packagers wasting their time |