- Timestamp:
- 2006-05-24T23:04:18Z (19 years ago)
- Branches:
- master
- Children:
- 80c1e4d
- Parents:
- 46ad029 (diff), fc630f9 (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
r46ad029 r601e813 17 17 ipcsocket='/var/run/bitlbee' 18 18 plugindir='$prefix/lib/bitlbee' 19 pcdir='$prefix/lib/pkgconfig' 20 includedir='$prefix/include/bitlbee' 19 21 20 22 msn=1 … … 80 82 pidfile=`eval echo "$pidfile" | sed 's/\/\{1,\}/\//g'` 81 83 ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'` 84 includedir=`eval echo "$includedir" | sed 's/\/\{1,\}/\//g'` 85 pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'` 82 86 83 87 cat<<EOF>Makefile.settings … … 91 95 CONFIG=$config 92 96 IPCSOCKET=$ipcsocket 97 INCLUDEDIR=$includedir 98 PCDIR=$pcdir 93 99 94 100 ARCH=$arch … … 300 306 301 307 echo 302 if [ -z "$BITLBEE_VERSION" -a -d .bzr -a -x "`which bzr`" ]; then 308 if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then 309 nick=`bzr nick` 310 if [ -n "$nick" -a "$nick" != "bitlbee" ]; then 311 nick="-$nick" 312 else 313 nick="" 314 fi 303 315 rev=`bzr revno` 304 316 echo 'Using bzr revision #'$rev' as version number' 305 BITLBEE_VERSION=\"bzr -$rev\"317 BITLBEE_VERSION=\"bzr$nick-$rev\" 306 318 fi 307 319 … … 313 325 fi 314 326 327 cat <<EOF>bitlbee.pc 328 prefix=$prefix 329 includedir=$includedir 330 331 Name: bitlbee 332 Description: IRC to IM gateway 333 Requires: glib-2.0 334 Version: $BITLBEE_VERSION 335 Libs: 336 Cflags: -I\${includedir} 337 338 EOF 339 315 340 protocols='' 316 341 protoobjs=''
Note: See TracChangeset
for help on using the changeset viewer.