Should "std.net.curl" be moved from Phobos to Deimos?

Wyatt wyatt.epp at gmail.com
Tue Nov 26 06:46:55 PST 2013


On Tuesday, 26 November 2013 at 02:22:50 UTC, Jordi Sayol wrote:
>
> On Debian testing (64-bit):
>
> $ ldd /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0
> 	linux-vdso.so.1 (0x00007fff36519000)
/snip

Evidently, Debian builds curl with 
--enable-everything-under-the-sun.  Here's mine, with just ssl 
(via OpenSSL) support:

wyatt at Yue ~ $ ldd /usr/lib/libcurl.so
         linux-vdso.so.1 (0x00007fff7f7ff000)
         libssl.so.1.0.0 => /usr/lib64/libssl.so.1.0.0 
(0x00007ff835865000)
         libcrypto.so.1.0.0 => /usr/lib64/libcrypto.so.1.0.0 
(0x00007ff83547c000)
         libz.so.1 => /lib64/libz.so.1 (0x00007ff835265000)
         librt.so.1 => /lib64/librt.so.1 (0x00007ff83505c000)
         libc.so.6 => /lib64/libc.so.6 (0x00007ff834cb2000)
         libdl.so.2 => /lib64/libdl.so.2 (0x00007ff834aad000)
         libpthread.so.0 => /lib64/libpthread.so.0 
(0x00007ff834890000)
         /lib64/ld-linux-x86-64.so.2 (0x00007ff835d73000)

I'll be generous and allow that zlib might somehow be a sticking 
point, but there's really nothing unexpected here, IMO.

-Wyatt


More information about the Digitalmars-d mailing list