On 06/03/2013 11:38 PM, Wayne Blaszczyk wrote: > Hi All, > > I get the following error: > checking for Unicode support in PCRE... no > configure: error: *** The system-supplied PCRE does not support Unicode > properties or UTF-8. > It builds fine with pcre-8.32 > This issue only arises on a clean build. If installing pcre-8.33 on top > of pcre-8.32, then building glib is fine. (unless libpcre.so.1.2.0 is > removed). > Has anyone else had this issue? > > Regards, > Wayne. >
mv -v /usr/lib/libpcre.so.* /lib && ln -sfv ../../lib/libpcre.so.1.2.0 /usr/lib/libpcre.so This looks wrong to me. It should be: ln -sfv ../../lib/libpcre.so.1.2.1 /usr/lib/libpcre.so $ ls -l /usr/lib/libpcre.so* lrwxrwxrwx 1 root root 16 May 29 03:40 /usr/lib/libpcre.so -> libpcre.so.1.2.1 lrwxrwxrwx 1 root root 16 May 29 03:40 /usr/lib/libpcre.so.1 -> libpcre.so.1.2.1 -rwxr-xr-x 1 root root 439804 May 29 03:40 /usr/lib/libpcre.so.1.2.1 This is what I got on Archlinux. -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
