Skip to content

Commit

Permalink
Fixed Cross-compiled Builds Using Java
Browse files Browse the repository at this point in the history
I took these lines out from the configure script for some reason in
OpenDDS#4611. Without them the host
build doesn't include idl2jni.
  • Loading branch information
iguessthislldo committed Aug 12, 2024
1 parent 28ae5f5 commit 7796cd6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,8 @@ sub default_features {
push(@feat, 'ipv6=1') if $opts{'ipv6'};
my @normalized = map {/=/ ? $_ : "$_=1"} @features;
push(@feat, @normalized) if @normalized;
} elsif ($opts{'java'}) {
push(@feat, 'java=1');
}
return @feat;
}
Expand Down
5 changes: 5 additions & 0 deletions docs/news.d/cross-java.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.. news-prs: 4763
.. news-start-section: Fixes
- Fixed cross-compiled builds using Java
.. news-end-section

0 comments on commit 7796cd6

Please sign in to comment.