- The code is 64 bit clean now

- Add a little patch for TAO

Submitted by:	Alex Vasylenko <lxv(at)omut.org>
This commit is contained in:
Sergey Matveychuk 2005-01-20 19:20:52 +00:00
parent 52766d17c8
commit e79c4c8099
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126970
2 changed files with 9 additions and 3 deletions

View File

@ -26,9 +26,6 @@ USE_GMAKE= yes
USE_REINPLACE= yes
INSTALLS_SHLIB= yes
# Code is not 64-bit clean yet
ONLY_FOR_ARCHS= i386
TESTS= "@comment "
.if defined(WITH_TESTS)
USE_PERL5_BUILD= yes

View File

@ -0,0 +1,9 @@
--- TAO/tao/Valuetype/ValueBase.inl.orig Sat Apr 4 12:25:24 1970
+++ TAO/tao/Valuetype/ValueBase.inl Thu Jan 20 09:27:52 2005
@@ -67,5 +67,5 @@ TAO_OBV_GIOP_Flags::is_block_size (CORBA
ACE_INLINE CORBA::Boolean
TAO_OBV_GIOP_Flags::is_end_tag (CORBA::ULong tag)
{
- return (0x80000000L < tag && tag <= 0xFFFFFFFFL);
+ return (0x80000000L < tag);
}