1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

devel/luabind: unbreak -DNDEBUG on 10+ systems

This commit is contained in:
Jan Beich 2015-10-04 00:42:55 +00:00
parent a993e63831
commit f5836edd37
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=398559
2 changed files with 22 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= luabind
PORTVERSION= 0.9.1
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= devel
MASTER_SITES= SF

View File

@ -0,0 +1,21 @@
In file included from luabind/detail/policy.hpp:51:0,
from luabind/detail/convert_to_lua.hpp:28,
from luabind/detail/call_member.hpp:30,
from luabind/wrapper_base.hpp:31,
from luabind/back_reference.hpp:27,
from luabind/class.hpp:93,
from luabind/luabind.hpp:28,
luabind/detail/object_rep.hpp: In member function 'void* luabind::detail::object_rep::allocate(size_t)':
luabind/detail/object_rep.hpp:77:11: error: 'malloc' is not a member of 'std'
return std::malloc(size);
^
--- luabind/detail/object_rep.hpp.orig 2010-08-31 13:24:52 UTC
+++ luabind/detail/object_rep.hpp
@@ -24,6 +24,7 @@
#ifndef LUABIND_OBJECT_REP_HPP_INCLUDED
#define LUABIND_OBJECT_REP_HPP_INCLUDED
+#include <cstdlib> // for -DNDEBUG with libc++
#include <boost/aligned_storage.hpp>
#include <luabind/config.hpp>
#include <luabind/detail/instance_holder.hpp>