summaryrefslogtreecommitdiff
path: root/xdelta3/Makefile
diff options
context:
space:
mode:
authorjosh.macdonald <jmacd@users.noreply.github.com>2010-02-11 11:34:19 +0000
committerjosh.macdonald <jmacd@users.noreply.github.com>2010-02-11 11:34:19 +0000
commitf241a281e80aaf1aa90fe1a0d9db206396cd6a79 (patch)
tree7531181e6cb7cca542aff2843be7eea863795535 /xdelta3/Makefile
parent3dbebbe46096e17c0298f1cbe315d10b35b4f9ee (diff)
Running xdelta3-regtest.py. Observed a bug in recently-added
match-setup code, using source_eof instead of frontier position.
Diffstat (limited to 'xdelta3/Makefile')
-rw-r--r--xdelta3/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/xdelta3/Makefile b/xdelta3/Makefile
index 5024b4f..e44ffd9 100644
--- a/xdelta3/Makefile
+++ b/xdelta3/Makefile
@@ -4,11 +4,11 @@
4UNAME = $(shell uname) 4UNAME = $(shell uname)
5CYGWIN = $(findstring CYGWIN, $(UNAME)) 5CYGWIN = $(findstring CYGWIN, $(UNAME))
6DARWIN = $(findstring Darwin, $(UNAME)) 6DARWIN = $(findstring Darwin, $(UNAME))
7PYVER = 2.5 7PYVER = 2.6
8 8
9ifeq ("$(CYGWIN)", "") 9ifeq ("$(CYGWIN)", "")
10SWIGTGT = xdelta3module.so 10SWIGTGT = xdelta3module.so
11PYTGT = build/lib.macosx-10.5-i386-2.5/xdelta3main.so 11PYTGT = build/lib.macosx-10.6-universal-2.6/xdelta3main.so
12else 12else
13SWIGTGT = xdelta3module.dll 13SWIGTGT = xdelta3module.dll
14PYTGT = build/lib.cygwin-1.5.24-i686-$(PYVER)/xdelta3main.dll 14PYTGT = build/lib.cygwin-1.5.24-i686-$(PYVER)/xdelta3main.dll
@@ -226,7 +226,8 @@ xdelta3module.so: xdelta3_wrap.o xdelta3.o
226 -lc 226 -lc
227else 227else
228xdelta3module.so: xdelta3_wrap.o xdelta3.o 228xdelta3module.so: xdelta3_wrap.o xdelta3.o
229 gcc -Wl,-F. -bundle -undefined dynamic_lookup $(CFLAGS) \ 229 gcc-4.2 -Wl,-F. -bundle -undefined dynamic_lookup \
230 -arch x86_64 $(CFLAGS) \
230 xdelta3.o xdelta3_wrap.o -o xdelta3module.so 231 xdelta3.o xdelta3_wrap.o -o xdelta3module.so
231endif 232endif
232 233