Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rf712188 r8d6c4b1  
    5555--strip=0/1     Disable/enable binary stripping         $strip
    5656
    57 --flood=0/1     Flood protection                        $flood
    5857--ipv6=0/1      IPv6 socket support                     $ipv6
    5958
     
    282281
    283282if [ "$flood" = 1 ]; then
    284         echo '#define FLOOD_SEND' >> config.h
     283        # echo '#define FLOOD_SEND' >> config.h
     284        echo 'Flood protection is disabled in this release because of too many bugs.' 2> /dev/stderr
     285        rm config.h
     286        rm Makefile.settings
     287        exit 1
    285288fi
    286289
     
    340343case "$arch" in
    341344Linux )
    342         echo 'Linux.'
    343345;;
    344346GNU/* )
    345         echo 'Debian with non-Linux kernel?'
    346347;;
    347348*BSD )
    348         echo '*BSD.'
    349349        echo 'EFLAGS+=-liconv' >> Makefile.settings;
    350350;;
    351351SunOS )
    352         echo 'Solaris.'
    353352        echo 'EFLAGS+=-lresolv -lnsl -lsocket' >> Makefile.settings
    354353        echo 'STRIP=\# skip strip' >> Makefile.settings
     
    356355;;
    357356Darwin )
    358         echo 'Darwin/Mac OS X.'
    359357        echo 'EFLAGS+=-liconv' >> Makefile.settings;
    360358;;
    361359IRIX )
    362         echo 'IRIX.'
    363360;;
    364361CYGWIN* )
     
    366363;;
    367364* )
    368         echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV. Please report any problems to <wilmer@gaast.net>.'
     365        echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV.'
     366        echo 'Please report any problems at http://bugs.bitlbee.org/.'
    369367;;
    370368esac
     
    389387fi
    390388
    391 if [ "$flood" = "0" ]; then
    392         echo '  Flood protection disabled.';
    393 else
    394         echo '  Flood protection enabled.';
    395 fi
     389#if [ "$flood" = "0" ]; then
     390#       echo '  Flood protection disabled.';
     391#else
     392#       echo '  Flood protection enabled.';
     393#fi
    396394
    397395if [ -n "$protocols" ]; then
Note: See TracChangeset for help on using the changeset viewer.