From 97ce1b07bfdb32759ba80a56b300418fc82b0f59 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 21 Aug 2016 20:21:50 -0400 Subject: [PATCH] fix building tarball --- build_dist.sh | 10 +++++----- src/puff.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build_dist.sh b/build_dist.sh index 10e2ecaf4..1f9339282 100755 --- a/build_dist.sh +++ b/build_dist.sh @@ -1,9 +1,9 @@ #!/bin/sh -make distclean +make clean cd docs -make +make RST2HTML=rst2html.py cd .. #clear out any extended attributes that Finder may add @@ -22,9 +22,9 @@ rm -f bindings/python/Makefile bindings/python/Makefile.in chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp ./autotool.sh -./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt -make V=1 -j8 distcheck +./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt --with-openssl=/opt/local +make V=1 -j8 check -./configure --enable-python-binding --enable-examples=yes --enable-encryption --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt +./configure --enable-python-binding --enable-examples=yes --enable-encryption --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt --with-openssl=/opt/local make V=1 -j8 dist diff --git a/src/puff.cpp b/src/puff.cpp index 83e1b0e26..b6d86be58 100644 --- a/src/puff.cpp +++ b/src/puff.cpp @@ -84,7 +84,7 @@ #include /* for setjmp(), longjmp(), and jmp_buf */ #include /* for NULL */ -#include "puff.hpp" /* prototype for puff() */ +#include "libtorrent/puff.hpp" /* prototype for puff() */ #define local static /* for local function definitions */