diff options
author | Aaron Marcher <me@drkhsh.at> | 2020-11-30 20:56:21 +0100 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2020-11-30 21:24:34 +0100 |
commit | e4713b5acee304860dc9b3ba49a9e51464741713 (patch) | |
tree | d7e24a0c812f209dbc907abf32e16bbf369f56ad | |
parent | d8660ffe39900abb634801f0eec36ee98cca75a5 (diff) |
Add comment for FreeBSD to config.mk
Apparently `-lkvm` is needed for swap on FreeBSD
Thanks to Micheal Buch and Jason Smith
(See thread https://lists.suckless.org/dev/1907/33594.html)
-rw-r--r-- | config.mk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os LDFLAGS = -L$(X11LIB) -s # OpenBSD: add -lsndio +# FreeBSD: add -lkvm LDLIBS = -lX11 # compiler and linker |