- Timestamp:
- 2006-01-10T21:35:08Z (19 years ago)
- Branches:
- master
- Children:
- a4dc9f7
- Parents:
- 3e91c3e (diff), dd8d4c5 (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
r3e91c3e r8e419cb 23 23 debug=0 24 24 strip=1 25 flood=026 25 ipv6=1 27 26 ssl=auto … … 258 257 if [ "$ret" = "0" ]; then 259 258 echo 260 echo ' WARNING: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).'261 echo ' 262 echo ' 263 echo ' 259 echo 'ERROR: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).' 260 echo ' This is necessary for MSN and full Jabber support. To continue,' 261 echo ' install a suitable SSL library or disable MSN support (--msn=0).' 262 echo ' If you want Jabber without SSL support you can try --ssl=bogus.' 264 263 265 264 exit 1; … … 291 290 fi 292 291 293 if [ "$flood" = 1 ]; then 294 # echo '#define FLOOD_SEND' >> config.h 295 echo 'Flood protection is disabled in this release because of too many bugs.' 2> /dev/stderr 296 rm config.h 297 rm Makefile.settings 298 exit 1 292 echo 293 if [ -z "$BITLBEE_VERSION" -a -d .bzr -a -x "`which bzr`" ]; then 294 rev=`bzr revno` 295 echo 'Using bzr revision #'$rev' as version number' 296 BITLBEE_VERSION=\"bzr-$rev\" 299 297 fi 300 298 301 299 if [ -n "$BITLBEE_VERSION" ]; then 302 echo303 300 echo 'Spoofing version number: '$BITLBEE_VERSION 304 301 echo '#undef BITLBEE_VERSION' >> config.h 305 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h; 302 echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h 303 echo 306 304 fi 307 305 … … 314 312 echo '#define WITH_MSN' >> config.h 315 313 protocols=$protocols'msn ' 316 protoobjs=$protoobjs'msn n.o '314 protoobjs=$protoobjs'msn_mod.o ' 317 315 fi 318 316 … … 322 320 echo '#define WITH_JABBER' >> config.h 323 321 protocols=$protocols'jabber ' 324 protoobjs=$protoobjs'jabber r.o '322 protoobjs=$protoobjs'jabber_mod.o ' 325 323 fi 326 324 … … 330 328 echo '#define WITH_OSCAR' >> config.h 331 329 protocols=$protocols'oscar ' 332 protoobjs=$protoobjs'oscar r.o '330 protoobjs=$protoobjs'oscar_mod.o ' 333 331 fi 334 332 … … 338 336 echo '#define WITH_YAHOO' >> config.h 339 337 protocols=$protocols'yahoo ' 340 protoobjs=$protoobjs'yahoo o.o '338 protoobjs=$protoobjs'yahoo_mod.o ' 341 339 fi 342 340 343 341 if [ "$protocols" = "PROTOCOLS = " ]; then 344 echo345 342 echo "WARNING: You haven't selected any communication protocol to compile!" 346 343 echo " Bitlbee will run, but you will be unable to connect to IM servers!" … … 350 347 echo "PROTOOBJS = $protoobjs" >> Makefile.settings 351 348 352 echo353 349 echo Architecture: $arch 354 350 case "$arch" in
Note: See TracChangeset
for help on using the changeset viewer.