libraries/libwebsocketpp: Patched for newer boost in 14.1

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2013-11-14 18:50:12 +07:00 committed by Robby Workman
parent e7d0166e60
commit 560d2651b3
2 changed files with 19 additions and 3 deletions

View file

@ -25,8 +25,8 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=libwebsocketpp
VERSION=20120917
BUILD=${BUILD:-1}
VERSION=${VERSION:-20120917}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -65,7 +65,13 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
patch -p0 < $CWD/libwebsocketpp.patch
make -j1 CXXFLAGS="$SLKCFLAGS"
make -j1 install prefix=$PKG/usr libdir=lib$LIBDIRSUFFIX SHARED=1

View file

@ -0,0 +1,10 @@
--- src/messages/data.hpp.orig 2013-11-14 18:45:48.006935510 +0700
+++ src/messages/data.hpp 2013-11-14 18:46:11.851588339 +0700
@@ -36,6 +36,7 @@
#include <boost/enable_shared_from_this.hpp>
#include <boost/function.hpp>
#include <boost/intrusive_ptr.hpp>
+#include <boost/thread/locks.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/utility.hpp>