summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@humppa.nl>2017-04-15 14:41:32 +0200
committerJasper Lievisse Adriaanse <jasper@humppa.nl>2017-04-17 15:06:59 +0200
commit68fc2e8b5f8bcd203598e6da2a98d5aa7359af1e (patch)
tree513909183e7b174b06f5bc2b2e66230b23dd4e4f /Makefile
parent15973d1f5225ee4fc0114d70a24a695486f482d4 (diff)
Use bsd_auth(3) instead of PAM on OpenBSD
Also apply two security measures for OpenBSD: - use explicit_bzero(3) - mlock(2) works for non-root users too
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b7eae33..3acb272 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
TOPDIR=$(shell pwd)
+UNAME=$(shell uname)
INSTALL=install
PREFIX=/usr
@@ -14,13 +15,16 @@ CFLAGS += -std=c99
CFLAGS += -pipe
CFLAGS += -Wall
CPPFLAGS += -D_GNU_SOURCE
-CPPFLAGS += -DUSE_PAM
CFLAGS += $(shell $(PKG_CONFIG) --cflags cairo xcb-composite xcb-xinerama xcb-atom xcb-image xcb-xkb xkbcommon xkbcommon-x11)
LIBS += $(shell $(PKG_CONFIG) --libs cairo xcb-composite xcb-xinerama xcb-atom xcb-image xcb-xkb xkbcommon xkbcommon-x11)
-LIBS += -lpam
LIBS += -lev
LIBS += -lm
+# OpenBSD lacks PAM, use bsd_auth(3) instead.
+ifneq ($(UNAME),OpenBSD)
+ LIBS += -lpam
+endif
+
FILES:=$(wildcard *.c)
FILES:=$(FILES:.c=.o)