Keith Steensma: > gcc -Wmissing-prototypes -Wformat -fPIC -g -O -I. -DLINUX3 -c dict_pcre.c > gcc -shared -Wl,-soname,dict_pcre.so -o dict_pcre.so dict_pcre.o -lpcre > -L. -lutil > /usr/bin/ld: cannot find -lpcre > collect2: error: ld returned 1 exit status > make: *** [dict_pcre.so] Error 1
Apparently, you have the pcre-config command as well as the pcre.h include file, but not the libpcre.so library. Install pcre-devel (or whatever they call it). Wietse