Librsync: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) Added page |
mNo edit summary |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
|http:// | |http://sourceforge.net/projects/librsync/files/librsync/0.9.7/librsync-0.9.7.tar.gz/download | ||
|} | |} | ||
| Line 13: | Line 13: | ||
Compile the package: | Compile the package: | ||
./configure --prefix=/usr | ./configure --prefix=/usr && | ||
make | make | ||
| Line 78: | Line 78: | ||
|is a library implementing the rolling-checksum algorithm. | |is a library implementing the rolling-checksum algorithm. | ||
|} | |} | ||
[[Category:Networking Libraries]] | |||
Latest revision as of 02:09, 24 March 2011
| Download Source: | http://sourceforge.net/projects/librsync/files/librsync/0.9.7/librsync-0.9.7.tar.gz/download |
|---|
Introduction to Librsync
librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system.
Project Homepage: http://librsync.sourceforge.net/
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
--libdir=/usr/lib32 &&
make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \
--libdir=/usr/lib64 &&
make
Install the package:
make install
Contents
| Installed Directories: | None |
|---|---|
| Installed Programs: | None |
| Installed Libraries: | librsync.{a,la,so} |
Short Descriptions
| librsync | is a library implementing the rolling-checksum algorithm. |
|---|