summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSergey V. Lobanov <sergey@lobanov.in>2024-10-26 18:48:57 +0000
committerSergey V. Lobanov <sergey@lobanov.in>2024-10-26 18:48:57 +0000
commita800602f15d10271972668312ce10e9fdbaf3375 (patch)
tree219c5589601db284068d54df94b3f64d8c8d556b /doc
parentedadda488d6146b60d2cc42219cf50c25701c797 (diff)
downloadaccel-ppp.github.io-a800602f15d10271972668312ce10e9fdbaf3375.tar.gz
accel-ppp.github.io-a800602f15d10271972668312ce10e9fdbaf3375.zip
replace libpcre/libpcre3 to libpcre2
sync with https://github.com/accel-ppp/accel-ppp/pull/185
Diffstat (limited to 'doc')
-rw-r--r--doc/installation/centos.rst4
-rw-r--r--doc/installation/debian.rst6
-rw-r--r--doc/installation/generic_inst.rst2
-rw-r--r--doc/installation/ubuntu.rst6
4 files changed, 9 insertions, 9 deletions
diff --git a/doc/installation/centos.rst b/doc/installation/centos.rst
index 92d11c9..e484226 100644
--- a/doc/installation/centos.rst
+++ b/doc/installation/centos.rst
@@ -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.
diff --git a/doc/installation/debian.rst b/doc/installation/debian.rst
index 877b153..d81fbcf 100644
--- a/doc/installation/debian.rst
+++ b/doc/installation/debian.rst
@@ -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.
diff --git a/doc/installation/generic_inst.rst b/doc/installation/generic_inst.rst
index ec8b87f..8387a0c 100644
--- a/doc/installation/generic_inst.rst
+++ b/doc/installation/generic_inst.rst
@@ -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)
diff --git a/doc/installation/ubuntu.rst b/doc/installation/ubuntu.rst
index eb98ca5..a451120 100644
--- a/doc/installation/ubuntu.rst
+++ b/doc/installation/ubuntu.rst
@@ -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.