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