Skip to content

Commit

Permalink
Merge pull request #1 from svlobanov/libpcre2
Browse files Browse the repository at this point in the history
replace libpcre/libpcre3 to libpcre2
  • Loading branch information
DmitriyEshenko authored Oct 26, 2024
2 parents edadda4 + a800602 commit d6942a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/installation/centos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Before compile and build package need satisfy some dependencies
* **cmake** - open-source system that manages the build process
* **gcc** - GNU Compiler Collection (GCC) is a compiler system
* **git** - version-control system for tracking changes, (need for downloading source code)
* **pcre-devel** - source code of pcre lib, accel-ppp need it for use reg expression
* **pcre2-devel** - source code of pcre2 lib, accel-ppp need it for use reg expression
* **openssl-devel** - source code of lib ssl, accel-ppp need it for use regular expression
* **lua-devel** - this need for create custom username (IPoE) from packet. Script write on lua language

.. code-block:: sh
yum -y install rpm-build make cmake gcc git pcre-devel openssl-devel lua-devel
yum -y install rpm-build make cmake gcc git pcre2-devel openssl-devel lua-devel
After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release.

Expand Down
6 changes: 3 additions & 3 deletions doc/installation/debian.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Before compile and build package need satisfy some dependencies
* **gcc** - GNU Compiler Collection (GCC) is a compiler system
* **linux-headers-`uname -r`** - source code of current installing linux kernel, need for build ipoe and vlan_mon modules. If you don`t need these modules, you may don`t install this
* **git** - version-control system for tracking changes, (need for downloading source code)
* **libpcre3-dev** - source code of pcre lib, accel-ppp need it for use reg expression
* **libssl-dev** - source code of pcre lib, accel-ppp need it for use regular expression
* **libpcre2-dev** - source code of pcre2 lib, accel-ppp need it for use reg expression
* **libssl-dev** - source code of ssl lib, accel-ppp need it for use regular expression
* **liblua5.1-0-dev** - this need for create custom username (IPoE) from packet. Script write on lua language

.. code-block:: sh
apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre3-dev libssl-dev liblua5.1-0-dev
apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre2-dev libssl-dev liblua5.1-0-dev
After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release.

Expand Down
2 changes: 1 addition & 1 deletion doc/installation/generic_inst.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Requirment
* cmake-2.6 or later
* libnl-2.0 or probably later (optional, required for builtin shaper)
* libcrypto-0.9.8 or probably later (openssl-0.9.8)
* libpcre
* libpcre2
* net-snmp-5.x (optional, required for snmp)
* libssl-0.9.8 or probably later (openssl-0.9.8)
* liblua5.1 probably later (optional, required for create username fundamental on packet header information)
Expand Down
6 changes: 3 additions & 3 deletions doc/installation/ubuntu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Before compile and build package need satisfy some dependencies
* **gcc** - GNU Compiler Collection (GCC) is a compiler system
* **linux-headers-`uname -r`** - source code of current installing linux kernel, need for build ipoe and vlan_mon modules. If you don`t need these modules, you may don`t install this
* **git** - version-control system for tracking changes, (need for downloading source code)
* **libpcre3-dev** - source code of pcre lib, accel-ppp need it for use reg expression
* **libssl-dev** - source code of pcre lib, accel-ppp need it for use regular expression
* **libpcre2-dev** - source code of pcre2 lib, accel-ppp need it for use reg expression
* **libssl-dev** - source code of ssl lib, accel-ppp need it for use regular expression
* **liblua5.1-0-dev** - this need for create custom username (IPoE) from packet. Script write on lua language

.. code-block:: sh
apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre3-dev libssl-dev liblua5.1-0-dev
apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre2-dev libssl-dev liblua5.1-0-dev
After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release.

Expand Down

0 comments on commit d6942a9

Please sign in to comment.