summaryrefslogtreecommitdiff
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.3.31.3.3Erik de Castro Lopo2019-08-041-1/+1
|
* Silence -finline-functions warningThomas Zander2017-06-232-4/+10
| | | | | | This warning flag is gcc-specfic. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Version 1.3.21.3.2Erik de Castro Lopo2017-01-011-1/+1
|
* More Makefile.lite fixesErik de Castro Lopo2016-12-211-6/+9
| | | | Patch-from: Robert Kausch <robert.kausch@freac.org>
* Makefile.lite fixesErik de Castro Lopo2016-12-111-1/+1
| | | | Patch-from: Robert Kausch <robert.kausch@freac.org>
* Bulk update copyright datesErik de Castro Lopo2016-12-055-5/+5
|
* Makefile.lite: Improved solution to CFLAGS from environmentErik de Castro Lopo2016-05-132-6/+31
|
* Makefile.lite: Pick up `CFLAGS` from the environmentErik de Castro Lopo2016-05-122-11/+6
| | | | | | This allows extra CFLAGS to be set on the command line. Eg CFLAGS=Werror make -f Makefile.lite
* Make.lite: Proper detection Darwin/x86_64Thomas Zander2015-10-301-1/+7
| | | | | | | | | - 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>
* Let Makefile.lite build succeed on FreeBSD amd64Thomas Zander2015-10-123-1/+18
| | | | | | | | | | - build/config.mk: some OS call x86_64 amd64 - build/config.mk: FreeBSD needs -DHAVE_SYS_PARAM_H in CFLAGS - build/exe.mk and lib.mk: default compilers on FreeBSD are cc/c++ - src/libFLAC++/Makefile.lite: $(OS) is not defined - src/libFLAC++/Makefile.lite: Link -lstdc++ on FreeBSD Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Version 1.3.1 final.1.3.1Erik de Castro Lopo2014-11-271-1/+1
|
* Set version to 1.3.1pre1.1.3.1pre1Erik de Castro Lopo2014-11-251-1/+1
|
* Update copyright years to include 2014.Erik de Castro Lopo2014-11-255-5/+5
|
* Remove old/broken PPC/Altivec code.Erik de Castro Lopo2014-09-173-24/+8
| | | | | | | | | | | | | * Removes FLAC__lpc_restore_signal_asm_ppc_altivec_16* from lpc.h and stream_decoder.c * Removes PPC-specific code from cpu.c and cpu.h * Removes PPC stuff from libFLAC/Makefile.lite and build/*.mk * Removes as/gas/PPC-specific stuff from configure.ac and libFLAC/Makefile.am* * Removes libFLAC/ppc folder and remove "src/libFLAC/ppc*/Makefile" lines from configure.ac Patch-from: lvqcl <lvqcl.mail@gmail.com>
* build/config.mk : Define CPU_IS_LITTLE_ENDIAN as needed.Erik de Castro Lopo2014-07-131-2/+2
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Further updates to the Makefile.lite build system.Evan Ramos2014-06-273-13/+22
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Update Makefile.lite build system.Evan Ramos2014-06-244-19/+34
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Language fix: "difference licenses"Ulrich Klauer2013-05-275-5/+5
| | | | 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-265-6/+11
|
* Minor Linux fixes for Makefile.lite build method.Erik de Castro Lopo2013-01-021-0/+11
|
* 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-024-24/+85
| | | | | | | | | | | | | | | | | | | | | 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>
* add 2009 copyrightJosh Coalson2009-01-075-5/+5
|
* proper handling of variable length arrays (SF#2002481 ↵Josh Coalson2009-01-031-2/+2
| | | | https://sourceforge.net/tracker2/?func=detail&aid=2002481&group_id=13478&atid=113478)
* fixes for windows builds (SF#1676822: ↵Josh Coalson2009-01-021-2/+2
| | | | https://sourceforge.net/tracker2/?func=detail&aid=1676822&group_id=13478&atid=113478)
* update Makefile.lite system to work on x86_64 linuxJosh Coalson2008-09-145-59/+104
|
* update copyright for 2008Josh Coalson2008-02-284-4/+4
|
* bump version number to 1.2.1Josh Coalson2007-09-141-1/+1
|
* fix CFLAGS typoJosh Coalson2007-09-141-1/+1
|
* add more warning flagsJosh Coalson2007-09-132-6/+6
|
* bump version number to 1.2.0Josh Coalson2007-07-071-1/+1
|
* add debug info to nasm debug buildsJosh Coalson2007-03-302-2/+6
|
* remove special makefile variants for libiconv on darwinJosh Coalson2007-02-141-3/+1
|
* add 2007 copyrightJosh Coalson2007-02-024-4/+4
|
* bump version to 1.1.4-alpha1Josh Coalson2007-02-021-1/+1
|
* several speed improvements: completely rewritten bitbuffer which uses native ↵Josh Coalson2007-01-281-2/+1
| | | | machine word size instead of bytes; much faster rice partition size estimation; crc16 calculation in machine word size
* bump version number to 1.1.3Josh Coalson2006-11-171-1/+1
|
* remove redundant -WextraJosh Coalson2006-11-172-6/+6
|
* add -Wextra to gcc flagsJosh Coalson2006-11-082-6/+6
|
* bump version to 1.1.3-beta2Josh Coalson2006-10-161-1/+1
|
* bump version number to 1.1.3-beta1Josh Coalson2006-10-101-1/+1
|
* bump version number to 1.1.3Josh Coalson2006-08-291-2/+1
|
* complete largefile supportJosh Coalson2006-05-241-3/+3
|
* update iconv settingsJosh Coalson2006-05-181-6/+5
|
* add 2206 to copyright noticeJosh Coalson2006-04-254-4/+4
|
* bump version to intermediate CVSJosh Coalson2006-04-251-1/+2
|
* add special CONFIG_CFLAGS for darwinJosh Coalson2005-05-031-0/+5
|
* bump version to 1.1.2Josh Coalson2005-02-041-1/+1
|
* bump version number to 1.1.2-betaJosh Coalson2005-02-021-1/+1
|
* remove the obsolete project_builder_prebuild_phase.shJosh Coalson2005-02-011-2/+1
|