Fix compiling under MinGW.
[tinc] / README.git
1 Before you can start compiling tinc from a fresh git clone, you have
2 to install the very latest versions of the following packages:
3
4 - LibreSSL or OpenSSL
5 - zlib
6 - LZO
7 - GCC
8 - automake
9 - autoconf
10 - ncurses or PDCurses
11 - readline
12
13 Then you have to let the autotools create all the autogenerated files, using
14 this command:
15
16     autoreconf -fsi
17
18 If you change configure.in or any Makefile.am file, you will have to rerun
19 autoreconf. After this, you can run configure and make as usual. To create a
20 tarball suitable for release, run:
21
22     make dist
23
24 To clean up your working copy so that no autogenerated files remain, run:
25
26     git clean -f