aboutsummaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk15
1 files changed, 14 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 9d37cc3..85ddc17 100644
--- a/config.mk
+++ b/config.mk
@@ -1,3 +1,7 @@
+# optional features
+HAVE_ACL=0
+HAVE_SELINUX=0
+
# vis version
# we have no tags in git, so just use revision count an hash for now
GITREVCOUNT = "$(shell git rev-list --count master 2>/dev/null)"
@@ -18,7 +22,16 @@ LIBS = -lc -lncursesw
OS = $(shell uname)
-ifeq (${OS},Darwin)
+ifeq (${OS},Linux)
+ ifeq (${HAVE_SELINUX},1)
+ CFLAGS += -DHAVE_SELINUX
+ LIBS += -lselinux
+ endif
+ ifeq (${HAVE_ACL},1)
+ CFLAGS += -DHAVE_ACL
+ LIBS += -lacl
+ endif
+else ifeq (${OS},Darwin)
LIBS = -lc -lncurses
CFLAGS += -D_DARWIN_C_SOURCE
else ifeq (${OS},OpenBSD)