diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-01-03 15:55:27 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-01-03 16:43:15 -0500 |
commit | d874481987c381fd572a6f3c43840c50111a9554 (patch) | |
tree | 991fe47290d47125d5f14fe73ec8d9f8010aae47 /GNUmakefile | |
parent | 976514edfb6063170049f561f5edbf330bbe4132 (diff) | |
download | bfs-d874481987c381fd572a6f3c43840c50111a9554.tar.xz |
fsade: Fix ACL checks on DragonFly BSD
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index a4d1c2d..7680cb3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -160,6 +160,10 @@ ifeq ($(OS),NetBSD) LOCAL_LDLIBS += -lutil endif +ifeq ($(OS),DragonFly) +LOCAL_LDLIBS += -lposix1e +endif + ifneq ($(filter gcov,$(MAKECMDGOALS)),) LOCAL_CFLAGS += --coverage # gcov only intercepts fork()/exec() with -std=gnu* |