diff -cr ../ircu2.10.06/config/config-sh.in ../ircu2.10.06-2/config/config-sh.in *** ../ircu2.10.06/config/config-sh.in Mon Jul 5 22:48:11 1999 --- ../ircu2.10.06-2/config/config-sh.in Mon Jul 5 21:53:19 1999 *************** *** 370,376 **** bool 'XMODE Networking - ESNET' XMODE_ESNET y bool 'ESNET Distributed DataBase Support - ESNET' DB_ESNET y if [ "$DB_ESNET" = "y" ]; then ! eval DBPATH_DEFAULT="${DPATH}/database" string 'Directory where distributed database resides - ESNET' DBPATH $DBPATH_DEFAULT fi int 'Max auto connects per class (1!)' MAXIMUM_LINKS 1 --- 370,376 ---- bool 'XMODE Networking - ESNET' XMODE_ESNET y bool 'ESNET Distributed DataBase Support - ESNET' DB_ESNET y if [ "$DB_ESNET" = "y" ]; then ! eval DBPATH_DEFAULT="database" string 'Directory where distributed database resides - ESNET' DBPATH $DBPATH_DEFAULT fi int 'Max auto connects per class (1!)' MAXIMUM_LINKS 1 diff -cr ../ircu2.10.06/doc/Configure.help ../ircu2.10.06-2/doc/Configure.help *** ../ircu2.10.06/doc/Configure.help Mon Jul 5 22:48:11 1999 --- ../ircu2.10.06-2/doc/Configure.help Mon Jul 5 22:52:25 1999 *************** *** 878,884 **** Directory where distributed database resides - ESNET DBPATH ! Path to the Distributed Database Directory. Allow local opers to use the REHASH command LOCOP_REHASH --- 878,885 ---- Directory where distributed database resides - ESNET DBPATH ! Path to the Distributed Database directory. This path can be ! absolute, or relative to the configuration directory (DPATH). Allow local opers to use the REHASH command LOCOP_REHASH diff -cr ../ircu2.10.06/ircd/Makefile.in ../ircu2.10.06-2/ircd/Makefile.in *** ../ircu2.10.06/ircd/Makefile.in Mon Jul 5 22:48:11 1999 --- ../ircu2.10.06-2/ircd/Makefile.in Mon Jul 5 22:42:31 1999 *************** *** 113,129 **** @echo "Installing new ircd as ${BINDIR}/ircd.`cat /tmp/ircd.tag` :" ${INSTALL} -m ${IRCDMODE} -o ${IRCDOWN} -g ${IRCDGRP} ircd ${BINDIR}/ircd.`cat /tmp/ircd.tag` if [ -f ${DPATH}/database ]; then ${RM} ${DPATH}/database; fi ! if [ ! -d ${DBPATH} ]; then ${MKDIR} ${DBPATH}; fi ! ${CHMOD} 700 ${DBPATH} ! ${CHOWN} ${IRCDOWN} ${DBPATH} ! ${CHGRP} ${IRCDGRP} ${DBPATH} ! for i in a b c d e f g h i j k l m n o p q r s t u v w x y z ; \ ! do \ ${TOUCH} ${DBPATH}/tabla.$$i ; \ ! done ! ${CHMOD} 600 ${DBPATH}/* ! ${CHOWN} ${IRCDOWN} ${DBPATH}/* ! ${CHGRP} ${IRCDGRP} ${DBPATH}/* @( cd ${BINDIR}; \ ${RM} -f ${SYMLINK}; \ ${LN_S} ircd.`cat /tmp/ircd.tag` ${SYMLINK}; ) --- 113,130 ---- @echo "Installing new ircd as ${BINDIR}/ircd.`cat /tmp/ircd.tag` :" ${INSTALL} -m ${IRCDMODE} -o ${IRCDOWN} -g ${IRCDGRP} ircd ${BINDIR}/ircd.`cat /tmp/ircd.tag` if [ -f ${DPATH}/database ]; then ${RM} ${DPATH}/database; fi ! ( cd ${DPATH}; \ ! if [ ! -d ${DBPATH} ]; then ${MKDIR} ${DBPATH}; fi ; \ ! ${CHMOD} 700 ${DBPATH} ; \ ! ${CHOWN} ${IRCDOWN} ${DBPATH} ; \ ! ${CHGRP} ${IRCDGRP} ${DBPATH} ; \ ! for i in a b c d e f g h i j k l m n o p q r s t u v w x y z ; \ ! do \ ${TOUCH} ${DBPATH}/tabla.$$i ; \ ! done; \ ! ${CHMOD} 600 ${DBPATH}/* ; \ ! ${CHOWN} ${IRCDOWN} ${DBPATH}/* ; \ ! ${CHGRP} ${IRCDGRP} ${DBPATH}/* ; ) @( cd ${BINDIR}; \ ${RM} -f ${SYMLINK}; \ ${LN_S} ircd.`cat /tmp/ircd.tag` ${SYMLINK}; ) Only in ../ircu2.10.06-2/ircd/crypt: .checksums diff -cr ../ircu2.10.06/ircd/s_debug.c ../ircu2.10.06-2/ircd/s_debug.c *** ../ircu2.10.06/ircd/s_debug.c Mon Jul 5 22:48:11 1999 --- ../ircu2.10.06-2/ircd/s_debug.c Mon Jul 5 22:46:27 1999 *************** *** 194,200 **** '-', #endif #endif ! 'D','B','9', #ifdef DB_ESNET '+', #else --- 194,200 ---- '-', #endif #endif ! 'D','B','1','0', #ifdef DB_ESNET '+', #else