summaryrefslogtreecommitdiff
path: root/source3/rpc_server/wscript_build
AgeCommit message (Collapse)AuthorFilesLines
2013-09-24build: get rid of source variables and vars=locals() in ↵Michael Adam1-68/+52
source3/rpc_server/wscript_build Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Günther Deschner <gd@samba.org>
2012-02-16s3-librpc: Use gensec_spnego for DCE/RPC authenticationAndrew Bartlett1-1/+1
This ensures that we use the same SPNEGO code on session setup and on DCE/RPC binds, and simplfies the calling code as spnego is no longer a special case in cli_pipe.c A special case wrapper function remains to avoid changing the application layer callers in this patch. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
2012-02-10s3-waf: add dependency on talloc or it won't build if talloc.h is not in the ↵Matthieu Patou1-1/+2
default include path The problem occurs only if talloc, tdb and ldb are used as system libraries and talloc is not installed in a default. Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Fri Feb 10 23:27:29 CET 2012 on sn-devel-104
2012-01-25s3-waf: Fix cups dependency in PRINTING.Andreas Schneider1-1/+1
2012-01-25s3-waf: Add missing dependency to RPC_WINREG.Andreas Schneider1-1/+1
2012-01-18s3-librpc Remove unused dcesrv_gssapi.[ch] functionsAndrew Bartlett1-1/+1
The code from dcesrv_gssapi.c is now in source3/auth/auth_generic.c as an auth callback. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
2011-12-22s3-rpc_server: Rename dcesrv_ntlmssp.[ch] to dcesrv_auth_generic.[ch]Andrew Bartlett1-1/+1
Signed-off-by: Stefan Metzmacher <metze@samba.org>
2011-08-21s3-waf: Fix build with lsasd.Andreas Schneider1-0/+4
Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Simo Sorce <idra@samba.org>
2011-08-21s3-rpc_server: Move config helpers in one place.Simo Sorce1-2/+5
Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Simo Sorce <idra@samba.org>
2011-08-01s3-rpc_server: Use binding vector in rpc_ep_try_register().Andreas Schneider1-1/+1
2011-08-01s3-rpc_server: Rename to rpc service setup.Andreas Schneider1-1/+1
2011-08-01s3-rpc_server: Move the endpoint registration to own file.Andreas Schneider1-2/+2
2011-07-08s3-waf: split out LIBCLI_WINREG_INTERNAL as LIBCLI_WINREG was pulling in rpc ↵Günther Deschner1-3/+3
server code in undesired places. Andreas, please check. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Jul 8 18:34:44 CEST 2011 on sn-devel-104
2011-07-07s3-waf: Fix linking bugs causing segfaults.Andreas Schneider1-1/+1
As auth_util.c is linked several times the static variables have different address on different calls. This leads to segfaults. Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Thu Jul 7 16:50:05 CEST 2011 on sn-devel-104
2011-06-28s3-waf: add some missing tdb dependencies.Günther Deschner1-1/+1
Guenther
2011-06-21lib/util Remove samba-util-common!Andrew Bartlett1-12/+12
All of this code is now in common, so we don't need the second '-common' library any more! Andrew Bartlett
2011-06-01s3-rpc_server: Move the context functions to own file.Andreas Schneider1-1/+1
2011-05-25Fix numerous missing dependencies in WAF build scriptsSean Finney1-5/+17
With the recent consolidation of code between s3 and s4, a number of new dependencies have been implicitly introduced. For example, previous s3 code gained an implicit dependency on talloc after the charset related consolidation (lib/util/charset/charset.h now includes talloc.h). When building against the embedded version of talloc this isn't a problem since the paths are automatically added to the search path, but when building against the external libraries build failures will occur for all components that don't directly or indirectly include talloc as a dependency. Since charset.h is included from util.h, which in turn is included from includes.h, this means most of the codebase (s3 and s4) has such an undeclared dependency. Therefore, samba-util-common and samba-util have been added as dependencies to the s3 and s4 code respectively, for all cases where the source would otherwise fail to build. Additionally, a few other dependencies are added in specific wscript_build files to address similar dependency-related problems. https://bugzilla.samba.org/show_bug.cgi?id=8128 Signed-off-by: Sean Finney <seanius@seanius.net> Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Wed May 25 19:22:13 CEST 2011 on sn-devel-104
2011-05-18build: Add depenencies needed by Samba3 subsystemsAndrew Bartlett1-2/+3
2011-04-29build: Fix kerberos build issues in top level buildAndrew Bartlett1-1/+2
2011-03-30s3-rpc_server: move access check functions out of samr server.Günther Deschner1-1/+5
Guenther
2011-03-08s3-waf: fix the build.Günther Deschner1-0/+3
Guenther Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-21s3-rpc_server: Rename srv_rpc_register.c.Andreas Schneider1-1/+1
2011-02-18s3-waf: use SAMBA3_*() build rules in source3/buildAndrew Tridgell1-22/+22
this brings the s3 waf build much closer to the proposed s3build top level build, using the same bld.SAMBA3_*() rules There are a few renames of subsystems in here, with a 3 suffix where it would create a conflict. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2011-02-10s3-rpc_server: move services into individual directories.Günther Deschner1-18/+18
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Feb 10 22:13:17 CET 2011 on sn-devel-104
2011-02-10s3-waf: fix the build after auth changes.Günther Deschner1-2/+3
Andrews, please check. Guenther
2011-02-07s3-waf: fix the build after winreg and rpc services changes.Günther Deschner1-5/+5
Andreas, please check. Guenther Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Mon Feb 7 13:18:41 CET 2011 on sn-devel-104
2011-02-02s3-waf: fix the build after epmapper changes.Günther Deschner1-1/+10
Andreas, please check. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 2 17:14:40 CET 2011 on sn-devel-104
2011-01-14s3-waf: fix the build after rpc_winreg removal.Günther Deschner1-1/+1
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Jan 14 11:38:40 CET 2011 on sn-devel-104
2011-01-04s3-waf: Fixed the static rpc service build.Andreas Schneider1-116/+69
Autobuild-User: Andreas Schneider <asn@samba.org> Autobuild-Date: Tue Jan 4 12:09:48 CET 2011 on sn-devel-104
2010-12-15s3-waf: rework rpc_server handling a bit.Günther Deschner1-1/+18
Guenther
2010-12-07s3-waf: fix pam dependencies of the RPC_SAMR server.Günther Deschner1-0/+1
Guenther
2010-12-01s3-waf: avoid module name uppercasing.Günther Deschner1-28/+28
This finally allows mixed case module names like the classic build (./configure --shared_modules=charset_CP850) Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Dec 1 18:39:14 CET 2010 on sn-devel-104
2010-12-01s3-waf: convert RPC_LSARPC into a subsystem.Günther Deschner1-2/+7
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Dec 1 00:13:58 CET 2010 on sn-devel-104
2010-11-30s3-waf: convert RPC_SAMR into a subsystem.Günther Deschner1-2/+7
Guenther
2010-10-25s3-waf: fixed paths in s3 waf build for rpc_serverAndrew Tridgell1-14/+14
paths in waf rules are relative Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-10-19s3-waf: convert rpc into a subsystem.Günther Deschner1-0/+126
Guenther