Bonjour a tous,
je suis entrain de faire ma première install de snort depuis les sources (je suis obligé).
malheureusement, j’ai un problème lors de l’execution de mon script configure
./configure --with-mysql=/usr/local/mysql/ --with-mysql-includes=/usr/local/mysql/include --with-mysql-libraries=/usr/local/mysql/lib --with-dnet-includes=/usr/local/include/ --with-dnet-libraries=/usr/local/lib/
........
........
.......
checking dnet.h usability... yes
checking dnet.h presence... yes
checking for dnet.h... yes
checking for eth_set in -ldnet... no
ERROR! dnet library not found, go get it from
http://code.google.com/p/libdnet/ or use the --with-dnet-*
options, if you have it installed in an unusual place
En gros il me dit qu’il ne trouve pas la librairie libdnet alors que je l’ai installé ainsi:
wget -P /usr/local/src/ http://prdownloads.sourceforge.net/libdnet/libdnet-1.11.tar.gz?download
# Descente dans le repertoire
cd /usr/local/src/
# Decompression de l'archive
tar xzf libdnet*.tar.gz
# suppression de l'archive
rm libdnet*.tar.gz
# Descente dans le fichier des sources
cd /usr/local/src/libdnet*
# Préparation de la compilation
./configure
# Compilation
make
# Installation
make install
Il est donc bien présent dans mon /usr/local/lib et /usr/local/include.
Avez vous une idée pour mon problème ?
Je vous remercie d’avance de votre aide 

