diff options
author | Mattias Andrée <maandree@kth.se> | 2021-01-31 15:40:25 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-01-31 15:54:20 +0100 |
commit | 20c21f314fb6a6e049109e1245168957e4cf710a (patch) | |
tree | 4d9f90f36ee384e3f132e8dd796692139b4a2f47 /config.mk | |
parent | Set file owner to 0 rather than root (diff) | |
download | asroot-20c21f314fb6a6e049109e1245168957e4cf710a.tar.gz asroot-20c21f314fb6a6e049109e1245168957e4cf710a.tar.bz2 asroot-20c21f314fb6a6e049109e1245168957e4cf710a.tar.xz |
Check password
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,4 +3,6 @@ MANPREFIX = $(PREFIX)/share/man CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE CFLAGS = -std=c99 -Wall -O2 $(CPPFLAGS) -LDFLAGS = -s +LDFLAGS = -s -lcrypt + +# To use libpassphrase, add -DWITH_LIBPASSPHRASE to CPPFLAGS and -lpassphrase to LDFLAGS |