Page 10 of 13 FirstFirst ... 89101112 ... LastLast
Results 91 to 100 of 130

Thread: HOWTO: Compile VICE in Ubuntu

  1. #91
    Join Date
    Apr 2006
    Beans
    Hidden!

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    Probably you check this on old link http://www.viceteam.org/ , but new link we should use is http://vice-emu.sourceforge.net/ .

  2. #92
    Join Date
    Nov 2008
    Beans
    24

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    i noticed the changelog says...

    "- XRandR fullscreen implemented"

    has anyone been able to get fullscreen with 2.1?

  3. #93
    Join Date
    Apr 2006
    Beans
    Hidden!

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    As i know, xrander is implemented as of 2.0, but now that is official and works better. To go to fullscreen (i can go), example for C64: just first checked Settings>VIC-II settings>Hardware Scaling. For this to work, 'gtk2' version must be compiled with gtkglext also and you must have working OpenGL or Mesa driver. If you you use 'xaw' version, also make sure to have Hardware scaling checked. For this older gui you don't need OpenGL, but you need good and working Xv (also must be compiled with) in your DDX driver. In both ways graphics driver must be correct.

    You can try debs from my PPA, if you want to check gtk2 version. (i will add ffmpeg support today, but not for mp3 capture, because liblame0 is not in Ubuntu official repos for Intrepid and for Hardy, ffmpeg is not even compiled with mp3 support for video.).

    P.S. Right now i added ffmpeg support for intrepid and hardy packages (without mp3, sorry).
    Last edited by kosmo; December 23rd, 2008 at 02:52 AM. Reason: ffmpeg

  4. #94
    Join Date
    Nov 2008
    Beans
    24

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    ok, I must be doing something wrong then because I don't see "Hardware scaling" under vic II settings.
    screenshot attached.
    Attached Images Attached Images

  5. #95
    Join Date
    Apr 2006
    Beans
    Hidden!

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    As i know, only fglrx drivers have problems with Xv, but maybe that is not case here... Did you tried to delete old ~/.vice/vicerc and start x64 again? Some command output and logs will be more usefull: vice-2.1/config.log, output from console when you actually start 'x64' and:

    Code:
    ldd /usr/bin/x64 && xvinfo
    or ldd /usr/local/bin/x64 if your x64 was installed in local path.
    Attached Images Attached Images
    Last edited by kosmo; December 24th, 2008 at 03:34 AM.

  6. #96
    Join Date
    Nov 2008
    Beans
    24

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    thanks for the help-
    I tried deleting the vicerc file but no luck
    mine is only 2.0 though,not 2.1, but here was the result of the command...

    ldd /usr/local/bin/x64
    linux-gate.so.1 => (0xb7fb9000)
    libXaw.so.7 => /usr/lib/libXaw.so.7 (0xb7f30000)
    libXpm.so.4 => /usr/lib/libXpm.so.4 (0xb7f20000)
    libXmu.so.6 => /usr/lib/libXmu.so.6 (0xb7f0a000)
    libXt.so.6 => /usr/lib/libXt.so.6 (0xb7eb8000)
    libXext.so.6 => /usr/lib/libXext.so.6 (0xb7ea9000)
    libX11.so.6 => /usr/lib/libX11.so.6 (0xb7dba000)
    libSM.so.6 => /usr/lib/libSM.so.6 (0xb7db1000)
    libICE.so.6 => /usr/lib/libICE.so.6 (0xb7d99000)
    libnsl.so.1 => /lib/tls/i686/cmov/libnsl.so.1 (0xb7d80000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7c90000)
    libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7c6a000)
    libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7c5b000)
    libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7afd000)
    libXau.so.6 => /usr/lib/libXau.so.6 (0xb7afa000)
    libxcb-xlib.so.0 => /usr/lib/libxcb-xlib.so.0 (0xb7af6000)
    libxcb.so.1 => /usr/lib/libxcb.so.1 (0xb7add000)
    libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7ad9000)
    /lib/ld-linux.so.2 (0xb7f9f000)
    libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb7ad4000)

  7. #97
    Join Date
    Apr 2006
    Beans
    Hidden!

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    OK that is usefull, as you can see you miss Xv extensions, probably you don't have dev packages installed. Install the following (i think that is to be enough):

    Code:
    sudo apt-get libxxf86vm-dev libxv-dev
    And then recompile and reinstall new vice again.

  8. #98
    Join Date
    Nov 2008
    Beans
    24

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    oh- ok. Although when I run that command I also get an error...

    sudo apt-get libxxf86vm-dev libxv-dev
    E: Invalid operation libxxf86vm-dev

  9. #99

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    There's a small typo in that. Try:

    Code:
    sudo apt-get install libxxf86vm-dev libxv-dev
    Ubuntu user #7247 :: Linux user #409907
    inconsolation.wordpress.com

  10. #100

    Re: HOWTO: Compile VICE in Dapper, Gutsy, Hardy and Intrepid

    Quote Originally Posted by kosmo View Post
    Probably you check this on old link http://www.viceteam.org/ , but new link we should use is http://vice-emu.sourceforge.net/ .
    Ah, thank you.
    Ubuntu user #7247 :: Linux user #409907
    inconsolation.wordpress.com

Page 10 of 13 FirstFirst ... 89101112 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •