Activity for VVD

  • VVD VVD posted a comment on ticket #174

    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,...

  • VVD VVD posted a comment on ticket #968

    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]...

  • VVD VVD posted a comment on ticket #174

    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)

  • VVD VVD posted a comment on ticket #11

    Thanks you too!

  • VVD VVD created ticket #11

    [patch] Dav1d 1.0.0 support

  • VVD VVD posted a comment on ticket #990

    Correct syntax for FreeBSD is: sed -e "s/{version}/`cat version`/" -i '' $1 sed -e "s/{date}/`date +%Y-%m-%d`/" -i '' $1

  • VVD VVD posted a comment on ticket #990

    Version from git build and work fine with commented sed in install_appdata.sh.

  • VVD VVD posted a comment on ticket #990

    Thanks! Will test it now! src/youtube/retrieveyoutubeurl.cpp: @@ -228,7 +228,7 @@ QString app_bin = absoluteFilePath(ytdlBin()); - #if defined(Q_OS_UNIX) && !defined(Q_OS_MACX) + #ifdef Q_OS_UNIX_NOT_MAC QString python_bin = findExecutable("python3"); if (python_bin.isEmpty()) python_bin = findExecutable("python2"); if (!python_bin.isEmpty()) {

  • VVD VVD posted a comment on ticket #990

    smplayer.appdata.xml have lines: <releases> <!-- <release version="{version}" date="{date}"/> --> <release version="21.8.0" date="2021-08-16"/> <release version="21.1.0" date="2021-01-06"/> </releases> install_appdata.sh modified commented line only. Lines with sed are not needed for build. But line with install is needed.

  • VVD VVD posted a comment on ticket #990

    Thanks. What about other Q_OS_LINUX? Maybe add same changes with Q_OS_FREEBSD near every Q_OS_LINUX? Build and work fine for me.

  • VVD VVD posted a comment on ticket #990

    BTW, lines with sed in file install_appdata.sh are useless. And used syntax is not portable.

  • VVD VVD posted a comment on ticket #990

    Testing "DEFINES += Q_OS_LINUX" in src/smplayer.pro. Build without errors, 1st test of playback video is good too.

  • VVD VVD created ticket #990

    SMPlayer 21.8.0 fails to build: screensaver.cpp:35:21: error: allocation of incomplete type 'PowerSaving'

  • VVD VVD posted a comment on ticket #785

    Hello from Dec of 2020! Bug is still here! SMPlayer 20.6.0, mpv 0.33.0. In console without SMPlayer, just mpv -vo gpu video.mp4: rotated, correct aspect ratio, eat less then 8% of 1 core of my very old cpu. In SMPlayer+mpv with -vo gpu: rotated, but incorrect aspect ratio, eat less then 8% of 1 core of my cpu. In SMPlayer+mpv with -vo xv: rotated, correct aspect ratio, but eat 50-60% of 1 core of my cpu. FreeBSD 12.2 amd64, recent KDE5, Core 2 Duo E6550@2.8GHz, GeForce 9800 GT with NVIDIA drivers...

  • VVD VVD posted a comment on ticket #968

    I'm using FreeBSD with native build of OpenJDK8/11 and SweetHome3D: https://svnweb.freebsd.org/ports/head/cad/sweethome3d/

  • VVD VVD modified a comment on ticket #968

    I can't find answer on my question in README.TXT… Java3D install 4 files in OpenJDK8: /usr/local/openjdk8/jre/lib/amd64/libj3dcore-ogl.so /usr/local/openjdk8/jre/lib/ext/j3dcore.jar /usr/local/openjdk8/jre/lib/ext/j3dutils.jar /usr/local/openjdk8/jre/lib/ext/vecmath.jar If I run SweetHome3D with OpenJDK8 - it found all required files. But if I try to run with OpenJDK11 - it can't find Java3D files. Work fine: /usr/local/openjdk8/bin/java -Xmx1024m -jar /usr/local/share/java/classes/SweetHome3D-6.4.jar...

  • VVD VVD posted a comment on ticket #968

    I can't find answer on my question in README.TXT… Java3D install 4 files in OpenJDK8: /usr/local/openjdk8/jre/lib/amd64/libj3dcore-ogl.so /usr/local/openjdk8/jre/lib/ext/j3dcore.jar /usr/local/openjdk8/jre/lib/ext/j3dutils.jar /usr/local/openjdk8/jre/lib/ext/vecmath.jar If I run SweetHome3D with OpenJDK8 - it found all reauired files. But if I try to run with OpenJDK11 - it can't find Java3D files. Work fine: /usr/local/openjdk8/bin/java -Xmx1024m -jar /usr/local/share/java/classes/SweetHome3D-6.4.jar...

  • VVD VVD modified a comment on ticket #968

    It runs with with Java 11 in your case, that what counts no? Ofc no. How did you install java3d in OpenJDK11?

  • VVD VVD posted a comment on ticket #968

    It runs with with Java 11 in your case, that what counts no? Ofc no. How did you install java3d in OpenJDK11?

  • VVD VVD posted a comment on ticket #968

    So closed it because it build with Java 11 now? Thanks!

  • VVD VVD posted a comment on ticket #968

    After replace several "1.5" with "1.6" I got error with "new sun.applet.AppletAudioClip(url)" - replaced it with "com.sun.media.sound.JavaSoundAudioClip.create(url) (https://bugs.openjdk.java.net/browse/JDK-8204454). Then few "dances" with ">" symbol in comments. But how to replace javah tag with javac in j3d-core/src/native/build.xml I don't know…

  • VVD VVD modified a comment on ticket #968

    What Java3D version do you use with OpenJDK 11? How did you compiled it with OpenJDK 11? I got error during build Java3D 1.5.2 with OpenJDK 11: cd /tmp/work/usr/ports/java/java3d/work/java3d-1.5.2/vecmath && /usr/bin/env JAVA_HOME=/usr/local/openjdk11 XDG_DATA_HOME=/tmp/work/usr/ports/java/java3d/work XDG_CONFIG_HOME=/tmp/work/usr/ports/java/java3d/work HOME=/tmp/work/usr/ports/java/java3d/work TMPDIR="/tmp" PATH=/tmp/work/usr/ports/java/java3d/work/.bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin...

  • VVD VVD posted a comment on ticket #968

    What Java3D version do you use with OpenJDK 11? How did you compiled it with OpenJDK 11? I got error during build Java3D 1.5.2 with OpenJDK 11: cd /tmp/work/usr/ports/java/java3d/work/java3d-1.5.2/vecmath && /usr/bin/env JAVA_HOME=/usr/local/openjdk11 XDG_DATA_HOME=/tmp/work/usr/ports/java/java3d/work XDG_CONFIG_HOME=/tmp/work/usr/ports/java/java3d/work HOME=/tmp/work/usr/ports/java/java3d/work TMPDIR="/tmp" PATH=/tmp/work/usr/ports/java/java3d/work/.bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin...

  • VVD VVD posted a comment on ticket #968

    It run fine on same host with openjdk8. (Tried rm -rf ~/.java before every start too).

  • VVD VVD created ticket #968

    Java 11 support

  • VVD VVD posted a comment on ticket #29

    Already done.

  • VVD VVD posted a comment on ticket #5

  • VVD VVD posted a comment on ticket #5

    ?

  • VVD VVD posted a comment on ticket #5

    Hm…

  • VVD VVD posted a comment on ticket #15

    For FreeBSD I wrote start/stop script /usr/local/etc/rc.d/vboxinit. It starts VMs...

  • VVD VVD posted a comment on ticket #5

    UP

  • VVD VVD posted a comment on ticket #5

    :-(

  • VVD VVD posted a comment on ticket #37

    Same ticket already exist: https://sourceforge.net/p/phpvirtualbox/feature-requests/22/...

  • VVD VVD posted a comment on ticket #22

    Just created same ticket: https://sourceforge.net/p/phpvirtualbox/bugs/37/

  • VVD VVD created ticket #37

    VirtualBox 5.0 support

  • VVD VVD posted a comment on ticket #22

    It was bug in VirtualBox. After upgrade from 4.3.12 to 4.3.22 it was fixed. Probably...

  • VVD VVD posted a comment on ticket #22

    $ VBoxManage getextradata TEST_VM enumerate Key: phpvb/Groups, Value: /TestGroup...

  • VVD VVD posted a comment on ticket #22

    Hm. Tags was removed by sf. FreeBSD 10.0 RELEASE amd64, VirtualBox 4.3.8 and 4.3.10,...

  • VVD VVD created ticket #22

    Don't keep phpvirtualbox's groups with VirtualBox OSE on FreeBSD

  • VVD VVD posted a comment on ticket #19

    IMHO, it's VirtualBox's bug, not phpvirtualbox: vboxwebsrv is from VirtualBox.

  • VVD VVD posted a comment on ticket #18

    Is it bug report?

  • VVD VVD posted a comment on ticket #15

    /usr/lib/virtualbox/vboxwebsrv is VirtualBox file, but not phpvirtualbox. Ask on...

1