0318cd94ca
-correct homepage and master_sites -update maintainer email per maintainer ok wcmaier@, "looks good for me" Gleysdon Soares (maintainer)
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
$OpenBSD: patch-config_mk,v 1.4 2009/05/31 20:00:22 jim Exp $
|
|
--- config.mk.orig Tue Jul 29 14:22:46 2008
|
|
+++ config.mk Tue May 19 16:09:12 2009
|
|
@@ -4,27 +4,26 @@ VERSION = 0.9
|
|
# 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
|