Changeset 2abfbc5


Ignore:
Timestamp:
2007-08-30T22:17:51Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
f2b171d
Parents:
a8a0b4c
Message:

From vmiklos: Added --plugins= option to configure script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    ra8a0b4c r2abfbc5  
    2929strip=1
    3030gcov=0
     31plugins=1
    3132ipv6=1
    3233
     
    6970--strip=0/1     Disable/enable binary stripping         $strip
    7071--gcov=0/1      Disable/enable test coverage reporting  $gcov
     72--plugins=0/1   Disable/enable plugins support          $plugins
    7173
    7274--ipv6=0/1      IPv6 socket support                     $ipv6
     
    383385fi
    384386
     387if [ "$plugins" = 0 ]; then
     388        echo '#undef WITH_PLUGINS' >> config.h
     389else
     390        echo '#define WITH_PLUGINS' >> config.h
     391fi
     392
    385393echo
    386394if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then
Note: See TracChangeset for help on using the changeset viewer.