diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-28 23:38:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:10 -0500 |
commit | 1deb402445c07dae69c4637a1a4b191f10b0bee1 (patch) | |
tree | a00a004c5215201499cdc22eba01b66961e7f680 /source4/build/smb_build | |
parent | 26ced62131962d92d45b8a383d3ecf4c9af56d02 (diff) | |
download | samba-1deb402445c07dae69c4637a1a4b191f10b0bee1.tar.gz samba-1deb402445c07dae69c4637a1a4b191f10b0bee1.tar.bz2 samba-1deb402445c07dae69c4637a1a4b191f10b0bee1.zip |
r7059: Use namespaces for pidl and the build system, so we can later on
call out to the build system to compile the various pidl tests
(without having to rely on shared library support).
Initial work on an ndr_array test.
(This used to be commit 2b08c4b92b4f56180c123a502bdcc6c40188c07f)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 2 | ||||
-rw-r--r-- | source4/build/smb_build/core.m4 | 4 | ||||
-rw-r--r-- | source4/build/smb_build/main.pm | 12 |
3 files changed, 9 insertions, 9 deletions
diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index 36ce80a8eb..f6e2e4bdcd 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -7,7 +7,7 @@ ########################################################### package config_mk; -use input; +use smb_build::input; use strict; diff --git a/source4/build/smb_build/core.m4 b/source4/build/smb_build/core.m4 index 1ef6eea3ad..215ca5195e 100644 --- a/source4/build/smb_build/core.m4 +++ b/source4/build/smb_build/core.m4 @@ -19,12 +19,12 @@ dnl ) AC_DEFUN([_SMB_BUILD_CORE], [ -$PERL -I$srcdir/build/smb_build <<\_SMB_ACEOF +$PERL -I$srcdir/build <<\_SMB_ACEOF use strict; my %INPUT; -use main; +use smb_build::main; ########################################################### ### First we list all info from configure ### diff --git a/source4/build/smb_build/main.pm b/source4/build/smb_build/main.pm index 620812a457..dd0487110a 100644 --- a/source4/build/smb_build/main.pm +++ b/source4/build/smb_build/main.pm @@ -6,12 +6,12 @@ ### Released under the GNU GPL ### ########################################################### -use makefile; -use smb_build_h; -use input; -use config_mk; -use output; -use dot; +use smb_build::makefile; +use smb_build::smb_build_h; +use smb_build::input; +use smb_build::config_mk; +use smb_build::output; +use smb_build::dot; use strict; sub smb_build_main($) |