1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

update to 1.3.8

This commit is contained in:
Oliver Lehmann 2005-10-09 22:38:25 +00:00
parent 7cddb1a284
commit d1da0325e2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144717
4 changed files with 3 additions and 46 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= eris
PORTVERSION= 1.3.7
PORTVERSION= 1.3.8
PORTREVISION= 0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}

View File

@ -1,2 +1,2 @@
MD5 (eris-1.3.7.tar.gz) = 2f46b14c328390d505a250d6a75dd6ee
SIZE (eris-1.3.7.tar.gz) = 468195
MD5 (eris-1.3.8.tar.gz) = 2def344e405a2a28216b602b43d84163
SIZE (eris-1.3.8.tar.gz) = 486079

View File

@ -1,20 +0,0 @@
--- Eris/BaseConnection.cpp.orig Mon Oct 3 18:14:51 2005
+++ Eris/BaseConnection.cpp Mon Oct 3 18:15:28 2005
@@ -156,7 +156,7 @@
_timeout = new Timeout("negotiate_" + _id, this, 5000);
_timeout->Expired.connect(SigC::slot(*this, &BaseConnection::onNegotiateTimeout));
- _sc = new Atlas::Net::StreamConnect(_clientName, *_stream, *_bridge);
+ _sc = new Atlas::Net::StreamConnect(_clientName, *_stream);
setStatus(NEGOTIATE);
}
@@ -174,7 +174,7 @@
if (_sc->getState() == Atlas::Net::StreamConnect::SUCCEEDED)
{
- m_codec = _sc->getCodec();
+ m_codec = _sc->getCodec(*_bridge);
_encode = new Atlas::Objects::ObjectsEncoder(*m_codec);
m_codec->streamBegin();
// clean up

View File

@ -1,23 +0,0 @@
--- Eris/TypeInfo.cpp.orig Mon Oct 3 18:22:17 2005
+++ Eris/TypeInfo.cpp Mon Oct 3 18:22:20 2005
@@ -172,17 +172,17 @@
(*C)->addAncestor(tp);
}
-static Atlas::Objects::Root gameEntityFactory()
+static Atlas::Objects::Root gameEntityFactory(const std::string &, int)
{
return Atlas::Objects::Entity::GameEntity();
}
-static Atlas::Objects::Root adminEntityFactory()
+static Atlas::Objects::Root adminEntityFactory(const std::string &, int)
{
return Atlas::Objects::Entity::AdminEntity();
}
-static Atlas::Objects::Root actionFactory()
+static Atlas::Objects::Root actionFactory(const std::string &, int)
{
return Atlas::Objects::Operation::Action();
}