- Timestamp:
- 2010-04-24T17:02:07Z (15 years ago)
- Branches:
- master
- Children:
- c521362
- Parents:
- b5b40ff (diff), f1b7711 (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
rb5b40ff rae3dc99 26 26 oscar=1 27 27 yahoo=1 28 twitter=1 28 29 purple=0 29 30 … … 67 68 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 68 69 --yahoo=0/1 Disable/enable Yahoo part $yahoo 70 --twitter=0/1 Disable/enable Twitter part $twitter 69 71 70 72 --purple=0/1 Disable/enable libpurple support $purple … … 270 272 detect_ldap() 271 273 { 272 TMPFILE=$(mktemp )274 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 273 275 if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then 274 276 cat<<EOF>>Makefile.settings … … 298 300 detect_resolv_dynamic() 299 301 { 300 TMPFILE=$(mktemp )302 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 301 303 ret=1 302 304 echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -lresolv >/dev/null 2>/dev/null … … 312 314 detect_resolv_static() 313 315 { 314 TMPFILE=$(mktemp )316 TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX) 315 317 ret=1 316 318 for i in $systemlibdirs; do … … 479 481 fi 480 482 483 if ! make helloworld > /dev/null 2>&1; then 484 echo "WARNING: Your version of make (BSD make?) does not support BitlBee's makefiles." 485 echo "BitlBee needs GNU make to build properly. On most systems GNU make is available" 486 echo "under the name 'gmake'." 487 echo 488 if gmake helloworld > /dev/null 2>&1; then 489 echo "gmake seems to be available on your machine, great." 490 echo 491 else 492 echo "gmake is not installed (or not working). Please try to install it." 493 echo 494 fi 495 fi 496 481 497 cat <<EOF>bitlbee.pc 482 498 prefix=$prefix … … 551 567 fi 552 568 569 if [ "$twitter" = 0 ]; then 570 echo '#undef WITH_TWITTER' >> config.h 571 else 572 echo '#define WITH_TWITTER' >> config.h 573 protocols=$protocols'twitter ' 574 protoobjs=$protoobjs'twitter_mod.o ' 575 fi 576 553 577 if [ "$protocols" = "PROTOCOLS = " ]; then 554 578 echo "Warning: You haven't selected any communication protocol to compile!"
Note: See TracChangeset
for help on using the changeset viewer.