Skip to content
Open
Show file tree
Hide file tree
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
Empty file modified README.md
100755 → 100644
Empty file.
Empty file modified check_failedTest.sh
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions config.m4
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if test "$PHP_RSYNC" != "no"; then
librsync_sources="librsync/prototab.c librsync/base64.c librsync/buf.c \
librsync/checksum.c librsync/command.c librsync/delta.c librsync/emit.c \
librsync/fileutil.c librsync/hex.c librsync/job.c librsync/mdfour.c \
librsync/mksum.c librsync/msg.c librsync/netint.c \
librsync/blake2b-ref.c librsync/mksum.c librsync/msg.c librsync/netint.c \
librsync/patch.c librsync/readsums.c \
librsync/rollsum.c librsync/scoop.c librsync/search.c librsync/stats.c \
librsync/stream.c librsync/sumset.c librsync/trace.c librsync/tube.c \
Expand All @@ -36,7 +36,7 @@ if test "$PHP_RSYNC" != "no"; then
AC_DEFINE(HAVE_BUNDLED_RSYNC, 1, [ ])
AC_CHECK_FUNCS([snprintf vsnprintf], [], [])

dnl AC_CHECK_HEADERS([librsync/prototab.h librsync/buf.h librsync/checksum.h librsync/command.h librsync/emit.h librsync/fileutil.h librsync/job.h librsync/mdfour.h librsync/netint.h librsync/protocol.h librsync/librsync.h librsync/librsync-config.h librsync/rollsum.h librsync/search.h librsync/stream.h librsync/sumset.h librsync/trace.h librsync/types.h librsync/util.h librsync/whole.h librsync/snprintf.h], [], [])
dnl AC_CHECK_HEADERS([librsync/prototab.h librsync/buf.h librsync/checksum.h librsync/command.h librsync/emit.h librsync/fileutil.h librsync/job.h librsync/mdfour.h librsync/blake2.h librsync/netint.h librsync/protocol.h librsync/librsync.h librsync/librsync-config.h librsync/rollsum.h librsync/search.h librsync/stream.h librsync/sumset.h librsync/trace.h librsync/types.h librsync/util.h librsync/whole.h librsync/snprintf.h], [], [])
else
AC_MSG_RESULT([not found])
# search default path list
Expand Down
Empty file modified examples/client.php
100755 → 100644
Empty file.
Empty file modified examples/logger.php
100755 → 100644
Empty file.
Empty file modified examples/server.php
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion librsync/AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Martin Pool <mbp@samba.org>
Martin Pool <mbp@sourcefrog.net>
Andrew Tridgell <tridge@samba.org>
Donovan Baarda <abo@minkirri.apana.org.au>
27 changes: 10 additions & 17 deletions librsync/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
## Process this file with automake to produce Makefile.in
# $Id: Makefile.am,v 1.126 2003/10/17 16:15:20 abo Exp $

# Copyright (C) 2000, 2001, 2002 by Martin Pool <mbp@samba.org>
# Copyright (C) 2000, 2001, 2002, 2014 by Martin Pool <mbp@sourcefrog.net>
# Copyright (C) 2003 by Donovan Baarda <abo@minkirri.apana.org.au>

# This program is free software; you can redistribute it and/or
Expand All @@ -19,15 +18,16 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

AUTOMAKE_OPTIONS = foreign
SUBDIRS = doc popt testsuite
SUBDIRS = . doc testsuite
ACLOCAL_AMFLAGS = -I m4

MAINTAINERCLEANFILES = Makefile.in \
aclocal.m4 config.guess config.h.in config.sub configure \
depcomp install-sh ltmain.sh missing mkinstalldirs \
prototab.c prototab.h ChangeLog
prototab.c prototab.h

EXTRA_DIST = autogen.sh configure.msc $(noinst_SCRIPTS) rdiff.magic \
librsync.spec README.CVS README.RPM libversions.txt ChangeLog \
librsync.spec README.RPM libversions.txt \
PCbuild/rdiff.dsp PCbuild/PCbuild.dsw PCbuild/config.h \
PCbuild/librsync-config.h

Expand All @@ -39,11 +39,12 @@ librsync_la_SOURCES = prototab.c prototab.h \
base64.c buf.c buf.h checksum.c checksum.h command.c \
command.h delta.c emit.c emit.h fileutil.c fileutil.h \
hex.c job.c job.h mdfour.c mdfour.h mksum.c msg.c netint.c netint.h \
patch.c protocol.h readsums.c librsync.h librsync-config.h \
patch.c readsums.c librsync.h librsync-config.h \
rollsum.c rollsum.h \
scoop.c search.c search.h stats.c stream.c stream.h sumset.c \
sumset.h trace.c trace.h tube.c types.h util.c util.h \
version.c whole.c whole.h snprintf.h
version.c whole.c whole.h snprintf.h \
blake2b-ref.c blake2.h blake2-impl.h

librsync_la_LIBADD = @LIBOBJS@

Expand All @@ -58,21 +59,13 @@ bin_PROGRAMS = rdiff
rdiff_SOURCES = rdiff.c isprefix.c isprefix.h librsync.h librsync-config.h \
trace.h

rdiff_LDADD = @BUILD_POPT@ librsync.la
rdiff_LDADD = librsync.la

rdiff_DEPENDENCIES = @BUILD_POPT@ librsync.la
rdiff_DEPENDENCIES = librsync.la

# this script is used to build prototab.[ch]
noinst_SCRIPTS = mkprototab.pl

# Autogenerated by a script.
prototab.c prototab.h: $(srcdir)/mkprototab.pl
perl $(srcdir)/mkprototab.pl prototab.c prototab.h

# Rule to build popt if needed.
popt/libpopt.a:
(cd popt && $(MAKE) $(AM_MAKEFLAGS) libpopt.a)

# Autogenerated by cvs2cl from CVS commits.
ChangeLog:
cvs2cl -g "-z6"
Loading