Xiph.org - flac.git/summary

Flac git repository

http://git.xiph.org/?p=flac.git;a=summary

Les articles publiés sur le site

  • cmake : fix nasm sources build when building in a separate directory

    8 octobre 2019, par sezero
    cmake: fix nasm sources build when building in a separate directory
    
    When building in the same directory as the source, it works, but not in
    a separate directory.  The trailing slash is important with nasm.  Note
    that include_directories("${CMAKE_CURRENT_SOURCE_DIR}/") does not work
    because cmake seems to strip the trailing slash.
    
    Also relax the cmake version requirement from 3.12 to 3.9 as everywhere
    else in the tree: it works just fine.
    
    • [DH] src/libFLAC/ia32/CMakeLists.txt
  • libFLAC/bitreader.c : Fix out-of-bounds read

    7 octobre 2019, par Erik de Castro Lopo
    libFLAC/bitreader.c: Fix out-of-bounds read
    
    Credit: Oss-Fuzz
    Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17069
    Testcase: fuzzer_decoder-5670265022840832
    
    • [DH] src/libFLAC/bitreader.c
  • Make sure CMake build files end up in release tarball

    29 septembre 2019, par Erik de Castro Lopo
    Make sure CMake build files end up in release tarball
    
    • [DH] Makefile.am
    • [DH] doc/Makefile.am
    • [DH] doc/html/Makefile.am
    • [DH] doc/html/images/Makefile.am
    • [DH] examples/Makefile.am
    • [DH] examples/c/Makefile.am
    • [DH] examples/c/decode/file/Makefile.am
    • [DH] examples/c/encode/file/Makefile.am
    • [DH] examples/cpp/Makefile.am
    • [DH] examples/cpp/decode/file/Makefile.am
    • [DH] examples/cpp/encode/file/Makefile.am
    • [DH] microbench/Makefile.am
    • [DH] src/Makefile.am
    • [DH] src/flac/Makefile.am
    • [DH] src/libFLAC++/Makefile.am
    • [DH] src/libFLAC/Makefile.am
    • [DH] src/libFLAC/ia32/Makefile.am
    • [DH] src/metaflac/Makefile.am
    • [DH] src/plugin_common/Makefile.am
    • [DH] src/plugin_xmms/Makefile.am
    • [DH] src/share/Makefile.am
    • [DH] src/test_grabbag/Makefile.am
    • [DH] src/test_grabbag/cuesheet/Makefile.am
    • [DH] src/test_grabbag/picture/Makefile.am
    • [DH] src/test_libFLAC++/Makefile.am
    • [DH] src/test_libFLAC/Makefile.am
    • [DH] src/test_libs_common/Makefile.am
    • [DH] src/test_seeking/Makefile.am
    • [DH] src/test_streams/Makefile.am
    • [DH] src/utils/Makefile.am
    • [DH] src/utils/flacdiff/Makefile.am
    • [DH] src/utils/flactimer/Makefile.am
    • [DH] test/Makefile.am
  • Remove un-needed Makefile.am

    29 septembre 2019, par Erik de Castro Lopo
    Remove un-needed Makefile.am
    
    • [DH] Makefile.am
    • [DH] configure.ac
    • [DH] objs/Makefile.am
    • [DH] objs/debug/Makefile.am
    • [DH] objs/debug/bin/Makefile.am
    • [DH] objs/debug/lib/Makefile.am
    • [DH] objs/release/Makefile.am
    • [DH] objs/release/bin/Makefile.am
    • [DH] objs/release/lib/Makefile.am
  • configure.ac : check for sys/auxv.h before defining FLAC__CPU_PPC

    19 septembre 2019, par Peter Seiderer
    configure.ac: check for sys/auxv.h before defining FLAC__CPU_PPC
    
    Signed-off-by: Peter Seiderer <ps.report@gmx.net>
    ---
    Note: One of the buildroot autobuilder provided powerpc toolchains
    seem to not provide the sys/auxv.h header file, resulting in a
    compile failure (see [1] for details).
    
    [1] http://lists.busybox.net/pipermail/buildroot/2019-September/259732.html
    
    • [DH] configure.ac