- Timestamp:
- 2011-03-18T00:57:14Z (14 years ago)
- Branches:
- master
- Children:
- c14959d
- Parents:
- f68fd5f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rf68fd5f r417002e 16 16 plugindir='$prefix/lib/bitlbee/' 17 17 includedir='$prefix/include/bitlbee/' 18 systemdsystemunitdir='' 18 19 libevent='/usr/' 19 20 pidfile='/var/run/bitlbee.pid' … … 62 63 --datadir=... $datadir 63 64 --plugindir=... $plugindir 65 --systemdsystemunitdir=... $systemdsystemunitdir 64 66 --pidfile=... $pidfile 65 67 --config=... $config … … 487 489 fi 488 490 491 if [ -z "$systemdsystemunitdir" ]; then 492 if $PKG_CONFIG --exists systemd; then 493 systemdsystemunitdir=`$PKG_CONFIG --variable=systemdsystemunitdir systemd` 494 fi 495 fi 496 if [ -n "$systemdsystemunitdir" ]; then 497 if [ "$systemdsystemunitdir" != "no" ]; then 498 echo "SYSTEMDSYSTEMUNITDIR=$systemdsystemunitdir" >> Makefile.settings 499 fi 500 fi 501 489 502 if [ "$gcov" = "1" ]; then 490 503 echo "CFLAGS+=--coverage" >> Makefile.settings … … 727 740 fi 728 741 742 if [ -n "$systemdsystemunitdir" ]; then 743 echo ' systemd enabled.' 744 else 745 echo ' systemd disabled.' 746 fi 747 729 748 echo ' Using event handler: '$events 730 749 echo ' Using SSL library: '$ssl
Note: See TracChangeset
for help on using the changeset viewer.