I had attempted to build CEGUI without PCRE support (--disable-pcre configure option) but apparently it was nevertheless still needed:
Code: Select all
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../../cegui/include -I../../cegui/include -I/home/wondersye/Projects/LOANI-latest/LOANI-installations/freetype-2.4.3/include -I/home/wondersye/Projects/LOANI-latest/LOANI-installations/freetype-2.4.3/include/freetype2 -DDEBUG -g -O2 -MT libCEGUIBase_la-CEGUIEditbox.lo -MD -MP -MF .deps/libCEGUIBase_la-CEGUIEditbox.Tpo -c elements/CEGUIEditbox.cpp -fPIC -DPIC -o .libs/libCEGUIBase_la-CEGUIEditbox.o
In file included from elements/CEGUIEditbox.cpp:38:0:
../../cegui/include/CEGUIPCRERegexMatcher.h:33:18: fatal error: pcre.h: No such file or directory
compilation terminated.
make[3]: *** [libCEGUIBase_la-CEGUIEditbox.lo] Erreur 1
When removing that configuration option and specifying an actual PCRE installation (that is, here, prefixed):
Code: Select all
export pcre_CFLAGS="-I${pcre_PREFIX}/include"
export pcre_LIBS="-L${pcre_PREFIX}/lib -lpcre"
everything worked correctly.
Best regards,
Olivier Boudeville.