Changeset e506d6c for configure


Ignore:
Timestamp:
2006-03-02T11:38:33Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
1e5fcac
Parents:
9a1555d
Message:

Install bitlbee's header files and a pkg-config file. This means
that 3rd-parties can write support for additional protocols in BitlBee.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r9a1555d re506d6c  
    1717ipcsocket='/var/run/bitlbee'
    1818plugindir='$prefix/lib/bitlbee'
     19pcdir='$prefix/lib/pkgconfig'
     20includedir='$prefix/include/bitlbee'
    1921
    2022msn=1
     
    8082pidfile=`eval echo "$pidfile" | sed 's/\/\{1,\}/\//g'`
    8183ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'`
     84includedir=`eval echo "$includedir" | sed 's/\/\{1,\}/\//g'`
     85pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'`
    8286
    8387cat<<EOF>Makefile.settings
     
    9195CONFIG=$config
    9296IPCSOCKET=$ipcsocket
     97INCLUDEDIR=$includedir
     98PCDIR=$pcdir
    9399
    94100ARCH=$arch
     
    311317fi
    312318
     319cat <<EOF>bitlbee.pc
     320prefix=$prefix
     321includedir=$includedir
     322
     323Name: bitlbee
     324Description: IRC to IM gateway
     325Requires: glib-2.0
     326Version: $BITLBEE_VERSION
     327Libs:
     328Cflags: -I\${includedir}
     329
     330EOF
     331
    313332protocols=''
    314333protoobjs=''
Note: See TracChangeset for help on using the changeset viewer.