# HG changeset patch # User Mark Doliner # Date 1130903451 0 # Node ID 3013d1f6ca438d214668cbc341c5722a722f9af6 # Parent 96221b52d36119c4bb31851e0e87551e38f4cb0d [gaim-migrate @ 14236] This is needed before you can even consider compiling the silc PRPL statically. diff -r 96221b52d361 -r 3013d1f6ca43 configure.ac --- 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