diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-02-22 10:13:12 +0000 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-02-22 10:13:12 +0000 |
commit | 98e2fef63d2e6dbda63929867db70bee1f8b55f5 (patch) | |
tree | 1b15d1afa22d6411b4c95e525b7d76eab7d853d3 /config.mk | |
parent | a430a647e48a894499143b03da86e5707b4127df (diff) |
applied two patches, BSD_AUTH patch and Gottox' DPMS support patch
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -11,17 +11,22 @@ X11LIB = /usr/X11R6/lib # includes and libs INCS = -I. -I/usr/include -I${X11INC} -LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext # flags -CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H LDFLAGS = ${LIBS} #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H #LDFLAGS = -g ${LIBS} -# On *BSD remove -DHAVE_SHADOW_H from CFLAGS +# On *BSD remove -DHAVE_SHADOW_H from CFLAGS and add -DHAVE_BSD_AUTH # On OpenBSD and Darwin remove -lcrypt from LIBS # compiler and linker CC = cc LD = ${CC} + +# Install mode. On BSD systems MODE=2755 and GROUP=auth +# On others MODE=4755 and GROUP=root +#MODE=2755 +#GROUP=auth |