- Timestamp:
- 2005-12-14T01:17:25Z (19 years ago)
- Branches:
- master
- Children:
- 547f937
- Parents:
- 22bf64e (diff), 568aaf7 (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
r22bf64e r703f0f7 14 14 datadir='$prefix/share/bitlbee/' 15 15 config='/var/lib/bitlbee/' 16 plugindir='$prefix/lib/bitlbee' 16 17 17 18 msn=1 … … 45 46 --mandir=... $mandir 46 47 --datadir=... $datadir 48 --plugindir=... $plugindir 47 49 --config=... $config 48 50 … … 72 74 datadir=`eval echo "$datadir/" | sed 's/\/\{1,\}/\//g'` 73 75 config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'` 76 plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'` 74 77 75 78 cat<<EOF>Makefile.settings … … 80 83 MANDIR=$mandir 81 84 DATADIR=$datadir 85 PLUGINDIR=$plugindir 82 86 CONFIG=$config 83 87 … … 100 104 #define ETCDIR "$etcdir" 101 105 #define VARDIR "$datadir" 106 #define PLUGINDIR "$plugindir" 102 107 #define ARCH "$arch" 103 108 #define CPU "$cpu" … … 142 147 if type pkg-config > /dev/null 2>/dev/null && pkg-config glib-2.0; then 143 148 cat<<EOF>>Makefile.settings 144 EFLAGS+=`pkg-config --libs glib-2.0 `145 CFLAGS+=`pkg-config --cflags glib-2.0 `149 EFLAGS+=`pkg-config --libs glib-2.0 gmodule-2.0` 150 CFLAGS+=`pkg-config --cflags glib-2.0 gmodule-2.0` 146 151 EOF 147 152 echo '#define GLIB2' >> config.h
Note: See TracChangeset
for help on using the changeset viewer.