Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Working link for libconfig in README-Cygwin.md & more #1530

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README-Cygwin.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Install [Cygwin](https://www.cygwin.com/) and cygwin's package manager, [apt-cyg

In Cygwin Terminal, install compiler and tools :

apt-cyg install cygwin32-gcc-core cygwin32-gcc-g++ gcc-core gcc-g++ make wget patch diffutils grep tar gzip
apt-cyg install cygwin32-gcc-core cygwin32-gcc-g++ gcc-core gcc-g++ make wget patch diffutils grep tar gzip autoconf automake libtool git zlib-devel

Now you have a compiler, but no libraries. You need readline, openssl, libconfig, liblua, python and libjansson to use telegram-cli's full functionality.

Expand All @@ -24,8 +24,10 @@ libconfig and libjansson is not in cygwin's package, so you should compile yours

Compile libconfig

wget http://www.hyperrealm.com/libconfig/libconfig-1.5.tar.gz
tar xvf libconfig-1.5.tar.gz && cd libconfig-1.5
wget https://github.com/hyperrealm/libconfig/archive/v1.7.2.tar.gz
mv v1.7.2.tar.gz libconfig-1.7.2.tar.gz
tar xvf libconfig-1.7.2.tar.gz && cd libconfig-1.7.2
autoreconf
./configure
make && make install && cd ..

Expand Down