Changeset 9fae35c for configure


Ignore:
Timestamp:
2006-01-23T23:28:13Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
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.
Message:

Merge from Wilmer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r7308b63 r9fae35c  
    2323debug=0
    2424strip=1
    25 flood=0
    2625ipv6=1
    2726ssl=auto
     
    289288fi
    290289
    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
     290echo
     291if [ -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\"
    297295fi
    298296
    299297if [ -n "$BITLBEE_VERSION" ]; then
    300         echo
    301298        echo 'Spoofing version number: '$BITLBEE_VERSION
    302299        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
    304302fi
    305303
     
    340338
    341339if [ "$protocols" = "PROTOCOLS = " ]; then
    342         echo
    343340        echo "WARNING: You haven't selected any communication protocol to compile!"
    344341        echo "         Bitlbee will run, but you will be unable to connect to IM servers!"
     
    348345echo "PROTOOBJS = $protoobjs" >> Makefile.settings
    349346
    350 echo
    351347echo Architecture: $arch
    352348case "$arch" in
Note: See TracChangeset for help on using the changeset viewer.