diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-17 00:51:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:50 -0500 |
commit | e73d051e20f18ab981f540a7178900ac3f3c45fd (patch) | |
tree | a70f698c9d978ed5f6d6fa2fdc67f94b8fdd1e77 /source4/utils | |
parent | 29a8069aee510c9dcc1a216a52cc53639621caf9 (diff) | |
download | samba-e73d051e20f18ab981f540a7178900ac3f3c45fd.tar.gz samba-e73d051e20f18ab981f540a7178900ac3f3c45fd.tar.bz2 samba-e73d051e20f18ab981f540a7178900ac3f3c45fd.zip |
r6839: Add support for building subsystems as shared libraries. This can be
done by setting:
OUTPUT_TYPE = SHARED_LIBRARY
in the [SUBSYSTEM::...] section belonging to a subsystem.
The idea is to allow multiple values to OUTPUT_TYPE simultaneously
(e.g. OUTPUT_TYPE = SHARED_LIBRARY, STATIC_LIBRARY, OBJLIST )
(This used to be commit b9d0ae93ba86fec0115f58e7940b2a6c908bc809)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/config.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/utils/config.mk b/source4/utils/config.mk index 58aafe3c24..1854042d65 100644 --- a/source4/utils/config.mk +++ b/source4/utils/config.mk @@ -10,8 +10,8 @@ REQUIRED_SUBSYSTEMS = \ LIBCMDLINE \ LIBBASIC \ NDR_ALL \ - LIBRPC -# FIXME: ndrdump shouldn't have to depend on LIBRPC... + RPC +# FIXME: ndrdump shouldn't have to depend on RPC... # End BINARY ndrdump ################################# @@ -25,7 +25,7 @@ REQUIRED_SUBSYSTEMS = \ LIBCMDLINE \ LIBBASIC \ LIBSMB \ - LIBRPC + RPC # End BINARY ntlm_auth ################################# @@ -38,7 +38,7 @@ REQUIRED_SUBSYSTEMS = \ CONFIG \ LIBCMDLINE \ LIBBASIC \ - LIBRPC \ + RPC \ NDR_XATTR # End BINARY getntacl ################################# @@ -52,7 +52,7 @@ REQUIRED_SUBSYSTEMS = \ CONFIG \ LIBCMDLINE \ LIBBASIC \ - LIBRPC + RPC # End BINARY setntacl ################################# @@ -65,7 +65,7 @@ REQUIRED_SUBSYSTEMS = \ CONFIG \ LIBCMDLINE \ LIBBASIC \ - LIBRPC \ + RPC \ NDR_XATTR \ NDR_SAMR # End BINARY setnttoken |