- Timestamp:
- 2010-04-14T09:27:50Z (15 years ago)
- Branches:
- master
- Children:
- d33679e
- Parents:
- 81186cab (diff), 156bbd7 (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
r81186cab r21c87a7 26 26 oscar=1 27 27 yahoo=1 28 twitter=1 28 29 29 30 debug=0 … … 66 67 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 67 68 --yahoo=0/1 Disable/enable Yahoo part $yahoo 69 --twitter=0/1 Disable/enable Twitter part $twitter 68 70 69 71 --debug=0/1 Disable/enable debugging $debug … … 267 269 detect_ldap() 268 270 { 269 TMPFILE=$(mktemp )271 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 270 272 if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then 271 273 cat<<EOF>>Makefile.settings … … 295 297 detect_resolv_dynamic() 296 298 { 297 TMPFILE=$(mktemp )299 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 298 300 ret=1 299 301 echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -lresolv >/dev/null 2>/dev/null … … 309 311 detect_resolv_static() 310 312 { 311 TMPFILE=$(mktemp )313 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 312 314 ret=1 313 315 for i in $systemlibdirs; do … … 476 478 fi 477 479 480 if ! make helloworld > /dev/null 2>&1; then 481 echo "WARNING: Your version of make (BSD make?) does not support BitlBee's makefiles." 482 echo "BitlBee needs GNU make to build properly. On most systems GNU make is available" 483 echo "under the name 'gmake'." 484 echo 485 if gmake helloworld > /dev/null 2>&1; then 486 echo "gmake seems to be available on your machine, great." 487 echo 488 else 489 echo "gmake is not installed (or not working). Please try to install it." 490 echo 491 fi 492 fi 493 478 494 cat <<EOF>bitlbee.pc 479 495 prefix=$prefix … … 524 540 fi 525 541 542 if [ "$twitter" = 0 ]; then 543 echo '#undef WITH_TWITTER' >> config.h 544 else 545 echo '#define WITH_TWITTER' >> config.h 546 protocols=$protocols'twitter ' 547 protoobjs=$protoobjs'twitter_mod.o ' 548 fi 549 526 550 if [ "$protocols" = "PROTOCOLS = " ]; then 527 551 echo "Warning: You haven't selected any communication protocol to compile!"
Note: See TracChangeset
for help on using the changeset viewer.