Changes in configure [85cf37f:a014331]
Legend:
- Unmodified
- Added
- Removed
-
configure
r85cf37f ra014331 14 14 datadir='$prefix/share/bitlbee/' 15 15 config='/var/lib/bitlbee/' 16 plugindir='$prefix/lib/bitlbee/'17 includedir='$prefix/include/bitlbee/'18 libevent='/usr/'19 16 pidfile='/var/run/bitlbee.pid' 20 17 ipcsocket='/var/run/bitlbee' 18 plugindir='$prefix/lib/bitlbee' 21 19 pcdir='$prefix/lib/pkgconfig' 20 includedir='$prefix/include/bitlbee' 22 21 23 22 msn=1 … … 29 28 strip=1 30 29 ipv6=1 31 32 events=glib33 30 ssl=auto 34 31 … … 67 64 --ipv6=0/1 IPv6 socket support $ipv6 68 65 69 --events=... Event handler (glib, libevent) $events70 66 --ssl=... SSL library to use (gnutls, nss, openssl, bogus, auto) 71 67 $ssl … … 84 80 config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'` 85 81 plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'` 86 includedir=`eval echo "$includedir"/ | sed 's/\/\{1,\}/\//g'`87 libevent=`eval echo "$libevent"/ | sed 's/\/\{1,\}/\//g'`88 89 82 pidfile=`eval echo "$pidfile" | sed 's/\/\{1,\}/\//g'` 90 83 ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'` 84 includedir=`eval echo "$includedir" | sed 's/\/\{1,\}/\//g'` 91 85 pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'` 92 86 … … 189 183 :; 190 184 elif [ -r /usr/local/include/iconv.h ]; then 191 echo CFLAGS+=-I/usr/local/include >> Makefile.settings 185 echo CFLAGS+=-I/usr/local/include >> Makefile.settings; 192 186 else 193 187 echo 194 188 echo 'Warning: Could not find iconv.h, you might have to install it and/or modify' 195 echo 'Makefile.settings to tell where this file is.' 196 fi 197 198 199 if [ "$events" = "libevent" ]; then 200 if ! [ -e "${libevent}include/event.h" ]; then 201 echo 202 echo 'Warning: Could not find event.h, you might have to install it and/or specify' 203 echo 'its location using the --libevent= argument. (Example: If event.h is in' 204 echo '/usr/local/include and binaries are in /usr/local/lib: --libevent=/usr/local)' 205 fi 206 207 echo '#define EVENTS_LIBEVENT' >> config.h 208 cat <<EOF>>Makefile.settings 209 EFLAGS+=-levent -L${libevent}lib 210 CFLAGS+=-I${libevent}include 211 EOF 212 elif [ "$events" = "glib" ]; then 213 ## We already use glib anyway, so this is all we need (and in fact not even this, but just to be sure...): 214 echo '#define EVENTS_GLIB' >> config.h 215 else 216 echo 217 echo 'ERROR: Unknown event handler specified.' 218 exit 1 219 fi 220 echo 'EVENT_HANDLER=events_'$events'.o' >> Makefile.settings 189 echo 'Makefile.settings to tell where this file is.'; 190 fi 221 191 222 192 … … 452 422 fi 453 423 454 echo ' Using event handler: '$events; 455 echo ' Using SSL library: '$ssl; 424 if [ "$msn" = "1" ]; then 425 echo ' Using SSL library: '$ssl; 426 fi 456 427 457 428 #if [ "$flood" = "0" ]; then
Note: See TracChangeset
for help on using the changeset viewer.