Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r670204f r8de63c3  
    1818libevent='/usr/'
    1919pidfile='/var/run/bitlbee.pid'
    20 ipcsocket='/var/run/bitlbee'
     20ipcsocket='/var/run/bitlbee.sock'
    2121pcdir='$prefix/lib/pkgconfig'
    2222
     
    2828debug=0
    2929strip=1
     30gcov=0
    3031ipv6=1
    3132
     
    6768--debug=0/1     Disable/enable debugging                $debug
    6869--strip=0/1     Disable/enable binary stripping         $strip
     70--gcov=0/1      Disable/enable test coverage reporting  $gcov
    6971
    7072--ipv6=0/1      IPv6 socket support                     $ipv6
     
    105107PLUGINDIR=$plugindir
    106108CONFIG=$config
    107 IPCSOCKET=$ipcsocket
    108109INCLUDEDIR=$includedir
    109110PCDIR=$pcdir
     
    337338        echo "#undef WITH_LDAP" >> config.h
    338339elif [ "$ldap" = 1 ]; then
     340        echo
     341        echo 'LDAP support is a work in progress and does NOT work AT ALL right now.'
     342        echo
     343        exit 1
     344       
    339345        echo "#define WITH_LDAP 1" >> config.h
    340346        STORAGES="$STORAGES ldap"
     
    366372fi
    367373
     374if [ "$gcov" = "1" ]; then
     375        echo "CFLAGS+=-ftest-coverage -fprofile-arcs" >> Makefile.settings
     376        echo "EFLAGS+=-lgcov" >> Makefile.settings
     377fi
     378
    368379echo
    369380if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then
     
    458469        echo 'STRIP=\# skip strip' >> Makefile.settings
    459470;;
     471AIX )
     472        echo 'EFLAGS+=-Wl,-brtl' >> Makefile.settings
     473;;
    460474CYGWIN* )
    461475        echo 'Cygwin is not officially supported.'
Note: See TracChangeset for help on using the changeset viewer.