mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
r7274: Move m4 files to seperate dir
(This used to be commit 0dda66f0e8
)
This commit is contained in:
parent
03cdfbe8ac
commit
5296bd1b51
4
source4/aclocal.m4
vendored
4
source4/aclocal.m4
vendored
@ -289,5 +289,5 @@ if test "$2" != "/usr/lib" ; then
|
||||
fi
|
||||
])
|
||||
|
||||
sinclude(build/smb_build/public.m4)
|
||||
sinclude(build/smb_build/core.m4)
|
||||
sinclude(build/m4/public.m4)
|
||||
sinclude(build/m4/core.m4)
|
||||
|
@ -15,9 +15,9 @@ fi
|
||||
|
||||
SMB_INFO_BUILD_ENV=""
|
||||
|
||||
sinclude(build/smb_build/check_path.m4)
|
||||
sinclude(build/smb_build/check_perl.m4)
|
||||
sinclude(build/smb_build/check_cc.m4)
|
||||
sinclude(build/smb_build/check_ld.m4)
|
||||
sinclude(build/smb_build/check_shld.m4)
|
||||
sinclude(build/smb_build/check_types.m4)
|
||||
sinclude(build/m4/check_path.m4)
|
||||
sinclude(build/m4/check_perl.m4)
|
||||
sinclude(build/m4/check_cc.m4)
|
||||
sinclude(build/m4/check_ld.m4)
|
||||
sinclude(build/m4/check_shld.m4)
|
||||
sinclude(build/m4/check_types.m4)
|
@ -499,3 +499,20 @@ Test::test_idl("refptr-top-push-double-fstnull", \%settings,
|
||||
/* Windows gives [client runtime error 0x6f4] */
|
||||
|
||||
');
|
||||
|
||||
Test::test_idl("ignore-ptr", \%settings,
|
||||
'
|
||||
[public] void echo_TestRef([in,ignore] uint16 *foo, [in] uint16 *bar);
|
||||
',
|
||||
' struct ndr_push *ndr = ndr_push_init();
|
||||
struct echo_TestRef r;
|
||||
uint16_t v = 10;
|
||||
r.in.foo = &v;
|
||||
r.in.bar = &v;
|
||||
|
||||
if (NT_STATUS_IS_OK(ndr_push_echo_TestRef(ndr, NDR_IN, &r)))
|
||||
return 1;
|
||||
|
||||
if (ndr->offset != 4)
|
||||
return 2;
|
||||
');
|
||||
|
@ -89,6 +89,7 @@ my %property_list = (
|
||||
"ref" => ["ELEMENT"],
|
||||
"ptr" => ["ELEMENT"],
|
||||
"unique" => ["ELEMENT"],
|
||||
"ignore" => ["ELEMENT"],
|
||||
"relative" => ["ELEMENT"],
|
||||
"relative_base" => ["TYPEDEF"],
|
||||
|
||||
|
@ -31,7 +31,7 @@ BINARY:
|
||||
(e.g. 'smbtorture' or 'ldbedit')
|
||||
a BINARY typicly has only commandline handling and basic
|
||||
functionality code in it and depends on the functions of
|
||||
SUBSYSTEM's (required_subsystems/REQUIRED_SUBSYSTEMS).
|
||||
SUBSYSTEM's (REQUIRED_SUBSYSTEMS).
|
||||
|
||||
LIBRARY:
|
||||
a LIBRARY means a static and/or shared library,
|
||||
@ -39,7 +39,7 @@ LIBRARY:
|
||||
(e.g. for libldb 'libldb.so', 'libldb.so.0' 'libldb.so.0.0.1'
|
||||
and libldb.a are created on linux)
|
||||
a LIBRARY typicly has only glue code in it and depends on
|
||||
SUBSYSTEM's (required_subsystems/REQUIRED_SUBSYSTEMS).
|
||||
SUBSYSTEM's (REQUIRED_SUBSYSTEMS).
|
||||
|
||||
File summary:
|
||||
-------------
|
||||
|
@ -7,8 +7,7 @@ dnl AC_PREREQ(2.53)
|
||||
AC_INIT(include/includes.h)
|
||||
AC_CONFIG_HEADER(include/config.h)
|
||||
|
||||
sinclude(build/smb_build/env.m4)
|
||||
|
||||
SMB_INCLUDE_M4(build/m4/env.m4)
|
||||
SMB_INCLUDE_M4(build/m4/rewrite.m4)
|
||||
|
||||
SMB_INCLUDE_M4(lib/popt/config.m4)
|
||||
|
@ -539,5 +539,6 @@ NOPROTO = YES
|
||||
# Start SUBSYSTEM RPC
|
||||
[SUBSYSTEM::RPC]
|
||||
REQUIRED_SUBSYSTEMS = NDR_RAW RPC_RAW LIBSMB NDR_MISC NDR_DCERPC NDR_SCHANNEL NDR_LSA NDR_NETLOGON NDR_SAMR NDR_UNIXINFO RPC_NDR_NETLOGON RPC_NDR_EPMAPPER
|
||||
OUTPUT_TYPE = SHARED_LIBRARY
|
||||
# End SUBSYSTEM RPC
|
||||
################################################
|
||||
|
Loading…
Reference in New Issue
Block a user