Changeset 3434a8c for configure


Ignore:
Timestamp:
2015-02-25T23:25:37Z (9 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Children:
6cdecc7
Parents:
4f6dfbb
Message:

Makefile update for RPC stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4f6dfbb r3434a8c  
    3232jabber="default-on"
    3333oscar="default-on"
     34rpc="rpc-on"
    3435yahoo="default-on"
    3536
     
    9394--purple=0/1    Disable/enable libpurple support        $purple
    9495                (automatically disables other protocol modules)
     96--rpc=0/1       Disable/enable RPC interface            $rpc
    9597
    9698--debug=0/1     Disable/enable debugging                $debug
     
    793795        protocols=$protocols'twitter '
    794796        protoobjs=$protoobjs'twitter_mod.o '
     797fi
     798
     799if [ "$rpc" = 0 ]; then
     800        echo '#undef WITH_RPC' >> config.h
     801else
     802        echo '#define WITH_RPC' >> config.h
     803        protocols=$protocols'rpc '
     804        protoobjs=$protoobjs'rpc_mod.o '
    795805fi
    796806
Note: See TracChangeset for help on using the changeset viewer.