OpenSSL-têtes manquantes lors de la construction d'OpenSSH

Je veux construire une certaine version d'OpenSSH avec une version d'OpenSSL à partir des sources, mais j'obtiens l'erreur suivante:

mkdir /tmp/ssh
cp openssh-6.7p1.tar.gz /tmp/ssh
cp openssl-1.0.1l.tar.gz /tmp/ssh
cd /tmp/ssh
tar zxvf openssl-1.0.1l.tar.gz
cd openssl-1.0.1l
./config --prefix=/tmp/ssh
make
make install
cd ..
tar zxvf openssh-6.7p1.tar.gz
cd openssh-6.7p1
./configure --with-ssl-dir=/tmp/ssh --prefix=/tmp/ssh

...
checking openssl/opensslv.h usability... no
checking openssl/opensslv.h presence... no
checking for openssl/opensslv.h... no
configure: error: *** OpenSSL headers missing - please install first or check config.log ***

Est-il un bug dans openSSH du script de configuration ou dois-je modifier une commande?

OriginalL'auteur name | 2015-05-19