- Timestamp:
- 2006-03-05T20:07:33Z (19 years ago)
- Branches:
- master
- Children:
- 728a981
- Parents:
- f665dab (diff), 27ac72d (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
rf665dab r96ace1b 15 15 config='/var/lib/bitlbee/' 16 16 pidfile='/var/run/bitlbee.pid' 17 ipcsocket='/var/run/bitlbee' 17 18 plugindir='$prefix/lib/bitlbee' 19 pcdir='$prefix/lib/pkgconfig' 20 includedir='$prefix/include/bitlbee' 18 21 19 22 msn=1 … … 50 53 --pidfile=... $pidfile 51 54 --config=... $config 55 --ipcsocket=... $ipcsocket 52 56 53 57 --msn=0/1 Disable/enable MSN part $msn … … 79 83 config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'` 80 84 plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'` 81 pidfile=`eval echo "$pidfile/" | sed 's/\/\{1,\}/\//g'` 85 pidfile=`eval echo "$pidfile" | sed 's/\/\{1,\}/\//g'` 86 ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'` 87 includedir=`eval echo "$includedir" | sed 's/\/\{1,\}/\//g'` 88 pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'` 82 89 83 90 cat<<EOF>Makefile.settings … … 89 96 DATADIR=$datadir 90 97 PLUGINDIR=$plugindir 91 PIDFILE=$pidfile92 98 CONFIG=$config 99 IPCSOCKET=$ipcsocket 100 INCLUDEDIR=$includedir 101 PCDIR=$pcdir 93 102 94 103 ARCH=$arch … … 112 121 #define PLUGINDIR "$plugindir" 113 122 #define PIDFILE "$pidfile" 123 #define IPCSOCKET "$ipcsocket" 114 124 #define ARCH "$arch" 115 125 #define CPU "$cpu" … … 336 346 fi 337 347 348 cat <<EOF>bitlbee.pc 349 prefix=$prefix 350 includedir=$includedir 351 352 Name: bitlbee 353 Description: IRC to IM gateway 354 Requires: glib-2.0 355 Version: $BITLBEE_VERSION 356 Libs: 357 Cflags: -I\${includedir} 358 359 EOF 360 338 361 protocols='' 339 362 protoobjs=''
Note: See TracChangeset
for help on using the changeset viewer.