-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

D'oh! When I adjusted configure.in to let you specify the path to curl 
(--with-curl=/path/to/curl) I forgot to add -lcurl to the libs... =|
That's what I get for testing with LD_PRELOAD already set..

Ok.. Hopefully the next build will run.. =)

For now you can either apply the attached patch, or run the transport with
export LD_PRELOAD=/usr/local/lib/libcurl.so.2
(or whatever your library is called)



James
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/biLIcyzaDGfRzi4RAh8RAJwOpknmBmsXgDrly4igRN/F2+x0IwCglOPr
Ra3XH7J1nskj5897dfNXZf8=
=3v4a
-----END PGP SIGNATURE-----
--- msn-transport-cvs/configure.in	2003-09-22 08:04:47.000000000 +1000
+++ msn-transport-new/configure.in	2003-09-22 08:05:32.000000000 +1000
@@ -1,7 +1,7 @@
 AC_INIT(src/init.c)
 
 AM_CONFIG_HEADER(include/config.h)
-AM_INIT_AUTOMAKE(msn-transport,1.2.8pre4)
+AM_INIT_AUTOMAKE(msn-transport,1.2.8pre5)
 
 AC_PROG_CC
 AM_SANITY_CHECK
@@ -50,6 +50,7 @@
 AC_MSG_CHECKING(for curl.h)
 if test -f "$CURL_PATH/curl.h"; then
     AC_MSG_RESULT(Found);
+    LIBS="$LIBS -lcurl"
 else
     AC_MSG_RESULT(Error);
     AC_MSG_ERROR([

Reply via email to