You need start script in your OS. For example: https://cgit.freebsd.org/ports/tree/emulators/virtualbox-ose-70/files/vboxinit.in
Also need this patch: --- configure.orig 2012-04-23 17:53:49 UTC +++ configure @@ -13614,6 +13614,13 @@ main () { int is_ok = 0; +#if defined(MARIADB_PACKAGE_VERSION) && defined(MARIADB_PACKAGE_VERSION_ID) && MARIADB_PACKAGE_VERSION_ID >= 30000 + size_t version; + if (mariadb_get_infov(NULL, MARIADB_CLIENT_VERSION_ID, &version) != 0) + version = mysql_get_client_version(); + if (version >= 50000) + is_ok = 1; +#else const char *info = mysql_get_client_info(); char *i = strdup(info); char *m = strtok(i,...
SweetHome3D 7.1, still can't build with OpenJDK 11: Buildfile: /tmp/work/usr/ports/cad/sweethome3d/work/SweetHome3D-7.1-src/build.xml build: [echo] compiling Sweet Home 3D for Java 1.7 minimum version [mkdir] Created dir: /tmp/work/usr/ports/cad/sweethome3d/work/SweetHome3D-7.1-src/build/classes [javac] /tmp/work/usr/ports/cad/sweethome3d/work/SweetHome3D-7.1-src/build.xml:68: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac]...
FreeBSD 13.1 amd64. Work for me with OpenJDK 11: $ java -version openjdk version "11.0.16" 2022-07-19 OpenJDK Runtime Environment (build 11.0.16+8-1) OpenJDK 64-Bit Server VM (build 11.0.16+8-1, mixed mode) Have issues with OpenJDK 17: $ java -version openjdk version "17.0.4" 2022-07-19 OpenJDK Runtime Environment (build 17.0.4+8-1) OpenJDK 64-Bit Server VM (build 17.0.4+8-1, mixed mode, sharing)
Thanks you too!
[patch] Dav1d 1.0.0 support
Correct syntax for FreeBSD is: sed -e "s/{version}/`cat version`/" -i '' $1 sed -e "s/{date}/`date +%Y-%m-%d`/" -i '' $1
Version from git build and work fine with commented sed in install_appdata.sh.