diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-06-10 14:09:20 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-06-10 14:09:20 +0000 |
commit | 50585d4c04802749c2a5e275076d43e64a6c7260 (patch) | |
tree | db2885d9d38dbffbd036d7639a9a86f5b8ff1e39 /source3 | |
parent | d286e44209006e4176a3dd08d73f28a390d7922d (diff) | |
download | samba-50585d4c04802749c2a5e275076d43e64a6c7260.tar.gz samba-50585d4c04802749c2a5e275076d43e64a6c7260.tar.bz2 samba-50585d4c04802749c2a5e275076d43e64a6c7260.zip |
removed editreg from standard build until it is portable. Right now it
fails to build on a ton of platforms as it completely bypasses all of
our portability code.
if you want it then use 'make bin/editreg'. If some distros want to
add that to their spec files then thats up to them, but we really
can't have non-portable code unconditionally built in our main tree.
(This used to be commit 3c66111f3200af2b868fde97ec19267ad81f9617)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 8b4e7bdb13..8d9ddf966c 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -125,11 +125,15 @@ SBIN_PROGS = bin/smbd@EXEEXT@ bin/nmbd@EXEEXT@ bin/swat@EXEEXT@ \ BIN_PROGS1 = bin/smbclient@EXEEXT@ bin/net@EXEEXT@ bin/smbspool@EXEEXT@ \ bin/testparm@EXEEXT@ bin/testprns@EXEEXT@ bin/smbstatus@EXEEXT@ BIN_PROGS2 = bin/smbcontrol@EXEEXT@ bin/smbtree@EXEEXT@ bin/tdbbackup@EXEEXT@ \ - bin/nmblookup@EXEEXT@ bin/pdbedit@EXEEXT@ bin/editreg@EXEEXT@ + bin/nmblookup@EXEEXT@ bin/pdbedit@EXEEXT@ BIN_PROGS3 = bin/smbpasswd@EXEEXT@ bin/rpcclient@EXEEXT@ bin/smbcacls@EXEEXT@ \ bin/profiles@EXEEXT@ bin/ntlm_auth@EXEEXT@ \ bin/smbcquotas@EXEEXT@ +# editreg removed from standard build until it is portable. It needs a major rewrite to +# achieve this (tridge) +# bin/editreg@EXEEXT@ + TORTURE_PROGS = bin/smbtorture@EXEEXT@ bin/msgtest@EXEEXT@ \ bin/masktest@EXEEXT@ bin/locktest@EXEEXT@ \ bin/locktest2@EXEEXT@ bin/nsstest@EXEEXT@ bin/vfstest@EXEEXT@ |