summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
2008-01-20Remove the dynamic registry overlay.Michael Adam1-2/+1
It is unnecessary now the dynamic functions have been made registry backends of their own. Michael (This used to be commit e327953bd6b11aeb6f2ae48b49550a942eae8e88)
2008-01-20Add a registry backend perflib that replaces the former dynamic overlay.Michael Adam1-0/+1
Michael (This used to be commit c3fba415951329ee90c7250b4e8d539f91b227f6)
2008-01-20Add a registry backend current_version that replaces the former dynamic overlay.Michael Adam1-0/+1
Make sure to only respond to the exact current version key since subkeys are registered by other backends (printing and - soon - perflib). Michael (This used to be commit 2c650bf63ccd9dc5dddbf4700831489544ded055)
2008-01-20Add a registry backend hkpt_params that replaces the former dynamic overlay.Michael Adam1-0/+1
Michael (This used to be commit 8e8bb6ba120adf9942f612b7fd89bdbced6c1285)
2008-01-20Add a registry backend tcpip_params that replaces the former dynamic overlay.Michael Adam1-0/+1
Michael (This used to be commit a8a743b693a162954948ca2438ce4b842c5cba30)
2008-01-20Add a registry backend prod_options that replaces the former dynamic overlay.Michael Adam1-0/+1
Michael (This used to be commit d9b89e9d30702f64805b3a3a3612066b19c051d1)
2008-01-19vfs_streams_depotVolker Lendecke1-0/+5
Store streams in a file each. Not 100% finished, and not built by default. (This used to be commit 5f5fc72b01c8e8fc096375c7cb4a97186c387259)
2008-01-19vfs_streams_xattr moduleVolker Lendecke1-0/+5
Store streams in posix xattrs. A kludge, as xattrs are limited in many ways, but it might be a help for some situations. (This used to be commit 83a805220e52742119546c76a054d50582e33a24)
2008-01-19Link ndr_xattr.o with LIBNDR_GEN_OBJVolker Lendecke1-1/+2
It will be used elsewhere (net xattr for example) (This used to be commit 924c4ede2acbd4e1d327ccdefc92bbbb3d67d7d8)
2008-01-18Add a registry backend netlogon_params that replaces the former dynamic overlay.Michael Adam1-0/+1
This is the first step in replacing the dynamic overlays by proper backends implementing REGISTRY_OPS. Michael (This used to be commit e8a0524961d81fa83e0316905dc9d215e4aa7656)
2008-01-17Finally enable pidl generated SAMR & NETLOGON headers and clients.Günther Deschner1-0/+4
Guenther (This used to be commit f7100156a7df7ac3ae84e45a47153b38d9375215)
2008-01-17Re-run make idl to generate SAMR output.Günther Deschner1-1/+1
Guenther (This used to be commit b4c1904022cd34c239f163d49d5a13925d238cda)
2008-01-17Use pidl generated data from misc.idl.Günther Deschner1-3/+8
Guenther (This used to be commit 5d8e5cbc3b3ddd1c5788d66f252e4801739243bb)
2008-01-16Enable building of VFS modules: vfs_tsmsm, vfs_shadowcopy2 and IDMAP module ↵Alexander Bokovoy1-1/+15
idmap_tdb2 Signed-off-by: Alexander Bokovoy <ab@samba.org>(This used to be commit 136c024c9a32ca8ca33cb36b9a6b731237179af5)
2008-01-15rename vfs_ea_tdb to vfs_xattr_tdbVolker Lendecke1-3/+3
(This used to be commit 151b42a150a17f566e7b4055bbdbc0564a3c106d)
2008-01-15libwbclient: don't link talloc.o into libwbclient.aStefan Metzmacher1-2/+2
hopefully fix the build...(and hopefully the correct fix) metze (This used to be commit 561e529a711338b2a3191f1b04f384f5ab3413ac)
2008-01-15Revert "libwbclient: don't link talloc.o into libwbclient.a"Stefan Metzmacher1-2/+2
This reverts commit 9a4b6fd3e21f54a0ff83f1fd0d0d5331a2cfdd0a. Sorry... metze (This used to be commit 58c806dbf85fd634c8f3559a035751a4cd0b5c4b)
2008-01-15Use autogenerated libnet_join header.Günther Deschner1-1/+2
Guenther (This used to be commit d94bd3a03b574b3fdddd62add25b0c04673500a3)
2008-01-15libwbclient: don't link talloc.o into libwbclient.aStefan Metzmacher1-2/+2
hopefully fix the build... metze (This used to be commit 9a4b6fd3e21f54a0ff83f1fd0d0d5331a2cfdd0a)
2008-01-15krb5_locator: winbind_krb5_locator.o doesn't need socket wrapper any moreStefan Metzmacher1-1/+1
metze (This used to be commit a5fb8b443a7c4ebf68ed005990683718c1092747)
2008-01-15nss_winbind: nss_winbind.so doesn't need socket wrapper any moreStefan Metzmacher1-1/+1
metze (This used to be commit ed559b4a59e826851cb9894f0e519eaedb523f9d)
2008-01-15pam_winbind: pam_winbind.so doesn't need soecket wrapper any moreStefan Metzmacher1-1/+1
metze (This used to be commit e37859164c35e8d908f3dfcc99226ee6773ba0a8)
2008-01-15libwbclient: libwbclient.so doesn't need socket nor nss wrapper any moreStefan Metzmacher1-4/+4
metze (This used to be commit 4f05b50d4c626f2c404bb4bfefb65998125b612f)
2008-01-15Implement vfs_ea_tdbVolker Lendecke1-1/+6
This is an option for file systems that do not implement xattrs: in lockdir/eas.tdb an array of xatts per inode is stored. It can not solve the problem that xattrs might reappear if a posix-level process deletes a file and happens to re-create it under the same name. On file systems with birthtime we might have a chance to detect this, but not with standard posix. A future version might put relief on file systems that do have xattrs but where these are severely limited in size/speed/whatever: We can put a simple marker as a native xattr, but the xattrs proper are stored in the tdb. Volker (This used to be commit 2036b4c5ad677b8a477b34b0f076febab0abff5e)
2008-01-15libwbclient: install wbclient.h into the same path as smbclient.hStefan Metzmacher1-2/+3
metze (This used to be commit 7cb81bfc6bcdd56a8886e18aa9a7e05ec963d33d)
2008-01-14Fix "make test_shlibs": it showed unresolved symbols for -lwbclient.Michael Adam1-4/+7
Michael (This used to be commit 9a435b510f8ccfd0ca3b3d100d6176e643273578)
2008-01-14Revert ""make test_shlibs" shows unresolved symbols for -lwbclient."Günther Deschner1-2/+1
This reverts commit 0093f618e91f7dcc69d57dbd09d23acc614999aa. (This used to be commit ad6cb9afc9794b226e3453d36865edfe5a15f572)
2008-01-14"make test_shlibs" shows unresolved symbols for -lwbclient.Günther Deschner1-1/+2
Guenther (This used to be commit 0093f618e91f7dcc69d57dbd09d23acc614999aa)
2008-01-12One more empty lineVolker Lendecke1-2/+2
(This used to be commit 10b6f52910b4d29da4ea74740a174654dd1d8e8e)
2008-01-10--enable-libwbclient-sharedVolker Lendecke1-24/+23
This patch adds the configure option --enable-libwbclient-shared that defaults to yes. If you set --enable-developer=yes, then you can say --enable-libwbclient-shared=no to avoid problems you might have with the wrong shared libaries. Jerry, is this acceptable to you? If yes, please push. Thanks! Volker (This used to be commit 7a88cd61e09f6db9db38916704ae65e03b33139c)
2008-01-10Move transfer_file and transfer_file_internal to a module of their own.Michael Adam1-1/+2
Also, don't auto-generate prototypes of the (two) exported functions but make a start in having handwritten prototypes in dedicated header files (not in includes.h ... :-) Michael (This used to be commit 395f29d8b768a56af20b37f185eccdc5f37b68d5)
2008-01-10Fix suspicious Makefile lineVolker Lendecke1-2/+2
If @WINBIND_KRB5_LOCATOR@ is not defined, this leads to a line with just one tab in. (This used to be commit af07adaf4293899fcbded666289ffa7479ca0501)
2008-01-08Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into v3-2-testJelmer Vernooij1-0/+1
(This used to be commit ea36c3add588061cf338deabb2d8952f2213a8bd)
2008-01-06Remove vlp.o in make clean.Michael Adam1-0/+1
Michael (This used to be commit 020ed731b17ac00dd490f210f108eae249fb27ad)
2008-01-06Use metze's approach.Jelmer Vernooij1-2/+2
(This used to be commit 126cc075995ffaeb65317627acae05c1b96cebd0)
2008-01-05Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into v3-2-testJelmer Vernooij1-6/+15
(This used to be commit 5a30f6377d37d8a5cadce4fb9a2fc19b78fc1709)
2008-01-05selftest: Use platform-specific equivalents of LD_LIBRARY_PATH for Samba4's ↵Jelmer Vernooij1-2/+5
smbtorture. (This used to be commit 64ff1dad8664f14030c7d78c252d946216798a88)
2008-01-02Fix libnetapi (resolve dependency on libwbclient).Günther Deschner1-1/+1
Guenther (This used to be commit fa669b307c5191f1f8921e863e88c1e9ff692557)
2008-01-02Fix libsmbclient (resolve dependency on libwbclient).Günther Deschner1-1/+1
Guenther (This used to be commit ef17dc7bda98a8e4149e98fcfb99fe729edbec1f)
2008-01-02Make libsmbsharemodes.so work again (fix unresolved tdb symbols).Günther Deschner1-1/+1
Guenther (This used to be commit 3c6ed0321606f0bcfc3b5edc492d69b0e2f602cb)
2008-01-02Add test_shlibs to Makefile.Günther Deschner1-0/+8
Guenther (This used to be commit 5f5051911c25772c7fb4ff41fca0aafae371ae4f)
2007-12-28bin/vlp needs a dependency on @LIBWBCLIENT_SHARED@Volker Lendecke1-1/+1
This failed to link if you compile with -j. (This used to be commit fed8f2abd704d1993146ad462d81f69367537cfb)
2007-12-26Add SMB encryption. Still fixing client decrypt butJeremy Allison1-2/+2
negotiation works. Jeremy. (This used to be commit d78045601af787731f0737b8627450018902b104)
2007-12-25make clean should remove everything in bin/Volker Lendecke1-0/+1
Jerry, you might want to review/change removing libwbclient.so.0 (This used to be commit 768e0439507caeff430358eb24dc9288a21c8a03)
2007-12-23Attempt to fix the Solaris buildVolker Lendecke1-1/+1
Lets see what the others in the build farm think about this (This used to be commit c2a988d8427b7598291ae6999b5258e2b6a2e7cb)
2007-12-22Fix the build of cifs.spnego.Günther Deschner1-1/+1
Guenther (This used to be commit b4a4a2b2933d693876b67231f747e1e232936054)
2007-12-21Fix install - it was trying to install libnetapi.h whereasJeremy Allison1-2/+2
the actual file is netapi.h. Guenther please check which name this should be ! Jeremy. (This used to be commit 035fadaa596e893b7eeac09bc587ad3b73f77d0b)
2007-12-21Fix make test by adding winbind libs to vlp.Jeremy Allison1-1/+1
Jeremy. (This used to be commit abba6717b5da709ae9cf3097042228ddbe630cca)
2007-12-21Actually fix the merge.Jeremy Allison1-5/+0
Jeremy. (This used to be commit c855de0c05e2e271e2610de67a6d7e3aba52390f)
2007-12-21Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison1-0/+5
v3-2-test Conflicts: source/Makefile.in (This used to be commit 351df194a927371600824f4c03d8a24b95fbef64)