Librsync: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 78: | Line 78: | ||
|is a library implementing the rolling-checksum algorithm. | |is a library implementing the rolling-checksum algorithm. | ||
|} | |} | ||
[[Category:Networking Libraries]] | |||
Revision as of 14:14, 19 March 2009
| Download Source: | http://downloads.sourceforge.net/librsync/librsync-0.9.7.tar.gz |
|---|
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. |
|---|