]> jfr.im git - irc.git/blobdiff - software/!RELEASES/ircservices/achurch.org/services/lists/ircservices-coding/2002/000106.html
RELEASE -> !RELEASE
[irc.git] / software / !RELEASES / ircservices / achurch.org / services / lists / ircservices-coding / 2002 / 000106.html
diff --git a/software/!RELEASES/ircservices/achurch.org/services/lists/ircservices-coding/2002/000106.html b/software/!RELEASES/ircservices/achurch.org/services/lists/ircservices-coding/2002/000106.html
new file mode 100644 (file)
index 0000000..46c8865
--- /dev/null
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+   <TITLE> [IRCServices Coding] FW: Channel Time Setting issue
+   </TITLE>
+   <LINK REL="Index" HREF="index.html" >
+   <LINK REL="made" HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20FW%3A%20Channel%20Time%20Setting%20issue&In-Reply-To=">
+   <META NAME="robots" CONTENT="index,nofollow">
+   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+   <LINK REL="Previous"  HREF="000103.html">
+   <LINK REL="Next"  HREF="000107.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+   <H1>[IRCServices Coding] FW: Channel Time Setting issue</H1>
+    <B>Andrew Church</B> 
+    <A HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20FW%3A%20Channel%20Time%20Setting%20issue&In-Reply-To="
+       TITLE="[IRCServices Coding] FW: Channel Time Setting issue">achurch at achurch.org
+       </A><BR>
+    <I>Tue Jan 15 11:04:53 PST 2002</I>
+    <P><UL>
+        <LI>Previous message: <A HREF="000103.html">[IRCServices Coding] DB Names
+</A></li>
+        <LI>Next message: <A HREF="000107.html">[IRCServices Coding] FW: Channel Time Setting issue
+</A></li>
+         <LI> <B>Messages sorted by:</B> 
+              <a href="date.html#106">[ date ]</a>
+              <a href="thread.html#106">[ thread ]</a>
+              <a href="subject.html#106">[ subject ]</a>
+              <a href="author.html#106">[ author ]</a>
+         </LI>
+       </UL>
+    <HR>  
+<!--beginarticle-->
+<PRE>&gt;<i>protocol/bahamut: sjoin: unable to resolve symbol `get_channelinfo'
+</I>&gt;<i>in database module, channel time setting
+</I>
+     What OS are you using (sorry, I frogot)?  Have you tried using static
+modules (./configure -use-static-modules)?  Does the patch below fix the
+problem?
+
+Index: modules.c
+===================================================================
+RCS file: /var/cvs-private/ircservices/modules.c,v
+retrieving revision 2.41
+diff -u -r2.41 modules.c
+--- modules.c  13 Jan 2002 17:57:34 -0000      2.41
++++ modules.c  15 Jan 2002 02:04:04 -0000
+@@ -186,7 +186,22 @@
+ {
+ #if !defined(STATIC_MODULES)
++#if 0
+     return dlsym(handle ? handle : program_handle, symname);
++#else
++    if (handle) {
++      return dlsym(handle, symname);
++    } else {
++      Module *mod;
++      void *ptr;
++      LIST_FOREACH (mod, modulelist) {
++          ptr = dlsym(mod-&gt;dllhandle?mod-&gt;dllhandle:program_handle, symname);
++          if (ptr)
++              return ptr;
++      }
++      return NULL;
++    }
++#endif
+ #else  /* STATIC_MODULES */
+
+  --Andrew Church
+    <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices-coding">achurch at achurch.org</A>
+    <A HREF="http://achurch.org/">http://achurch.org/</A>
+
+</PRE>
+
+<!--endarticle-->
+    <HR>
+    <P><UL>
+        <!--threads-->
+       <LI>Previous message: <A HREF="000103.html">[IRCServices Coding] DB Names
+</A></li>
+       <LI>Next message: <A HREF="000107.html">[IRCServices Coding] FW: Channel Time Setting issue
+</A></li>
+         <LI> <B>Messages sorted by:</B> 
+              <a href="date.html#106">[ date ]</a>
+              <a href="thread.html#106">[ thread ]</a>
+              <a href="subject.html#106">[ subject ]</a>
+              <a href="author.html#106">[ author ]</a>
+         </LI>
+       </UL>
+
+</body></html>