> routes/route_arp.o routes/route_interface.o routes/route_bns.o
-pthread -dl -lpcre -rdynamic
> /usr/bin/ld: cannot find -lpcre
> collect2: ld returned 1 exit status
> gmake: *** [hlbr] Error 1

Aparentemente sua libpcre não está no diretório padrão das bibliotecas
do seu sistema... Tente fazer:

$ ./configure

abra o aquivo Makefile com seu editor de texto preferido. Procure por:

EXTRA_LIBS = -lpcre

e substitua por

EXTRA_LIBS = -L/caminho/da/lib/pcre -lpcre

onde /caminho/da/lib/pcre representa o caminho absoluto da libpcre no
seu sistema.

salve...

$ gmake


Responder a