summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-03 02:28:31 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-03 02:28:31 +0200
commitadc09857420c4a9306148e8d15ff5faf633ba7a5 (patch)
tree4e0112436d3decb1aaaac5217d39af10f35b721d /source4/librpc
parent8495d17c1a97489a75b777d79e69f9680267fd28 (diff)
downloadsamba-adc09857420c4a9306148e8d15ff5faf633ba7a5.tar.gz
samba-adc09857420c4a9306148e8d15ff5faf633ba7a5.tar.bz2
samba-adc09857420c4a9306148e8d15ff5faf633ba7a5.zip
Install libevents since it's required by samba-gtk.
(This used to be commit 2073346828ffa1d9c35105eadd7afddd3a76a045)
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/dcerpc_atsvc.pc.in6
-rw-r--r--source4/librpc/rpc/dcerpc.h4
-rw-r--r--source4/librpc/rpc/dcerpc_util.c2
3 files changed, 8 insertions, 4 deletions
diff --git a/source4/librpc/dcerpc_atsvc.pc.in b/source4/librpc/dcerpc_atsvc.pc.in
index c4102237d3..060485c3fc 100644
--- a/source4/librpc/dcerpc_atsvc.pc.in
+++ b/source4/librpc/dcerpc_atsvc.pc.in
@@ -3,9 +3,9 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
-Name: dcerpc_samr
-Description: DCE/RPC client library - SAMR
+Name: dcerpc_atsvc
+Description: DCE/RPC client library - ATSVC
Requires.private: dcerpc ndr
Version: 0.0.1
-Libs: -L${libdir} -ldcerpc_samr
+Libs: -L${libdir} -ldcerpc_atsvc
Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1
diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h
index c4a48a1119..805f5463a9 100644
--- a/source4/librpc/rpc/dcerpc.h
+++ b/source4/librpc/rpc/dcerpc.h
@@ -358,5 +358,9 @@ NTSTATUS dcerpc_ndr_request(struct dcerpc_pipe *p,
TALLOC_CTX *mem_ctx,
void *r);
+NTSTATUS dcerpc_binding_from_tower(TALLOC_CTX *mem_ctx,
+ struct epm_tower *tower,
+ struct dcerpc_binding **b_out);
+
#endif /* __DCERPC_H__ */
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c
index dc57735713..3b8768ccc2 100644
--- a/source4/librpc/rpc/dcerpc_util.c
+++ b/source4/librpc/rpc/dcerpc_util.c
@@ -660,7 +660,7 @@ _PUBLIC_ enum dcerpc_transport_t dcerpc_transport_by_tower(struct epm_tower *tow
return (unsigned int)-1;
}
-NTSTATUS dcerpc_binding_from_tower(TALLOC_CTX *mem_ctx,
+_PUBLIC_ NTSTATUS dcerpc_binding_from_tower(TALLOC_CTX *mem_ctx,
struct epm_tower *tower,
struct dcerpc_binding **b_out)
{