Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rdiff-backup
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
rdiff-backup
Commits
fd15d474
Commit
fd15d474
authored
Sep 12, 2014
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patched 0.11.0 to build in 2014
parent
210bdb8f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
trunk/rdiff-backup/dist/setup.py
trunk/rdiff-backup/dist/setup.py
+3
-3
trunk/rdiff-backup/rdiff_backup/_librsyncmodule.c
trunk/rdiff-backup/rdiff_backup/_librsyncmodule.c
+1
-1
trunk/rdiff-backup/src/cmodule.c
trunk/rdiff-backup/src/cmodule.c
+1
-0
No files found.
trunk/rdiff-backup/dist/setup.py
View file @
fd15d474
...
@@ -16,14 +16,14 @@ setup(name="rdiff-backup",
...
@@ -16,14 +16,14 @@ setup(name="rdiff-backup",
author_email
=
"bescoto@stanford.edu"
,
author_email
=
"bescoto@stanford.edu"
,
url
=
"http://rdiff-backup.stanford.edu"
,
url
=
"http://rdiff-backup.stanford.edu"
,
packages
=
[
'rdiff_backup'
],
packages
=
[
'rdiff_backup'
],
ext_modules
=
[
Extension
(
"rdiff_backup.C"
,
[
"cmodule.c"
]),
ext_modules
=
[
Extension
(
"rdiff_backup.C"
,
[
"
src/
cmodule.c"
]),
Extension
(
"rdiff_backup._librsync"
,
Extension
(
"rdiff_backup._librsync"
,
[
"_librsyncmodule.c"
],
[
"
rdiff_backup/
_librsyncmodule.c"
],
libraries
=
[
"rsync"
])],
libraries
=
[
"rsync"
])],
scripts
=
[
'rdiff-backup'
],
scripts
=
[
'rdiff-backup'
],
data_files
=
[(
'share/man/man1'
,
[
'rdiff-backup.1'
]),
data_files
=
[(
'share/man/man1'
,
[
'rdiff-backup.1'
]),
(
'share/doc/rdiff-backup-%s'
%
version_string
,
(
'share/doc/rdiff-backup-%s'
%
version_string
,
[
'CHANGELOG'
,
'COPYING'
,
'README'
,
'FAQ.html'
])])
[
'CHANGELOG'
,
'COPYING'
,
'README'
,
'FAQ
-body
.html'
])])
trunk/rdiff-backup/rdiff_backup/_librsyncmodule.c
View file @
fd15d474
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
* ----------------------------------------------------------------------- */
* ----------------------------------------------------------------------- */
#include <Python.h>
#include <Python.h>
#include <rsync.h>
#include <
lib
rsync.h>
#define RS_JOB_BLOCKSIZE 65536
#define RS_JOB_BLOCKSIZE 65536
static
PyObject
*
librsyncError
;
static
PyObject
*
librsyncError
;
...
...
trunk/rdiff-backup/src/cmodule.c
View file @
fd15d474
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
/* choose the appropriate stat and fstat functions and return structs */
/* choose the appropriate stat and fstat functions and return structs */
/* This code taken from Python's posixmodule.c */
/* This code taken from Python's posixmodule.c */
#define LONG_LONG long long
#undef STAT
#undef STAT
#if defined(MS_WIN64) || defined(MS_WIN32)
#if defined(MS_WIN64) || defined(MS_WIN32)
# define STAT _stati64
# define STAT _stati64
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment