- Timestamp:
- 2005-12-15T12:24:25Z (19 years ago)
- Branches:
- master
- Children:
- 4146a07
- Parents:
- 2983f5e (diff), bf02a67 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r2983f5e rbd69a21 57 57 --strip=0/1 Disable/enable binary stripping $strip 58 58 59 --flood=0/1 Flood protection $flood60 59 --ipv6=0/1 IPv6 socket support $ipv6 61 60 … … 287 286 288 287 if [ "$flood" = 1 ]; then 289 echo '#define FLOOD_SEND' >> config.h 288 # echo '#define FLOOD_SEND' >> config.h 289 echo 'Flood protection is disabled in this release because of too many bugs.' 2> /dev/stderr 290 rm config.h 291 rm Makefile.settings 292 exit 1 290 293 fi 291 294 … … 345 348 case "$arch" in 346 349 Linux ) 347 echo 'Linux.'348 350 ;; 349 351 GNU/* ) 350 echo 'Debian with non-Linux kernel?'351 352 ;; 352 353 *BSD ) 353 echo '*BSD.'354 354 echo 'EFLAGS+=-liconv' >> Makefile.settings; 355 355 ;; 356 356 SunOS ) 357 echo 'Solaris.'358 357 echo 'EFLAGS+=-lresolv -lnsl -lsocket' >> Makefile.settings 359 358 echo 'STRIP=\# skip strip' >> Makefile.settings … … 361 360 ;; 362 361 Darwin ) 363 echo 'Darwin/Mac OS X.'364 362 echo 'EFLAGS+=-liconv' >> Makefile.settings; 365 363 ;; 366 364 IRIX ) 367 echo 'IRIX.'368 365 ;; 369 366 CYGWIN* ) … … 371 368 ;; 372 369 * ) 373 echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV. Please report any problems to <wilmer@gaast.net>.' 370 echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV.' 371 echo 'Please report any problems at http://bugs.bitlbee.org/.' 374 372 ;; 375 373 esac … … 394 392 fi 395 393 396 if [ "$flood" = "0" ]; then397 echo ' Flood protection disabled.';398 else399 echo ' Flood protection enabled.';400 fi394 #if [ "$flood" = "0" ]; then 395 # echo ' Flood protection disabled.'; 396 #else 397 # echo ' Flood protection enabled.'; 398 #fi 401 399 402 400 if [ -n "$protocols" ]; then
Note: See TracChangeset
for help on using the changeset viewer.