openbsd-ports/x11/slock/patches/patch-config_mk
gsoares a11234b7ad bugfix update slock to 1.0
upstream release notes:
It contains a bugfix for hiding windows created after slock locks the screen.

It does not contain other potential features that were requested
during the years, like displaying some text in case the user hits his
keyboard. Such features will be subject to future slock releases.

OK sthen@
2012-03-15 13:12:43 +00:00

42 lines
1.1 KiB
Plaintext

$OpenBSD: patch-config_mk,v 1.5 2012/03/15 13:12:43 gsoares Exp $
--- config.mk.orig Sat Feb 11 07:51:37 2012
+++ config.mk Wed Mar 14 13:56:11 2012
@@ -4,27 +4,26 @@ VERSION = 1.0
# Customize below to fit your system
# paths
-PREFIX = /usr/local
+#PREFIX = /usr/local
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
+X11INC = ${X11BASE}/include
+X11LIB = ${X11BASE}/lib
# includes and libs
-INCS = -I. -I/usr/include -I${X11INC}
-LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext
+INCS = -I${X11INC}
+LIBS = -L${X11LIB} -lX11 -lXext
# flags
-CPPFLAGS = -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = -s ${LIBS}
+CFLAGS += ${INCS} -DVERSION=\"${VERSION}\" -DHAVE_BSD_AUTH
+LDFLAGS += ${LIBS}
# On *BSD remove -DHAVE_SHADOW_H from CPPFLAGS and add -DHAVE_BSD_AUTH
# On OpenBSD and Darwin remove -lcrypt from LIBS
# compiler and linker
-CC = cc
+CC ?= cc
# Install mode. On BSD systems MODE=2755 and GROUP=auth
# On others MODE=4755 and GROUP=root
-#MODE=2755
-#GROUP=auth
+MODE=2755
+GROUP=auth