- Timestamp:
- 2008-06-29T23:41:39Z (16 years ago)
- Branches:
- master
- Children:
- dfd442b
- Parents:
- cd63d58 (diff), 913545e (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
rcd63d58 rf5d1b31 20 20 ipcsocket='/var/run/bitlbee.sock' 21 21 pcdir='$prefix/lib/pkgconfig' 22 systemlibdirs="/lib /usr/lib /usr/local/lib" 22 23 23 24 msn=1 … … 109 110 PCDIR=$pcdir 110 111 112 TARGET=$target 111 113 ARCH=$arch 112 114 CPU=$cpu 113 OUTFILE=bitlbee114 115 115 116 DESTDIR= … … 134 135 EOF 135 136 137 138 136 139 if [ -n "$target" ]; then 137 PKG_CONFIG_PATH=/usr/$target/lib/pkgconfig 140 PKG_CONFIG_LIBDIR=/usr/$target/lib/pkgconfig 141 export PKG_CONFIG_LIBDIR 138 142 PATH=/usr/$target/bin:$PATH 139 143 CC=$target-cc 140 144 LD=$target-ld 141 fi 145 systemlibdirs="/usr/$target/lib" 146 fi 147 142 148 143 149 if [ "$debug" = "1" ]; then … … 285 291 elif [ "$ssl" = "nss" ]; then 286 292 detect_nss 293 elif [ "$ssl" = "sspi" ]; then 294 echo 287 295 elif [ "$ssl" = "openssl" ]; then 288 296 echo … … 341 349 echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings 342 350 343 for i in /lib /usr/lib /usr/local/lib; do351 for i in $systemlibdirs; do 344 352 if [ -f $i/libresolv.a ]; then 345 353 echo '#define HAVE_RESOLV_A' >> config.h … … 501 509 echo 'Cygwin is not officially supported.' 502 510 ;; 511 Windows ) 512 ;; 503 513 * ) 504 514 echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV.'
Note: See TracChangeset
for help on using the changeset viewer.