hi,
when I tried to install it I got a error:oglregexprwrapper.pas(17,3) Fatal: Cannot find regexpr_t used by OGLRegExprWrapper of package commonutils_ilya2ik.
Hello.
The problem is caused by the fact that the current version of Lazarus uses an outdated RegExpr module. If your version of Lazarus already has REVersionMajor >= 1 in the RegExpr module, then it is correct to change two lines in module OGLRegExprWrapper:
{.$define regexpr_new}
{$define regexpr_t}
to
{$define regexpr_new}
{.$define regexpr_t}
Otherwise, it is strongly recommended to add all files from the folder "src" from repository
https://github.com/andgineer/TRegExpr to the project folder or to the commonutils folder, and then rename regexpr.pas to regexpr_t.pas
If you do not want to download a new version of TRegExpr, you can limit yourself to the following change in OGLRegExprWrapper module
{.$define regexpr_new}
{.$define regexpr_t}