Skip to content

Files

Latest commit

f6ea0b5 · Jun 25, 2024

History

History
This branch is 105 commits behind wolfSSL/osp:master.

4.2.8p15

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 30, 2021
Jun 25, 2024

Build Instructions

Build wolfSSL

  • Configure wolfSSL with ./configure --enable-ntp. Add --enable-debug if you want to enable the debug version of wolfSSL.
  • Compile with make.
  • Install wolfSSL into /usr/local with sudo make install.

Build NTP

  • Download ntp 4.2.8p15 with curl -O http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p15.tar.gz.
  • Unarchive ntp-4.2.8p15.tar.gz with tar xvf ntp-4.2.8p15.tar.gz. cd into ntp-4.2.8p15.
  • Patch the source code with patch -p1 < ntp-4.2.8p15.patch, adjusting the path to the patch file accordingly.
  • Regenerate the configure script with ./bootstrap.
  • Configure ntp with ./configure --with-wolfssl=/usr/local.
  • Compile with make.
  • Run tests with make check.