c26ed8a311
I2CB icbd -- the Improved ICB Server ------------------------------------ ICBD is an online chat system which allows a large number of users to participate in realtime online discussions. Among the features of the ICB chat system are: * Simple, fast protocol and efficient polling-based implementation minimize `lag' effects * Persistent user database allows authentication of nicknames, storage of various user information, and leaving messages for users who are not logged on at the moment. * Any user may create groups, and exercise control over those groups, allowing for a wide range of discussion styles. This control includes making groups public or private, visible or invisible, and moderated or unmoderated * The fabulous, famous '/brick' command lends true interactivity to the chat experience :-)
21 lines
653 B
Text
21 lines
653 B
Text
$NetBSD: patch-ab,v 1.1.1.1 2002/11/14 00:59:31 hubertf Exp $
|
|
|
|
--- config.mk.orig Tue Oct 30 20:50:40 2001
|
|
+++ config.mk
|
|
@@ -3,7 +3,6 @@
|
|
# For copying and distribution information, see the file COPYING.
|
|
#
|
|
|
|
-PREFIX = /usr/local
|
|
BINDIR = ${PREFIX}/sbin
|
|
MANDIR = ${PREFIX}/man
|
|
MAN8DIR = ${PREFIX}/man/man8
|
|
@@ -19,7 +18,7 @@
|
|
# affect portability to some platforms. The others here are irrelevant.
|
|
BADWARNS = -Wwrite-strings -Wconversion -Waggregate-return -Wredundant-decls
|
|
DEBUG = -DDEBUG -DVERBOSE -g
|
|
-CFLAGS = ${WARNS} ${EXTRAWARNS} ${DEBUG}
|
|
+CFLAGS = ${WARNS} ${EXTRAWARNS} ${DEBUG} -DPREFIX=\"${PREFIX}\"
|
|
LDFLAGS =
|
|
LIBS = -lutil
|
|
|