]> jfr.im git - irc.git/blob - 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
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2 <HTML>
3 <HEAD>
4 <TITLE> [IRCServices Coding] FW: Channel Time Setting issue
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20FW%3A%20Channel%20Time%20Setting%20issue&In-Reply-To=">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000103.html">
11 <LINK REL="Next" HREF="000107.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices Coding] FW: Channel Time Setting issue</H1>
15 <B>Andrew Church</B>
16 <A HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20FW%3A%20Channel%20Time%20Setting%20issue&In-Reply-To="
17 TITLE="[IRCServices Coding] FW: Channel Time Setting issue">achurch at achurch.org
18 </A><BR>
19 <I>Tue Jan 15 11:04:53 PST 2002</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000103.html">[IRCServices Coding] DB Names
22 </A></li>
23 <LI>Next message: <A HREF="000107.html">[IRCServices Coding] FW: Channel Time Setting issue
24 </A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#106">[ date ]</a>
27 <a href="thread.html#106">[ thread ]</a>
28 <a href="subject.html#106">[ subject ]</a>
29 <a href="author.html#106">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33 <!--beginarticle-->
34 <PRE>&gt;<i>protocol/bahamut: sjoin: unable to resolve symbol `get_channelinfo'
35 </I>&gt;<i>in database module, channel time setting
36 </I>
37 What OS are you using (sorry, I frogot)? Have you tried using static
38 modules (./configure -use-static-modules)? Does the patch below fix the
39 problem?
40
41 Index: modules.c
42 ===================================================================
43 RCS file: /var/cvs-private/ircservices/modules.c,v
44 retrieving revision 2.41
45 diff -u -r2.41 modules.c
46 --- modules.c 13 Jan 2002 17:57:34 -0000 2.41
47 +++ modules.c 15 Jan 2002 02:04:04 -0000
48 @@ -186,7 +186,22 @@
49 {
50 #if !defined(STATIC_MODULES)
51
52 +#if 0
53 return dlsym(handle ? handle : program_handle, symname);
54 +#else
55 + if (handle) {
56 + return dlsym(handle, symname);
57 + } else {
58 + Module *mod;
59 + void *ptr;
60 + LIST_FOREACH (mod, modulelist) {
61 + ptr = dlsym(mod-&gt;dllhandle?mod-&gt;dllhandle:program_handle, symname);
62 + if (ptr)
63 + return ptr;
64 + }
65 + return NULL;
66 + }
67 +#endif
68
69 #else /* STATIC_MODULES */
70
71
72 --Andrew Church
73 <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices-coding">achurch at achurch.org</A>
74 <A HREF="http://achurch.org/">http://achurch.org/</A>
75
76 </PRE>
77
78 <!--endarticle-->
79 <HR>
80 <P><UL>
81 <!--threads-->
82 <LI>Previous message: <A HREF="000103.html">[IRCServices Coding] DB Names
83 </A></li>
84 <LI>Next message: <A HREF="000107.html">[IRCServices Coding] FW: Channel Time Setting issue
85 </A></li>
86 <LI> <B>Messages sorted by:</B>
87 <a href="date.html#106">[ date ]</a>
88 <a href="thread.html#106">[ thread ]</a>
89 <a href="subject.html#106">[ subject ]</a>
90 <a href="author.html#106">[ author ]</a>
91 </LI>
92 </UL>
93
94 </body></html>