cronolog ソースコンパイル

curl -O https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz
tar xvf m4-1.4.19.tar.gz
cd m4-1.4.19
./configure
make
make install

cd ..
curl -O https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz
tar xvzf autoconf-2.71.tar.gz
cd autoconf-2.71
./configure
make
make install

cd ..
curl -O https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz
tar xvzf automake-1.16.5.tar.gz
cd automake-1.16.5
./configure
make
make install

cd ..
curl -o cronolog-master.zip https://github.com/fordmason/cronolog/archive/refs/heads/master.zip
unzip cronolog-master.zip
cd cronolog-master
mv configure.ac configure.ac.orig
curl -O https://raw.githubusercontent.com/WayneD/cronolog/master/configure.ac
autoconf
automake
./configure
make
make install

The configure.ac file lists the unique file to look for as "bootstrap" which does not exist. I changed it to "configure.ac" in my fixed & enhanced version: https://github.com/WayneD/cronolog

If you tweak that yourself, be sure to run "autoconf" and "automake" before trying to run configure again.

Compiling fails · Issue #3 · fordmason/cronolog · GitHub