PennMUSH Community

Changeset 1030

Show
Ignore:
Timestamp:
07/08/07 20:32:23 (1 year ago)
Author:
shawnw
Message:

More prep for 1.8.3p4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/CHANGES.182

    r1017 r1030  
    2121 
    2222Minor changes: 
     23  * Removed the gmalloc malloc option. [SW] 
    2324  * KEEPALIVE flag makes the server send a telnet NOP after 
    2425    a short period of inactivity; helps prevent timeouts from 
     
    2728Fixes: 
    2829  * Fixed assorted small memory leaks. [SW] 
     30  * Fix to fraction() when dealing with numbers that can't 
     31    be fractioned. Discovered by Ashen-Shugar. [GM] 
    2932  * Fixed handling of telnet NOPs sent by clients. [SW] 
    3033  * The OpenSSL random number pool wasn't getting adequately 
    3134    initialized on systems without /dev/urandom [SW] 
    3235  * Infinite loop in math code. Reported by Ashen-Sugar. [GM] 
     36  * mkvershlp.pl skips over emacs backup files. 
    3337 
    3438Version 1.8.2 patchlevel 5                      June 13, 2007 
    3539 
    3640Minor changes: 
    37   * Removed the gmalloc malloc option. [SW] 
    3841  * Assorted gcc warning fixes. [SW] 
    3942 
  • 1.8.3/branches/devel/game/txt/hlp/pennv182.hlp

    r1025 r1030  
    77 
    88Minor changes: 
     9  * Removed the gmalloc malloc option. [SW] 
    910  * KEEPALIVE flag makes the server send a telnet NOP after 
    1011    a short period of inactivity; helps prevent timeouts from 
     
    1314Fixes: 
    1415  * Fixed assorted small memory leaks. [SW] 
     16  * Fix to fraction() when dealing with numbers that can't 
     17    be fractioned. Discovered by Ashen-Shugar. [GM] 
    1518  * Fixed handling of telnet NOPs sent by clients. [SW] 
    1619  * The OpenSSL random number pool wasn't getting adequately 
    1720    initialized on systems without /dev/urandom [SW] 
    1821  * Infinite loop in math code. Reported by Ashen-Sugar. [GM] 
     22  * mkvershlp.pl skips over emacs backup files. 
    1923 
    2024& 1.8.2p5 
     
    2226 
    2327Minor changes: 
    24   * Removed the gmalloc malloc option. [SW] 
    2528  * Assorted gcc warning fixes. [SW] 
    2629 
  • 1.8.3/branches/devel/utils/mkvershlp.pl

    r681 r1030  
    1 #!/usr/bin/perl 
     1#!/usr/bin/env perl 
    22# 
    33# Generate game/txt/hlp/ files from the CHANGES file(s). 
     
    2222my $really_started = 0; 
    2323foreach my $file (@sources) { 
     24  next if $file =~ /~$/o; 
    2425  warn "Can't open $file!\n", next unless open(IN,"<$file"); 
    2526  my $target = $file;