Les articles publiés sur le site
-
15 janvier 2017, par David Seifert
Only compile and run tests when running 'make check'
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
- [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_seeking/Makefile.am
- [DH] src/test_streams/Makefile.am
-
15 janvier 2017, par David Seifert
Do not override CFLAGS, as CFLAGS is a user flag.
* Furthermore, use NDEBUG globally to detect the presence
of building with more debug output information.
AX_CHECK_ENABLE_DEBUG is easier to use, and nowadays
Gnome has also switched to it from its own custom solution.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
- [DH] configure.ac
- [DH] include/FLAC/assert.h
- [DH] m4/ax_check_enable_debug.m4
- [DH] src/libFLAC/cpu.c
- [DH] src/libFLAC/lpc.c
- [DH] src/libFLAC/stream_encoder.c
- [DH] src/plugin_common/Makefile.am
- [DH] src/plugin_common/charset.c
- [DH] src/plugin_xmms/http.c
- [DH] src/share/Makefile.am
-
15 janvier 2017, par Erik de Castro Lopo
bitmath.h: MSVS unsigned fix
The orignal code had `unsigned long` inside `#ifdef MSVC`. It was then changed
to `uint64_t` which was incorrect because on Windows `sizze long == 4`.
Change it now to `uint32_t` which is always correct regardless of OS, compiler
or architecture.
- [DH] src/libFLAC/include/private/bitmath.h
-
15 janvier 2017, par Erik de Castro Lopo
bitmath.h: More unsigned fixes
- [DH] src/libFLAC/include/private/bitmath.h
-
14 janvier 2017, par sezero
libFLAC/cpu.c: Replace memory.h include with string.h
cpu.c was the only source to use memory.h instead of string.h.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>