Announcement

Collapse
No announcement yet.

pts/encode-ogg broken build

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • pts/encode-ogg broken build

    Hi again (and last time for today

    pts/encode-ogg fails on my Ubuntu with vorbis-tools linking against system-wide libvorbis, instead of supplied one.
    To correct that, I added following items to the top of install.sh:

    Code:
    mkdir $HOME/vorbis
    
    # Force use of new libs.
    CPPFLAGS="-I$HOME/vorbis/include" 
    LDFLAGS="-L$HOME/vorbis/lib"
    This will force ./configure and make to use new libs.
    ---
    //_ Lazar Obradovic

  • #2
    Originally posted by lgnd33 View Post
    Hi again (and last time for today

    pts/encode-ogg fails on my Ubuntu with vorbis-tools linking against system-wide libvorbis, instead of supplied one.
    To correct that, I added following items to the top of install.sh:

    Code:
    mkdir $HOME/vorbis
    
    # Force use of new libs.
    CPPFLAGS="-I$HOME/vorbis/include" 
    LDFLAGS="-L$HOME/vorbis/lib"
    This will force ./configure and make to use new libs.
    ---
    //_ Lazar Obradovic
    Whoops, thanks. Fixed in encode-ogg-1.4.1 now on OpenBenchmarking.org.
    Michael Larabel
    https://www.michaellarabel.com/

    Comment

    Working...
    X