- Timestamp:
- 2006-02-12T07:26:20Z (19 years ago)
- Branches:
- master
- Children:
- f665dab
- Parents:
- a323a22 (diff), 58bc4e6 (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
ra323a22 r5ebe625 14 14 datadir='$prefix/share/bitlbee/' 15 15 config='/var/lib/bitlbee/' 16 pidfile='/var/run/bitlbee.pid' 16 17 plugindir='$prefix/lib/bitlbee' 17 18 … … 23 24 debug=0 24 25 strip=1 25 flood=026 26 ipv6=1 27 27 ssl=auto … … 47 47 --datadir=... $datadir 48 48 --plugindir=... $plugindir 49 --pidfile=... $pidfile 49 50 --config=... $config 50 51 … … 75 76 config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'` 76 77 plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'` 78 pidfile=`eval echo "$pidfile/" | sed 's/\/\{1,\}/\//g'` 77 79 78 80 cat<<EOF>Makefile.settings … … 84 86 DATADIR=$datadir 85 87 PLUGINDIR=$plugindir 88 PIDFILE=$pidfile 86 89 CONFIG=$config 87 90 … … 105 108 #define VARDIR "$datadir" 106 109 #define PLUGINDIR "$plugindir" 110 #define PIDFILE "$pidfile" 107 111 #define ARCH "$arch" 108 112 #define CPU "$cpu" … … 289 293 fi 290 294 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 295 echo 296 if [ -z "$BITLBEE_VERSION" -a -d .bzr -a -x "`which bzr`" ]; then 297 rev=`bzr revno` 298 echo 'Using bzr revision #'$rev' as version number' 299 BITLBEE_VERSION=\"bzr-$rev\" 297 300 fi 298 301 299 302 if [ -n "$BITLBEE_VERSION" ]; then 300 echo301 303 echo 'Spoofing version number: '$BITLBEE_VERSION 302 304 echo '#undef BITLBEE_VERSION' >> config.h 303 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h; 305 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h 306 echo 304 307 fi 305 308 … … 340 343 341 344 if [ "$protocols" = "PROTOCOLS = " ]; then 342 echo343 345 echo "WARNING: You haven't selected any communication protocol to compile!" 344 346 echo " Bitlbee will run, but you will be unable to connect to IM servers!" … … 348 350 echo "PROTOOBJS = $protoobjs" >> Makefile.settings 349 351 350 echo351 352 echo Architecture: $arch 352 353 case "$arch" in
Note: See TracChangeset
for help on using the changeset viewer.