To fix this problem, you need to install the OpenSSL development package, which is available in the standard repositories of all modern Linux distributions.
To install the OpenSSL development kit on Debian, Ubuntu, or their derivatives:
$ sudo apt-get install libssl-dev
To install the OpenSSL development kit on Fedora, CentOS, or RHEL:
$ sudo yum install openssl-devel
see this link for more information
Edit: As @isapir noted, for Fedora version> = 22, use the DNF package manager:
dnf install openssl-devel
source share