Changeset 52b3a99 for configure


Ignore:
Timestamp:
2005-12-17T18:55:46Z (19 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
2db811a
Parents:
8a9afe4 (diff), b5a22e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Successfully tested http_client, added support for redirections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r8a9afe4 r52b3a99  
    252252        if [ "$ret" = "0" ]; then
    253253                echo
    254                 echo 'WARNING: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).'
    255                 echo '         This is necessary for MSN and full Jabber support. To continue,'
    256                 echo '         install a suitable SSL library or disable MSN support (--msn=0).'
    257                 echo '         If you want Jabber without SSL support you can try --ssl=bogus.'
     254                echo 'ERROR: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).'
     255                echo '       This is necessary for MSN and full Jabber support. To continue,'
     256                echo '       install a suitable SSL library or disable MSN support (--msn=0).'
     257                echo '       If you want Jabber without SSL support you can try --ssl=bogus.'
    258258               
    259259                exit 1;
     
    308308        echo '#define WITH_MSN' >> config.h
    309309        protocols=$protocols'msn '
    310         protoobjs=$protoobjs'msnn.o '
     310        protoobjs=$protoobjs'msn_mod.o '
    311311fi
    312312
     
    316316        echo '#define WITH_JABBER' >> config.h
    317317        protocols=$protocols'jabber '
    318         protoobjs=$protoobjs'jabberr.o '
     318        protoobjs=$protoobjs'jabber_mod.o '
    319319fi
    320320
     
    324324        echo '#define WITH_OSCAR' >> config.h
    325325        protocols=$protocols'oscar '
    326         protoobjs=$protoobjs'oscarr.o '
     326        protoobjs=$protoobjs'oscar_mod.o '
    327327fi
    328328
     
    332332        echo '#define WITH_YAHOO' >> config.h
    333333        protocols=$protocols'yahoo '
    334         protoobjs=$protoobjs'yahooo.o '
     334        protoobjs=$protoobjs'yahoo_mod.o '
    335335fi
    336336
Note: See TracChangeset for help on using the changeset viewer.