summaryrefslogtreecommitdiff
path: root/src/flac/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* libFLAC: Remove win_utf8_io dependencyErik de Castro Lopo2016-02-081-0/+5
| | | | Path-from: lvqcl <lvqcl.mail@gmail.com>
* Update copyright years to include 2014.Erik de Castro Lopo2014-11-251-1/+1
|
* Makefile.ams: Add MSVS project files to EXTRA_DIST.Erik de Castro Lopo2014-07-091-1/+5
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Set version to 1.3.0 and update coyprights throughout.Erik de Castro Lopo2013-05-261-1/+2
|
* Only link against libogg (and libm) if neededUlrich Klauer2013-04-071-1/+0
| | | | | | | 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>
* Use recursive automake in src/share/ part of tree.Erik de Castro Lopo2013-04-011-1/+1
| | | | This will make it easier to incorporate the win_utf8_io stuff.
* Add CLEANFILES to relevant Makefile.am to force removal of Windows EXEs.Erik de Castro Lopo2013-03-291-0/+2
| | | | | | 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.
* Purge old un-maintained MSVC 6 project files.Erik de Castro Lopo2013-03-101-2/+0
|
* Revert parts of 96d081c1 that touched source code or autotools files.Erik de Castro Lopo2013-01-031-1/+1
|
* Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build systemHendricks2662013-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | 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-061-3/+3
|
* Change order of flac_LDADD libs so it works with mingw.Erik de Castro Lopo2012-07-041-1/+1
|
* Update and improve autotools buildCristian Rodríguez2012-04-081-1/+1
| | | | | | | | | | | - 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...
* Purge MINGW_WINSOCK_LIBS config variable.Erik de Castro Lopo2012-02-051-1/+0
| | | | This was only needed for ntohl() function which has already been removed.
* add 2009 copyrightJosh Coalson2009-01-071-1/+1
|
* update copyright for 2008Josh Coalson2008-02-281-1/+1
|
* add missing EXTRA_DIST filesJosh Coalson2007-09-121-1/+5
|
* initial support for new --keep-foreign-metadata options, saving done, ↵Josh Coalson2007-08-141-0/+2
| | | | restoring TODO
* more mingw fixesJosh Coalson2007-08-011-0/+1
|
* add vcproj files to EXTRA_DISTJosh Coalson2007-07-111-1/+2
|
* add 2007 copyrightJosh Coalson2007-02-021-1/+1
|
* merge libOggFLAC into libFLAC and libOggFLAC++ into FLAC++; documentation ↵Josh Coalson2006-10-151-5/+0
| | | | still needs work
* add 2206 to copyright noticeJosh Coalson2006-04-251-1/+1
|
* fix handling of CFLAGS/CXXFLAGS, now using AM_CFLAGSJosh Coalson2005-01-301-1/+2
|
* add 2005 to copyright noticesJosh Coalson2005-01-251-1/+1
|
* update copyright to 2004Josh Coalson2004-01-171-1/+1
|
* rename string.* to more unambiguous local_string_utils.*Josh Coalson2003-12-171-1/+1
|
* rename string.* to more unambiguous local_string_utils.*Josh Coalson2003-12-171-1/+1
|
* add undocumented option --apply-replaygain-which-is-not-lossless to flac; ↵Josh Coalson2003-12-171-1/+2
| | | | required a lot of reorganization; gain_analysis lib renamed to replaygain_analyis; replaygain_synthesis moved out of plugin_common into its own library in share/
* fix bug (debian #213172): ↵Josh Coalson2003-11-141-0/+2
| | | | http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=213172
* Add missing -lmMatt Zimmerman2003-07-261-1/+2
|
* Explicitly link shared libraries against dependent libraries, in response toMatt Zimmerman2003-05-271-2/+1
| | | | | | | | Debian bug #179764. This lets the linker resolve things automagically, and programs linking with FLAC libs don't need to add any extra linker flags, among other good things. http://bugs.debian.org/179764
* Build libtool archives instead of plain .a archives, so that PIC versions areMatt Zimmerman2003-02-071-3/+3
| | | | built and can they be portably linked into shared libraries.
* remove reference to obsolete Makefile.vcJosh Coalson2003-01-251-1/+0
|
* Add 2003 to copyright noticeJosh Coalson2003-01-021-1/+1
|
* add utils.c, utils.hJosh Coalson2002-12-101-0/+2
|
* remove SHARE_LIBSJosh Coalson2002-12-031-1/+10
|
* fix lib listJosh Coalson2002-11-141-1/+1
|
* move file functions into new file_utils convenience libJosh Coalson2002-10-301-2/+0
|
* changes for MSCV: added dsp file, rename any .cc files to .cppJosh Coalson2002-10-161-3/+4
|
* Fix a broken search-and-replace which produced effects like @ OGG_CFLAGS@Matt Zimmerman2002-10-151-1/+1
|
* Fix slightly botched search-and-replace which produced constructs likeMatt Zimmerman2002-10-151-1/+1
| | | | "@ CFLAGS".
* Use config.h rather than passing all defs in CFLAGSMatt Zimmerman2002-10-101-2/+2
|
* add @LIBICONV@ to ..._LDADDJosh Coalson2002-10-081-1/+1
|
* add -T, --tag optionsJosh Coalson2002-09-201-1/+3
|
* fixes based on a pass over everything with autoconf/automakeJosh Coalson2002-08-231-1/+5
|
* add -lgetoptJosh Coalson2002-08-101-1/+1
|
* add Makefile.lite, Makefile.vc, etc. to EXTRA_DISTJosh Coalson2002-07-091-0/+4
|
* check for ogg using AM_PATH_OGG from ogg.m4Josh Coalson2002-06-281-2/+2
|
* update copyright date to include 2002Josh Coalson2002-01-261-1/+1
|