mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
- Pass maintainership to submitter Changelog: - no more run as root, uses own user and group by default - RCng startup script (trircd) - fixed build for amd64 - installs bin/tr-ircd instead of bin/ircd (conflict with irc/ircd-hybrid, irc/ptlink-ircd & co.) - does not install bin/md5sum (we have our md5) (conflict with archivers/dpkg and not necessary) - run and log directories can be defined via TRIRCD_RUNDIR and TRIRCD_LOGDIR - configuration directory via TRIRCD_CONFDIR (can be specified on runtime as well) - user and group definable via TRIRCD_USER TRIRCD_GROUP PR: 108835 Submitted by: Martin Matuska <martin@matuska.org>
26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
--- include/config.h.orig Tue Jul 1 11:01:18 2003
|
|
+++ include/config.h Tue Feb 6 15:08:49 2007
|
|
@@ -36,10 +36,10 @@
|
|
#define SSL_CERTIFICATE IRCD_PREFIX_ETC "/ircd.cert"
|
|
#define SSL_KEY IRCD_PREFIX_ETC "/ircd.key"
|
|
|
|
-#define RANDFILE IRCD_PREFIX_VAR "/lib/" BASENAME "/ircd.rand" /* used to make openssl keygen faster */
|
|
-#define ENTROPYFILE IRCD_PREFIX_VAR "/lib/" BASENAME "/ircd.entropy"
|
|
-#define LINKSFILE IRCD_PREFIX_VAR "/lib/" BASENAME "/ircd.links"
|
|
-#define IRCD_PIDFILE IRCD_PREFIX_VAR "/run/" BASENAME "/ircd.pid"
|
|
+#define RANDFILE IRCD_PREFIX_VAR "/ircd.rand" /* used to make openssl keygen faster */
|
|
+#define ENTROPYFILE IRCD_PREFIX_VAR "/ircd.entropy"
|
|
+#define LINKSFILE IRCD_PREFIX_VAR "/ircd.links"
|
|
+#define IRCD_PIDFILE IRCD_PREFIX_VAR "/ircd.pid"
|
|
|
|
#define MODPATH IRCD_PREFIX_LIB "/modules"
|
|
#define LANGPATH IRCD_PREFIX_LIB "/languages"
|
|
@@ -47,7 +47,7 @@
|
|
#define CONTRIBPATH IRCD_PREFIC_LIB "/contrib"
|
|
#define TOOLMODPATH IRCD_PREFIX_LIB "/tools"
|
|
|
|
-#define HELPPATH IRCD_PREFIX_DOC "/help"
|
|
+#define HELPPATH IRCD_PREFIX_DOC "/" BASENAME "/help"
|
|
|
|
#define CLIENTS_PREALLOCATE 2048
|
|
#define CHANNELS_PREALLOCATE 2048
|