diff options
author | Dmitriy Eshenko <dmitriy.eshenko@accel-ppp.org> | 2024-10-26 21:52:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-26 21:52:31 +0300 |
commit | d6942a97ee6c566ba888106caa4f75fe5bb505f9 (patch) | |
tree | 219c5589601db284068d54df94b3f64d8c8d556b | |
parent | edadda488d6146b60d2cc42219cf50c25701c797 (diff) | |
parent | a800602f15d10271972668312ce10e9fdbaf3375 (diff) | |
download | accel-ppp.github.io-d6942a97ee6c566ba888106caa4f75fe5bb505f9.tar.gz accel-ppp.github.io-d6942a97ee6c566ba888106caa4f75fe5bb505f9.zip |
Merge pull request #1 from svlobanov/libpcre2
replace libpcre/libpcre3 to libpcre2
-rw-r--r-- | doc/installation/centos.rst | 4 | ||||
-rw-r--r-- | doc/installation/debian.rst | 6 | ||||
-rw-r--r-- | doc/installation/generic_inst.rst | 2 | ||||
-rw-r--r-- | doc/installation/ubuntu.rst | 6 |
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. |