From f4cb528ac510d3381a92a303e858edaf9e3d908a Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Mon, 8 Mar 2010 09:06:40 -0500 Subject: samba: remove cifs-utils tools from build systems Now that cifs-utils are their own project, we need to go ahead and pull them out of the samba tree. This patch represents the first step toward that end. Remove the cifs-utilities from the source3 and source4 builds. Please pay particular attention to the source4 piece. I'm not at all familiar with the build system there, and would appreciate someone sanity checking my changes. It also adds a small README.cifs-utils file in the topdir. This is optional, but I think it's a good idea to carry this for a release or two. Once this patch looks ok, I'll plan to do another patch to actually remove the client dir and the relevant docs-xml files from the tree altogether. Signed-off-by: Jeff Layton --- source4/client/config.m4 | 13 ------------- source4/client/config.mk | 16 ---------------- 2 files changed, 29 deletions(-) delete mode 100644 source4/client/config.m4 (limited to 'source4/client') diff --git a/source4/client/config.m4 b/source4/client/config.m4 deleted file mode 100644 index 800320d7d5..0000000000 --- a/source4/client/config.m4 +++ /dev/null @@ -1,13 +0,0 @@ -case "$host_os" in - *linux*) - SMB_ENABLE(mount.cifs, YES) - SMB_ENABLE(umount.cifs, YES) - SMB_ENABLE(cifs.upcall, NO) # Disabled for now - ;; - *) - SMB_ENABLE(mount.cifs, NO) - SMB_ENABLE(umount.cifs, NO) - SMB_ENABLE(cifs.upcall, NO) - ;; -esac - diff --git a/source4/client/config.mk b/source4/client/config.mk index dee42d016a..877544a09a 100644 --- a/source4/client/config.mk +++ b/source4/client/config.mk @@ -20,22 +20,6 @@ PRIVATE_DEPENDENCIES = \ smbclient_OBJ_FILES = $(clientsrcdir)/client.o -[BINARY::mount.cifs] -INSTALLDIR = BINDIR - -mount.cifs_OBJ_FILES = ../client/mount.cifs.o \ - ../client/mtab.o - -[BINARY::umount.cifs] -INSTALLDIR = BINDIR - -umount.cifs_OBJ_FILES = ../client/umount.cifs.o \ - ../client/mtab.o - -#[BINARY::cifs.upcall] -#INSTALLDIR = BINDIR -#cifs.upcall_OBJ_FILES = ../client/cifs.upcall.o - ################################# # Start BINARY cifsdd [BINARY::cifsdd] -- cgit