Xiph.org - flac.git/summary

Flac git repository

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

Les articles publiés sur le site

  • Include proper headers for sysctlbyname() on Mac OS

    29 octobre 2015, par Thomas Zander
    Include proper headers for sysctlbyname() on Mac OS
    
    According to Xcode documentation[1], sysctlbyname is available on
    Mac OS via the same includes as on FreeBSD/DragonFly.
    
    [1] https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man3/sysctlbyname.3.html
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] src/libFLAC/cpu.c
  • Makefile.lite : Include config.mk from top level build dir

    29 octobre 2015, par Thomas Zander
    Makefile.lite: Include config.mk from top level build dir
    
    Makefile.lite in libs/executables subdirs must include
    top level's config.mk to allow variables defined there (OS, PROC)
    to be used; otherwise e.g. EXPLICIT_LIBS is not set and link
    fails on Darwin.
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] examples/c/decode/file/Makefile.lite
    • [DH] examples/c/encode/file/Makefile.lite
    • [DH] examples/cpp/decode/file/Makefile.lite
    • [DH] examples/cpp/encode/file/Makefile.lite
    • [DH] src/flac/Makefile.lite
    • [DH] src/metaflac/Makefile.lite
    • [DH] src/test_grabbag/cuesheet/Makefile.lite
    • [DH] src/test_grabbag/picture/Makefile.lite
    • [DH] src/test_libFLAC++/Makefile.lite
    • [DH] src/test_libFLAC/Makefile.lite
    • [DH] src/test_seeking/Makefile.lite
    • [DH] src/test_streams/Makefile.lite
  • Make.lite : Proper detection Darwin/x86_64

    29 octobre 2015, par Thomas Zander
    Make.lite: Proper detection Darwin/x86_64
    
    - Use uname -m for Darwin/i386 platform
      (uname -p returns i386 on Mac OS)
    - Darwin does have sys/param.h; allow correct flac_min/flac_max macro
      expansion
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] build/config.mk
  • Fix manpage : synonyms for encoding options -0 .. -8 now match the code

    25 octobre 2015, par Thomas Zander
    Fix manpage: synonyms for encoding options -0 .. -8 now match the code
    
    Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
    
    • [DH] man/flac.1
  • libFLAC/cpu.c : Fix un-initialized variable

    13 octobre 2015, par Erik de Castro Lopo
    libFLAC/cpu.c: Fix un-initialized variable
    
    Suggested-by: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/libFLAC/cpu.c