- Timestamp:
- 2006-01-23T23:28:13Z (19 years ago)
- Branches:
- master
- Children:
- ec3e411
- Parents:
- 7308b63 (diff), 68c7c14 (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
r7308b63 r9fae35c 23 23 debug=0 24 24 strip=1 25 flood=026 25 ipv6=1 27 26 ssl=auto … … 289 288 fi 290 289 291 if [ "$flood" = 1 ]; then 292 # echo '#define FLOOD_SEND' >> config.h 293 echo 'Flood protection is disabled in this release because of too many bugs.' 2> /dev/stderr 294 rm config.h 295 rm Makefile.settings 296 exit 1 290 echo 291 if [ -z "$BITLBEE_VERSION" -a -d .bzr -a -x "`which bzr`" ]; then 292 rev=`bzr revno` 293 echo 'Using bzr revision #'$rev' as version number' 294 BITLBEE_VERSION=\"bzr-$rev\" 297 295 fi 298 296 299 297 if [ -n "$BITLBEE_VERSION" ]; then 300 echo301 298 echo 'Spoofing version number: '$BITLBEE_VERSION 302 299 echo '#undef BITLBEE_VERSION' >> config.h 303 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h; 300 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h 301 echo 304 302 fi 305 303 … … 340 338 341 339 if [ "$protocols" = "PROTOCOLS = " ]; then 342 echo343 340 echo "WARNING: You haven't selected any communication protocol to compile!" 344 341 echo " Bitlbee will run, but you will be unable to connect to IM servers!" … … 348 345 echo "PROTOOBJS = $protoobjs" >> Makefile.settings 349 346 350 echo351 347 echo Architecture: $arch 352 348 case "$arch" in
Note: See TracChangeset
for help on using the changeset viewer.