summaryrefslogtreecommitdiff
path: root/src/test_grabbag
Commit message (Collapse)AuthorAgeFilesLines
* Make sure CMake build files end up in release tarballErik de Castro Lopo2019-10-013-0/+3
|
* Use of BUILD_SHARED_LIBS addedVitaliy Kirsanov2019-05-042-2/+2
|
* CMake support addedVitaliy Kirsanov2019-05-043-0/+6
|
* Update MinGW build fileslvqcl2018-08-262-1/+10
|
* stdint.h fixes for MSVS 2005/2008Erik de Castro Lopo2017-01-192-0/+4
| | | | | | | This adds a new msvc2005_int.h header file which is "force included" as needed by the MSVS project file. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Only compile and run tests when running 'make check'David Seifert2017-01-172-2/+2
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Purge usage of `unsigned` typeErik de Castro Lopo2017-01-142-6/+6
| | | | | | | As pointed out by Ozkan Sezer, on some platforms `int32_t` is actually a typedef for `long` so `unsigned` cannot be used interchangably with `FLAC__uint32`. Fix is to switch from `unsigned` to explicit sized ISO C types defined in <stdint.h>.
* Bulk update copyright datesErik de Castro Lopo2016-12-058-8/+8
|
* libFLAC: Remove win_utf8_io dependencyErik de Castro Lopo2016-02-085-16/+1
| | | | Path-from: lvqcl <lvqcl.mail@gmail.com>
* Fix dependencies for MSVCErik de Castro Lopo2016-01-312-0/+6
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Whitespace onlyErik de Castro Lopo2015-12-251-6/+6
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Makefile.lite: Include config.mk from top level build dirThomas Zander2015-10-302-0/+4
| | | | | | | | | 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>
* Fix cursheet tests for 'make distcheck'.Erik de Castro Lopo2015-02-241-3/+7
|
* Update grabbag tests to work out-of-tree.Erik de Castro Lopo2015-02-151-11/+16
|
* Update copyright years to include 2014.Erik de Castro Lopo2014-11-258-8/+8
|
* Makefile.ams: Add MSVS project files to EXTRA_DIST.Erik de Castro Lopo2014-07-092-2/+6
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Add project files for Visual Studio 2010 and later.Erik de Castro Lopo2014-07-064-0/+394
| | | | | | Also allows building for x86-64 Windows. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Update Makefile.lite build system.Evan Ramos2014-06-242-0/+8
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Fix all instances of '#if HAVE_CONFIG_H'.Erik de Castro Lopo2014-03-242-2/+2
| | | | | | Should be '#ifdef HAVE_CONFIG_H'. Closes: https://sourceforge.net/p/flac/bugs/410/
* Vcproj file updates.Erik de Castro Lopo2013-10-042-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | rplaces OutputDirectory="..\..\..\..\objs\debug\bin" with OutputDirectory="$(SolutionDir)objs\$(ConfigurationName)\bin and so on. Rmoves OutputFile="..\..\objs\debug\lib\$(ProjectName).lib when possible. Also, in the current version "Whole program optimization" compiler option is set, but the corresponding linker option isn't. From MSDN: "If you do not explicitly specify /LTCG when you pass /GL or MSIL modules to the linker, the linker eventually detects this and restarts the link by using /LTCG. Explicitly specify /LTCG when you pass /GL and MSIL modules to the linker for the fastest possible build performance." So /LTCG option was added too. Debug build now uses libogg_static.lib from .\objs\debug\lib folder. (the dependency for both release and debug is objs\$(ConfigurationName)\lib\libogg_static.lib) Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Language fix: "difference licenses"Ulrich Klauer2013-05-271-1/+1
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Set version to 1.3.0 and update coyprights throughout.Erik de Castro Lopo2013-05-268-8/+16
|
* For windows, make UTF-8 mode into a runtime choice.Erik de Castro Lopo2013-04-072-160/+0
| | | | | | | | The smaller patch makes the utf-8 library use ANSI codepage by default. When frontends call the "get_utf8_argv" function it changes Unicode conversion codepage from ANSI to UTF-8. Patch from Janne Hyvärinen <cse@sci.fi>.
* Only link against libogg (and libm) if neededUlrich Klauer2013-04-072-6/+2
| | | | | | | Most of the programs don't use libogg or libm directly and should not link to them (overlinking). Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Purge FLAC__STRINGS_IN_UTF8 from VC project files.Erik de Castro Lopo2013-04-012-2/+2
|
* Add CLEANFILES to relevant Makefile.am to force removal of Windows EXEs.Erik de Castro Lopo2013-03-292-0/+4
| | | | | | This ensures they are removed even we've cross-compiled from Linux to Windows and then configured for Linux. We don't want the Windows EXEs to be run after configuring for Linux.
* Huge Windows utf8 I/O patch.Erik de Castro Lopo2013-03-293-4/+164
| | | | Patch from Janne Hyvärinen <cse@sci.fi>.
* Use new function flac_snprintf() where ever appropriate.Erik de Castro Lopo2013-03-172-12/+4
| | | | | This replaces un-safe usage of sprintf() and Micorsoft's _snprintf() with something sane.
* Purge old un-maintained MSVC 6 project files.Erik de Castro Lopo2013-03-104-194/+2
|
* Fix VC project files to use /objs/ directory instead of /obj/ directory.Erik de Castro Lopo2013-01-024-12/+12
|
* Fix all Makefile.lite to use /objs/ directory instead of /obj/ directory.Erik de Castro Lopo2013-01-022-2/+2
|
* Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build systemHendricks2662013-01-022-4/+4
| | | | | | | | | | | | | | | | | | | | | This is a patch to allow building of the project using MSYS, MinGW, and MinGW-w64 with the following invocation: make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils examples This patch addresses eight points: 1. `uname -p` in MSYS returns "unknown" so we must use `gcc -dumpmachine` to gain information about the target, 32-bit or 64-bit. 2. MinGW-w64 does not ship with a working iconv.h, so we must disable it under this specific compiler. 3. The code requires <inttypes.h> in a handful of C files, but config.mk did not contain -DHAVE_INTTYPES_H, which under the full build process (I assume) is added by autoconf. 4. The compiler complained when lround() in lpc.c was static, so it is no longer static. 5. Additional scattered linking directives (and reordering) (particularly FLAC, grabbag, and replaygain_analysis) were necessary to build some of the components. 6. The Makefile.lite build system benefited from some cleanup, particularly by rigorously defining all entries, factoring redundancy, and establishing dependencies. (Some typos were fixed too.) 7. Shared objects on Windows use .dll, not .so. (Added *.dll, *.dylib, and *.exe to .gitignore.) 8. To allow more freedom using Makefile.lite without configure, I added the variables USE_OGG and USE_ICONV which can toggle these two components in the build process. ex: make -f Makefile.lite examples USE_OGG=0 USE_ICONV=0 These improvements make use of some use-time Makefile variable expansion. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Update FSF address.Miroslav Lichvar2012-12-067-21/+21
|
* Replace printfs with "%s" format strings with puts.Erik de Castro Lopo2012-11-132-5/+5
| | | | Thanks to Elan Ruusamäe for the suggestion.
* Update and improve autotools buildCristian Rodríguez2012-04-082-1/+2
| | | | | | | | | | | - INCLUDES is deprecated, and CPPFLAGS is an user-defined variable, use the proper AM_CPPFLAGS instead - Remove FLAC__INLINE definition, providing proper replacement for MSVC compilers. - Detect if we have C99 's lround and provide a replacement for windows...
* Fix -Werror=format-security errors.Erik de Castro Lopo2012-02-132-5/+5
| | | | | | | | Fixes "format not a string literal and no format arguments [-Werror=format-security]" errors. Patch from Fabian Greffrath <fabian+debian@greffrath.com> via Debian. Closes Debian bug #643377.
* Fix compiler warnings.Erik de Castro Lopo2012-02-011-1/+1
|
* add 2009 copyrightJosh Coalson2009-01-078-8/+8
|
* Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets (SF#1947353, ↵Josh Coalson2009-01-071-12/+16
| | | | SF#2182432: https://sourceforge.net/tracker2/?func=detail&aid=1947353&group_id=13478&atid=363478 https://sourceforge.net/tracker2/index.php?func=detail&aid=2182432&group_id=13478&atid=113478)
* update Makefile.lite system to work on x86_64 linuxJosh Coalson2008-09-142-2/+2
|
* remove VCWebDeploymentTool item for better proj compatibility with vs9Josh Coalson2008-06-032-12/+0
|
* update copyright for 2008Josh Coalson2008-02-288-8/+8
|
* remove spurious CLEANFILESJosh Coalson2007-09-112-4/+0
|
* improvements to compile/link optionsJosh Coalson2007-07-162-6/+22
|
* add vcproj files to EXTRA_DISTJosh Coalson2007-07-112-2/+4
|
* minor commentsJosh Coalson2007-04-053-3/+3
|
* *** empty log message ***Josh Coalson2007-02-222-0/+388
|
* expand test to include simplified for of specificationJosh Coalson2007-02-091-6/+18
|
* add debugging defines with /DJosh Coalson2007-02-042-2/+2
|
* add 2007 copyrightJosh Coalson2007-02-028-8/+8
|