From fce2ae459b356977aab9b0100db22047e54a994b Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Wed, 31 Mar 2010 07:27:00 +0000 Subject: access-control: Introduce new translator The access control translator is required for performing permission checks on files and directories in line with posix conformance. This is required to be kept separate from storage/posix so that ACL support can also be later integrated into this translator. Signed-off-by: Shehjar Tikoo Signed-off-by: Anand V. Avati BUG: 400 (Support auxiliary gids in GlusterFS) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=400 --- xlators/features/access-control/src/Makefile.am | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 xlators/features/access-control/src/Makefile.am (limited to 'xlators/features/access-control/src/Makefile.am') diff --git a/xlators/features/access-control/src/Makefile.am b/xlators/features/access-control/src/Makefile.am new file mode 100644 index 00000000000..6ab8cc4ec4e --- /dev/null +++ b/xlators/features/access-control/src/Makefile.am @@ -0,0 +1,13 @@ +xlator_LTLIBRARIES = access-control.la +xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/features +access_control_la_LDFLAGS = -module -avoidversion +access_control_la_SOURCES = access-control.c +access_control_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la + +noinst_HEADERS = access-control.h + +AM_CFLAGS = -fPIC -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wall -D$(GF_HOST_OS)\ + -I$(top_srcdir)/libglusterfs/src -shared -nostartfiles $(GF_CFLAGS)\ + -L$(xlatordir)/ + +CLEANFILES = -- cgit