Suggested patch for libwww-config.in

After attempting to compile xmlrpc against libwww, I found that the 
expected "-lwwwssl" didn't make it since it wasn't included in the 
output of libwww-config.  I tracked that down to a lapse in the 
libwww-config.in file, patched it, and then all worked (for me).  In 
case anyone is interested, here is that patch that I generated:

diff -Naur libwww.orig/libwww-config.in libwww/libwww-config.in
--- libwww.orig/libwww-config.in    2005-03-04 16:05:26.000000000 -0500
+++ libwww/libwww-config.in 2005-03-04 16:09:56.000000000 -0500
@@ -48,7 +48,7 @@
       echo -I@includedir@ -I@includedir@/@PACKAGE@ @DEFS@
       ;;
     --libs)
-      echo -L@libdir@ @LWWWZIP@ @LWWWWAIS@ @LWWWSQL@ -lwwwinit -lwwwapp 
@LWWWXML@ -lwwwhtml -lwwwtelnet -lwwwnews -lwwwhttp -lwwwmime 
-lwwwgopher -lwwwftp -lwwwfile -lwwwdir -lwwwcache -lwwwstream -lwwwmux 
-lwwwtrans -lwwwcore -lwwwutils @LWWWMD5@ @LIBS@
+      echo -L@libdir@ @LWWWZIP@ @LWWWWAIS@ @LWWWSQL@ -lwwwinit -lwwwapp 
@LWWWXML@ -lwwwhtml -lwwwtelnet -lwwwnews -lwwwhttp -lwwwmime 
-lwwwgopher -lwwwftp -lwwwfile -lwwwdir -lwwwcache -lwwwstream -lwwwmux 
-lwwwtrans -lwwwcore -lwwwutils @LWWWMD5@ @LWWWSSL@ @LIBS@
       ;;
     *)
       echo "${usage}" 1>&2

Received on Wednesday, 9 March 2005 03:27:49 UTC