diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2022-01-27 13:21:40 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2022-01-27 13:21:40 -0500 |
| commit | 00ed51a7ba69c2de50eeb32e85aaec06a0f965da (patch) | |
| tree | 9668ed807deb8fdc52368c16cc43460d0bcb6b06 /config.mk | |
| parent | 9f2a21d78bf8443f966cb35275569e5c9d0c4ba8 (diff) | |
| download | slock-00ed51a7ba69c2de50eeb32e85aaec06a0f965da.tar.gz | |
Applied PAM patch
Because PSU machines use active directory, I applied the PAM patch
to allow slock to work on them.
https://tools.suckless.org/slock/patches/pam_auth/
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ FREETYPEINC = /usr/include/freetype2 # includes and libs INCS = -I. -I/usr/include -I${X11INC} -I${FREETYPEINC} -LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXext -lXrandr -lImlib2 +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXext -lXrandr -lImlib2 -lpam # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -DHAVE_SHADOW_H ${XINERAMAFLAGS} |