rahra / onioncat

Official repository of OnionCat, the VPN adapter for Tor and I2P.
https://www.onioncat.org/
GNU General Public License v3.0
228 stars 29 forks source link

Automake #17

Closed gh338 closed 5 years ago

gh338 commented 5 years ago

make onioncat work with automake 1.16 or even more current versions - currently it requires 1.15 to ./configure and make

rahra commented 5 years ago

Run: autoreconf -f It rebuilds all autotools files with your installed version.

You need autotools only if you clone from here. With the released packages (https://www.cypherpunk.at/ocat/download/Source/current/) it is not necessary.

gh338 commented 5 years ago

can't find autotools on my unbuntu 18.04/18.10... apt-file search autotools also came up empty.

rahra commented 5 years ago

sorry, there was a typo: I modified my comment from above autotools -f -> autoreconf -f The tool is found in the autoconf package (on Debian).

gh338 commented 5 years ago

Working now. Thank you