source: configure @ 3bd2f17

Last change on this file since 3bd2f17 was 693ff09, checked in by Wilmer van der Gaast <wilmer@…>, at 2011-11-25T07:46:44Z

Removing duplicate twitter=1 line. Bug #804.

  • Property mode set to 100755
File size: 18.8 KB
RevLine 
[b7d3cc34]1#!/bin/sh
2
3##############################
4##  Configurer for BitlBee  ##
5##                          ##
6##  Copyright 2004 Lintux   ##
7##  Copyright 2002 Lucumo   ##
8##############################
9
10prefix='/usr/local/'
11bindir='$prefix/sbin/'
12etcdir='$prefix/etc/bitlbee/'
13mandir='$prefix/share/man/'
14datadir='$prefix/share/bitlbee/'
15config='/var/lib/bitlbee/'
[85cf37f]16plugindir='$prefix/lib/bitlbee/'
17includedir='$prefix/include/bitlbee/'
[417002e]18systemdsystemunitdir=''
[85cf37f]19libevent='/usr/'
[34b17d9]20pidfile='/var/run/bitlbee.pid'
[4c225f0]21ipcsocket=''
[e506d6c]22pcdir='$prefix/lib/pkgconfig'
[8462239]23systemlibdirs="/lib /lib64 /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64"
[b7d3cc34]24
25msn=1
26jabber=1
27oscar=1
28yahoo=1
[1b221e0]29twitter=1
[04dc563]30purple=0
[b7d3cc34]31
32debug=0
33strip=1
[66b9e86e]34gcov=0
[2abfbc5]35plugins=1
[04f0c10]36otr=0
[370899f]37skype=0
[85cf37f]38
39events=glib
[670204f]40ldap=0
[b7d3cc34]41ssl=auto
42
43arch=`uname -s`
44cpu=`uname -m`
45
[670204f]46GLIB_MIN_VERSION=2.4
47
[b7d3cc34]48echo BitlBee configure
49
50while [ -n "$1" ]; do
51        e="`expr "X$1" : 'X--\(.*=.*\)'`"
52        if [ -z "$e" ]; then
53                cat<<EOF
54
55Usage: $0 [OPTIONS]
56
57Option          Description                             Default
58
59--prefix=...    Directories to put files in             $prefix
60--bindir=...                                            $bindir
61--etcdir=...                                            $etcdir
62--mandir=...                                            $mandir
63--datadir=...                                           $datadir
[7b23afd]64--plugindir=...                                         $plugindir
[417002e]65--systemdsystemunitdir=...                              $systemdsystemunitdir
[34b17d9]66--pidfile=...                                           $pidfile
[b7d3cc34]67--config=...                                            $config
68
69--msn=0/1       Disable/enable MSN part                 $msn
70--jabber=0/1    Disable/enable Jabber part              $jabber
71--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
72--yahoo=0/1     Disable/enable Yahoo part               $yahoo
[4aa0f6b]73--twitter=0/1   Disable/enable Twitter part             $twitter
[b7d3cc34]74
[796da03]75--purple=0/1    Disable/enable libpurple support        $purple
[04f0c10]76                (automatically disables other protocol modules)
[b7d3cc34]77
78--debug=0/1     Disable/enable debugging                $debug
79--strip=0/1     Disable/enable binary stripping         $strip
[66b9e86e]80--gcov=0/1      Disable/enable test coverage reporting  $gcov
[2abfbc5]81--plugins=0/1   Disable/enable plugins support          $plugins
[04f0c10]82--otr=0/1/auto/plugin
83                Disable/enable OTR encryption support   $otr
[17f6079]84--skype=0/1/plugin
[370899f]85                Disable/enable Skype support            $skype
[b7d3cc34]86
[85cf37f]87--events=...    Event handler (glib, libevent)          $events
[b7d3cc34]88--ssl=...       SSL library to use (gnutls, nss, openssl, bogus, auto)
89                                                        $ssl
[aec56b0]90
[f1e7407]91--target=...    Cross compilation target                same as host
[b7d3cc34]92EOF
93                exit;
94        fi
95        eval "$e"
96        shift;
97done
98
99# Expand $prefix and get rid of double slashes
100bindir=`eval echo "$bindir/" | sed 's/\/\{1,\}/\//g'`
101etcdir=`eval echo "$etcdir/" | sed 's/\/\{1,\}/\//g'`
102mandir=`eval echo "$mandir/" | sed 's/\/\{1,\}/\//g'`
103datadir=`eval echo "$datadir/" | sed 's/\/\{1,\}/\//g'`
104config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'`
[7b23afd]105plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'`
[85cf37f]106includedir=`eval echo "$includedir"/ | sed 's/\/\{1,\}/\//g'`
107libevent=`eval echo "$libevent"/ | sed 's/\/\{1,\}/\//g'`
108
[6dff9d4]109pidfile=`eval echo "$pidfile" | sed 's/\/\{1,\}/\//g'`
110ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'`
[e506d6c]111pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'`
[b7d3cc34]112
[17f6079]113protocols_mods=""
114
[b7d3cc34]115cat<<EOF>Makefile.settings
116## BitlBee settings, generated by configure
117PREFIX=$prefix
118BINDIR=$bindir
119ETCDIR=$etcdir
120MANDIR=$mandir
121DATADIR=$datadir
[7b23afd]122PLUGINDIR=$plugindir
[b7d3cc34]123CONFIG=$config
[e506d6c]124INCLUDEDIR=$includedir
125PCDIR=$pcdir
[b7d3cc34]126
[1bf9492]127TARGET=$target
[b7d3cc34]128ARCH=$arch
129CPU=$cpu
130
131DESTDIR=
132LFLAGS=
133EFLAGS=
134EOF
135
[1074806]136srcdir=$(cd $(dirname $0);pwd)
137currdir=$(pwd)
138if [ "$srcdir" != "$currdir" ]; then 
[f60079b]139        echo
140        echo "configure script run from a different directory. Will create some symlinks..."
141        if [ ! -e Makefile -o -L Makefile ]; then
[04dc563]142                COPYDIRS="doc lib protocols tests utils"
143                mkdir -p $(cd "$srcdir"; find $COPYDIRS -type d)
[f60079b]144                find . -name Makefile -type l -print0 | xargs -0 rm 2> /dev/null
145                dst="$PWD"
146                cd "$srcdir"
[04dc563]147                for i in $(find . -name Makefile -type f); do
[f60079b]148                        ln -s "$PWD${i#.}" "$dst/$i";
149                done
150                cd "$dst"
151                rm -rf .bzr
152        fi
153       
154        echo "SRCDIR=$srcdir/" >> Makefile.settings
155        CFLAGS="$CFLAGS -I${dst}"
156else
157        srcdir=$PWD
158fi
159
[b7d3cc34]160cat<<EOF>config.h
161/* BitlBee settings, generated by configure
162   
163   Do *NOT* use any of these defines in your code without thinking twice, most
164   of them can/will be overridden at run-time */
165
166#define CONFIG "$config"
167#define ETCDIR "$etcdir"
168#define VARDIR "$datadir"
[7b23afd]169#define PLUGINDIR "$plugindir"
[34b17d9]170#define PIDFILE "$pidfile"
[6dff9d4]171#define IPCSOCKET "$ipcsocket"
[b7d3cc34]172#define ARCH "$arch"
173#define CPU "$cpu"
174EOF
175
[1bf9492]176
177
[f1e7407]178if [ -n "$target" ]; then
[1bf9492]179        PKG_CONFIG_LIBDIR=/usr/$target/lib/pkgconfig
180        export PKG_CONFIG_LIBDIR
[f1e7407]181        PATH=/usr/$target/bin:$PATH
182        CC=$target-cc
183        LD=$target-ld
[1bf9492]184        systemlibdirs="/usr/$target/lib"
[f1e7407]185fi
186
[1bf9492]187
[b7d3cc34]188if [ "$debug" = "1" ]; then
[285b55d]189        [ -z "$CFLAGS" ] && CFLAGS=-g
[b7d3cc34]190        echo 'DEBUG=1' >> Makefile.settings
[911cc4f]191        CFLAGS="$CFLAGS -DDEBUG"
[b7d3cc34]192else
[56f260a]193        [ -z "$CFLAGS" ] && CFLAGS="-O2 -fno-strict-aliasing"
[b7d3cc34]194fi
195
[daae10f]196echo CFLAGS=$CFLAGS $CPPFLAGS >> Makefile.settings
[f60079b]197echo CFLAGS+=-I${srcdir} -I${srcdir}/lib -I${srcdir}/protocols -I. >> Makefile.settings
[b7d3cc34]198
[f712188]199echo CFLAGS+=-DHAVE_CONFIG_H >> Makefile.settings
200
[b7d3cc34]201if [ -n "$CC" ]; then
[5973412]202        CC=$CC
[b7d3cc34]203elif type gcc > /dev/null 2> /dev/null; then
[5973412]204        CC=gcc
[b7d3cc34]205elif type cc > /dev/null 2> /dev/null; then
[5973412]206        CC=cc
[b7d3cc34]207else
208        echo 'Cannot find a C compiler, aborting.'
209        exit 1;
210fi
211
[5973412]212echo "CC=$CC" >> Makefile.settings;
[daae10f]213if echo $CC | grep -qw gcc; then
214        # Apparently -Wall is gcc-specific?
215        echo CFLAGS+=-Wall >> Makefile.settings
216fi
[5973412]217
[f1e7407]218if [ -z "$LD" ]; then
219        if type ld > /dev/null 2> /dev/null; then
220                LD=ld
221        else
222                echo 'Cannot find ld, aborting.'
223                exit 1;
224        fi
[b7d3cc34]225fi
226
[f1e7407]227echo "LD=$LD" >> Makefile.settings
228
[32c632f]229if [ -z "$PKG_CONFIG" ]; then
230        PKG_CONFIG=pkg-config
231fi
232
233if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then
[670204f]234        if $PKG_CONFIG glib-2.0 --atleast-version=$GLIB_MIN_VERSION; then
235                cat<<EOF>>Makefile.settings
[32c632f]236EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0`
237CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0`
[b7d3cc34]238EOF
[670204f]239        else
240                echo
241                echo 'Found glib2 '`$PKG_CONFIG glib-2.0 --modversion`', but version '$GLIB_MIN_VERSION' or newer is required.'
242                exit 1
243        fi
[b7d3cc34]244else
[670204f]245        echo
[574af7e]246        echo 'Cannot find glib2 development libraries, aborting. (Install libglib2-dev?)'
[670204f]247        exit 1
[b7d3cc34]248fi
249
[85cf37f]250if [ "$events" = "libevent" ]; then
[003553b]251        if ! [ -f "${libevent}include/event.h" ]; then
[85cf37f]252                echo
253                echo 'Warning: Could not find event.h, you might have to install it and/or specify'
254                echo 'its location using the --libevent= argument. (Example: If event.h is in'
255                echo '/usr/local/include and binaries are in /usr/local/lib: --libevent=/usr/local)'
256        fi
257       
258        echo '#define EVENTS_LIBEVENT' >> config.h
259        cat <<EOF>>Makefile.settings
260EFLAGS+=-levent -L${libevent}lib
261CFLAGS+=-I${libevent}include
262EOF
263elif [ "$events" = "glib" ]; then
264        ## We already use glib anyway, so this is all we need (and in fact not even this, but just to be sure...):
265        echo '#define EVENTS_GLIB' >> config.h
[b7d3cc34]266else
267        echo
[85cf37f]268        echo 'ERROR: Unknown event handler specified.'
269        exit 1
[b7d3cc34]270fi
[85cf37f]271echo 'EVENT_HANDLER=events_'$events'.o' >> Makefile.settings
[b7d3cc34]272
273detect_gnutls()
274{
[4af7b4f]275        if $PKG_CONFIG --exists gnutls; then
276                cat <<EOF>>Makefile.settings
[83e47ec]277EFLAGS+=`$PKG_CONFIG --libs gnutls` `libgcrypt-config --libs`
278CFLAGS+=`$PKG_CONFIG --cflags gnutls` `libgcrypt-config --cflags`
[4af7b4f]279EOF
280                ssl=gnutls
281                ret=1
282        elif libgnutls-config --version > /dev/null 2> /dev/null; then
[b7d3cc34]283                cat <<EOF>>Makefile.settings
[83e47ec]284EFLAGS+=`libgnutls-config --libs` `libgcrypt-config --libs`
285CFLAGS+=`libgnutls-config --cflags` `libgcrypt-config --cflags`
[b7d3cc34]286EOF
287               
288                ssl=gnutls
289                ret=1;
290        else
291                ret=0;
292        fi;
293}
294
295detect_nss()
296{
[ef043d3]297        if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG nss; then
[b7d3cc34]298                cat<<EOF>>Makefile.settings
[ef043d3]299EFLAGS+=`$PKG_CONFIG --libs nss`
300CFLAGS+=`$PKG_CONFIG --cflags nss`
[b7d3cc34]301EOF
302               
303                ssl=nss
304                ret=1;
305        else
306                ret=0;
307        fi;
308}
309
[f32d557]310detect_ldap()
[f665dab]311{
[4fca1db]312        TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX)
[5973412]313        if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then
[f665dab]314                cat<<EOF>>Makefile.settings
[5973412]315EFLAGS+=-lldap
316CFLAGS+=
[f665dab]317EOF
[f32d557]318                ldap=1
[5973412]319                rm -f $TMPFILE
[f665dab]320                ret=1
[b7d3cc34]321        else
[5973412]322                ldap=0
[f665dab]323                ret=0
[b7d3cc34]324        fi
[f665dab]325}
326
[36cf9fd]327RESOLV_TESTCODE='
328#include <arpa/nameser.h>
329#include <resolv.h>
330
331int main()
332{
333        ns_initparse( NULL, 0, NULL );
334        ns_parserr( NULL, ns_s_an, 0, NULL );
335}
336'
337
338detect_resolv_dynamic()
339{
[4fca1db]340        TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX)
[8462239]341        ret=1
342        echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -lresolv >/dev/null 2>/dev/null
[36cf9fd]343        if [ "$?" = "0" ]; then
344                echo 'EFLAGS+=-lresolv' >> Makefile.settings
[8462239]345                ret=0
[36cf9fd]346        fi
347
[8462239]348        rm -f $TMPFILE
349        return $ret
[36cf9fd]350}
351
352detect_resolv_static()
353{
[4fca1db]354        TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX)
[8462239]355        ret=1
[36cf9fd]356        for i in $systemlibdirs; do
357                if [ -f $i/libresolv.a ]; then
[8462239]358                        echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -Wl,$i/libresolv.a >/dev/null 2>/dev/null
[36cf9fd]359                        if [ "$?" = "0" ]; then
360                                echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings
[8462239]361                                ret=0
[36cf9fd]362                        fi
363                fi
364        done
365
[8462239]366        rm -f $TMPFILE
367        return $ret
[36cf9fd]368}
369
[b3c467b]370if [ "$ssl" = "auto" ]; then
371        detect_gnutls
[b7d3cc34]372        if [ "$ret" = "0" ]; then
[c5920df]373                # Disable NSS for now as it's known to not work very well ATM.
374                #detect_nss
[191cfb1]375                :
[b7d3cc34]376        fi
[b3c467b]377elif [ "$ssl" = "gnutls" ]; then
378        detect_gnutls
379elif [ "$ssl" = "nss" ]; then
380        detect_nss
[85d7b85]381elif [ "$ssl" = "sspi" ]; then
382        echo
[b3c467b]383elif [ "$ssl" = "openssl" ]; then
384        echo
385        echo 'No detection code exists for OpenSSL. Make sure that you have a complete'
386        echo 'install of OpenSSL (including devel/header files) before reporting'
387        echo 'compilation problems.'
388        echo
389        echo 'Also, keep in mind that the OpenSSL is, according to some people, not'
390        echo 'completely GPL-compatible. Using GnuTLS or NSS is recommended and better'
391        echo 'supported by us. However, on many BSD machines, OpenSSL can be considered'
392        echo 'part of the operating system, which makes it GPL-compatible.'
393        echo
394        echo 'For more info, see: http://www.openssl.org/support/faq.html#LEGAL2'
395        echo '                    http://www.gnome.org/~markmc/openssl-and-the-gpl.html'
396        echo
397        echo 'Please note that distributing a BitlBee binary which links to OpenSSL is'
398        echo 'probably illegal. If you want to create and distribute a binary BitlBee'
399        echo 'package, you really should use GnuTLS or NSS instead.'
400        echo
401        echo 'Also, the OpenSSL license requires us to say this:'
402        echo ' *    "This product includes software developed by the OpenSSL Project'
403        echo ' *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"'
[b7d3cc34]404       
[b3c467b]405        echo 'EFLAGS+=-lssl -lcrypto' >> Makefile.settings
406       
407        ret=1
408elif [ "$ssl" = "bogus" ]; then
409        echo
[670204f]410        echo 'Using bogus SSL code. This means some features will not work properly.'
[b3c467b]411       
412        ## Yes, you, at the console! How can you authenticate if you don't have any SSL!?
[1c2eaa3]413        if [ "$msn" = "1" -o "$yahoo" = "1" ]; then
[b7d3cc34]414                echo
[1c2eaa3]415                echo 'WARNING: The MSN and Yahoo! modules will not work without SSL. Disabling.'
[b3c467b]416                msn=0
[1c2eaa3]417                yahoo=0
[b3c467b]418        fi
[b7d3cc34]419       
[b3c467b]420        ret=1
421else
422        echo
423        echo 'ERROR: Unknown SSL library specified.'
424        exit 1
[b7d3cc34]425fi
426
[b3c467b]427if [ "$ret" = "0" ]; then
428        echo
429        echo 'ERROR: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).'
430        echo '       Please note that this script doesn'\''t have detection code for OpenSSL,'
431        echo '       so if you want to use that, you have to select it by hand. If you don'\''t'
432        echo '       need SSL support, you can select the "bogus" SSL library. (--ssl=bogus)'
[b7d3cc34]433       
[b3c467b]434        exit 1
435fi;
436
[83e47ec]437if [ "$msn" = "1" -a "$ssl" != "openssl" -a "$ssl" != "gnutls" ]; then
[a366cca]438        # Needed for MSN only. OpenSSL exports nice cipher functions already,
[83e47ec]439        # in case of GnuTLS we should be able to use gcrypt. Otherwise, use
440        # built-in stuff. (Since right now those are the only two supported
441        # SSL modules anyway, this is mostly unnecessary.)
[a366cca]442        echo 'DES=des.o' >> Makefile.settings
443fi
444
[b3c467b]445echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings
446
[36cf9fd]447if detect_resolv_dynamic || detect_resolv_static; then
448        echo '#define HAVE_RESOLV_A' >> config.h
449fi
[36e9f62]450
[ba7d16f]451STORAGES="xml"
[b3c467b]452
[f32d557]453if [ "$ldap" = "auto" ]; then
454        detect_ldap
[b7d3cc34]455fi
456
[f32d557]457if [ "$ldap" = 0 ]; then
[5973412]458        echo "#undef WITH_LDAP" >> config.h
[f32d557]459elif [ "$ldap" = 1 ]; then
[5c5a586]460        echo
461        echo 'LDAP support is a work in progress and does NOT work AT ALL right now.'
462        echo
463        exit 1
464       
[5973412]465        echo "#define WITH_LDAP 1" >> config.h
[b3c467b]466        STORAGES="$STORAGES ldap"
[b7d3cc34]467fi
468
[b3c467b]469for i in $STORAGES; do
470        STORAGE_OBJS="$STORAGE_OBJS storage_$i.o"
471done
472echo "STORAGE_OBJS="$STORAGE_OBJS >> Makefile.settings
473
[b7d3cc34]474if [ "$strip" = 0 ]; then
475        echo "STRIP=\# skip strip" >> Makefile.settings;
476else
477        if [ "$debug" = 1 ]; then
478                echo
479                echo 'Stripping binaries does not make sense when debugging. Stripping disabled.'
480                echo 'STRIP=\# skip strip' >> Makefile.settings
481                strip=0;
482        elif [ -n "$STRIP" ]; then
483                echo "STRIP=$STRIP" >> Makefile.settings;
484        elif type strip > /dev/null 2> /dev/null; then
485                echo "STRIP=strip" >> Makefile.settings;
486        else
487                echo
488                echo 'No strip utility found, cannot remove unnecessary parts from executable.'
489                echo 'STRIP=\# skip strip' >> Makefile.settings
490                strip=0;
491        fi;
492fi
493
[417002e]494if [ -z "$systemdsystemunitdir" ]; then
495        if $PKG_CONFIG --exists systemd; then
496                systemdsystemunitdir=`$PKG_CONFIG --variable=systemdsystemunitdir systemd`
497        fi
498fi
499if [ -n "$systemdsystemunitdir" ]; then
500        if [ "$systemdsystemunitdir" != "no" ]; then
501                echo "SYSTEMDSYSTEMUNITDIR=$systemdsystemunitdir" >> Makefile.settings
502        fi
503fi
504
[66b9e86e]505if [ "$gcov" = "1" ]; then
[31fc3970]506        echo "CFLAGS+=--coverage" >> Makefile.settings
507        echo "EFLAGS+=--coverage" >> Makefile.settings
[66b9e86e]508fi
509
[2abfbc5]510if [ "$plugins" = 0 ]; then
511        echo '#undef WITH_PLUGINS' >> config.h
512else
513        echo '#define WITH_PLUGINS' >> config.h
514fi
515
[6738a67]516otrprefix=""
517for i in / /usr /usr/local; do
518        if [ -f ${i}/lib/libotr.a ]; then
519                otrprefix=${i}
520                break
521        fi
522done
[764c7d1]523if [ "$otr" = "auto" ]; then
[6738a67]524        if [ -n "$otrprefix" ]; then
525                otr=1
526        else
527                otr=0
528        fi
[764c7d1]529fi
[6738a67]530if [ "$otr" = 1 ]; then
[858ea01]531        # BI == built-in
532        echo '#define OTR_BI' >> config.h
[6738a67]533        echo "EFLAGS+=-L${otrprefix}/lib -lotr" >> Makefile.settings
534        echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings
[858ea01]535        echo 'OTR_BI=otr.o' >> Makefile.settings
536elif [ "$otr" = "plugin" ]; then
537        echo '#define OTR_PI' >> config.h
538        echo "OTRFLAGS=-L${otrprefix}/lib -lotr" >> Makefile.settings
539        echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings
540        echo 'OTR_PI=otr.so' >> Makefile.settings
[764c7d1]541fi
542
[17f6079]543if [ "$skype" = "1" -o "$skype" = "plugin" ]; then
[370899f]544        echo 'SKYPE_PI=skype.so' >> Makefile.settings
[17f6079]545        protocols_mods="$protocol_mods skype(plugin)"
[370899f]546fi
547
[ceebeb1]548if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then
549        echo
550        echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.'
551        echo 'Install xmlto if you want online help to work.'
552fi
553
[ffea9b9]554echo
[a014331]555if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then
556        nick=`bzr nick`
557        if [ -n "$nick" -a "$nick" != "bitlbee" ]; then
558                nick="-$nick"
559        else
560                nick=""
561        fi
[ffea9b9]562        rev=`bzr revno`
563        echo 'Using bzr revision #'$rev' as version number'
[a014331]564        BITLBEE_VERSION=\"bzr$nick-$rev\"
[b7d3cc34]565fi
566
567if [ -n "$BITLBEE_VERSION" ]; then
568        echo 'Spoofing version number: '$BITLBEE_VERSION
569        echo '#undef BITLBEE_VERSION' >> config.h
[ffea9b9]570        echo '#define BITLBEE_VERSION '$BITLBEE_VERSION >> config.h
571        echo
[b7d3cc34]572fi
573
[4fca1db]574if ! make helloworld > /dev/null 2>&1; then
575        echo "WARNING: Your version of make (BSD make?) does not support BitlBee's makefiles."
576        echo "BitlBee needs GNU make to build properly. On most systems GNU make is available"
577        echo "under the name 'gmake'."
578        echo
579        if gmake helloworld > /dev/null 2>&1; then
580                echo "gmake seems to be available on your machine, great."
581                echo
582        else
583                echo "gmake is not installed (or not working). Please try to install it."
584                echo
585        fi
586fi
587
[e506d6c]588cat <<EOF>bitlbee.pc
589prefix=$prefix
590includedir=$includedir
591
592Name: bitlbee
593Description: IRC to IM gateway
594Requires: glib-2.0
595Version: $BITLBEE_VERSION
596Libs:
597Cflags: -I\${includedir}
598
599EOF
600
[b7d3cc34]601protocols=''
602protoobjs=''
603
[e248c7f]604if [ "$purple" = 0 ]; then
605        echo '#undef WITH_PURPLE' >> config.h
606else
[e08e53c]607        if ! $PKG_CONFIG purple; then
608                echo
609                echo 'Cannot find libpurple development libraries, aborting. (Install libpurple-dev?)'
610                exit 1
611        fi
[e248c7f]612        echo '#define WITH_PURPLE' >> config.h
[e08e53c]613        cat<<EOF>>Makefile.settings
614EFLAGS += $($PKG_CONFIG purple --libs)
615PURPLE_CFLAGS += $($PKG_CONFIG purple --cflags)
616EOF
[e248c7f]617        protocols=$protocols'purple '
618        protoobjs=$protoobjs'purple_mod.o '
619
620        # Having both libpurple and native IM modules in one binary may
621        # do strange things. Let's not do that.
622        msn=0
623        jabber=0
624        oscar=0
625        yahoo=0
[bda2975]626       
627        if [ "$events" = "libevent" ]; then
628                echo 'Warning: Some libpurple modules (including msn-pecan) do their event handling'
629                echo 'outside libpurple, talking to GLib directly. At least for now the combination'
630                echo 'libpurple + libevent is *not* recommended!'
[c775a58]631                echo
[bda2975]632        fi
[e248c7f]633fi
634
[b0a89cc]635case "$CC" in
636*gcc* )
637        echo CFLAGS+=-MD -MF .depend/\$@.d >> Makefile.settings
638        for i in . lib protocols protocols/*/; do
639                mkdir -p $i/.depend
640        done
641esac
642
[b7d3cc34]643if [ "$msn" = 0 ]; then
644        echo '#undef WITH_MSN' >> config.h
645else
646        echo '#define WITH_MSN' >> config.h
647        protocols=$protocols'msn '
[b5a22e3]648        protoobjs=$protoobjs'msn_mod.o '
[b7d3cc34]649fi
650
651if [ "$jabber" = 0 ]; then
652        echo '#undef WITH_JABBER' >> config.h
653else
654        echo '#define WITH_JABBER' >> config.h
655        protocols=$protocols'jabber '
[b5a22e3]656        protoobjs=$protoobjs'jabber_mod.o '
[b7d3cc34]657fi
658
659if [ "$oscar" = 0 ]; then
660        echo '#undef WITH_OSCAR' >> config.h
661else
662        echo '#define WITH_OSCAR' >> config.h
663        protocols=$protocols'oscar '
[b5a22e3]664        protoobjs=$protoobjs'oscar_mod.o '
[b7d3cc34]665fi
666
667if [ "$yahoo" = 0 ]; then
668        echo '#undef WITH_YAHOO' >> config.h
669else
670        echo '#define WITH_YAHOO' >> config.h
671        protocols=$protocols'yahoo '
[b5a22e3]672        protoobjs=$protoobjs'yahoo_mod.o '
[b7d3cc34]673fi
674
[1b221e0]675if [ "$twitter" = 0 ]; then
676        echo '#undef WITH_TWITTER' >> config.h
677else
678        echo '#define WITH_TWITTER' >> config.h
679        protocols=$protocols'twitter '
680        protoobjs=$protoobjs'twitter_mod.o '
681fi
682
[b7d3cc34]683if [ "$protocols" = "PROTOCOLS = " ]; then
[43462708]684        echo "Warning: You haven't selected any communication protocol to compile!"
[b3c467b]685        echo "         BitlBee will run, but you will be unable to connect to IM servers!"
[b7d3cc34]686fi
687
688echo "PROTOCOLS = $protocols" >> Makefile.settings
689echo "PROTOOBJS = $protoobjs" >> Makefile.settings
690
691echo Architecture: $arch
692case "$arch" in
693Linux )
694;;
695GNU/* )
696;;
697*BSD )
698;;
699Darwin )
[caceb06]700        echo 'STRIP=\# skip strip' >> Makefile.settings
[b7d3cc34]701;;
702IRIX )
703;;
704SunOS )
705        echo 'EFLAGS+=-lresolv -lnsl -lsocket' >> Makefile.settings
706        echo 'STRIP=\# skip strip' >> Makefile.settings
[70d7795]707        echo '#define NO_FD_PASSING' >> config.h
[b7d3cc34]708;;
[8de63c3]709AIX )
710        echo 'EFLAGS+=-Wl,-brtl' >> Makefile.settings
[b7d3cc34]711;;
712CYGWIN* )
713        echo 'Cygwin is not officially supported.'
714;;
[aec56b0]715Windows )
716;;
[b7d3cc34]717* )
[8d6c4b1]718        echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV.'
719        echo 'Please report any problems at http://bugs.bitlbee.org/.'
[b7d3cc34]720;;
721esac
722
[f1e7407]723if [ -n "$target" ]; then
724        echo "Cross-compiling for: $target"
725fi
726
[b7d3cc34]727echo
728echo 'Configuration done:'
729
730if [ "$debug" = "1" ]; then
[b3c467b]731        echo '  Debugging enabled.'
[b7d3cc34]732else
[b3c467b]733        echo '  Debugging disabled.'
[b7d3cc34]734fi
735
736if [ "$strip" = "1" ]; then
[b3c467b]737        echo '  Binary stripping enabled.'
[b7d3cc34]738else
[b3c467b]739        echo '  Binary stripping disabled.'
[b7d3cc34]740fi
741
[764c7d1]742if [ "$otr" = "1" ]; then
743        echo '  Off-the-Record (OTR) Messaging enabled.'
[858ea01]744elif [ "$otr" = "plugin" ]; then
745        echo '  Off-the-Record (OTR) Messaging enabled (as a plugin).'
[764c7d1]746else
747        echo '  Off-the-Record (OTR) Messaging disabled.'
748fi
749
[417002e]750if [ -n "$systemdsystemunitdir" ]; then
751        echo '  systemd enabled.'
752else
753        echo '  systemd disabled.'
754fi
755
[b3c467b]756echo '  Using event handler: '$events
757echo '  Using SSL library: '$ssl
[4e3df8a]758#echo '  Building with these storage backends: '$STORAGES
[b7d3cc34]759
760if [ -n "$protocols" ]; then
[17f6079]761        echo '  Building with these protocols:' $protocols$protocols_mods
[4e3df8a]762        case "$protocols" in
763        *purple*)
764                echo "    Note that BitlBee-libpurple is supported on a best-effort basis. It's"
765                echo "    not *fully* compatible with normal BitlBee. Don't use it unless you"
766                echo "    absolutely need it (i.e. support for a certain protocol or feature)."
767        esac
[b7d3cc34]768else
[b3c467b]769        echo '  Building without IM-protocol support. We wish you a lot of fun...'
[b7d3cc34]770fi
Note: See TracBrowser for help on using the repository browser.