Thread overview
Compile-time errors using Dub/DMD - missing dependencies
Apr 02, 2015
Cassandra Nix
Apr 02, 2015
weaselcat
Apr 02, 2015
Cassandra Nix
Apr 02, 2015
017hnoor
April 02, 2015
New questions are sorry, but I have a few minor problems. Where
can I find / install these dependencies?

/usr/bin/ld: cannot find -levent
/usr/bin/ld: cannot find -levent_pthreads
/usr/bin/ld: cannot find -lssl
/usr/bin/ld: cannot find -lcrypto
April 02, 2015
On Thursday, 2 April 2015 at 01:32:43 UTC, Cassandra Nix wrote:
> New questions are sorry, but I have a few minor problems. Where
> can I find / install these dependencies?
>
> /usr/bin/ld: cannot find -levent
> /usr/bin/ld: cannot find -levent_pthreads
> /usr/bin/ld: cannot find -lssl
> /usr/bin/ld: cannot find -lcrypto

They're unhandled C dependencies, but very common ones so I'm surprised you don't have them(at least, the last two.)

If you're on linux,
event and event_pthreads would be in the libevent package for your distro - on debian/ubuntu it's libevent-dev
ssl and crypto would be in libssl-dev

If you're not on a debian-based distro just search your package manager for similar packages.
April 02, 2015
Thanks to the correct
April 02, 2015
On Thursday, 2 April 2015 at 01:50:56 UTC, Cassandra Nix wrote:
> Thanks to the correct

We sould track down the old links and redirect to the new
> documentation pages.