Minor Solaris build tweaks: VPATH, example.conf, warning.
authorMichael Poole <mdpoole@troilus.org>
Thu, 12 Jan 2006 03:02:50 +0000 (03:02 +0000)
committerMichael Poole <mdpoole@troilus.org>
Thu, 12 Jan 2006 03:02:50 +0000 (03:02 +0000)
git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1610 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
doc/Makefile.in
doc/example.conf
ircd/m_burst.c

index 17b73b8e2c4fbc64931e71a9b76c68e9c850c0e6..8fc60bcdb9e856ad1171fa8b5de2847269955f32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-01-11  Michael Poole <mdpoole@troilus.org>
+
+       * doc/Makefile.in: Make install target VPATH-safe.
+
+       * doc/example.conf: Comment out example IAuth block.
+
+       * ircd/m_burst.c (ms_burst): Change isdigit() to IsDigit(),
+       silencing a warning on Solaris.
+
 2006-01-09  Michael Poole <mdpoole@troilus.org>
 
        * ircd/s_user.c (register_user): Do not send +r flag to user when
index c4f7c8f8b7078f111028d78f53c82ace6a249bbd..eb4f719171f627aad41cb3963ff2f6ef26338e6e 100644 (file)
@@ -45,7 +45,8 @@ maintainer-clean: distclean
 depend:
 
 install:
-       cd ${srcdir} && (test -d ${MANDIR}/man8 || mkdir ${MANDIR}/man8 || mkdir -p ${MANDIR}/man8) 2> /dev/null && ${INSTALL} -m 644 ircd.8 ${MANDIR}/man8
+       test -d ${MANDIR}/man8 || mkdir ${MANDIR}/man8 || mkdir -p ${MANDIR}/man8
+       ${INSTALL} -m 644 ${srcdir}/ircd.8 ${MANDIR}/man8
 
 uninstall:
        ${RM} -f ${MANDIR}/man8/ircd.8
index be3d13c7c33e8e52ac50d3deb6872e1e8f5ba94b..44eae6fb8161815fbe2e74cfb11aa5067dfbd58c 100644 (file)
@@ -723,13 +723,14 @@ Pseudo "LOGIN" {
 };
 
 # You can ask a separate server whether to allow users to connect.
-IAuth {
- pass = "ircd-iauth";
- host = "127.0.0.1";
- port = 7700;
- connectfreq = 30;
- timeout = 60;
-};
+# Uncomment this ONLY if you have an iauthd set up.
+# IAuth {
+#  pass = "ircd-iauth";
+#  host = "127.0.0.1";
+#  port = 7700;
+#  connectfreq = 30;
+#  timeout = 60;
+# };
 
 # [features]
 # IRC servers have a large number of options and features.  Most of these
index f82de0e51b36d167e5011849dacc5a04c807f60a..482ed658d8865f336c26fd2e90365073bf5b934a 100644 (file)
@@ -478,7 +478,7 @@ int ms_burst(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
                  current_mode = (current_mode & ~CHFL_DELAYED) | CHFL_VOICE;
                  oplevel = -1; /* subsequent digits are an absolute op-level value. */
                 }
-               else if (isdigit(*ptr)) {
+               else if (IsDigit(*ptr)) {
                  int level_increment = 0;
                  if (oplevel == -1) { /* op-level is absolute value? */
                    if (current_mode_needs_reset) {
@@ -490,7 +490,7 @@ int ms_burst(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
                  current_mode = (current_mode & ~(CHFL_DEOPPED | CHFL_DELAYED)) | CHFL_CHANOP;
                  do {
                    level_increment = 10 * level_increment + *ptr++ - '0';
-                 } while(isdigit(*ptr));
+                 } while (IsDigit(*ptr));
                  oplevel += level_increment;
                }
                else /* I don't recognize that flag */