sneak in same non-default color (scheme) used in other suckless ports (x11/dwm and x11/tabbed) ok gsoares@ landry@
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
$OpenBSD: patch-config_mk,v 1.6 2012/10/30 17:14:53 zinke Exp $
|
|
--- config.mk.orig Thu Oct 25 21:00:04 2012
|
|
+++ config.mk Sun Oct 28 19:34:29 2012
|
|
@@ -4,27 +4,26 @@ VERSION = 1.1
|
|
# 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 -DCOLOR1=\"black\" -DCOLOR2=\"\#005577\"
|
|
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
|
|
-LDFLAGS = -s ${LIBS}
|
|
+CFLAGS += ${INCS} -DVERSION=\"${VERSION}\" -DCOLOR1=\"black\" -DCOLOR2=\"\#404040\" -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
|