put acl.la in 'if HAVE_ACL' and rename acl.[ch] to acl-util.[ch]

This commit is contained in:
Kay Sievers 2012-04-11 16:39:31 +02:00
parent b30e2f4c18
commit 79c077224b
5 changed files with 7 additions and 5 deletions

View File

@ -629,12 +629,13 @@ libsystemd_audit_la_LIBADD = \
libsystemd-capability.la
# ------------------------------------------------------------------------------
if HAVE_ACL
noinst_LTLIBRARIES += \
libsystemd-acl.la
libsystemd_acl_la_SOURCES = \
src/shared/acl.c \
src/shared/acl.h
src/shared/acl-util.c \
src/shared/acl-util.h
libsystemd_acl_la_CFLAGS = \
$(AM_CFLAGS) \
@ -642,6 +643,7 @@ libsystemd_acl_la_CFLAGS = \
libsystemd_acl_la_LIBADD = \
$(ACL_LIBS)
endif
# ------------------------------------------------------------------------------
noinst_LTLIBRARIES += \

View File

@ -51,7 +51,7 @@
#ifdef HAVE_ACL
#include <sys/acl.h>
#include <acl/libacl.h>
#include "acl.h"
#include "acl-util.h"
#endif
#ifdef HAVE_SELINUX

View File

@ -27,7 +27,7 @@
#include "logind-acl.h"
#include "util.h"
#include "acl.h"
#include "acl-util.h"
static int flush_acl(acl_t acl) {
acl_entry_t i;

View File

@ -25,7 +25,7 @@
#include <errno.h>
#include <stdbool.h>
#include "acl.h"
#include "acl-util.h"
int acl_find_uid(acl_t acl, uid_t uid, acl_entry_t *entry) {
acl_entry_t i;