<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>所有文章 - blog</title>
        <link>https://www.haoyuli.cn:1443/posts/</link>
        <description>所有文章 | blog</description>
        <generator>haoyuli -- blog</generator><language>zh-CN</language><managingEditor>i@haoyuli.cn (haoyuli)</managingEditor>
            <webMaster>i@haoyuli.cn (haoyuli)</webMaster><copyright>haoyuli5</copyright><lastBuildDate>Tue, 02 Jun 2026 00:00:00 &#43;0000</lastBuildDate><atom:link href="https://www.haoyuli.cn:1443/posts/" rel="self" type="application/rss+xml" /><item>
    <title>kaggle平台自动编译记录</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2026/kaggle-auto-openppp/</link>
    <pubDate>Tue, 02 Jun 2026 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2026/kaggle-auto-openppp/</guid>
    <description><![CDATA[<p>本文记录了从零开始在kaggle十分钟自动编译openppp2并上传网盘的过程。</p>
<hr>
<h2 id="1-环境测试"><strong>1️⃣ 环境测试</strong></h2>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>!wget -qO- bench.sh | bash
</span></span></code></pre></div><pre tabindex="0"><code>-------------------- A Bench.sh Script By Teddysun -------------------
 Version            : v2026-01-31
 Usage              : wget -qO- bench.sh | bash
----------------------------------------------------------------------
 CPU Model          : Intel(R) Xeon(R) CPU @ 2.20GHz
 CPU Cores          : 4 @ 2200.222 MHz
 CPU Cache          : 56320 KB
 AES-NI             : ✓ Enabled
 VM-x/AMD-V         : ✗ Disabled
 Total Disk         : 7.9 TB (6.8 TB Used)
 Total RAM          : 31.4 GB (782.8 MB Used)
 System Uptime      : 0 days, 0 hour 19 min
 Load Average       : 0.69, 2.48, 1.78
 OS                 : Ubuntu 22.04.5 LTS
 Arch               : x86_64 (64 Bit)
 Kernel             : 6.6.122+
 TCP Congestion Ctrl: cubic
 Virtualization     : DOCKER
 IPv4/IPv6          : ✓ Online / ✗ Offline
 Organization       : AS396982 Google LLC
 Location           : Council Bluffs / US
 Region             : Iowa
----------------------------------------------------------------------
 I/O Speed(1st run) : 195 MB/s
 I/O Speed(2nd run) : 195 MB/s
 I/O Speed(3rd run) : 190 MB/s
 I/O Speed(average) : 193.3 MB/s
----------------------------------------------------------------------
 Node Name        Upload Speed      Download Speed      Latency     
 Speedtest.net    5811.06 Mbps      5971.28 Mbps        0.71 ms     
 Los Angeles, US  1883.95 Mbps      8137.44 Mbps        47.44 ms    
 Dallas, US       3617.29 Mbps      8487.50 Mbps        15.74 ms    
 Montreal, CA     2512.75 Mbps      148.07 Mbps         31.96 ms    
 Paris, FR        843.58 Mbps       9053.21 Mbps        105.67 ms   
 Amsterdam, NL    877.37 Mbps       4936.21 Mbps        100.37 ms   
 Suzhou, CN       336.39 Mbps       4458.03 Mbps        231.91 ms   
 Ningbo, CN       2.27 Mbps         1806.76 Mbps        236.42 ms   
 Hong Kong, CN    1.11 Mbps         1.54 Mbps           189.26 ms   
 Singapore, SG    514.49 Mbps       3326.35 Mbps        206.15 ms   
 Taipei, CN       614.21 Mbps       6172.39 Mbps        172.16 ms   
 Tokyo, JP        679.79 Mbps       6972.81 Mbps        146.43 ms   
----------------------------------------------------------------------
 Finished in        : 6 min 21 sec
 Timestamp          : 2026-06-02 03:15:38 UTC
----------------------------------------------------------------------
</code></pre><h2 id="2-一键运行"><strong>2️⃣ 一键运行</strong></h2>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>!apt update <span style="color:#f92672">&amp;&amp;</span> apt install -y build-essential cmake ninja-build pkg-config libboost-all-dev libssl-dev libjemalloc-dev zlib1g-dev libunwind-dev <span style="color:#f92672">&amp;&amp;</span> cd /dev/shm <span style="color:#f92672">&amp;&amp;</span> <span style="color:#f92672">(</span>git clone https://github.com/rebecca554owen/openppp2 <span style="color:#f92672">||</span> true<span style="color:#f92672">)</span> <span style="color:#f92672">&amp;&amp;</span> cd openppp2 <span style="color:#f92672">&amp;&amp;</span> mkdir -p build <span style="color:#f92672">&amp;&amp;</span> cd build <span style="color:#f92672">&amp;&amp;</span> cmake .. -DCMAKE_BUILD_TYPE<span style="color:#f92672">=</span>Release <span style="color:#f92672">&amp;&amp;</span> make -j<span style="color:#66d9ef">$(</span>nproc<span style="color:#66d9ef">)</span> <span style="color:#f92672">&amp;&amp;</span> test -f /dev/shm/openppp2/bin/ppp <span style="color:#f92672">&amp;&amp;</span> TOKEN<span style="color:#f92672">=</span><span style="color:#66d9ef">$(</span>curl -s --location --globoff <span style="color:#e6db74">&#39;https://域名/api/user/login&#39;</span> --form <span style="color:#e6db74">&#39;username=用户名&#39;</span> --form <span style="color:#e6db74">&#39;password=密码&#39;</span> | grep -o <span style="color:#e6db74">&#39;&#34;token&#34;:&#34;[^&#34;]*&#39;</span> | cut -d<span style="color:#e6db74">&#39;:&#39;</span> -f2 | tr -d <span style="color:#e6db74">&#39;&#34;&#39;</span><span style="color:#66d9ef">)</span> <span style="color:#f92672">&amp;&amp;</span> curl --location --globoff <span style="color:#e6db74">&#39;https://域名/api/upload&#39;</span> --header <span style="color:#e6db74">&#34;X-Token: </span>$TOKEN<span style="color:#e6db74">&#34;</span> --form <span style="color:#e6db74">&#39;path=/&#39;</span> --form <span style="color:#e6db74">&#39;file=@/dev/shm/openppp2/bin/ppp&#39;</span> --form <span style="color:#e6db74">&#39;type=public&#39;</span><span style="color:#e6db74">```</span>
</span></span></code></pre></div><pre tabindex="0"><code>Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]      
Get:3 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease [3,632 B]
Get:4 https://cli.github.com/packages stable InRelease [3,917 B]               
Get:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]        
Get:6 https://r2u.stat.illinois.edu/ubuntu jammy InRelease [6,555 B]           
Get:7 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]      
Hit:8 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease
Get:9 https://cli.github.com/packages stable/main amd64 Packages [354 B]
Hit:10 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease
Get:11 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1,297 kB]
Get:12 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3,959 kB]
Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [7,090 kB]
Get:14 https://r2u.stat.illinois.edu/ubuntu jammy/main all Packages [10.3 MB]  
Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [4,311 kB][33m
Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,605 kB]
Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [7,400 kB]
Get:18 https://r2u.stat.illinois.edu/ubuntu jammy/main amd64 Packages [3,038 kB][0m
Fetched 39.4 MB in 3s (11.4 MB/s)                           
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
96 packages can be upgraded. Run &#39;apt list --upgradable&#39; to see them.
W: Skipping acquire of configured file &#39;main/source/Sources&#39; as repository &#39;https://r2u.stat.illinois.edu/ubuntu jammy InRelease&#39; does not seem to provide it (sources.list entry misspelt?)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
build-essential is already the newest version (12.9ubuntu3).
cmake is already the newest version (3.22.1-1ubuntu1.22.04.2).
zlib1g-dev is already the newest version (1:1.2.11.dfsg-2ubuntu9.2).
zlib1g-dev set to manually installed.
The following packages were automatically installed and are no longer required:
  libpkgconf3 libreadline-dev
Use &#39;apt autoremove&#39; to remove them.
The following additional packages will be installed:
  javascript-common libboost-atomic-dev libboost-atomic1.74-dev
  libboost-atomic1.74.0 libboost-chrono-dev libboost-chrono1.74-dev
  libboost-chrono1.74.0 libboost-container-dev libboost-container1.74-dev
  libboost-container1.74.0 libboost-context-dev libboost-context1.74-dev
  libboost-context1.74.0 libboost-coroutine-dev libboost-coroutine1.74-dev
  libboost-coroutine1.74.0 libboost-date-time-dev libboost-date-time1.74-dev
  libboost-date-time1.74.0 libboost-exception-dev libboost-exception1.74-dev
  libboost-fiber-dev libboost-fiber1.74-dev libboost-fiber1.74.0
  libboost-graph-dev libboost-graph-parallel-dev
  libboost-graph-parallel1.74-dev libboost-graph-parallel1.74.0
  libboost-graph1.74-dev libboost-graph1.74.0 libboost-iostreams-dev
  libboost-iostreams1.74-dev libboost-iostreams1.74.0 libboost-locale-dev
  libboost-locale1.74-dev libboost-locale1.74.0 libboost-log-dev
  libboost-log1.74-dev libboost-log1.74.0 libboost-math-dev
  libboost-math1.74-dev libboost-math1.74.0 libboost-mpi-dev
  libboost-mpi-python-dev libboost-mpi-python1.74-dev
  libboost-mpi-python1.74.0 libboost-mpi1.74-dev libboost-mpi1.74.0
  libboost-nowide-dev libboost-nowide1.74-dev libboost-nowide1.74.0
  libboost-numpy-dev libboost-numpy1.74-dev libboost-numpy1.74.0
  libboost-program-options-dev libboost-program-options1.74-dev
  libboost-program-options1.74.0 libboost-python-dev libboost-python1.74-dev
  libboost-python1.74.0 libboost-random-dev libboost-random1.74-dev
  libboost-random1.74.0 libboost-regex-dev libboost-regex1.74-dev
  libboost-regex1.74.0 libboost-serialization-dev
  libboost-serialization1.74-dev libboost-serialization1.74.0
  libboost-stacktrace-dev libboost-stacktrace1.74-dev
  libboost-stacktrace1.74.0 libboost-test-dev libboost-test1.74-dev
  libboost-test1.74.0 libboost-thread-dev libboost-thread1.74-dev
  libboost-thread1.74.0 libboost-timer-dev libboost-timer1.74-dev
  libboost-timer1.74.0 libboost-tools-dev libboost-type-erasure-dev
  libboost-type-erasure1.74-dev libboost-type-erasure1.74.0 libboost-wave-dev
  libboost-wave1.74-dev libboost-wave1.74.0 libboost1.74-tools-dev
  libjemalloc2 libjs-sphinxdoc libjs-underscore libssl3 python3-dev
  python3.10-dev r-base-core
Suggested packages:
  apache2 | lighttpd | httpd libboost1.74-doc gccxml xsltproc doxygen
  docbook-xml docbook-xsl default-jdk fop libssl-doc elpa-ess r-doc-info
  | r-doc-pdf r-mathlib r-base-html
Recommended packages:
  r-base-dev r-doc-html
The following packages will be REMOVED:
  pkgconf r-base-dev
The following NEW packages will be installed:
  javascript-common libboost-all-dev libboost-atomic-dev
  libboost-atomic1.74-dev libboost-atomic1.74.0 libboost-chrono-dev
  libboost-chrono1.74-dev libboost-chrono1.74.0 libboost-container-dev
  libboost-container1.74-dev libboost-container1.74.0 libboost-context-dev
  libboost-context1.74-dev libboost-context1.74.0 libboost-coroutine-dev
  libboost-coroutine1.74-dev libboost-coroutine1.74.0 libboost-date-time-dev
  libboost-date-time1.74-dev libboost-date-time1.74.0 libboost-exception-dev
  libboost-exception1.74-dev libboost-fiber-dev libboost-fiber1.74-dev
  libboost-fiber1.74.0 libboost-graph-dev libboost-graph-parallel-dev
  libboost-graph-parallel1.74-dev libboost-graph-parallel1.74.0
  libboost-graph1.74-dev libboost-graph1.74.0 libboost-iostreams-dev
  libboost-iostreams1.74-dev libboost-iostreams1.74.0 libboost-locale-dev
  libboost-locale1.74-dev libboost-locale1.74.0 libboost-log-dev
  libboost-log1.74-dev libboost-log1.74.0 libboost-math-dev
  libboost-math1.74-dev libboost-math1.74.0 libboost-mpi-dev
  libboost-mpi-python-dev libboost-mpi-python1.74-dev
  libboost-mpi-python1.74.0 libboost-mpi1.74-dev libboost-mpi1.74.0
  libboost-nowide-dev libboost-nowide1.74-dev libboost-nowide1.74.0
  libboost-numpy-dev libboost-numpy1.74-dev libboost-numpy1.74.0
  libboost-program-options-dev libboost-program-options1.74-dev
  libboost-program-options1.74.0 libboost-python-dev libboost-python1.74-dev
  libboost-python1.74.0 libboost-random-dev libboost-random1.74-dev
  libboost-random1.74.0 libboost-regex-dev libboost-regex1.74-dev
  libboost-regex1.74.0 libboost-serialization-dev
  libboost-serialization1.74-dev libboost-serialization1.74.0
  libboost-stacktrace-dev libboost-stacktrace1.74-dev
  libboost-stacktrace1.74.0 libboost-test-dev libboost-test1.74-dev
  libboost-test1.74.0 libboost-thread-dev libboost-thread1.74-dev
  libboost-thread1.74.0 libboost-timer-dev libboost-timer1.74-dev
  libboost-timer1.74.0 libboost-tools-dev libboost-type-erasure-dev
  libboost-type-erasure1.74-dev libboost-type-erasure1.74.0 libboost-wave-dev
  libboost-wave1.74-dev libboost-wave1.74.0 libboost1.74-tools-dev
  libjemalloc-dev libjemalloc2 libjs-sphinxdoc libjs-underscore libunwind-dev
  ninja-build pkg-config python3-dev python3.10-dev
The following packages will be upgraded:
  libssl-dev libssl3 r-base-core
3 upgraded, 99 newly installed, 2 to remove and 92 not upgraded.
Need to get 57.7 MB of archives.
After this operation, 182 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB]
Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssl-dev amd64 3.0.2-0ubuntu1.23 [2,376 kB]
Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssl3 amd64 3.0.2-0ubuntu1.23 [1,906 kB]
Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 javascript-common all 11+nmu1 [5,936 B]
Get:5 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost1.74-tools-dev amd64 1.74.0-14ubuntu3 [1,351 kB]
Get:6 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ r-base-core 4.6.0-4.2204.0 [30.2 MB]
Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-tools-dev amd64 1.74.0.3ubuntu7 [3,428 B]
Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-atomic1.74.0 amd64 1.74.0-14ubuntu3 [224 kB]
Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-atomic1.74-dev amd64 1.74.0-14ubuntu3 [221 kB]
Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-atomic-dev amd64 1.74.0.3ubuntu7 [3,544 B]
Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-chrono1.74.0 amd64 1.74.0-14ubuntu3 [232 kB]
Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-chrono1.74-dev amd64 1.74.0-14ubuntu3 [239 kB]
Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-chrono-dev amd64 1.74.0.3ubuntu7 [3,854 B]
Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-container1.74.0 amd64 1.74.0-14ubuntu3 [246 kB]
Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-container1.74-dev amd64 1.74.0-14ubuntu3 [254 kB]
Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-container-dev amd64 1.74.0.3ubuntu7 [3,712 B]
Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-date-time1.74.0 amd64 1.74.0-14ubuntu3 [221 kB]
Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-serialization1.74.0 amd64 1.74.0-14ubuntu3 [327 kB]
Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-serialization1.74-dev amd64 1.74.0-14ubuntu3 [375 kB]
Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-date-time1.74-dev amd64 1.74.0-14ubuntu3 [226 kB]
Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-thread1.74.0 amd64 1.74.0-14ubuntu3 [262 kB]
Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-thread1.74-dev amd64 1.74.0-14ubuntu3 [272 kB]
Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-context1.74.0 amd64 1.74.0-14ubuntu3 [223 kB]
Get:24 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-context1.74-dev amd64 1.74.0-14ubuntu3 [220 kB]
Get:25 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-context-dev amd64 1.74.0.3ubuntu7 [3,456 B]
Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-coroutine1.74.0 amd64 1.74.0-14ubuntu3 [235 kB]
Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-coroutine1.74-dev amd64 1.74.0-14ubuntu3 [244 kB]
Get:28 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-coroutine-dev amd64 1.74.0.3ubuntu7 [3,520 B]
Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-date-time-dev amd64 1.74.0.3ubuntu7 [3,248 B]
Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-exception1.74-dev amd64 1.74.0-14ubuntu3 [217 kB]
Get:31 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-exception-dev amd64 1.74.0.3ubuntu7 [3,250 B]
Get:32 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-fiber1.74.0 amd64 1.74.0-14ubuntu3 [242 kB]
Get:33 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-fiber1.74-dev amd64 1.74.0-14ubuntu3 [254 kB]
Get:34 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-fiber-dev amd64 1.74.0.3ubuntu7 [3,674 B]
Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-regex1.74.0 amd64 1.74.0-14ubuntu3 [511 kB]
Get:36 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph1.74.0 amd64 1.74.0-14ubuntu3 [304 kB]
Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-regex1.74-dev amd64 1.74.0-14ubuntu3 [596 kB]
Get:38 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-test1.74.0 amd64 1.74.0-14ubuntu3 [446 kB]
Get:39 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-test1.74-dev amd64 1.74.0-14ubuntu3 [564 kB]
Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph1.74-dev amd64 1.74.0-14ubuntu3 [335 kB]
Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph-dev amd64 1.74.0.3ubuntu7 [3,348 B]
Get:42 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi1.74.0 amd64 1.74.0-14ubuntu3 [259 kB]
Get:43 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph-parallel1.74.0 amd64 1.74.0-14ubuntu3 [266 kB]
Get:44 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph-parallel1.74-dev amd64 1.74.0-14ubuntu3 [277 kB]
Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-graph-parallel-dev amd64 1.74.0.3ubuntu7 [3,384 B]
Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-iostreams1.74.0 amd64 1.74.0-14ubuntu3 [245 kB]
Get:47 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-iostreams1.74-dev amd64 1.74.0-14ubuntu3 [252 kB]
Get:48 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-iostreams-dev amd64 1.74.0.3ubuntu7 [3,238 B]
Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-locale1.74.0 amd64 1.74.0-14ubuntu3 [413 kB]
Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-locale1.74-dev amd64 1.74.0-14ubuntu3 [594 kB]
Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-locale-dev amd64 1.74.0.3ubuntu7 [3,572 B]
Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-log1.74.0 amd64 1.74.0-14ubuntu3 [592 kB]
Get:53 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-log1.74-dev amd64 1.74.0-14ubuntu3 [853 kB]
Get:54 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-log-dev amd64 1.74.0.3ubuntu7 [3,446 B]
Get:55 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-math1.74.0 amd64 1.74.0-14ubuntu3 [423 kB]
Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-math1.74-dev amd64 1.74.0-14ubuntu3 [620 kB]
Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-math-dev amd64 1.74.0.3ubuntu7 [3,454 B]
Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi1.74-dev amd64 1.74.0-14ubuntu3 [285 kB]
Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi-dev amd64 1.74.0.3ubuntu7 [3,328 B]
Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-python1.74.0 amd64 1.74.0-14ubuntu3 [299 kB]
Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi-python1.74.0 amd64 1.74.0-14ubuntu3 [351 kB]
Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi-python1.74-dev amd64 1.74.0-14ubuntu3 [225 kB]
Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-mpi-python-dev amd64 1.74.0.3ubuntu7 [3,382 B]
Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-numpy1.74.0 amd64 1.74.0-14ubuntu3 [229 kB]
Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-numpy1.74-dev amd64 1.74.0-14ubuntu3 [233 kB]
Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-numpy-dev amd64 1.74.0.3ubuntu7 [3,286 B]
Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-program-options1.74.0 amd64 1.74.0-14ubuntu3 [311 kB]
Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-program-options1.74-dev amd64 1.74.0-14ubuntu3 [380 kB]
Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-program-options-dev amd64 1.74.0.3ubuntu7 [3,266 B]
Get:70 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-dev amd64 3.10.12-1~22.04.15 [508 kB]
Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-underscore all 1.13.2~dfsg-2 [118 kB]
Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjs-sphinxdoc all 4.3.2-1 [139 kB]
Get:73 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-dev amd64 3.10.6-1~22.04.1 [26.0 kB]
Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-python1.74-dev amd64 1.74.0-14ubuntu3 [323 kB]
Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-python-dev amd64 1.74.0.3ubuntu7 [3,538 B]
Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-random1.74.0 amd64 1.74.0-14ubuntu3 [231 kB]
Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-random1.74-dev amd64 1.74.0-14ubuntu3 [231 kB]
Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-random-dev amd64 1.74.0.3ubuntu7 [3,258 B]
Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-regex-dev amd64 1.74.0.3ubuntu7 [3,510 B]
Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-serialization-dev amd64 1.74.0.3ubuntu7 [3,468 B]
Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-stacktrace1.74.0 amd64 1.74.0-14ubuntu3 [267 kB]
Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-stacktrace1.74-dev amd64 1.74.0-14ubuntu3 [232 kB]
Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-stacktrace-dev amd64 1.74.0.3ubuntu7 [3,260 B]
Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-test-dev amd64 1.74.0.3ubuntu7 [3,274 B]
Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libboost-thread-dev amd64 1.74.0.3ubuntu7 [3,266 B]
Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-timer1.74.0 amd64 1.74.0-14ubuntu3 [228 kB]
Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-timer1.74-dev amd64 1.74.0-14ubuntu3 [231 kB]
Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-timer-dev amd64 1.74.0.3ubuntu7 [3,380 B]
Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-type-erasure1.74.0 amd64 1.74.0-14ubuntu3 [234 kB]
Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-type-erasure1.74-dev amd64 1.74.0-14ubuntu3 [239 kB]
Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-type-erasure-dev amd64 1.74.0.3ubuntu7 [3,344 B]
Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-wave1.74.0 amd64 1.74.0-14ubuntu3 [449 kB]
Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-wave1.74-dev amd64 1.74.0-14ubuntu3 [496 kB]
Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-wave-dev amd64 1.74.0.3ubuntu7 [3,292 B]
Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-nowide1.74.0 amd64 1.74.0-14ubuntu3 [223 kB]
Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-nowide1.74-dev amd64 1.74.0-14ubuntu3 [220 kB]
Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-nowide-dev amd64 1.74.0.3ubuntu7 [3,322 B]
Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libboost-all-dev amd64 1.74.0.3ubuntu7 [2,268 B]
Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libjemalloc2 amd64 5.2.1-4ubuntu1 [240 kB]
Get:100 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libunwind-dev amd64 1.3.2-2build2.1 [1,883 kB]
Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ninja-build amd64 1.10.1-1 [111 kB]
Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libjemalloc-dev amd64 5.2.1-4ubuntu1 [447 kB]
Fetched 57.7 MB in 1s (58.7 MB/s)           
Extracting templates from packages: 100%
Preconfiguring packages ...

(Reading database ... 120968 files and directories currently installed.)
Removing r-base-dev (4.5.3-1.2204.0) ...
7Progress: [  0%] [..........................................................] 8dpkg: pkgconf: dependency problems, but removing anyway as you requested:
 libsndfile1-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.
 libmkl-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.
 libmagickwand-6.q16-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.
 libmagickcore-6.q16-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.
 libglib2.0-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.
 libfontconfig-dev:amd64 depends on pkg-config; however:
  Package pkg-config is not installed.
  Package pkgconf which provides pkg-config is to be removed.

Removing pkgconf (1.8.0-1) ...
Removing &#39;diversion of /usr/bin/pkg-config to /usr/bin/pkg-config.real by pkgconf&#39;
Removing &#39;diversion of /usr/share/aclocal/pkg.m4 to /usr/share/aclocal/pkg.real.m4 by pkgconf&#39;
Removing &#39;diversion of /usr/share/man/man1/pkg-config.1.gz to /usr/share/man/man1/pkg-config.real.1.gz by pkgconf&#39;
Removing &#39;diversion of /usr/share/pkg-config-crosswrapper to /usr/share/pkg-config-crosswrapper.real by pkgconf&#39;
Selecting previously unselected package pkg-config.
(Reading database ... 120945 files and directories currently installed.)
Preparing to unpack .../pkg-config_0.29.2-1ubuntu3_amd64.deb ...
7Progress: [  1%] [..........................................................] 8Unpacking pkg-config (0.29.2-1ubuntu3) ...
Preparing to unpack .../libssl-dev_3.0.2-0ubuntu1.23_amd64.deb ...
Unpacking libssl-dev:amd64 (3.0.2-0ubuntu1.23) over (3.0.2-0ubuntu1.21) ...
Preparing to unpack .../libssl3_3.0.2-0ubuntu1.23_amd64.deb ...
7Progress: [  2%] [#.........................................................] 8Unpacking libssl3:amd64 (3.0.2-0ubuntu1.23) over (3.0.2-0ubuntu1.21) ...
Setting up libssl3:amd64 (3.0.2-0ubuntu1.23) ...
Selecting previously unselected package javascript-common.
(Reading database ... 120960 files and directories currently installed.)
Preparing to unpack .../00-javascript-common_11+nmu1_all.deb ...
7Progress: [  3%] [#.........................................................] 8Unpacking javascript-common (11+nmu1) ...
Selecting previously unselected package libboost1.74-tools-dev.
Preparing to unpack .../01-libboost1.74-tools-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost1.74-tools-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-tools-dev.
Preparing to unpack .../02-libboost-tools-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [  4%] [##........................................................] 8Unpacking libboost-tools-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-atomic1.74.0:amd64.
Preparing to unpack .../03-libboost-atomic1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-atomic1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-atomic1.74-dev:amd64.
Preparing to unpack .../04-libboost-atomic1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [  5%] [##........................................................] 8Unpacking libboost-atomic1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-atomic-dev:amd64.
Preparing to unpack .../05-libboost-atomic-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-atomic-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-chrono1.74.0:amd64.
Preparing to unpack .../06-libboost-chrono1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [  6%] [###.......................................................] 8Unpacking libboost-chrono1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-chrono1.74-dev:amd64.
Preparing to unpack .../07-libboost-chrono1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-chrono1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-chrono-dev:amd64.
Preparing to unpack .../08-libboost-chrono-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [  7%] [####......................................................] 8Unpacking libboost-chrono-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-container1.74.0:amd64.
Preparing to unpack .../09-libboost-container1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-container1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-container1.74-dev:amd64.
Preparing to unpack .../10-libboost-container1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-container1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [  8%] [####......................................................] 8Selecting previously unselected package libboost-container-dev:amd64.
Preparing to unpack .../11-libboost-container-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-container-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-date-time1.74.0:amd64.
Preparing to unpack .../12-libboost-date-time1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-date-time1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [  9%] [#####.....................................................] 8Selecting previously unselected package libboost-serialization1.74.0:amd64.
Preparing to unpack .../13-libboost-serialization1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-serialization1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-serialization1.74-dev:amd64.
Preparing to unpack .../14-libboost-serialization1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-serialization1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 10%] [#####.....................................................] 8Selecting previously unselected package libboost-date-time1.74-dev:amd64.
Preparing to unpack .../15-libboost-date-time1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-date-time1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-thread1.74.0:amd64.
Preparing to unpack .../16-libboost-thread1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-thread1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 11%] [######....................................................] 8Selecting previously unselected package libboost-thread1.74-dev:amd64.
Preparing to unpack .../17-libboost-thread1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-thread1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-context1.74.0:amd64.
Preparing to unpack .../18-libboost-context1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-context1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 12%] [#######...................................................] 8Selecting previously unselected package libboost-context1.74-dev:amd64.
Preparing to unpack .../19-libboost-context1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-context1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-context-dev:amd64.
Preparing to unpack .../20-libboost-context-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-context-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 13%] [#######...................................................] 8Selecting previously unselected package libboost-coroutine1.74.0:amd64.
Preparing to unpack .../21-libboost-coroutine1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-coroutine1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-coroutine1.74-dev:amd64.
Preparing to unpack .../22-libboost-coroutine1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-coroutine1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 14%] [########..................................................] 8Selecting previously unselected package libboost-coroutine-dev:amd64.
Preparing to unpack .../23-libboost-coroutine-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-coroutine-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-date-time-dev:amd64.
Preparing to unpack .../24-libboost-date-time-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-date-time-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 15%] [########..................................................] 8Selecting previously unselected package libboost-exception1.74-dev:amd64.
Preparing to unpack .../25-libboost-exception1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-exception1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-exception-dev:amd64.
Preparing to unpack .../26-libboost-exception-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-exception-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-fiber1.74.0:amd64.
Preparing to unpack .../27-libboost-fiber1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 16%] [#########.................................................] 8Unpacking libboost-fiber1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-fiber1.74-dev:amd64.
Preparing to unpack .../28-libboost-fiber1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-fiber1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-fiber-dev:amd64.
Preparing to unpack .../29-libboost-fiber-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [ 17%] [#########.................................................] 8Unpacking libboost-fiber-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-regex1.74.0:amd64.
Preparing to unpack .../30-libboost-regex1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-regex1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph1.74.0:amd64.
Preparing to unpack .../31-libboost-graph1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 18%] [##########................................................] 8Unpacking libboost-graph1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-regex1.74-dev:amd64.
Preparing to unpack .../32-libboost-regex1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-regex1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-test1.74.0:amd64.
Preparing to unpack .../33-libboost-test1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 19%] [###########...............................................] 8Unpacking libboost-test1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-test1.74-dev:amd64.
Preparing to unpack .../34-libboost-test1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-test1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph1.74-dev:amd64.
Preparing to unpack .../35-libboost-graph1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 20%] [###########...............................................] 8Unpacking libboost-graph1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph-dev:amd64.
Preparing to unpack .../36-libboost-graph-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-graph-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-mpi1.74.0.
Preparing to unpack .../37-libboost-mpi1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 21%] [############..............................................] 8Unpacking libboost-mpi1.74.0 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph-parallel1.74.0.
Preparing to unpack .../38-libboost-graph-parallel1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-graph-parallel1.74.0 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph-parallel1.74-dev.
Preparing to unpack .../39-libboost-graph-parallel1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 22%] [############..............................................] 8Unpacking libboost-graph-parallel1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-graph-parallel-dev.
Preparing to unpack .../40-libboost-graph-parallel-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-graph-parallel-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-iostreams1.74.0:amd64.
Preparing to unpack .../41-libboost-iostreams1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 23%] [#############.............................................] 8Unpacking libboost-iostreams1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-iostreams1.74-dev:amd64.
Preparing to unpack .../42-libboost-iostreams1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-iostreams1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-iostreams-dev:amd64.
Preparing to unpack .../43-libboost-iostreams-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-iostreams-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 24%] [##############............................................] 8Selecting previously unselected package libboost-locale1.74.0:amd64.
Preparing to unpack .../44-libboost-locale1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-locale1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-locale1.74-dev:amd64.
Preparing to unpack .../45-libboost-locale1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-locale1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 25%] [##############............................................] 8Selecting previously unselected package libboost-locale-dev:amd64.
Preparing to unpack .../46-libboost-locale-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-locale-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-log1.74.0.
Preparing to unpack .../47-libboost-log1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-log1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 26%] [###############...........................................] 8Selecting previously unselected package libboost-log1.74-dev.
Preparing to unpack .../48-libboost-log1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-log1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-log-dev.
Preparing to unpack .../49-libboost-log-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-log-dev (1.74.0.3ubuntu7) ...
7Progress: [ 27%] [###############...........................................] 8Selecting previously unselected package libboost-math1.74.0:amd64.
Preparing to unpack .../50-libboost-math1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-math1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-math1.74-dev:amd64.
Preparing to unpack .../51-libboost-math1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-math1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 28%] [################..........................................] 8Selecting previously unselected package libboost-math-dev:amd64.
Preparing to unpack .../52-libboost-math-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-math-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-mpi1.74-dev.
Preparing to unpack .../53-libboost-mpi1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-mpi1.74-dev (1.74.0-14ubuntu3) ...
7Progress: [ 29%] [################..........................................] 8Selecting previously unselected package libboost-mpi-dev.
Preparing to unpack .../54-libboost-mpi-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-mpi-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-python1.74.0.
Preparing to unpack .../55-libboost-python1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-python1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 30%] [#################.........................................] 8Selecting previously unselected package libboost-mpi-python1.74.0.
Preparing to unpack .../56-libboost-mpi-python1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-mpi-python1.74.0 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-mpi-python1.74-dev.
Preparing to unpack .../57-libboost-mpi-python1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-mpi-python1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-mpi-python-dev.
Preparing to unpack .../58-libboost-mpi-python-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [ 31%] [##################........................................] 8Unpacking libboost-mpi-python-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-numpy1.74.0.
Preparing to unpack .../59-libboost-numpy1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-numpy1.74.0 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-numpy1.74-dev.
Preparing to unpack .../60-libboost-numpy1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 32%] [##################........................................] 8Unpacking libboost-numpy1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-numpy-dev.
Preparing to unpack .../61-libboost-numpy-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-numpy-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-program-options1.74.0:amd64.
Preparing to unpack .../62-libboost-program-options1.74.0_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 33%] [###################.......................................] 8Unpacking libboost-program-options1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-program-options1.74-dev:amd64.
Preparing to unpack .../63-libboost-program-options1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-program-options1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-program-options-dev:amd64.
Preparing to unpack .../64-libboost-program-options-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [ 34%] [###################.......................................] 8Unpacking libboost-program-options-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package python3.10-dev.
Preparing to unpack .../65-python3.10-dev_3.10.12-1~22.04.15_amd64.deb ...
Unpacking python3.10-dev (3.10.12-1~22.04.15) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../66-libjs-underscore_1.13.2~dfsg-2_all.deb ...
7Progress: [ 35%] [####################......................................] 8Unpacking libjs-underscore (1.13.2~dfsg-2) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../67-libjs-sphinxdoc_4.3.2-1_all.deb ...
Unpacking libjs-sphinxdoc (4.3.2-1) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../68-python3-dev_3.10.6-1~22.04.1_amd64.deb ...
7Progress: [ 36%] [####################......................................] 8Unpacking python3-dev (3.10.6-1~22.04.1) ...
Selecting previously unselected package libboost-python1.74-dev.
Preparing to unpack .../69-libboost-python1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-python1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-python-dev.
Preparing to unpack .../70-libboost-python-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [ 37%] [#####################.....................................] 8Unpacking libboost-python-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-random1.74.0:amd64.
Preparing to unpack .../71-libboost-random1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-random1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-random1.74-dev:amd64.
Preparing to unpack .../72-libboost-random1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 38%] [######################....................................] 8Unpacking libboost-random1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-random-dev:amd64.
Preparing to unpack .../73-libboost-random-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-random-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-regex-dev:amd64.
Preparing to unpack .../74-libboost-regex-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-regex-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 39%] [######################....................................] 8Selecting previously unselected package libboost-serialization-dev:amd64.
Preparing to unpack .../75-libboost-serialization-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-serialization-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-stacktrace1.74.0:amd64.
Preparing to unpack .../76-libboost-stacktrace1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-stacktrace1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 40%] [#######################...................................] 8Selecting previously unselected package libboost-stacktrace1.74-dev:amd64.
Preparing to unpack .../77-libboost-stacktrace1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-stacktrace1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-stacktrace-dev:amd64.
Preparing to unpack .../78-libboost-stacktrace-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-stacktrace-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 41%] [#######################...................................] 8Selecting previously unselected package libboost-test-dev:amd64.
Preparing to unpack .../79-libboost-test-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-test-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-thread-dev:amd64.
Preparing to unpack .../80-libboost-thread-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-thread-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 42%] [########################..................................] 8Selecting previously unselected package libboost-timer1.74.0:amd64.
Preparing to unpack .../81-libboost-timer1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-timer1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-timer1.74-dev:amd64.
Preparing to unpack .../82-libboost-timer1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-timer1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 43%] [########################..................................] 8Selecting previously unselected package libboost-timer-dev:amd64.
Preparing to unpack .../83-libboost-timer-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-timer-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-type-erasure1.74.0:amd64.
Preparing to unpack .../84-libboost-type-erasure1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-type-erasure1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 44%] [#########################.................................] 8Selecting previously unselected package libboost-type-erasure1.74-dev:amd64.
Preparing to unpack .../85-libboost-type-erasure1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-type-erasure1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-type-erasure-dev:amd64.
Preparing to unpack .../86-libboost-type-erasure-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-type-erasure-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 45%] [##########################................................] 8Selecting previously unselected package libboost-wave1.74.0:amd64.
Preparing to unpack .../87-libboost-wave1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-wave1.74.0:amd64 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-wave1.74-dev:amd64.
Preparing to unpack .../88-libboost-wave1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-wave1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 46%] [##########################................................] 8Selecting previously unselected package libboost-wave-dev:amd64.
Preparing to unpack .../89-libboost-wave-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-wave-dev:amd64 (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-nowide1.74.0.
Preparing to unpack .../90-libboost-nowide1.74.0_1.74.0-14ubuntu3_amd64.deb ...
Unpacking libboost-nowide1.74.0 (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-nowide1.74-dev.
Preparing to unpack .../91-libboost-nowide1.74-dev_1.74.0-14ubuntu3_amd64.deb ...
7Progress: [ 47%] [###########################...............................] 8Unpacking libboost-nowide1.74-dev (1.74.0-14ubuntu3) ...
Selecting previously unselected package libboost-nowide-dev.
Preparing to unpack .../92-libboost-nowide-dev_1.74.0.3ubuntu7_amd64.deb ...
Unpacking libboost-nowide-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libboost-all-dev.
Preparing to unpack .../93-libboost-all-dev_1.74.0.3ubuntu7_amd64.deb ...
7Progress: [ 48%] [###########################...............................] 8Unpacking libboost-all-dev (1.74.0.3ubuntu7) ...
Selecting previously unselected package libjemalloc2:amd64.
Preparing to unpack .../94-libjemalloc2_5.2.1-4ubuntu1_amd64.deb ...
Unpacking libjemalloc2:amd64 (5.2.1-4ubuntu1) ...
Selecting previously unselected package libunwind-dev:amd64.
Preparing to unpack .../95-libunwind-dev_1.3.2-2build2.1_amd64.deb ...
7Progress: [ 49%] [############################..............................] 8Unpacking libunwind-dev:amd64 (1.3.2-2build2.1) ...
Selecting previously unselected package ninja-build.
Preparing to unpack .../96-ninja-build_1.10.1-1_amd64.deb ...
Unpacking ninja-build (1.10.1-1) ...
Preparing to unpack .../97-r-base-core_4.6.0-4.2204.0_amd64.deb ...
7Progress: [ 50%] [#############################.............................] 8Unpacking r-base-core (4.6.0-4.2204.0) over (4.5.3-1.2204.0) ...
Selecting previously unselected package libjemalloc-dev.
Preparing to unpack .../98-libjemalloc-dev_5.2.1-4ubuntu1_amd64.deb ...
Unpacking libjemalloc-dev (5.2.1-4ubuntu1) ...
Setting up libboost-chrono1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 51%] [#############################.............................] 8Setting up javascript-common (11+nmu1) ...
Setting up libboost-atomic1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 52%] [##############################............................] 8Setting up libunwind-dev:amd64 (1.3.2-2build2.1) ...
Setting up libboost-iostreams1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 53%] [##############################............................] 8Setting up libboost-program-options1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-chrono1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 54%] [###############################...........................] 8Setting up libboost-stacktrace1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-nowide1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 55%] [################################..........................] 8Setting up libboost-exception1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-exception-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 56%] [################################..........................] 8Setting up libjemalloc2:amd64 (5.2.1-4ubuntu1) ...
Setting up ninja-build (1.10.1-1) ...
7Progress: [ 57%] [#################################.........................] 8Setting up libboost-program-options1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libjemalloc-dev (5.2.1-4ubuntu1) ...
7Progress: [ 58%] [#################################.........................] 8Setting up libboost-test1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-program-options-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 59%] [##################################........................] 8Setting up libboost-nowide1.74-dev (1.74.0-14ubuntu3) ...
Setting up libboost-regex1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 60%] [##################################........................] 8Setting up r-base-core (4.6.0-4.2204.0) ...
Installing new version of config file /etc/R/Makeconf ...
Installing new version of config file /etc/R/Renviron.site ...
Replacing config file /etc/R/Renviron with new version
Setting up libssl-dev:amd64 (3.0.2-0ubuntu1.23) ...
7Progress: [ 61%] [###################################.......................] 8Setting up libboost-context1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-graph1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-random1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 62%] [####################################......................] 8Setting up pkg-config (0.29.2-1ubuntu3) ...
Setting up libboost1.74-tools-dev (1.74.0-14ubuntu3) ...
7Progress: [ 63%] [####################################......................] 8Setting up libboost-atomic1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-math1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 64%] [#####################################.....................] 8Setting up libboost-serialization1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-atomic-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 65%] [#####################################.....................] 8Setting up python3.10-dev (3.10.12-1~22.04.15) ...
Setting up libboost-container1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 66%] [######################################....................] 8Setting up libboost-regex1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-math1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 67%] [######################################....................] 8Setting up libboost-date-time1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-python1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 68%] [#######################################...................] 8Setting up libboost-fiber1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-stacktrace1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 69%] [########################################..................] 8Setting up libboost-test1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-regex-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 70%] [########################################..................] 8Setting up libboost-timer1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libjs-underscore (1.13.2~dfsg-2) ...
7Progress: [ 71%] [#########################################.................] 8Setting up libboost-thread1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-numpy1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 72%] [#########################################.................] 8Setting up libboost-log1.74.0 (1.74.0-14ubuntu3) ...
Setting up libboost-container1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 73%] [##########################################................] 8Setting up libboost-chrono-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-math-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 74%] [##########################################................] 8Setting up libboost-coroutine1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-mpi1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 75%] [###########################################...............] 8Setting up libboost-tools-dev (1.74.0.3ubuntu7) ...
Setting up libboost-nowide-dev (1.74.0.3ubuntu7) ...
7Progress: [ 76%] [############################################..............] 8Setting up libboost-container-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-test-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-iostreams1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 77%] [############################################..............] 8Setting up libboost-random1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-timer1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 78%] [#############################################.............] 8Setting up libboost-numpy1.74-dev (1.74.0-14ubuntu3) ...
Setting up libjs-sphinxdoc (4.3.2-1) ...
7Progress: [ 79%] [#############################################.............] 8Setting up libboost-serialization1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-wave1.74.0:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 80%] [##############################################............] 8Setting up libboost-stacktrace-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-graph-parallel1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 81%] [###############################################...........] 8Setting up libboost-locale1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-timer-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 82%] [###############################################...........] 8Setting up libboost-type-erasure1.74.0:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-mpi-python1.74.0 (1.74.0-14ubuntu3) ...
7Progress: [ 83%] [################################################..........] 8Setting up libboost-wave1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-mpi1.74-dev (1.74.0-14ubuntu3) ...
7Progress: [ 84%] [################################################..........] 8Setting up libboost-mpi-python1.74-dev (1.74.0-14ubuntu3) ...
Setting up libboost-random-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 85%] [#################################################.........] 8Setting up libboost-wave-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-iostreams-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 86%] [#################################################.........] 8Setting up libboost-date-time1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-mpi-python-dev (1.74.0.3ubuntu7) ...
7Progress: [ 87%] [##################################################........] 8Setting up libboost-mpi-dev (1.74.0.3ubuntu7) ...
Setting up libboost-graph1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 88%] [###################################################.......] 8Setting up python3-dev (3.10.6-1~22.04.1) ...
Setting up libboost-numpy-dev (1.74.0.3ubuntu7) ...
7Progress: [ 89%] [###################################################.......] 8Setting up libboost-serialization-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-date-time-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 90%] [####################################################......] 8Setting up libboost-graph-parallel1.74-dev (1.74.0-14ubuntu3) ...
Setting up libboost-thread1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 91%] [####################################################......] 8Setting up libboost-thread-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-graph-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 92%] [#####################################################.....] 8Setting up libboost-log1.74-dev (1.74.0-14ubuntu3) ...
Setting up libboost-context1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-python1.74-dev (1.74.0-14ubuntu3) ...
7Progress: [ 93%] [######################################################....] 8Setting up libboost-python-dev (1.74.0.3ubuntu7) ...
Setting up libboost-fiber1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 94%] [######################################################....] 8Setting up libboost-type-erasure1.74-dev:amd64 (1.74.0-14ubuntu3) ...
Setting up libboost-locale1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 95%] [#######################################################...] 8Setting up libboost-graph-parallel-dev (1.74.0.3ubuntu7) ...
Setting up libboost-coroutine1.74-dev:amd64 (1.74.0-14ubuntu3) ...
7Progress: [ 96%] [#######################################################...] 8Setting up libboost-coroutine-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-log-dev (1.74.0.3ubuntu7) ...
7Progress: [ 97%] [########################################################..] 8Setting up libboost-fiber-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-locale-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 98%] [########################################################..] 8Setting up libboost-context-dev:amd64 (1.74.0.3ubuntu7) ...
Setting up libboost-type-erasure-dev:amd64 (1.74.0.3ubuntu7) ...
7Progress: [ 99%] [#########################################################.] 8Setting up libboost-all-dev (1.74.0.3ubuntu7) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libc-bin (2.35-0ubuntu3.13) ...
/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero_v2.so.0 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libumf.so.1 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link

/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link

Processing triggers for man-db (2.10.2-1) ...
Processing triggers for mailcap (3.70+nmu1ubuntu1) ...

78Cloning into &#39;openppp2&#39;...
remote: Enumerating objects: 6231, done.
remote: Counting objects: 100% (1147/1147), done.
remote: Compressing objects: 100% (225/225), done.
remote: Total 6231 (delta 968), reused 925 (delta 922), pack-reused 5084 (from 2)
Receiving objects: 100% (6231/6231), 13.89 MiB | 19.62 MiB/s, done.
Resolving deltas: 100% (3882/3882), done.
CMake Deprecation Warning at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED):
  Compatibility with CMake &lt; 3.10 will be removed from a future version of
  CMake.

  Update the VERSION argument &lt;min&gt; value.  Or, use the &lt;min&gt;...&lt;max&gt; syntax
  to tell CMake that the project requires at least &lt;min&gt; but has been updated
  to work with policies introduced by &lt;max&gt; or earlier.


-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test COMPILER_SUPPORTS_CXX17
-- Performing Test COMPILER_SUPPORTS_CXX17 - Success
-- Performing Test COMPILER_SUPPORTS_CXX1Z
-- Performing Test COMPILER_SUPPORTS_CXX1Z - Success
-- Configuring done (1.2s)
-- Generating done (0.0s)
-- Build files have been written to: /dev/shm/openppp2/build
[  0%] Building CXX object CMakeFiles/ppp.dir/common/aesni/aes.cpp.o
[  1%] Building CXX object CMakeFiles/ppp.dir/common/aggligator/aggligator.cpp.o
[  1%] Building CXX object CMakeFiles/ppp.dir/common/base64/base64.cpp.o
[  2%] Building CXX object CMakeFiles/ppp.dir/common/chnroutes2/chnroutes2.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/aggligator/aggligator.h:3,
                 from /dev/shm/openppp2/common/aggligator/aggligator.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/base64/base64.h:9,
                 from /dev/shm/openppp2/common/base64/base64.cpp:34:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/chnroutes2/chnroutes2.cpp:13:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/aesni/aes.h:3,
                 from /dev/shm/openppp2/common/aesni/aes.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[  2%] Building CXX object CMakeFiles/ppp.dir/common/dnslib/buffer.cpp.o
[  3%] Building CXX object CMakeFiles/ppp.dir/common/dnslib/message.cpp.o
[  3%] Building CXX object CMakeFiles/ppp.dir/common/dnslib/qs.cpp.o
[  4%] Building CXX object CMakeFiles/ppp.dir/common/dnslib/rr.cpp.o
[  4%] Building CXX object CMakeFiles/ppp.dir/common/json/src/json_reader.cpp.o
[  5%] Building CXX object CMakeFiles/ppp.dir/common/json/src/json_value.cpp.o
[  5%] Building CXX object CMakeFiles/ppp.dir/common/json/src/json_writer.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/json/include/json/config.h:101,
                 from /dev/shm/openppp2/common/json/src/json_tool.h:10,
                 from /dev/shm/openppp2/common/json/src/json_reader.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/json/include/json/config.h:101,
                 from /dev/shm/openppp2/common/json/include/json/assertions.h:13,
                 from /dev/shm/openppp2/common/json/src/json_value.cpp:7:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/json/include/json/config.h:101,
                 from /dev/shm/openppp2/common/json/src/json_tool.h:10,
                 from /dev/shm/openppp2/common/json/src/json_writer.cpp:7:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[  6%] Building CXX object CMakeFiles/ppp.dir/common/libtcpip/netstack.cpp.o
[  7%] Building CXX object CMakeFiles/ppp.dir/common/libtcpip/netstack_cc.cpp.o
[  7%] Building C object CMakeFiles/ppp.dir/common/lwip/api/api_lib.c.o
[  8%] Building C object CMakeFiles/ppp.dir/common/lwip/api/api_msg.c.o
[  8%] Building C object CMakeFiles/ppp.dir/common/lwip/api/err.c.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/libtcpip/netstack.h:3,
                 from /dev/shm/openppp2/common/libtcpip/netstack.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[  9%] Building C object CMakeFiles/ppp.dir/common/lwip/api/if_api.c.o
[  9%] Building C object CMakeFiles/ppp.dir/common/lwip/api/netbuf.c.o
[ 10%] Building C object CMakeFiles/ppp.dir/common/lwip/api/netdb.c.o
[ 10%] Building C object CMakeFiles/ppp.dir/common/lwip/api/netifapi.c.o
[ 11%] Building C object CMakeFiles/ppp.dir/common/lwip/api/sockets.c.o
[ 11%] Building C object CMakeFiles/ppp.dir/common/lwip/api/tcpip.c.o
[ 12%] Building C object CMakeFiles/ppp.dir/common/lwip/core/altcp.c.o
[ 13%] Building C object CMakeFiles/ppp.dir/common/lwip/core/altcp_alloc.c.o
[ 13%] Building C object CMakeFiles/ppp.dir/common/lwip/core/altcp_tcp.c.o
[ 14%] Building C object CMakeFiles/ppp.dir/common/lwip/core/def.c.o
[ 14%] Building C object CMakeFiles/ppp.dir/common/lwip/core/dns.c.o
[ 15%] Building C object CMakeFiles/ppp.dir/common/lwip/core/inet_chksum.c.o
[ 15%] Building C object CMakeFiles/ppp.dir/common/lwip/core/init.c.o
[ 16%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ip.c.o
[ 16%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/acd.c.o
[ 17%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/autoip.c.o
[ 17%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/dhcp.c.o
[ 18%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/etharp.c.o
[ 18%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/icmp.c.o
[ 19%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/igmp.c.o
[ 20%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/ip4.c.o
[ 20%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/ip4_addr.c.o
[ 21%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv4/ip4_frag.c.o
[ 21%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/dhcp6.c.o
[ 22%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/ethip6.c.o
[ 22%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/icmp6.c.o
[ 23%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/inet6.c.o
[ 23%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/ip6.c.o
[ 24%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/ip6_addr.c.o
[ 24%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/ip6_frag.c.o
[ 25%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/mld6.c.o
[ 25%] Building C object CMakeFiles/ppp.dir/common/lwip/core/ipv6/nd6.c.o
[ 26%] Building C object CMakeFiles/ppp.dir/common/lwip/core/mem.c.o
[ 27%] Building C object CMakeFiles/ppp.dir/common/lwip/core/memp.c.o
[ 27%] Building C object CMakeFiles/ppp.dir/common/lwip/core/netif.c.o
[ 28%] Building C object CMakeFiles/ppp.dir/common/lwip/core/pbuf.c.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/libtcpip/netstack_cc.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 28%] Building C object CMakeFiles/ppp.dir/common/lwip/core/raw.c.o
[ 29%] Building C object CMakeFiles/ppp.dir/common/lwip/core/stats.c.o
[ 29%] Building C object CMakeFiles/ppp.dir/common/lwip/core/sys.c.o
[ 30%] Building C object CMakeFiles/ppp.dir/common/lwip/core/tcp.c.o
[ 30%] Building C object CMakeFiles/ppp.dir/common/lwip/core/tcp_in.c.o
[ 31%] Building C object CMakeFiles/ppp.dir/common/lwip/core/tcp_out.c.o
[ 31%] Building C object CMakeFiles/ppp.dir/common/lwip/core/timeouts.c.o
[ 32%] Building C object CMakeFiles/ppp.dir/common/lwip/core/udp.c.o
[ 32%] Building C object CMakeFiles/ppp.dir/common/lwip/my/sys_arch.c.o
[ 33%] Building CXX object CMakeFiles/ppp.dir/ppp/DateTime.cpp.o
[ 34%] Building CXX object CMakeFiles/ppp.dir/ppp/Random.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/DateTime.h:3,
                 from /dev/shm/openppp2/ppp/DateTime.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 34%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ApplicationConfig.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/Random.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 35%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ApplicationHelp.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/ApplicationConfig.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 35%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ApplicationInitialize.cpp.o
[ 36%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ApplicationMainLoop.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/ApplicationHelp.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/ApplicationInitialize.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/ApplicationMainLoop.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 36%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ApplicationNetwork.cpp.o
[ 37%] Building CXX object CMakeFiles/ppp.dir/ppp/app/ConsoleUI.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/ApplicationNetwork.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/ConsoleUI.h:36,
                 from /dev/shm/openppp2/ppp/app/ConsoleUI.cpp:22:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 37%] Building CXX object CMakeFiles/ppp.dir/ppp/app/PppApplication.cpp.o
[ 38%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/GeoRuleGenerator.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/ppp/app/PppApplicationInternal.h:8,
                 from /dev/shm/openppp2/ppp/app/PppApplication.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/client/GeoRuleGenerator.h:34,
                 from /dev/shm/openppp2/ppp/app/client/GeoRuleGenerator.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 38%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/VEthernetDatagramPort.cpp.o
[ 39%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/VEthernetExchanger.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetDatagramPort.h:37,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetDatagramPort.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 40%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/VEthernetNetworkSwitcher.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkSwitcher.h:34,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetExchanger.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 40%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/VEthernetNetworkTcpipConnection.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/ethernet/VEthernet.h:8,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkTcpipStack.h:13,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkSwitcher.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkTcpipConnection.h:39,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkTcpipConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 41%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/VEthernetNetworkTcpipStack.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/ethernet/VEthernet.h:8,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkTcpipStack.h:13,
                 from /dev/shm/openppp2/ppp/app/client/VEthernetNetworkTcpipStack.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 41%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/dns/Rule.cpp.o
[ 42%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetHttpProxyConnection.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/client/dns/Rule.h:20,
                 from /dev/shm/openppp2/ppp/app/client/dns/Rule.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 42%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetHttpProxySwitcher.cpp.o
[ 43%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetLocalProxyConnection.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetTcpipConnection.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetHttpProxyConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetLocalProxySwitcher.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetHttpProxySwitcher.h:20,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetHttpProxySwitcher.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetTcpipConnection.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetLocalProxyConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 43%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetLocalProxySwitcher.cpp.o
[ 44%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetSocksProxyConnection.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetLocalProxySwitcher.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetLocalProxySwitcher.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 44%] Building CXX object CMakeFiles/ppp.dir/ppp/app/client/proxys/VEthernetSocksProxySwitcher.cpp.o
[ 45%] Building CXX object CMakeFiles/ppp.dir/ppp/app/mux/vmux_net.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetTcpipConnection.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetSocksProxyConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetLocalProxySwitcher.h:10,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetSocksProxySwitcher.h:19,
                 from /dev/shm/openppp2/ppp/app/client/proxys/VEthernetSocksProxySwitcher.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/mux/vmux.h:9,
                 from /dev/shm/openppp2/ppp/app/mux/vmux_net.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 45%] Building CXX object CMakeFiles/ppp.dir/ppp/app/mux/vmux_skt.cpp.o
[ 46%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetInformation.cpp.o
[ 47%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetLinklayer.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/mux/vmux.h:9,
                 from /dev/shm/openppp2/ppp/app/mux/vmux_skt.h:9,
                 from /dev/shm/openppp2/ppp/app/mux/vmux_skt.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetInformation.h:9,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetInformation.cpp:7:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 47%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetLogger.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLinklayer.h:10,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLinklayer.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLogger.h:10,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLogger.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 48%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetMappingPort.cpp.o
[ 48%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetPacket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLogger.h:10,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetMappingPort.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 49%] Building CXX object CMakeFiles/ppp.dir/ppp/app/protocol/VirtualEthernetTcpipConnection.cpp.o
[ 49%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/IPv4LeasePool.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetPacket.h:10,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetPacket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetTcpipConnection.h:10,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetTcpipConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/server/IPv4LeasePool.h:35,
                 from /dev/shm/openppp2/ppp/app/server/IPv4LeasePool.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 50%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetDatagramPort.cpp.o
[ 50%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetDatagramPortStatic.cpp.o
[ 51%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetExchanger.cpp.o
[ 51%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetManagedServer.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetDatagramPortStatic.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetDatagramPort.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetDatagramPortStatic.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetDatagramPortStatic.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/protocol/VirtualEthernetLinklayer.h:10,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetExchanger.h:40,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetExchanger.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/Int128.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetManagedServer.h:41,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetManagedServer.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 52%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetNamespaceCache.cpp.o
[ 52%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetNetworkTcpipConnection.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetNamespaceCache.h:31,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetNamespaceCache.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 53%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualEthernetSwitcher.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetNetworkTcpipConnection.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetNetworkTcpipConnection.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 54%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualInternetControlMessageProtocol.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetSwitcher.h:32,
                 from /dev/shm/openppp2/ppp/app/server/VirtualEthernetSwitcher.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/InternetControlMessageProtocol.h:3,
                 from /dev/shm/openppp2/ppp/app/server/VirtualInternetControlMessageProtocol.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualInternetControlMessageProtocol.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 54%] Building CXX object CMakeFiles/ppp.dir/ppp/app/server/VirtualInternetControlMessageProtocolStatic.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/InternetControlMessageProtocol.h:3,
                 from /dev/shm/openppp2/ppp/app/server/VirtualInternetControlMessageProtocolStatic.h:8,
                 from /dev/shm/openppp2/ppp/app/server/VirtualInternetControlMessageProtocolStatic.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 55%] Building CXX object CMakeFiles/ppp.dir/ppp/auxiliary/JsonAuxiliary.cpp.o
[ 55%] Building CXX object CMakeFiles/ppp.dir/ppp/auxiliary/StringAuxiliary.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/auxiliary/JsonAuxiliary.h:7,
                 from /dev/shm/openppp2/ppp/auxiliary/JsonAuxiliary.cpp:5:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/auxiliary/StringAuxiliary.h:7,
                 from /dev/shm/openppp2/ppp/auxiliary/StringAuxiliary.cpp:5:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 56%] Building CXX object CMakeFiles/ppp.dir/ppp/auxiliary/UriAuxiliary.cpp.o
[ 56%] Building CXX object CMakeFiles/ppp.dir/ppp/configurations/AppConfiguration.cpp.o
[ 57%] Building CXX object CMakeFiles/ppp.dir/ppp/configurations/Ini.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/coroutines/YieldContext.h:66,
                 from /dev/shm/openppp2/ppp/auxiliary/UriAuxiliary.h:3,
                 from /dev/shm/openppp2/ppp/auxiliary/UriAuxiliary.cpp:5:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 57%] Building CXX object CMakeFiles/ppp.dir/ppp/coroutines/YieldContext.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/Ini.h:3,
                 from /dev/shm/openppp2/ppp/configurations/Ini.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/coroutines/YieldContext.h:66,
                 from /dev/shm/openppp2/ppp/coroutines/YieldContext.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 58%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/Ciphertext.cpp.o
[ 58%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/EVP.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/cryptography/EVP.h:7,
                 from /dev/shm/openppp2/ppp/cryptography/Ciphertext.h:8,
                 from /dev/shm/openppp2/ppp/cryptography/Ciphertext.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 59%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/digest.cpp.o
[ 60%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/md5.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/cryptography/EVP.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/cryptography/digest.cpp:3:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 60%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/rc4.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/cryptography/md5.h:8,
                 from /dev/shm/openppp2/ppp/cryptography/md5.cpp:5:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 61%] Building CXX object CMakeFiles/ppp.dir/ppp/cryptography/ssea.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/cryptography/rc4.h:7,
                 from /dev/shm/openppp2/ppp/cryptography/rc4.cpp:5:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 61%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/Error.cpp.o
[ 62%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/ErrorHandler.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/cryptography/ssea.h:3,
                 from /dev/shm/openppp2/ppp/cryptography/ssea.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 62%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/LinkTelemetry.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/diagnostics/ErrorHandler.h:29,
                 from /dev/shm/openppp2/ppp/diagnostics/ErrorHandler.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 63%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/PreventReturn.cpp.o
[ 63%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/Stopwatch.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/LinkTelemetry.h:43,
                 from /dev/shm/openppp2/ppp/diagnostics/LinkTelemetry.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 64%] Building CXX object CMakeFiles/ppp.dir/ppp/diagnostics/Telemetry.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/PreventReturn.h:44,
                 from /dev/shm/openppp2/ppp/diagnostics/PreventReturn.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Stopwatch.h:8,
                 from /dev/shm/openppp2/ppp/diagnostics/Stopwatch.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 64%] Building CXX object CMakeFiles/ppp.dir/ppp/dns/DnsResolver.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Telemetry.cpp:3:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 65%] Building CXX object CMakeFiles/ppp.dir/ppp/ethernet/VEthernet.cpp.o
[ 65%] Building CXX object CMakeFiles/ppp.dir/ppp/ethernet/VNetstack.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/dns/DnsResolver.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/ethernet/VEthernet.h:8,
                 from /dev/shm/openppp2/ppp/ethernet/VEthernet.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/ethernet/VNetstack.h:8,
                 from /dev/shm/openppp2/ppp/ethernet/VNetstack.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 66%] Building CXX object CMakeFiles/ppp.dir/ppp/hash/hash_bytes.cpp.o
[ 67%] Building CXX object CMakeFiles/ppp.dir/ppp/io/File.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/io/File.h:8,
                 from /dev/shm/openppp2/ppp/io/File.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 67%] Building CXX object CMakeFiles/ppp.dir/ppp/ipv6/IPv6Auxiliary.cpp.o
[ 68%] Building CXX object CMakeFiles/ppp.dir/ppp/net/Firewall.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/ipv6/IPv6Auxiliary.h:8,
                 from /dev/shm/openppp2/ppp/ipv6/IPv6Auxiliary.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 68%] Building CXX object CMakeFiles/ppp.dir/ppp/net/IPEndPoint.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/io/File.h:8,
                 from /dev/shm/openppp2/ppp/net/Firewall.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/IPEndPoint.h:21,
                 from /dev/shm/openppp2/ppp/net/Ipep.h:20,
                 from /dev/shm/openppp2/ppp/net/IPEndPoint.cpp:15:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 69%] Building CXX object CMakeFiles/ppp.dir/ppp/net/Ipep.cpp.o
[ 69%] Building CXX object CMakeFiles/ppp.dir/ppp/net/Socket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/net/Ipep.cpp:4:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 70%] Building CXX object CMakeFiles/ppp.dir/ppp/net/SocketAcceptor.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/net/Socket.cpp:16:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/SocketAcceptor.h:3,
                 from /dev/shm/openppp2/ppp/net/SocketAcceptor.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 70%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/IAsynchronousWriteIoQueue.cpp.o
[ 71%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/InternetControlMessageProtocol.cpp.o
[ 71%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/vdns.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/IAsynchronousWriteIoQueue.h:3,
                 from /dev/shm/openppp2/ppp/net/asio/IAsynchronousWriteIoQueue.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/InternetControlMessageProtocol.h:3,
                 from /dev/shm/openppp2/ppp/net/asio/InternetControlMessageProtocol.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 72%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/vdns.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 72%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_accept_sslv_websocket.cpp.o
[ 73%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_accept_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_accept_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_accept_sslv_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_accept_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 74%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_async_sslv_websocket.cpp.o
[ 74%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_async_sslv_websocket_perform_ssl_handshake.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 75%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_async_sslv_websocket_perform_websocket_handshake.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket_perform_ssl_handshake.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 75%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_close_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket_perform_websocket_handshake.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 76%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_read_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_close_websocket.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 76%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_ssl_close_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_read_websocket.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_ssl_close_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 77%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_ssl_read_websocket.cpp.o
[ 77%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_ssl_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_ssl_read_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_ssl_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 78%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_ssl_write_websocket.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_async_sslv_websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_ssl_write_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 78%] Building CXX object CMakeFiles/ppp.dir/ppp/net/asio/websocket/websocket_write_websocket.cpp.o
[ 79%] Building CXX object CMakeFiles/ppp.dir/ppp/net/http/HttpClient.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/net/asio/websocket/websocket_write_websocket.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 80%] Building CXX object CMakeFiles/ppp.dir/ppp/net/native/checksum.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/http/httplib.h:1,
                 from /dev/shm/openppp2/ppp/net/http/HttpClient.cpp:2:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 80%] Building CXX object CMakeFiles/ppp.dir/ppp/net/native/dnsx.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/ppp/net/native/checksum.cpp:4:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/native/dnsx.cpp:14:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 81%] Building CXX object CMakeFiles/ppp.dir/ppp/net/packet/IPFragment.cpp.o
[ 81%] Building CXX object CMakeFiles/ppp.dir/ppp/net/packet/IPFrame.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/packet/IPFragment.h:35,
                 from /dev/shm/openppp2/ppp/net/packet/IPFragment.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 82%] Building CXX object CMakeFiles/ppp.dir/ppp/net/packet/IcmpFrame.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/native/checksum.h:8,
                 from /dev/shm/openppp2/ppp/net/packet/IPFrame.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/native/checksum.h:8,
                 from /dev/shm/openppp2/ppp/net/packet/IcmpFrame.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 82%] Building CXX object CMakeFiles/ppp.dir/ppp/net/packet/UdpFrame.cpp.o
[ 83%] Building CXX object CMakeFiles/ppp.dir/ppp/net/proxies/sniproxy.cpp.o
[ 83%] Building CXX object CMakeFiles/ppp.dir/ppp/net/rinetd/RinetdConnection.cpp.o
[ 84%] Building CXX object CMakeFiles/ppp.dir/ppp/p2p/P2PChannel.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/native/checksum.h:8,
                 from /dev/shm/openppp2/ppp/net/packet/UdpFrame.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/configurations/AppConfiguration.h:3,
                 from /dev/shm/openppp2/ppp/net/rinetd/RinetdConnection.h:8,
                 from /dev/shm/openppp2/ppp/net/rinetd/RinetdConnection.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/proxies/sniproxy.h:22,
                 from /dev/shm/openppp2/ppp/net/proxies/sniproxy.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/p2p/P2PDefs.h:14,
                 from /dev/shm/openppp2/ppp/p2p/P2PChannel.h:24,
                 from /dev/shm/openppp2/ppp/p2p/P2PChannel.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 84%] Building CXX object CMakeFiles/ppp.dir/ppp/p2p/P2PCrypto.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/p2p/P2PDefs.h:14,
                 from /dev/shm/openppp2/ppp/p2p/P2PCrypto.h:21,
                 from /dev/shm/openppp2/ppp/p2p/P2PCrypto.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 85%] Building CXX object CMakeFiles/ppp.dir/ppp/p2p/P2PNatClassifier.cpp.o
[ 85%] Building CXX object CMakeFiles/ppp.dir/ppp/p2p/P2PSocketProtector.cpp.o
[ 86%] Building CXX object CMakeFiles/ppp.dir/ppp/p2p/P2PStunClient.cpp.o
[ 87%] Building CXX object CMakeFiles/ppp.dir/ppp/ssl/SSL.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/p2p/P2PDefs.h:14,
                 from /dev/shm/openppp2/ppp/p2p/P2PNatClassifier.h:16,
                 from /dev/shm/openppp2/ppp/p2p/P2PNatClassifier.cpp:10:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/p2p/P2PDefs.h:14,
                 from /dev/shm/openppp2/ppp/p2p/P2PSocketProtector.h:18,
                 from /dev/shm/openppp2/ppp/p2p/P2PSocketProtector.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/p2p/P2PDefs.h:14,
                 from /dev/shm/openppp2/ppp/p2p/P2PStunClient.h:18,
                 from /dev/shm/openppp2/ppp/p2p/P2PStunClient.cpp:11:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/ssl/root_certificates.hpp:10,
                 from /dev/shm/openppp2/ppp/ssl/SSL.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 87%] Building CXX object CMakeFiles/ppp.dir/ppp/stdafx.cpp.o
[ 88%] Building CXX object CMakeFiles/ppp.dir/ppp/tap/ITap.cpp.o
[ 88%] Building CXX object CMakeFiles/ppp.dir/ppp/text/Encoding.cpp.o
[ 89%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/BufferblockAllocator.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/stdafx.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/tap/ITap.cpp:12:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/text/Encoding.h:8,
                 from /dev/shm/openppp2/ppp/text/Encoding.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/BufferblockAllocator.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 89%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/BufferswapAllocator.cpp.o
[ 90%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/Executors.cpp.o
[ 90%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/SpinLock.cpp.o
[ 91%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/Thread.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/BufferswapAllocator.h:3,
                 from /dev/shm/openppp2/ppp/threading/BufferswapAllocator.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Executors.h:3,
                 from /dev/shm/openppp2/ppp/threading/Executors.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Thread.h:3,
                 from /dev/shm/openppp2/ppp/threading/SpinLock.cpp:2:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Thread.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 91%] Building CXX object CMakeFiles/ppp.dir/ppp/threading/Timer.cpp.o
[ 92%] Building CXX object CMakeFiles/ppp.dir/ppp/transmissions/ITcpipTransmission.cpp.o
[ 92%] Building CXX object CMakeFiles/ppp.dir/ppp/transmissions/ITransmission.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/threading/Timer.h:8,
                 from /dev/shm/openppp2/ppp/threading/Timer.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 93%] Building CXX object CMakeFiles/ppp.dir/ppp/transmissions/ITransmissionQoS.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/transmissions/ITransmission.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/ITcpipTransmission.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/ITcpipTransmission.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/transmissions/ITransmission.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/ITransmission.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/transmissions/ITransmissionQoS.h:3,
                 from /dev/shm/openppp2/ppp/transmissions/ITransmissionQoS.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 94%] Building CXX object CMakeFiles/ppp.dir/ppp/transmissions/IWebsocketTransmission.cpp.o
[ 94%] Building CXX object CMakeFiles/ppp.dir/ppp/transmissions/proxys/IForwarding.cpp.o
[ 95%] Building CXX object CMakeFiles/ppp.dir/main.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/asio/websocket.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/templates/WebSocket.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/IWebsocketTransmission.h:3,
                 from /dev/shm/openppp2/ppp/transmissions/IWebsocketTransmission.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 95%] Building CXX object CMakeFiles/ppp.dir/common/unix/UnixAfx.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/transmissions/proxys/IForwarding.h:8,
                 from /dev/shm/openppp2/ppp/transmissions/proxys/IForwarding.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/app/PppApplication.h:34,
                 from /dev/shm/openppp2/main.cpp:6:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/common/unix/UnixAfx.h:3,
                 from /dev/shm/openppp2/common/unix/UnixAfx.cpp:19:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 96%] Building CXX object CMakeFiles/ppp.dir/common/unix/net/UnixSocketAcceptor.cpp.o
[ 96%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/diagnostics/UnixStackTrace.cpp.o
[ 97%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/ipv6/LINUX_IPv6Auxiliary.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/SocketAcceptor.h:3,
                 from /dev/shm/openppp2/common/unix/net/UnixSocketAcceptor.cpp:3:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/net/SocketAcceptor.h:3,
                 from /dev/shm/openppp2/linux/ppp/diagnostics/UnixStackTrace.h:3,
                 from /dev/shm/openppp2/linux/ppp/diagnostics/UnixStackTrace.cpp:1:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 97%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/net/ProtectorNetwork.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/linux/ppp/ipv6/IPv6Auxiliary.h:3,
                 from /dev/shm/openppp2/linux/ppp/ipv6/LINUX_IPv6Auxiliary.cpp:8:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 98%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/net/ancillary/fd_recv.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/linux/ppp/net/ProtectorNetwork.cpp:11:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 98%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/net/ancillary/fd_send.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/linux/ppp/net/ancillary/ancillary.h:49,
                 from /dev/shm/openppp2/linux/ppp/net/ancillary/fd_recv.cpp:35:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[ 99%] Building CXX object CMakeFiles/ppp.dir/linux/ppp/tap/TapLinux.cpp.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/linux/ppp/net/ancillary/ancillary.h:49,
                 from /dev/shm/openppp2/linux/ppp/net/ancillary/fd_send.cpp:35:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/boost/date_time/time_clock.hpp:17,
                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /usr/include/boost/asio/time_traits.hpp:23,
                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,
                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,
                 from /usr/include/boost/asio.hpp:25,
                 from /dev/shm/openppp2/ppp/stdafx.h:286,
                 from /dev/shm/openppp2/ppp/diagnostics/Error.h:10,
                 from /dev/shm/openppp2/linux/ppp/tap/TapLinux.cpp:11:
/usr/include/boost/detail/scoped_enum_emulation.hpp:17:1: note: ‘#pragma message: This header is deprecated. Use &lt;boost/core/scoped_enum.hpp&gt; instead.’
   17 | BOOST_HEADER_DEPRECATED(&#34;&lt;boost/core/scoped_enum.hpp&gt;&#34;)
      | ^~~~~~~~~~~~~~~~~~~~~~~
[100%] Linking CXX executable /dev/shm/openppp2/bin/ppp
[100%] Built target ppp
{&#34;code&#34;:200,&#34;data&#34;:{&#34;url&#34;:&#34;http://域名/public/ppp&#34;},&#34;msg&#34;:&#34;success&#34;}
</code></pre><hr>]]></description>
</item>
<item>
    <title>tcp拥塞控制算法协议编译安装记录</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2026/tcp_ucp-build/</link>
    <pubDate>Mon, 25 May 2026 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2026/tcp_ucp-build/</guid>
    <description><![CDATA[<p>本文记录了从零开始在 <strong>Debian 12</strong> 编译tcp拥塞控制算法协议，并且确保最终可在 Debian 12 上部署。
我会按步骤分为 <strong>编译 → 加载 → 确认 → 生效</strong>。</p>
<hr>
<h2 id="1-编译模块"><strong>1️⃣ 编译模块</strong></h2>
<h3 id="环境准备">环境准备</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>sudo apt update
</span></span><span style="display:flex;"><span>sudo apt install build-essential linux-headers-<span style="color:#66d9ef">$(</span>uname -r<span style="color:#66d9ef">)</span>
</span></span><span style="display:flex;"><span>----------------------------------------------------------
</span></span><span style="display:flex;"><span>sudo yum install gcc make kernel-devel kernel-headers （centos7对应）
</span></span></code></pre></div><h3 id="下载源码">下载源码</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli ~<span style="color:#f92672">]</span><span style="color:#75715e"># wget [tcp_ucp-1.0.zip](https://github.com/liulilittle/tcp_ucp/archive/refs/heads/main.zip)</span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli ~<span style="color:#f92672">]</span><span style="color:#75715e"># mv tcp_ucp-1.0.zip /opt/</span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli ~<span style="color:#f92672">]</span><span style="color:#75715e"># cd /opt/</span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli opt<span style="color:#f92672">]</span><span style="color:#75715e"># unzip tcp_ucp-1.0.zip</span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli opt<span style="color:#f92672">]</span><span style="color:#75715e"># cd tcp_ucp-main/</span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>root@haoyuli tcp_ucp<span style="color:#f92672">]</span><span style="color:#75715e"># ls</span>
</span></span><span style="display:flex;"><span>docs  LICENSE  Makefile  README.md  tcp_ucp.c
</span></span></code></pre></div><h3 id="生成模块">生成模块</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>root@localhost:/opt/tcp_ucp-main# make
</span></span><span style="display:flex;"><span>make<span style="color:#f92672">[</span>1<span style="color:#f92672">]</span>: Entering directory <span style="color:#e6db74">&#39;/usr/src/linux-headers-6.1.0-42-cloud-amd64&#39;</span>
</span></span><span style="display:flex;"><span>  CC <span style="color:#f92672">[</span>M<span style="color:#f92672">]</span>  /opt/tcp_ucp-main/tcp_ucp.o
</span></span><span style="display:flex;"><span>  MODPOST /opt/tcp_ucp-main/Module.symvers
</span></span><span style="display:flex;"><span>  CC <span style="color:#f92672">[</span>M<span style="color:#f92672">]</span>  /opt/tcp_ucp-main/tcp_ucp.mod.o
</span></span><span style="display:flex;"><span>  LD <span style="color:#f92672">[</span>M<span style="color:#f92672">]</span>  /opt/tcp_ucp-main/tcp_ucp.ko
</span></span><span style="display:flex;"><span>  BTF <span style="color:#f92672">[</span>M<span style="color:#f92672">]</span> /opt/tcp_ucp-main/tcp_ucp.ko
</span></span><span style="display:flex;"><span>Skipping BTF generation <span style="color:#66d9ef">for</span> /opt/tcp_ucp-main/tcp_ucp.ko due to unavailability of vmlinux
</span></span><span style="display:flex;"><span>make<span style="color:#f92672">[</span>1<span style="color:#f92672">]</span>: Leaving directory <span style="color:#e6db74">&#39;/usr/src/linux-headers-6.1.0-42-cloud-amd64&#39;</span>
</span></span></code></pre></div><hr>
<h2 id="2-加载内核模块"><strong>2️⃣ 加载内核模块</strong></h2>
<p>insmod tcp_ucp.ko</p>]]></description>
</item>
<item>
    <title>centos7平台openvz内核编译过程</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2026/kernel-build/</link>
    <pubDate>Wed, 20 May 2026 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2026/kernel-build/</guid>
    <description><![CDATA[<p>本文记录了从零开始在 <strong>CentOS 7</strong> 搭建开发环境到最终生成你的 <code>kernel</code> 可执行文件，并且确保最终可在 CentOS 7 上部署。这个流程适合新机器或干净环境。</p>
<p>我会按步骤分为 <strong>环境准备 → 配置编译 → 安装 → 引导</strong>。</p>
<hr>
<h2 id="1-环境准备"><strong>1️⃣ 环境准备</strong></h2>
<h3 id="更新系统">更新系统</h3>
<p>sudo yum update -y</p>
<p>sudo yum groupinstall &ldquo;Development Tools&rdquo; -y</p>
<p>sudo yum install epel-release -y</p>
<p>sudo yum install wget tar bzip2 make cmake git -y</p>
<h3 id="安装编译内核所需软件">安装编译内核所需软件</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>yum install -y <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>gcc <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>gcc-c++ <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>make <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>ncurses-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>bc <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>bison <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>flex <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>elfutils-libelf-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>perl <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>wget <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>git <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>rpm-build <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>rpmdevtools <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>openssl-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>readline-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>zlib-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>bc <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>libselinux-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>gettext <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>elfutils-devel <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>expat-devel
</span></span></code></pre></div><p>解释：</p>]]></description>
</item>
<item>
    <title>只需两行代码，实现语音转文字（转载）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2026/voice-text/</link>
    <pubDate>Wed, 13 May 2026 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2026/voice-text/</guid>
    <description><![CDATA[<p>🚀 只需两行代码，实现语音转文字（Whisper-ctranslate2）</p>
<p>这是目前我发现<strong>最快、最简单</strong>的语音转文字方案之一。</p>
<p>一个小时的音频文件，只需要几分钟就可以完成处理，非常适合做字幕、笔记整理、访谈转录等场景。</p>
<p>它不仅支持多语言（英语 + 96种语言），还能在<strong>噪音环境</strong>下保持不错的识别效果，即使口音较重也能处理。</p>
<p>最重要的是：<br>
👉 <strong>完全免费 + 开源</strong></p>
<p>我们使用的是 <code>whisper-ctranslate2</code>，这是基于 OpenAI Whisper 的升级版本（OpenAI 也就是开发 ChatGPT 的公司）。</p>
<p>相比原版 Whisper，它的特点是：</p>
<ul>
<li>⚡ 速度更快</li>
<li>🎯 精度更高</li>
<li>🧠 使用更简单</li>
</ul>
<hr>
<h1 id="-安装第一行代码">🧩 安装（第一行代码）</h1>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>pip install git+https://github.com/Softcatala/whisper-ctranslate2
</span></span></code></pre></div><h1 id="-语音转文字第二行代码">🎧 语音转文字（第二行代码）</h1>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>whisper-ctranslate2 audio.mp3 --device cuda --model large-v3
</span></span></code></pre></div><h1 id="-翻译成英文英文字幕">🌍 翻译成英文（英文字幕）</h1>
<p>如果你想直接把语音翻译成英文：</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>whisper-ctranslate2 audio.mp3 --device cuda --model large-v3 --task translate
</span></span></code></pre></div><h1 id="-中文识别优化简体--繁体">🇨🇳 中文识别优化（简体 / 繁体）</h1>
<p>简体中文优化：</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>whisper-ctranslate2 audio.mp3 --device cuda --model large-v3 --initial_prompt 这是一段中文普通话
</span></span></code></pre></div><p>📦 支持输出格式</p>
<p>该工具可以输出多种格式，包括：</p>
<p>TXT（纯文本）
SRT（字幕文件）
VTT（网页字幕）
JSON（结构化数据）</p>]]></description>
</item>
<item>
    <title>利用ShareX上传图片文字等到对象存储（经验分享）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/sharex-cdn/</link>
    <pubDate>Wed, 03 Dec 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/sharex-cdn/</guid>
    <description><![CDATA[<p>本文记录了在 <strong>windows11</strong> 平台下使用ShareX软件上传图片、文字等到cloudflare R2对象存储的一些操作步骤。</p>
<p>主要分别用 <strong>图片、文字</strong>结合自定义设置和第三方平台设置进行记录，其他类型的文件可举一反三。</p>
<hr>
<h2 id="1-准备"><strong>1️⃣ 准备</strong></h2>
<h3 id="首先要准备一个cloudflare账号">首先要准备一个cloudflare账号</h3>
<p>在R2对象存储中创建 User API 令牌有权限允许读取、写入和列出特定存储桶中的对象。</p>
<p>首次创建记住令牌值（api令牌）、访问密钥 ID（key）、机密访问密钥（secret）、和为 S3 客户端使用管辖权地特定的终结点（endpoint）。</p>
<p>创建一个存储桶（例如我创建的名字叫assets）用来存储对象，免费用户选择标准存储（10GB免费）、地区自动存美国即可。</p>
<p></p>
<p>由于本人的这个域名是恰好由cloudflare解析，同时用cloudflare做cdn，所以在存储桶中直接将子域名进行绑定，在设置中添加自定义域即可。</p>
<p></p>
<h3 id="然后还要下载一个sharex程序">然后还要下载一个ShareX程序</h3>
<p><a href="https://github.com/ShareX/ShareX/releases" target="_blank" rel="noopener noreffer ">https://github.com/ShareX/ShareX/releases</a> 这里有很多版本</p>
<p>其中我自己下载了ShareX 18.0.1 、ShareX 17.1.0两个版本（保护EXE版本和绿色便携版），经过许久口吐兰花之后果断选择了低版本便携版，另外我还在Chrome浏览中安装了这个软件的插件，直接复制图片地址或网页文字进行上传。</p>
<p></p>
<hr>
<h2 id="2-图床"><strong>2️⃣ 图床</strong></h2>
<p>首先我有一个图床程序，这个图床程序的存储方式包含S3存储，可以直接利用该图床程序将图片传输到R2对象存储，但是配合程序提供的api结合ShareX可以更方便的实现截图上传功能并在粘贴板中返回图片地址和图片，同时又可以通过该图床程序管理照片，以及特别区分开图片与其他文件，所以这里用到的是“图床程序+ShareX程序+cloudflare R2的方式”传输和管理图片，当然也可以只用“ShareX+cloudflare R2”的方式进行传输（参考第3部分）。</p>
<p>在ShareX程序&ndash;目标&ndash;图片上传&ndash;选择自定义图像上传</p>
<p></p>]]></description>
</item>
<item>
    <title>centos7平台openppp2编译过程（非完整教程）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/ppp-build/</link>
    <pubDate>Wed, 26 Nov 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/ppp-build/</guid>
    <description><![CDATA[<p>本文记录了从零开始在 <strong>CentOS 7</strong> 搭建开发环境到最终生成你的 <code>ppp</code> 可执行文件，包括 Boost、OpenSSL、jemalloc 的静态构建，并且确保最终可在 CentOS 7 上部署。这个流程适合新机器或干净环境。</p>
<p>我会按步骤分为 <strong>环境准备 → 第三方库编译 → 项目配置 → 编译生成</strong>。</p>
<hr>
<h2 id="1-环境准备"><strong>1️⃣ 环境准备</strong></h2>
<h3 id="更新系统">更新系统</h3>
<p>sudo yum update -y</p>
<p>sudo yum groupinstall &ldquo;Development Tools&rdquo; -y</p>
<p>sudo yum install epel-release -y</p>
<p>sudo yum install wget tar bzip2 make cmake git -y</p>
<h3 id="安装-devtoolset-11gcc-11">安装 Devtoolset 11（GCC 11）</h3>
<p>CentOS7 默认 GCC 版本太低，需用 SCL 安装新版本：</p>
<p>sudo yum install centos-release-scl -y</p>
<p>sudo yum install devtoolset-11 -y</p>
<p>scl enable devtoolset-11</p>]]></description>
</item>
<item>
    <title>利用fpm打包二进制程序（简版教程）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/fpm-setup/</link>
    <pubDate>Sun, 23 Nov 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/fpm-setup/</guid>
    <description><![CDATA[<p>本文记录了在 linux 环境下，利用 fpm 挂载打包二进制程序的教程。</p>
<h2 id="利用fpm打包二进制程序为rpm或deb包">利用fpm打包二进制程序为rpm或deb包</h2>
<h2 id="1-安装所需工具">1. 安装所需工具</h2>
<p>首先，需要确保你的系统安装了必要的工具和依赖项。</p>
<p>安装 fpm 的前提：</p>
<p>Ruby 和 相关开发工具。</p>
<p>GCC 和 Make 等编译工具。</p>
<p>RPM 和 Debian 打包工具。</p>
<p>在 CentOS 7 或 Debian/Ubuntu 系统上，你可以按以下步骤安装这些工具：</p>
<p>Debian 12 (或其他 Debian/Ubuntu 系统):</p>
<pre tabindex="0"><code>sudo apt-get install ruby ruby-dev gcc make rpm-build -y
</code></pre><p>CentOS 7（本教程在该平台部署）</p>
<pre tabindex="0"><code>yum install  gcc make rpm-build -y
yum install -y rh-ruby27 rh-ruby27-ruby-devel
scl enable rh-ruby27 bash
ruby -v
# ruby 2.7.4p191 (2021-07-07 revision a21a3b7d23) [x86_64-linux]
</code></pre><p>安装 fpm：</p>
<p>fpm 是一个用于打包的软件包管理工具，可以方便地生成 .deb 和 .rpm 包。</p>]]></description>
</item>
<item>
    <title>Cloudflare R2 &#43; rclone 备份教程（新手版）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-cfr2-setup/</link>
    <pubDate>Sun, 16 Nov 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-cfr2-setup/</guid>
    <description><![CDATA[<p>本文记录了在 linux 环境下，利用 rclone 备份vps目录至Cloudflare R2的部署参考教程。</p>
<h2 id="cloudflare-r2--rclone-备份教程新手版">Cloudflare R2 + rclone 备份教程（新手版）</h2>
<ul>
<li>
<p>注册 Cloudflare → 创建 R2 Bucket</p>
</li>
<li>
<p>获取 Access Key / Secret Key / Endpoint</p>
</li>
<li>
<p>配置 rclone 连接 R2</p>
</li>
<li>
<p>测试同步 / 写脚本同步多目录</p>
</li>
<li>
<p>设置 Cron 定时自动备份</p>
</li>
</ul>
<h2 id="1-注册-cloudflare-并启用-r2">1️⃣ 注册 Cloudflare 并启用 R2</h2>
<p>注册 Cloudflare 账号：https://dash.cloudflare.com/sign-up</p>
<p>登录 Cloudflare 控制面板</p>
<p>在左侧菜单找到 R2（存储和数据库-R2对象存储） → Create Bucket</p>
<p>填写 Bucket Name（例如 backup）</p>
<p>选择区域（Region），如：亚太（apac）、西欧（weur）、西美（wnam）</p>
<p>点击 Create Bucket</p>
<p>注意：R2 的出站流量免费，但存储和操作有少量费用。（每月前10GB流量免费）</p>
<h2 id="2-获取-access-key--secret-key--endpoint">2️⃣ 获取 Access Key / Secret Key / Endpoint</h2>
<p>在 Cloudflare R2 控制面板，进入 API Keys / Access Keys （右下方api token点击manage）</p>]]></description>
</item>
<item>
    <title>谷歌workspace &#43; rclone 挂载部署指南</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-gdrive-setup/</link>
    <pubDate>Fri, 14 Nov 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-gdrive-setup/</guid>
    <description><![CDATA[<p>本文记录了在 linux 环境下，利用 rclone 挂载 Google Workspace的部署参考教程。</p>
<h2 id="-谷歌workspace--rclone-挂载部署指南">🔹 谷歌workspace + rclone 挂载部署指南</h2>
<ul>
<li>
<p>workspace账户设置</p>
</li>
<li>
<p>配置rclone.conf</p>
</li>
<li>
<p>前台挂载测试谷歌云盘</p>
</li>
<li>
<p>长期运行谷歌云盘</p>
</li>
<li>
<p>问题总结</p>
</li>
</ul>
<h2 id="1-安装-rclone">1️⃣ 安装 rclone</h2>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span> sudo -v ; curl https://rclone.org/install.sh | sudo bash
</span></span></code></pre></div><p>或下载二进制软件解压至/opt/rclone（推荐）</p>
<p>确认安装：</p>
<p>rclone version</p>
<h2 id="2-准备-google-workspace-service-account">2️⃣ 准备 Google Workspace Service Account</h2>
<p>打开 Google Cloud Console → IAM &amp; Admin → Service Accounts</p>
<p>创建一个 Service Account，例如 rclone-drive-sa</p>
<p>生成 JSON Key，下载到 VPS，例如 /opt/rclone/google-sa.json</p>
<p>在 Google Workspace 管理后台（Admin Console → 安全 → API 控制 → 域范围委托）：</p>]]></description>
</item>
<item>
    <title>坚果云 &#43; rclone 挂载部署指南（含通知）</title>
    <link>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-nutstore-setup/</link>
    <pubDate>Wed, 12 Nov 2025 00:00:00 &#43;0000</pubDate>
    <author>haoyuli</author>
    <guid>https://www.haoyuli.cn:1443/posts/blog/2025/rclone-nutstore-setup/</guid>
    <description><![CDATA[<p>本文记录了在 linux 环境下，利用rclone挂载坚果云的部署参考教程。</p>
<h2 id="坚果云--rclone-挂载部署指南包含"><strong>坚果云 + rclone 挂载部署指南</strong>，包含：</h2>
<ul>
<li>
<p>自动创建挂载目录（如/mnt/blog /mnt/edu365）</p>
</li>
<li>
<p>部署service <code>rclone@.service</code></p>
</li>
<li>
<p>配置检测脚本 <code>/usr/local/bin/rclone-check.sh</code></p>
</li>
<li>
<p>配合 Telegram + msmtp 邮件通知</p>
</li>
<li>
<p>systemd 定时器自动检测 &amp; 重启</p>
</li>
</ul>
<hr>
<h2 id="-一安装必要依赖并配置rclone">🔹 一、安装必要依赖并配置rclone</h2>
<p>本教程依赖 <code>fuse</code> 和 <code>msmtp</code>：</p>
<p>sudo yum install -y fuse3</p>
<p>sudo yum install -y msmtp</p>
<p>fuse必须安装，否则rclone会报错，msmtp为可选安装，若要邮件通知需安装，本人vps采用msmtp发送邮件通知。</p>
<p>下载rclone至目录/opt/rclone,配置/opt/rclone/rclone.conf：</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#f92672">[</span>edu365<span style="color:#f92672">]</span>
</span></span><span style="display:flex;"><span>type   <span style="color:#f92672">=</span> webdav
</span></span><span style="display:flex;"><span>url    <span style="color:#f92672">=</span> https://dav.jianguoyun.com/dav/edu365
</span></span><span style="display:flex;"><span>vendor <span style="color:#f92672">=</span> other
</span></span><span style="display:flex;"><span>user   <span style="color:#f92672">=</span> 账户
</span></span><span style="display:flex;"><span>pass   <span style="color:#f92672">=</span> 密钥
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>blog<span style="color:#f92672">]</span>
</span></span><span style="display:flex;"><span>type   <span style="color:#f92672">=</span> webdav
</span></span><span style="display:flex;"><span>url    <span style="color:#f92672">=</span> https://dav.jianguoyun.com/dav/blog
</span></span><span style="display:flex;"><span>vendor <span style="color:#f92672">=</span> other
</span></span><span style="display:flex;"><span>user   <span style="color:#f92672">=</span> 账户
</span></span><span style="display:flex;"><span>pass   <span style="color:#f92672">=</span> 密钥
</span></span></code></pre></div><hr>
<h2 id="-二部署rcloneservice">🔹 二、部署 rclone@.service</h2>
<p>创建文件 <code>/etc/systemd/system/rclone@.service</code>：</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#f92672">[</span>Unit<span style="color:#f92672">]</span>
</span></span><span style="display:flex;"><span>Description<span style="color:#f92672">=</span>Rclone Mount <span style="color:#66d9ef">for</span> %i
</span></span><span style="display:flex;"><span>Documentation<span style="color:#f92672">=</span>https://rclone.org/commands/rclone_mount/
</span></span><span style="display:flex;"><span>After<span style="color:#f92672">=</span>network-online.target
</span></span><span style="display:flex;"><span>Wants<span style="color:#f92672">=</span>network-online.target
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>Service<span style="color:#f92672">]</span>
</span></span><span style="display:flex;"><span>Type<span style="color:#f92672">=</span>simple
</span></span><span style="display:flex;"><span>User<span style="color:#f92672">=</span>root
</span></span><span style="display:flex;"><span>Group<span style="color:#f92672">=</span>root
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e"># 自动创建挂载点目录</span>
</span></span><span style="display:flex;"><span>ExecStartPre<span style="color:#f92672">=</span>/bin/mkdir -p /mnt/%i
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e"># 挂载命令</span>
</span></span><span style="display:flex;"><span>ExecStart<span style="color:#f92672">=</span>/opt/rclone/rclone mount %i:/ /mnt/%i <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --config /opt/rclone/rclone.conf <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --vfs-cache-mode<span style="color:#f92672">=</span>writes <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --vfs-cache-max-age 30m <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --vfs-cache-max-size 200M <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --allow-other <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --dir-cache-time 5m <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --poll-interval 30s <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --timeout 30m <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --umask <span style="color:#ae81ff">002</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --log-file /var/log/rclone-%i.log <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>  --log-level INFO
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e"># 停止时卸载</span>
</span></span><span style="display:flex;"><span>ExecStop<span style="color:#f92672">=</span>/bin/fusermount -uz /mnt/%i
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span>Restart<span style="color:#f92672">=</span>on-failure
</span></span><span style="display:flex;"><span>RestartSec<span style="color:#f92672">=</span><span style="color:#ae81ff">10</span>
</span></span><span style="display:flex;"><span>RestartPreventExitStatus<span style="color:#f92672">=</span><span style="color:#ae81ff">3</span>
</span></span><span style="display:flex;"><span>TimeoutStopSec<span style="color:#f92672">=</span><span style="color:#ae81ff">20</span>
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#f92672">[</span>Install<span style="color:#f92672">]</span>
</span></span><span style="display:flex;"><span>WantedBy<span style="color:#f92672">=</span>multi-user.target
</span></span></code></pre></div><p>启用挂载服务示例：</p>]]></description>
</item>
</channel>
</rss>
