c3842bbc99
- Update to 1.2.3 * Fix: Procrun. Correct multiple issues related to enabling a service to interact with the desktop. Provide a better error message if this option is used with an invalid user, install the service with the option enabled if requested and correctly save the setting if it is enabled in the GUI. * Fix: jsvc. Update the list of paths searched for libjvm.so to include the path used by OpenJDK 11. * Add: Procrun. Add additional debug logging for Java start mode. * Fix: jsvc. Remove incorrect definition 'supported_os' which defined in psupport.m4 file to fix jsvc build error on s390, arm, aarch64, mipsel and mips. * Add: More debug logging in prunsrv.c and javajni.c. * Add: Update arguments.c to support Java 11 --enable-preview. * Add: jsvc and Procrun. Add support for Java native memory tracking. * Add: Procrun. Add a new command, print, that outputs the command to (re-)configure the service with the current settings. This is intended to be used to save settings such as before an upgrade. - Rebase apache-commons-daemon-riscv64.patch - Remove apache-commons-daemon-s390x.patch fixed upstream OBS-URL: https://build.opensuse.org/request/show/844231 OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-commons-daemon?expand=0&rev=33
16 lines
585 B
Diff
16 lines
585 B
Diff
Index: commons-daemon-1.2.3-src/src/native/unix/support/apsupport.m4
|
|
===================================================================
|
|
--- commons-daemon-1.2.3-src.orig/src/native/unix/support/apsupport.m4
|
|
+++ commons-daemon-1.2.3-src/src/native/unix/support/apsupport.m4
|
|
@@ -181,6 +181,10 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
|
|
CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\""
|
|
HOST_CPU=aarch64
|
|
;;
|
|
+ riscv64)
|
|
+ CFLAGS="$CFLAGS -DCPU=\\\"riscv64\\\""
|
|
+ HOST_CPU=$host_cpu
|
|
+ ;;
|
|
*)
|
|
AC_MSG_RESULT([failed])
|
|
AC_MSG_ERROR([Unsupported CPU architecture "$host_cpu"]);;
|