This repository has been archived by the owner on Apr 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72c3e4d
commit 939a45b
Showing
6 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# build xdelta3 command line tool in the submodule directory, requires automake and libtool | ||
set -e | ||
set -x | ||
|
||
cd xdelta/xdelta3 | ||
git clean -fX | ||
libtoolize | ||
aclocal | ||
autoconf | ||
autoheader | ||
automake --add-missing | ||
./configure | ||
make | ||
cd ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule xdelta
updated
4 files
+1 −1 | README.md | |
+1 −1 | xdelta3/examples/Makefile | |
+2 −2 | xdelta3/xdelta3-internal.h | |
+15 −0 | xdelta3/xdelta3.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__all__ = ['VERSION'] | ||
|
||
VERSION = StrictVersion('0.0.5') | ||
VERSION = StrictVersion('0.0.6a1') |