Wiki » History » Version 2
iri, 02/24/2011 12:18 AM
| 1 | 1 | iri | h1. PCRE : Perl Compatible Regular Expression |
|---|---|---|---|
| 2 | |||
| 3 | This library is in development yet. It's a beta version, so, be carefull ! |
||
| 4 | It is under "GNU / LGPL":http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html 2.1 license |
||
| 5 | |||
| 6 | Syntax and semantics of the regular expressions supported by this library : |
||
| 7 | http://library.gnome.org/devel/glib/unstable/glib-regex-syntax.html |
||
| 8 | 2 | iri | Warning : all may not be implemented yet ! |
| 9 | 1 | iri | |
| 10 | h2. Installation |
||
| 11 | |||
| 12 | # Stop any Scol instance. |
||
| 13 | # Copy the dll file (MS Window) or so file (GNU / Linux) to your scol plugins subfolder. |
||
| 14 | # In the Scol root directory, edit the _usm.ini_ file and add this line : |
||
| 15 | @plugin plugins/pcre.dll SCOLloadPCRE SCOLfreePCRE@ |
||
| 16 | # Launch Scol |
||
| 17 | |||
| 18 | h2. Uninstallion |
||
| 19 | |||
| 20 | # Stop any Scol instance. |
||
| 21 | # Remove the dll file (MS Window) or so file (GNU / Linux) to your scol plugins subfolder. |
||
| 22 | # In the Scol root directory, edit the _usm.ini_ file and remove (or comment with #) this line : |
||
| 23 | @plugin plugins/pcre.dll SCOLloadPCRE SCOLfreePCRE@ |
||
| 24 | # Launch Scol |
||
| 25 | |||
| 26 | |||
| 27 | h2. If the library is not loaded ... |
||
| 28 | |||
| 29 | * GLib 2 must be installed in your system. |
||
| 30 | ** *On MS Windows :* |
||
| 31 | If not, you can download it from http://www.gtk.org/download-windows.html : |
||
| 32 | - - GTK+ individual packages |
||
| 33 | - - - GLib |
||
| 34 | - - - - Run-time |
||
| 35 | Only _libglib-2.0-0.dll_ (or +) is needed to pcre library. |
||
| 36 | Copy it to your windows/system32 subfolder (recommended) or to your Scol root folder. |
||
| 37 | ** *On GNU/ Linux :* |
||
| 38 | Upgrade your system to get the version 2.0 |
||
| 39 | |||
| 40 | * Verify the line in the usm.ini file |
||
| 41 | The syntax must be exact and there is not \tab, only \space. |
||
| 42 | |||
| 43 | If you are a developer, you could be interested by the [[API]] ... |