the signed/unsigned change seems to have caused a logic bug on some
[rsync/rsync.git] / INSTALL
CommitLineData
26c08b6c
MP
1To build and install rsync
2
3 $ ./configure
4 $ make
5 # make install
6
7You may set the installation directory and other parameters by options
8to ./configure. To see them, use:
9
10 $ ./configure --help
11
12As of 2.4.7, rsync uses Eric Troan's popt option-parsing library. A
13cut-down copy of release 1.5 is included in the rsync distribution,
14and will be used it there is no popt library on your build host, or if
15the --with-included-popt option is passed to ./configure.
1c47fbd9
MP
16
17
18
19HP-UX NOTES
20-----------
21
22The HP-UX 10.10 "bundled" C compiler seems not to be able to cope with
23ANSI C. You may see this error message in config.log if ./configure
24fails:
25
26 (Bundled) cc: "configure", line 2162: error 1705: Function prototypes are an ANSI feature.
27
28Install gcc or HP's "ANSI/C Compiler".
29
30
ea775255
MP
31
32MAC OSX NOTES
33-------------
34
35Mac OS X (Darwin) seems to have an IPv6 stack, but it does not
36completely implement the "New Sockets" API.
37
38<http://www.ipv6.org/impl/mac.html> says that Apple do not support
39IPv6 yet. If your build fails, try again with --disable-ipv6.
40
41
42