1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Fix installation of dcerpc_atsvc and registry as required by samba-gtk.

(This used to be commit 64a6887ecd)
This commit is contained in:
Jelmer Vernooij 2008-04-03 01:36:03 +02:00
parent 753824e9cf
commit 8495d17c1a
4 changed files with 19 additions and 4 deletions

View File

@ -34,6 +34,7 @@ AC_CONFIG_FILES(torture/torture.pc)
AC_CONFIG_FILES(auth/gensec/gensec.pc)
AC_CONFIG_FILES(param/samba-hostconfig.pc)
AC_CONFIG_FILES(librpc/dcerpc_samr.pc)
AC_CONFIG_FILES(librpc/dcerpc_atsvc.pc)
SMB_EXT_LIB_FROM_PKGCONFIG(LIBTALLOC, talloc >= 1.2.0,
[],

View File

@ -5,8 +5,8 @@ includedir=@includedir@
Name: registry
Description: Windows-style registry library
Requires: ldb
Requires.private:
Requires: talloc
Requires.private: ldb
Version: 0.0.1
Libs: -L${libdir} -lregistry
Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1

View File

@ -362,8 +362,8 @@ PUBLIC_DEPENDENCIES = dcerpc NDR_UNIXINFO
[LIBRARY::dcerpc_samr]
OBJ_FILES = gen_ndr/ndr_samr_c.o
PC_FILE = dcerpc_samr.pc
PUBLIC_DEPENDENCIES = dcerpc NDR_SAMR
PC_FILE = dcerpc_samr.pc
VERSION = 0.0.1
SO_VERSION = 0
@ -385,9 +385,12 @@ PUBLIC_DEPENDENCIES = dcerpc NDR_SVCCTL
PUBLIC_HEADERS += librpc/gen_ndr/ndr_svcctl_c.h
[SUBSYSTEM::dcerpc_atsvc]
[LIBRARY::dcerpc_atsvc]
OBJ_FILES = gen_ndr/ndr_atsvc_c.o
PUBLIC_DEPENDENCIES = dcerpc NDR_ATSVC
PC_FILE = dcerpc_atsvc.pc
VERSION = 0.0.1
SO_VERSION = 0
PUBLIC_HEADERS += librpc/gen_ndr/ndr_atsvc_c.h

View File

@ -0,0 +1,11 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: dcerpc_samr
Description: DCE/RPC client library - SAMR
Requires.private: dcerpc ndr
Version: 0.0.1
Libs: -L${libdir} -ldcerpc_samr
Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1