diff options
author | sem <sem@FreeBSD.org> | 2005-01-21 03:20:52 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-01-21 03:20:52 +0800 |
commit | df5bf95c306d12138c56a12ec9c1d6a36bd6e449 (patch) | |
tree | ab66cd541e3cc4109124a82f4d09956ac2a8e9a2 /devel/ace+tao | |
parent | 016c3f8b5dee4cec75be6b52572a5416a39c5372 (diff) | |
download | freebsd-ports-gnome-df5bf95c306d12138c56a12ec9c1d6a36bd6e449.tar.gz freebsd-ports-gnome-df5bf95c306d12138c56a12ec9c1d6a36bd6e449.tar.zst freebsd-ports-gnome-df5bf95c306d12138c56a12ec9c1d6a36bd6e449.zip |
- The code is 64 bit clean now
- Add a little patch for TAO
Submitted by: Alex Vasylenko <lxv(at)omut.org>
Diffstat (limited to 'devel/ace+tao')
-rw-r--r-- | devel/ace+tao/Makefile | 3 | ||||
-rw-r--r-- | devel/ace+tao/files/patch-av | 9 |
2 files changed, 9 insertions, 3 deletions
diff --git a/devel/ace+tao/Makefile b/devel/ace+tao/Makefile index 80f960b6c89f..3eef9e38b92b 100644 --- a/devel/ace+tao/Makefile +++ b/devel/ace+tao/Makefile @@ -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 diff --git a/devel/ace+tao/files/patch-av b/devel/ace+tao/files/patch-av new file mode 100644 index 000000000000..c1ac4f288962 --- /dev/null +++ b/devel/ace+tao/files/patch-av @@ -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); + } |