search for: guestfs_java

Displaying 9 results from an estimated 9 matches for "guestfs_java".

2016 Mar 07
0
[PATCH] build: fix reading of the java version
Update the check for the first line (the one containing the version) to match also the message with OpenJDK; switch to awk so it is easier to extract the version inside the double quotes. --- m4/guestfs_java.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/guestfs_java.m4 b/m4/guestfs_java.m4 index f9bec94..649e21f 100644 --- a/m4/guestfs_java.m4 +++ b/m4/guestfs_java.m4 @@ -84,7 +84,7 @@ if test "x$with_java" != "xno"; then else JAR=&q...
2016 Aug 25
0
[PATCH] java: Don't try to set -source 1.5 in options.
...arcy/entry/bootclasspath_older_source https://blogs.oracle.com/darcy/entry/how_to_cross_compile_for Anyway, remove the voodoo from configure.ac. As a side effect, this allows you to set the EXTRA_JAVAC_FLAGS environment variable before ./configure with any extra javac flags that you want. --- m4/guestfs_java.m4 | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/m4/guestfs_java.m4 b/m4/guestfs_java.m4 index 649e21f..82cdc40 100644 --- a/m4/guestfs_java.m4 +++ b/m4/guestfs_java.m4 @@ -123,16 +123,6 @@ if test "x$with_java" != "xno"; then fi AC_MSG_RESULT(...
2017 Aug 09
0
[PATCH 2/2] configure: output paths where java is searched in
Output each path where we attempt to find 'java', so it is easier to spot whether the location for the current OS is missing. This also removes the need to print the location next to the version, since the location was already printed above. --- m4/guestfs_java.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/m4/guestfs_java.m4 b/m4/guestfs_java.m4 index 347cab6da..b86f0c423 100644 --- a/m4/guestfs_java.m4 +++ b/m4/guestfs_java.m4 @@ -50,9 +50,13 @@ if test "x$with_java" != "xno"; then /usr/lib/j...
2017 Aug 09
2
[PATCH 1/2] configure: visually split the blocks of checks
...ing for Perl:"]) m4_include([m4/guestfs_perl.m4]) +AS_ECHO +AS_ECHO(["Checking for Python:"]) m4_include([m4/guestfs_python.m4]) +AS_ECHO +AS_ECHO(["Checking for Ruby:"]) m4_include([m4/guestfs_ruby.m4]) +AS_ECHO +AS_ECHO(["Checking for Java:"]) m4_include([m4/guestfs_java.m4]) +AS_ECHO +AS_ECHO(["Checking for Haskell:"]) m4_include([m4/guestfs_haskell.m4]) +AS_ECHO +AS_ECHO(["Checking for PHP:"]) m4_include([m4/guestfs_php.m4]) +AS_ECHO +AS_ECHO(["Checking for Erlang:"]) m4_include([m4/guestfs_erlang.m4]) +AS_ECHO +AS_ECHO(["Che...
2015 Oct 27
1
[PATCH] configure: Move language binding detection to separate files.
This commit starts to split our massive, monolithic configure.ac file into smaller files, using the m4_include mechanism to combine them. I don't know if we should really do this, so I'm open to comments about it. However: - Our configure.ac script is 1800+ lines long, and that's pretty long. - configure.ac lacks structure; splitting it up might improve that. - From what I read,
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a
2017 Aug 12
2
[PATCH] configure: Further split blocks of text in the script output.
...r Python:"]) +HEADING([Checking for Python]) m4_include([m4/guestfs_python.m4]) -AS_ECHO -AS_ECHO(["Checking for Ruby:"]) +HEADING([Checking for Ruby]) m4_include([m4/guestfs_ruby.m4]) -AS_ECHO -AS_ECHO(["Checking for Java:"]) +HEADING([Checking for Java]) m4_include([m4/guestfs_java.m4]) -AS_ECHO -AS_ECHO(["Checking for Haskell:"]) +HEADING([Checking for Haskell]) m4_include([m4/guestfs_haskell.m4]) -AS_ECHO -AS_ECHO(["Checking for PHP:"]) +HEADING([Checking for PHP]) m4_include([m4/guestfs_php.m4]) -AS_ECHO -AS_ECHO(["Checking for Erlang:"]) +H...
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote host, which were mistakenly handled as local paths (in the best case failing to open a non-existing disk, and in the worst case opening a different disk!). In case the disks are remote resources like ssh or ceph, nothing guarantees that the hostname can be reached from the local machine, or even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...