Mercurial > pidgin.yaz
changeset 11945:3edbb29daa0c
[gaim-migrate @ 14236]
This is needed before you can even consider compiling the silc PRPL
statically.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 02 Nov 2005 03:50:51 +0000 |
parents | 7470ae0d0e63 |
children | f87f50f57b0b |
files | configure.ac |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.ac Wed Nov 02 03:40:45 2005 +0000 +++ b/configure.ac Wed Nov 02 03:50:51 2005 +0000 @@ -205,7 +205,12 @@ extern_init= load_proto= for i in $STATIC_PRPLS ; do - STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" + dnl Ugly special case for "libsilcgaim.a": + if test "x$i" = "xsilc"; then + STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib${i}gaim.a" + else + STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" + fi extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();" load_proto="$load_proto gaim_init_${i}_plugin();" case $i in