Add direct query server module.
[srvx.git] / ChangeLog
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2006/srvx--devo--1.3
3 #
4
5 2006-09-22 02:51:50 GMT Michael Poole <mdpoole@troilus.org>     patch-40
6
7     Summary:
8       Add direct query server module.
9     Revision:
10       srvx--devo--1.3--patch-40
11
12     srvx.conf.example: Document qserver configuration.
13     
14     src/Makefile.am (EXTRA_srvx_SOURCES): Add mod-qserver.c.
15     
16     src/mod-qserver.c: New file.
17
18     new files:
19      src/.arch-ids/mod-qserver.c.id src/mod-qserver.c
20
21     modified files:
22      ChangeLog src/Makefile.am src/ioset-epoll.c srvx.conf.example
23
24
25 2006-09-22 02:45:20 GMT Michael Poole <mdpoole@troilus.org>     patch-39
26
27     Summary:
28       Add epoll_* ioset backend.
29     Revision:
30       srvx--devo--1.3--patch-39
31
32     configure.in: Check for epoll_create(); demote select() from being required.
33     
34     src/Makefile.am (EXTRA_srvx_SOURCES): Add ioset-epoll.c.
35     
36     src/ioset-epoll.c: New file.
37
38     new files:
39      src/.arch-ids/ioset-epoll.c.id src/ioset-epoll.c
40
41     modified files:
42      ChangeLog configure.in src/Makefile.am
43
44
45 2006-09-22 02:38:21 GMT Michael Poole <mdpoole@troilus.org>     patch-38
46
47     Summary:
48       Allow multiple ioset backends.
49     Revision:
50       srvx--devo--1.3--patch-38
51
52     configure.in: Add framework to check for ioset backends.
53     
54     src/Makefile.am (noinst_DATA): Reorganize for easier patching.
55       (checkversion): Avoid spurious error message if $(GNU_ARCH) is missing.
56       (EXTRA_srvx_SOURCES): Reorganize for easier patching; add ioset-select.c.
57       (srvx_SOURCES): Add ioset-impl.h.
58     
59     src/ioset.c (ioset.h): #include "ioset-impl.h" instead.
60       (clock_skew): Make non-static for backends.
61       (engine): New variable.
62       (active_fd): New variable (kind of kludgy).
63       (io_engine_*): New variables, only one exists so far.
64       (ioset_init): New function.
65       (ioset_cleanup): Call engine's cleanup function.
66       (ioset_add): Call engine's add function.
67       (ioset_listen): New function.
68       (ioset_connect): Call engine's update functions at appropriate points.
69       (ioset_try_write): Call engine's update function on success.
70       (ioset_close): Change signature; check against active_fd; call engine's
71         remove function.
72       (ioset_accept): New function.
73       (ioset_buffered_read): Update fd->state instead of fd->eof and call
74         engine's update function as appropriate.  Use active_fd.
75       (ioset_line_read): Check fd->state instead of fd->eof.
76       (debug_fdsets): Move to ioset-select.c.
77       (ioset_events): New function.
78       (ioset_run): Move most of the logic into ioset-select loop function;
79         call it.  Rename "select_timeout" to "timeout" to match.
80       (ioset_write): Call engine->update function.
81       (ioset_printf): New function.
82     
83     src/ioset.h (common.h): #include this header to get PRINTF_LIKE macro.
84       (struct io_fd): Replace 'connected' and 'eof' fields with 'state' field.
85       (ioset_init): Declare new function.
86       (ioset_listen): Declare new function.
87       (ioset_printf): Declare new function.
88       (ioset_close): Update signature.
89     
90     src/main.c (main): Call ioset_init().
91     
92     src/mod-sockcheck.c (sockcheck_free_client): Can unconditionally call
93         ioset_close() now.
94       (expand_var): Always use C99 type names.
95       (sockcheck_begin_test): Can unconditionally call ioset_close() now.
96       (sockcheck_read_conf): Only warn about unknown host if the user set
97         one; it is silly to arn about unknown host `(null)'.
98     
99     src/proto-common.c (socket_destroyed): Check fd->state rather than
100         fd->eof.
101       (close_socket): Update signature for ioset_close().
102
103     new files:
104      src/.arch-ids/ioset-impl.h.id src/.arch-ids/ioset-select.c.id
105      src/ioset-impl.h src/ioset-select.c
106
107     modified files:
108      ChangeLog configure.in src/Makefile.am src/ioset.c src/ioset.h
109      src/main.c src/mod-sockcheck.c src/proto-common.c
110
111
112 2006-09-22 02:15:55 GMT Michael Poole <mdpoole@troilus.org>     patch-37
113
114     Summary:
115       Add "dummy client" support.
116     Revision:
117       srvx--devo--1.3--patch-37
118
119     src/hash.h (FLAGS_DUMMY): New flag for non-propagated clients.
120       (IsDummy): Check it.
121     
122     src/helpfile.c (send_message): Allow sending to dummy clients.
123       (send_message_type): Likewise.
124     
125     src/proto-bahamut.c (irc_user): Bail if user is NULL or has a dummy nickname.
126       (deliver_to_dummy): New function.
127       (irc_privmsg): Try to deliver via dummy method before sending to IRC.
128       (irc_notice): Likewise.
129       (irc_notice_user): Likewise.
130       (AddUser): If the first user mode character is '*', mark as a dummy.
131       (DelUser): Unregister callback functions when destroying local clients.
132     
133     src/proto-p10.c (irc_user): Bail if user is NULL or has a dummy nickname.
134       (deliver_to_dummy): New function.
135       (irc_notice): Try to deliver via dummy method before sending to IRC.
136       (irc_notice_user): Likewise.
137       (irc_privmsg): Likewise.
138       (AddUser): If the first user mode character is '*', mark as a dummy.
139       (DelUser): Unregister callback functions when destroying local clients.
140
141     modified files:
142      ChangeLog src/hash.h src/helpfile.c src/proto-bahamut.c
143      src/proto-p10.c
144
145
146 2006-09-22 01:56:07 GMT Michael Poole <mdpoole@troilus.org>     patch-36
147
148     Summary:
149       Delete obsolete and non-propagated user modes.
150     Revision:
151       srvx--devo--1.3--patch-36
152
153     src/hash.h (FLAGS_LOCOP): Delete.
154       (FLAGS_SERVNOTICE): Delete.
155       (FLAGS_HELPER): Delete.
156       (IsServNotice): Delete.
157       (IsHelperIrcu): Delete.
158     
159     src/opserv.c (cmd_whois): Remove IsServNotice() or IsHelperIrcu().
160     
161     src/proto-bahamut.c (mod_usermode): Do not handle +O/+s/+h, we never see them.
162     
163     src/proto-p10.c (irc_user): Do not emit +s or +h, we never set them..
164       (mod_usermode): Do not handle +O/+s/+h, we never see them.
165
166     modified files:
167      ChangeLog src/hash.h src/opserv.c src/proto-bahamut.c
168      src/proto-p10.c
169
170
171 2006-09-22 01:48:00 GMT Michael Poole <mdpoole@troilus.org>     patch-35
172
173     Summary:
174       Merge AddService(), AddClone() into AddLocalUser()
175     Revision:
176       srvx--devo--1.3--patch-35
177
178     src/chanserv.c (init_chanserv): Convert AddService() call to AddLocalUser().
179     
180     src/global.c (init_global): Likewise.
181     
182     src/mod-helpserv.c (register_helpserv): Likewise.
183     
184     src/modcmd.c (cmd_service_add): Likewise.
185       (modcmd_load_bots): Likewise.
186     
187     src/nickserv.c (regex.h): Fall back to rxposix.h from local rx package.
188       (init_nickserv): Convert AddService() call to AddLocalUser().
189     
190     src/opserv.c (opserv_add_reserve): Convert AddClone() call to AddLocalUser().
191       (cmd_clone): Likewise.
192       (add_reserved): Likewise.
193       (init_opserv): Convert AddService() call to AddLocalUser().
194     
195     src/proto-bahamut.c (AddService): Convert into AddLocalUser().
196       (AddClone): Delete.
197     
198     src/proto-p10.c (AddService): Convert into AddLocalUser().
199       (AddClone): Delete.
200     
201     src/proto.h (AddService): Convert into AddLocalUser().
202       (AddClone): Delete.
203
204     modified files:
205      ChangeLog src/chanserv.c src/global.c src/mod-helpserv.c
206      src/modcmd.c src/nickserv.c src/opserv.c src/proto-bahamut.c
207      src/proto-p10.c src/proto.h
208
209
210 2006-09-22 01:35:03 GMT Michael Poole <mdpoole@troilus.org>     patch-34
211
212     Summary:
213       Make IRC message handler 'text' const.
214     Revision:
215       srvx--devo--1.3--patch-34
216
217     src/chanserv.c (chanserv_ctcp_check): Make 'text' parameter const.
218     
219     src/mod-helpserv.c (helpserv_usermsg): Likewise.
220       (helpserv_botmsg): Likewise.
221     
222     src/modcmd.c (svccmd_invoke): Likewise.
223       (modcmd_privmsg): Likewise.
224       (modcmd_chanmsg): Likewise.
225     
226     src/modcmd.h (SVCMSG_HOOK): Likewise.
227     
228     src/proto.h (chanmsg_func_t): Likewise.
229       (privmsg_func_t): Likewise.
230
231     modified files:
232      ChangeLog src/chanserv.c src/mod-helpserv.c src/modcmd.c
233      src/modcmd.h src/proto.h
234
235
236 2006-09-22 01:23:43 GMT Michael Poole <mdpoole@troilus.org>     patch-33
237
238     Summary:
239       Add autogen.sh to distribution tarball.
240     Revision:
241       srvx--devo--1.3--patch-33
242
243     Makefile.am: Add autogen.sh to the "extra" distributed files.
244
245     modified files:
246      ChangeLog Makefile.am
247
248
249 2006-09-11 01:03:14 GMT Michael Poole <mdpoole@troilus.org>     patch-32
250
251     Summary:
252       Support and use G-line lastmod timestamp.
253     Revision:
254       srvx--devo--1.3--patch-32
255
256     src/gline.c (KEY_LASTMOD): New key string.
257       (gline_add): Use new parameter to set lastmod.
258       (gline_add_record): Look for KEY_LASTMOD values.
259       (gline_write_entry): Set KEY_LASTMOD if lastmod is set.
260       (gline_discrim_create): Allow specification of lastmod criteria.
261       (gline_discrim_match): Check lastmod if appropriate.
262     
263     src/gline.h (struct gline): Add lastmod field.
264       (struct gline_discrim): Add lastmod fields.
265       (gline_add): New parameter.
266     
267     src/mod-sockcheck.c (sockcheck_issue_gline): Set lastmod.
268     
269     src/opserv.c (OSMSG_NO_GLINE): New format string.
270       (opserv_block): Set lastmod.
271       (cmd_gline): Set lastmod.
272       (cmd_stats_glines): Allow searching for a particular G-line (just like
273         gtrace).
274       (opserv_new_user_check): Set lastmod.
275       (gtrace_print_func): Use intervals rather than fixed dates and show
276         lastmod.
277     
278     src/opserv.help (GTRACE CRITERIA): Mention lastmod criteria.
279     
280     src/proto-p10.c (irc_gline): Send lastmod if it is set.
281       (cmd_num_gline): Parse out lastmod if it is set.
282       (cmd_gline): Parse out lastmod if it is set.
283
284     modified files:
285      ChangeLog src/gline.c src/gline.h src/mod-sockcheck.c
286      src/opserv.c src/opserv.help src/proto-p10.c
287
288
289 2006-09-09 21:37:28 GMT Michael Poole <mdpoole@troilus.org>     patch-31
290
291     Summary:
292       Network event handler fixup when ChanServ is disabled.
293     Revision:
294       srvx--devo--1.3--patch-31
295
296     src/chanserv.c (init_chanserv): Do not register network event handlers if
297         ChanServ is disabled.
298
299     modified files:
300      ChangeLog src/chanserv.c
301
302
303 2006-09-03 15:24:48 GMT Michael Poole <mdpoole@troilus.org>     patch-30
304
305     Summary:
306       Make srvx compile on cygwin again.
307     Revision:
308       srvx--devo--1.3--patch-30
309
310     configure.in (AC_CHECK_HEADERS): Look for <arpa/inet.h>.
311       (AC_CHECK_FUNCS): Look for inet_aton().
312     
313     src/compat.c: Try to include <arpa/inet.h> so we get inet_addr().
314       (getaddrinfo): If inet_aton() is not provided, use inet_addr() instead.
315     
316     src/compat.h (AI_NUMERICHOST): Define this too.
317     
318     src/tools.c (irc_pton): Use the pedantically correct type for ip4.
319
320     modified files:
321      ChangeLog configure.in src/compat.c src/compat.h src/tools.c
322
323
324 2006-09-03 15:21:10 GMT Michael Poole <mdpoole@troilus.org>     patch-29
325
326     Summary:
327       DelChannelUser call and semantic fixups
328     Revision:
329       srvx--devo--1.3--patch-29
330
331     src/hash.c (DelChannel): Fix type of 'reason' arg to DelChannelUser().
332       (DelChannelUser): Only send part message if user is local.
333     
334     src/proto-bahamut.c (DelUser): Unswap arguments to DelChannelUser().
335       (cmd_part): Move to proto-common.c.
336     
337     src/proto-common.c (part_desc): New structure type.
338       (part_helper): Use it to capture user and reason.
339       (cmd_part): New common function.
340     
341     src/proto-p10.c (cmd_part): Move to proto-common.c.
342       (DelUser): Unswap arguments to DelChannelUser().
343
344     modified files:
345      ChangeLog src/hash.c src/proto-bahamut.c src/proto-common.c
346      src/proto-p10.c
347
348
349 2006-09-03 15:17:05 GMT Michael Poole <mdpoole@troilus.org>     patch-28
350
351     Summary:
352       Do not try to moderate join-flood channels with no OpServ.
353     Revision:
354       srvx--devo--1.3--patch-28
355
356     src/opserv.c (opserv_join_check): As feigling points out, it is bad for a
357         service that does not exist to join a channel and hack modes.
358
359     modified files:
360      ChangeLog src/opserv.c
361
362
363 2006-09-03 15:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-27
364
365     Summary:
366       Fix ounregnick access check.
367     Revision:
368       srvx--devo--1.3--patch-27
369
370     src/nickserv.c (cmd_ounregnick): Use the standard rank-checking function.
371
372     modified files:
373      ChangeLog src/nickserv.c
374
375
376 2006-09-03 15:11:29 GMT Michael Poole <mdpoole@troilus.org>     patch-26
377
378     Summary:
379       Fix giveownership to how it should be
380     Revision:
381       srvx--devo--1.3--patch-26
382
383     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
384       user has real (normal) access and is not forcing the giveownership.
385
386     modified files:
387      ChangeLog
388
389
390 2006-09-03 15:10:58 GMT Michael Poole <mdpoole@troilus.org>     patch-25
391
392     Summary:
393       Fix giveownership to how it should be
394     Revision:
395       srvx--devo--1.3--patch-25
396
397     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
398       user has real (normal) access and is not forcing the giveownership.
399
400     modified files:
401      ChangeLog src/chanserv.c
402
403
404 2006-08-19 13:31:08 GMT Michael Poole <mdpoole@troilus.org>     patch-24
405
406     Summary:
407       Mark channels as visited when high-level users leave.
408     Revision:
409       srvx--devo--1.3--patch-24
410
411     src/chanserv.c (handle_part): At ThiefMaster's suggestion, update a
412       channel's visited time when a high-level user leaves (parts, gets
413       kicked, or quits).
414
415     modified files:
416      ChangeLog src/chanserv.c
417
418
419 2006-08-07 03:11:10 GMT Michael Poole <mdpoole@troilus.org>     patch-23
420
421     Summary:
422       Require confirmation cookie for giveownership.
423     Revision:
424       srvx--devo--1.3--patch-23
425
426     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): New translation string.
427       (cmd_giveownership): Fail for non-force unconfirmed giveownerships.
428
429     modified files:
430      ChangeLog src/chanserv.c
431
432
433 2006-07-29 01:36:39 GMT Michael Poole <mdpoole@troilus.org>     patch-22
434
435     Summary:
436       Add CSMSG_INVALID_CFLAG string.
437     Revision:
438       srvx--devo--1.3--patch-22
439
440     src/chanserv.c (msgtab): Add entry for "CSMSG_INVALID_CFLAG".
441
442     modified files:
443      ChangeLog src/chanserv.c
444
445
446 2006-07-29 01:34:17 GMT Michael Poole <mdpoole@troilus.org>     patch-21
447
448     Summary:
449       Fix ?csearch max timestamp default value.
450     Revision:
451       srvx--devo--1.3--patch-21
452
453     src/opserv.c (opserv_cdiscrim_create): Fix default value for max_ts.
454         (With an expression only a coder could love.  Improvements wanted.)
455
456     modified files:
457      ChangeLog src/opserv.c
458
459
460 2006-07-18 03:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-20
461
462     Summary:
463       Update arch-inventory files for in-tree builds.
464     Revision:
465       srvx--devo--1.3--patch-20
466
467     .arch-inventory: Add "libtool" as a preserved file.
468     
469     src/.arch-inventory: Add ".libs" as a preserved directory.  Put a \
470         before the . in .cvsignore to avoid capturing too much.
471
472     modified files:
473      .arch-inventory ChangeLog src/.arch-inventory
474
475
476 2006-07-18 02:48:32 GMT Michael Poole <mdpoole@troilus.org>     patch-19
477
478     Summary:
479       Make !bans searching more flexible
480     Revision:
481       srvx--devo--1.3--patch-19
482
483     src/chanserv.c (cmd_bans): Allow specifying a complete hostmask or a
484         nickname when searching bans.
485     
486     src/chanserv.help (BANS): Document the searching functions.
487
488     modified files:
489      ChangeLog src/chanserv.c src/chanserv.help
490
491
492 2006-07-18 01:49:56 GMT Michael Poole <mdpoole@troilus.org>     patch-18
493
494     Summary:
495       Simplify cdiscrim_match() max tests.
496     Revision:
497       srvx--devo--1.3--patch-18
498
499     src/opserv.c (opserv_cdiscrim_create): Explicitly initialize max_users
500         and max_ts.
501       (cdiscrim_match): Simplify the bounds tests for timestamp and users.
502
503     modified files:
504      ChangeLog src/opserv.c
505
506
507 2006-07-18 01:46:10 GMT Michael Poole <mdpoole@troilus.org>     patch-17
508
509     Summary:
510       Fix reclaim KILL behavior.
511     Revision:
512       srvx--devo--1.3--patch-17
513
514     src/nickserv.c (nickserv_reclaim): Use DelUser() instead of irc_kill(),
515         so that srvx's databases are appropriately updated.
516
517     modified files:
518      ChangeLog src/nickserv.c
519
520
521 2006-07-18 01:12:16 GMT Michael Poole <mdpoole@troilus.org>     patch-16
522
523     Summary:
524       Fix typo in English error message text.
525     Revision:
526       srvx--devo--1.3--patch-16
527
528     src/chanserv.c (CSMSG_TOPICMASK_CONFLICT2): Add missing "is".  Reported
529       by Harm, by way of Byte.
530
531     modified files:
532      ChangeLog src/chanserv.c
533
534
535 2006-05-14 02:54:24 GMT Michael Poole <mdpoole@troilus.org>     patch-15
536
537     Summary:
538       Update version tag for 1.3.1 release.
539     Revision:
540       srvx--devo--1.3--patch-15
541
542     configure.in: Update version tag for 1.3.1 release.
543
544     modified files:
545      ChangeLog configure.in
546
547
548 2006-05-02 02:46:39 GMT Michael Poole <mdpoole@troilus.org>     patch-14
549
550     Summary:
551       Make some ChanServ ban checks see through hidden hosts.
552     Revision:
553       srvx--devo--1.3--patch-14
554
555     src/chanserv.c (handle_join): Make this function see through hidden
556         hosts when matching users against bans.  Add comment before the
557         non-burst section; remove a redundant burst check there.
558       (handle_auth): See through hidden hosts when checking against active
559         bans.  Inactive ban check keeps MATCH_VISIBLE since bans on the true
560         hostname should have already been applied.
561       (handle_nick_change): Same as handle_auth.
562
563     modified files:
564      ChangeLog src/chanserv.c
565
566
567 2006-04-29 03:11:35 GMT Michael Poole <mdpoole@troilus.org>     patch-13
568
569     Summary:
570       Fix visible matching for fake and +x-hidden hosts.
571     Revision:
572       srvx--devo--1.3--patch-13
573
574     src/tools.c (user_matches_glob): Use correct test to determine whether
575         the user's host is hidden.
576
577     modified files:
578      ChangeLog src/tools.c
579
580
581 2006-04-07 00:56:38 GMT Michael Poole <mdpoole@troilus.org>     patch-12
582
583     Summary:
584       Fix a +o mode parsing error.
585     Revision:
586       srvx--devo--1.3--patch-12
587
588     src/proto-p10.c (mod_chanmode_parse): Check that the input argument after
589         +o is a valid one.
590
591     modified files:
592      ChangeLog src/proto-p10.c
593
594
595 2006-04-06 02:19:47 GMT Michael Poole <mdpoole@troilus.org>     patch-11
596
597     Summary:
598       Fix some IPv6 address compatibility issues.
599     Revision:
600       srvx--devo--1.3--patch-11
601
602     src/proto-p10.c (irc_p10_pton): Mark valid IPv4 addresses as v4-mapped.
603       (irc_p10_ntop): Emit invalid IPs as AAAAAA (but it could be _ for +6
604         flagged hubs).
605
606     modified files:
607      ChangeLog src/proto-p10.c
608
609
610 2006-04-05 02:07:30 GMT Michael Poole <mdpoole@troilus.org>     patch-10
611
612     Summary:
613       Fix a possible warning without debugging.
614     Revision:
615       srvx--devo--1.3--patch-10
616
617     src/alloc-slab.c (slab_unalloc): If assert() is #define'd to be empty,
618         then size is unused.  Include a (void)size to quash a warning.
619
620     modified files:
621      ChangeLog src/alloc-slab.c
622
623
624 2006-04-05 02:02:21 GMT Michael Poole <mdpoole@troilus.org>     patch-9
625
626     Summary:
627       Fix hostmask error from last year's patch-28.
628     Revision:
629       srvx--devo--1.3--patch-9
630
631     src/proto-common.c (generate_hostmask): When generating a strict hostmask
632         not by IP, we should keep the original hostname.
633
634     modified files:
635      ChangeLog src/proto-common.c
636
637
638 2006-04-05 01:59:54 GMT Michael Poole <mdpoole@troilus.org>     patch-8
639
640     Summary:
641       Fix compilation error with slab allocator and no debugging.
642     Revision:
643       srvx--devo--1.3--patch-8
644
645     src/alloc-slab.c (verify): Undefine as a macro before defining as a
646         function.
647
648     modified files:
649      ChangeLog src/alloc-slab.c
650
651
652 2006-04-05 00:24:50 GMT Michael Poole <mdpoole@troilus.org>     patch-7
653
654     Summary:
655       Fix backtracking bug after an escaped character.
656     Revision:
657       srvx--devo--1.3--patch-7
658
659     src/tools.c (match_ircglob): Fix backtracking behavior when an escaped
660         character did not match.
661
662     modified files:
663      ChangeLog src/tools.c
664
665
666 2006-04-05 00:11:31 GMT Michael Poole <mdpoole@troilus.org>     patch-6
667
668     Summary:
669       Advise the kernel that we will scan DB files sequentially.
670     Revision:
671       srvx--devo--1.3--patch-6
672
673     src/recdb.c (parse_database): Advise the kernel that we will scan the
674         recdb file sequentially, just in case it cannot notice the access
675         pattern on its own.
676
677     modified files:
678      ChangeLog src/recdb.c
679
680
681 2006-04-05 00:09:48 GMT Michael Poole <mdpoole@troilus.org>     patch-5
682
683     Summary:
684       Correctly implement AsLL pong.
685     Revision:
686       srvx--devo--1.3--patch-5
687
688     src/proto-p10.c (irc_pong_asll): New function.
689       (cmd_ping): Use it.
690
691     modified files:
692      ChangeLog src/proto-p10.c
693
694
695 2006-04-05 00:08:04 GMT Michael Poole <mdpoole@troilus.org>     patch-4
696
697     Summary:
698       Add missing underscore in translation key string.
699     Revision:
700       srvx--devo--1.3--patch-4
701
702     src/mod-helpserv.c (helpserv_usermsg): Add a missing underscore between
703         REQUEST and NOT.
704
705     modified files:
706      ChangeLog src/mod-helpserv.c
707
708
709 2006-04-05 00:05:59 GMT Michael Poole <mdpoole@troilus.org>     patch-3
710
711     Summary:
712       Update configure.in; support both baz and tla; avoid using dirent.
713     Revision:
714       srvx--devo--1.3--patch-3
715
716     configure.in: Remove AC_PROG_RANLIB since we never use ranlib.  Add
717         AC_PROG_LIBTOOL since we do use libtool.  Set GNU_ARCH and
718         HAS_GNU_ARCH based on whether the system has baz or tla.  Do not
719         check for dirent.d_type.
720     
721     src/Makefile.am: Make the "checkversion" target conditional on
722         HAS_GNU_ARCH, and use the detected $(GNU_ARCH).
723     
724     src/helpfile.c (language_read): Report error text when unable to open a
725         language directory.
726       (language_read_list): Always stat the language entry to determine
727         whether it is a directory; Cygwin has no dirent.d_type and ReiserFS
728         has a broken one.
729
730     modified files:
731      ChangeLog configure.in src/Makefile.am src/helpfile.c
732
733
734 2006-04-05 00:00:57 GMT Michael Poole <mdpoole@troilus.org>     patch-2
735
736     Summary:
737       Update ChangeLog (again?!), ltmain.sh and rx/Makefile.in
738     Revision:
739       srvx--devo--1.3--patch-2
740
741     ChangeLog: Update again (it didn't take, for some strange reason).
742     
743     ltmain.sh: Update to current version.
744     
745     rx/Makefile.in: Regenerate to match.
746
747     modified files:
748      ChangeLog ltmain.sh rx/Makefile.in
749
750
751 2006-04-04 23:58:31 GMT Michael Poole <mdpoole@troilus.org>     patch-1
752
753     Summary:
754       Rotate ChangeLog for the new year's archive.
755     Revision:
756       srvx--devo--1.3--patch-1
757
758     ChangeLog: Update for the new year's archive.
759
760     modified files:
761      .arch-ids/ChangeLog.id ChangeLog
762
763
764 2006-04-04 23:42:39 GMT Michael Poole <mdpoole@troilus.org>     base-0
765
766     Summary:
767       tag of srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
768     Revision:
769       srvx--devo--1.3--base-0
770
771     (automatically generated log message)
772
773     new patches:
774      sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
775      sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
776      srvx@srvx.net--2004-srvx/srvx--devo--1.3--base-0
777      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-1
778      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-2
779      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-3
780      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-4
781      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-5
782      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-6
783      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-7
784      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-8
785      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-9
786      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-10
787      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-11
788      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-12
789      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-13
790      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-14
791      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-15
792      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-16
793      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-17
794      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-18
795      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-19
796      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-20
797      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-21
798      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-22
799      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-23
800      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-24
801      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-25
802      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-26
803      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-27
804      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-28
805      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-29
806      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-30
807      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-31
808      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-32
809      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-33
810      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-34
811      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-35
812      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-36
813      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-37
814      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-38
815      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-39
816      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-40
817      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-41
818      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-42
819      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-43
820      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-44
821      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-45
822      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-46
823      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-47
824      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-48
825      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-49
826      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-50
827      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-51
828      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-52
829      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-53
830      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-54
831      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-55
832      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-56
833      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-57
834      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-58
835      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-59
836      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-60
837      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-61
838      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-62
839      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-63
840      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-64
841      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-65
842      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-66
843      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-67
844      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-68
845      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-69
846      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-70
847      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-71
848      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-72
849      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-73
850      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-74
851      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-75
852      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-76
853      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-77
854      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-78
855      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-79
856      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-80
857      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-81
858      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-82
859      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-83
860      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-84
861      srvx@srvx.net--2005-srvx/srvx--devo--1.3--base-0
862      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-1
863      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-2
864      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-3
865      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-4
866      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-5
867      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-6
868      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-7
869      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-8
870      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-9
871      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-10
872      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-11
873      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-12
874      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-13
875      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-14
876      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-15
877      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-16
878      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-17
879      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-18
880      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-19
881      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-20
882      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-21
883      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-22
884      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-23
885      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-24
886      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-25
887      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-26
888      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-27
889      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-28
890      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-29
891      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-30
892      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-31
893      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-32
894      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-33
895      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-34
896      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-35
897      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
898
899