search for: flac_ldadd

Displaying 20 results from an estimated 20 matches for "flac_ldadd".

2004 Sep 10
2
-lm ordering
...cpu=ev56", 1:11 vs. 2:03 for encoding a test track with default parameters. This may also be due to the Compaq math library. --- src/flac/Makefile.am.orig Tue Aug 28 15:58:11 2001 +++ src/flac/Makefile.am Tue Aug 28 15:58:19 2001 @@ -29,5 +29,4 @@ encode.h \ file.h -flac_LDFLAGS = -lm -flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la +flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la -lm --- src/test_streams/Makefile.am.orig Tue Aug 28 16:00:17 2001 +++ src/test_streams/Makefile.am Tue Aug 28 16:00:28 2001 @@ -20,6 +20,6 @@ noinst_PROGRAMS = test_streams test_streams_SOURCES = \ ma...
2004 Sep 10
1
Patch for building on IRIX
...===================================== RCS file: /cvsroot/flac/flac/src/flac/Makefile.am,v retrieving revision 1.13 diff -u -r1.13 Makefile.am --- src/flac/Makefile.am 20 Sep 2002 05:55:13 -0000 1.13 +++ src/flac/Makefile.am 5 Oct 2002 09:06:51 -0000 @@ -39,4 +39,4 @@ file.h \ vorbiscomment.h -flac_LDADD = $(NEED_OGGFLAC_LIB) $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @SHARE_LIBS@ -lm +flac_LDADD = $(NEED_OGGFLAC_LIB) $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @SHARE_LIBS@ @LIBICONV@ -lm Index: src/metaflac/Makefile.am ==================================================================...
2014 May 25
1
make dllimport/dllexport attributes work with mingw (and others)
Ozkan Sezer wrote: > flac.exe built with mingw with or without the dllimport/dllexport patch > always requires libFLAC-8.dll (because flac/Makefile.am has libFLAC.la > in flac_LDADD and not libFLAC-static.la), and the patch doesn't make it > any more or any less dependent on any 'foreign' dlls: the patch doesn't > change the existent situation in that regard. If I'm missing something, > please explain. > I don't know how all this autoconf m...
2014 May 25
2
make dllimport/dllexport attributes work with mingw (and others)
Erik de Castro Lopo wrote: > Ozkan Sezer wrote: > >> My apologies, obviously sent an old testing patch. Correct one is >> attached (declspec2.diff). Compilation tested using MinGW (gcc-3.4.5, >> binutils-2.20), and MinGW-w64 (gcc-4.5.4, binutils-2.21.90.) > > lvqcl, > > Can you please validate this new patch? It works, but only if i call ./configure without
2004 Sep 10
9
FLAC 1.0.4 released
I uploaded the source tarball and binary releases for win32 and redhat 7. Solaris package should be ready tomorrow. See the news item for all the improvements from 1.0.3: http://flac.sourceforge.net/news.html#20020924 Developers, see the new Doxygen-based API docs: http://flac.sourceforge.net/api/index.html Thanks again to all the contributors and testers. Josh
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
...-git a/src/flac/Makefile.am b/src/flac/Makefile.am index 389215e..a4929ab 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -44,6 +44,9 @@ flac_SOURCES = \ utils.h \ vorbiscomment.h +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif flac_LDADD = \ $(top_builddir)/src/share/utf8/libutf8.la \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ @@ -51,7 +54,7 @@ flac_LDADD = \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_bu...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport attributes work with mingw/mingw-w64 and others: - changes _declspec keyword to __declspec: the former may not be defined by some toolchains. - changes the _MSC_VER condition to universally _WIN32: MSVC, as well as GCC supports this. Attached patch: declspec.diff Regards. -- O.S. -------------- next part --------------
2014 May 25
0
make dllimport/dllexport attributes work with mingw (and others)
....dll. Adding "--disable-shared" makes > flac.exe standalone: it doesn't need those libraries thst are foreign to > Windows systems). flac.exe built with mingw with or without the dllimport/dllexport patch always requires libFLAC-8.dll (because flac/Makefile.am has libFLAC.la in flac_LDADD and not libFLAC-static.la), and the patch doesn't make it any more or any less dependent on any 'foreign' dlls: the patch doesn't change the existent situation in that regard. If I'm missing something, please explain. -- O.S.
2017 Jan 13
0
[PATCH 4/4] When using libtool, use LTLIBICONV instead.
...eeded could fail. --- src/flac/Makefile.am | 2 +- src/metaflac/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index bf3bf468..fe6fa489 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -60,7 +60,7 @@ flac_LDADD = \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_builddir)/src/libFLAC/libFLAC.la \ $(win_utf8_lib) \ - @LIBICONV@ \ + @LTLIBICONV@ \ -lm CLEANFILES = flac.exe diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index 7a4ec6b6..ec201ddf 1...
2004 Sep 10
2
getting framesize in client
...=================================== RCS file: /cvsroot/flac/flac/src/flac/Makefile.am,v retrieving revision 1.19 diff -u -r1.19 Makefile.am --- src/flac/Makefile.am 30 Oct 2002 06:28:09 -0000 1.19 +++ src/flac/Makefile.am 9 Nov 2002 16:51:49 -0000 @@ -38,4 +38,4 @@ encode.h \ vorbiscomment.h -flac_LDADD = $(NEED_OGGFLAC_LIB) $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @SHARE_LIBS@ @LIBICONV@ -lm +flac_LDADD = $(NEED_OGGFLAC_LIB) @SHARE_LIBS@ $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @LIBICONV@ -lm Index: src/plugin_xmms/Makefile.am ===================================================...
2004 Sep 10
3
getting framesize in client
On Fri, Nov 08, 2002 at 12:39:52PM -0800, Josh Coalson wrote: > --- Miroslav Lichvar <lichvarm@phoenix.inf.upol.cz> wrote: > > I have few notes: > > > > It seems there is changed API in CVS again. So, what about adding > > function like > > unsigned FLAC__format_frame_size(const FLAC__Frame *frame) > > which returns size of the frame in bytes. This
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...p_builddir)/src/libFLAC/libFLAC.la \ - @OGG_LIBS@ \ - -lm + $(top_builddir)/src/libFLAC/libFLAC.la example_c_decode_file_SOURCES = main.c diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index 6f0145b..ceae6a5 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -50,7 +50,6 @@ flac_LDADD = \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_builddir)/src/libFLAC/libFLAC.la \ - @OGG_LIBS@ \ @LIBICONV@ \ -lm diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefil...
2004 Sep 10
0
1.0 source candidate
...le.am,v retrieving revision 1.4 diff -u -r1.4 Makefile.am --- src/flac/Makefile.am 2001/06/08 00:13:21 1.4 +++ src/flac/Makefile.am 2001/07/21 01:58:17 @@ -23,6 +23,11 @@ decode.c \ encode.c \ file.c \ - main.c + main.c \ + analyze.h \ + decode.h \ + encode.h \ + file.h + flac_LDFLAGS = -lm flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la Index: src/libFLAC/Makefile.am =================================================================== RCS file: /cvsroot/flac/flac/src/libFLAC/Makefile.am,v retrieving revision 1.15 diff -u -r1.15 Makefile.am --- src/libFLAC/Makefile.am 2001/07/20 23:46:09 1.15...
2014 May 04
0
Building FLAC with LTO
...--- flac-1.3.0/src/flac/Makefile.am.orig 2013-05-26 09:30:33.924201900 +0000 +++ flac-1.3.0/src/flac/Makefile.am 2014-05-03 09:44:59.262301200 +0000 @@ -44,6 +44,10 @@ utils.h \ vorbiscomment.h +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif + flac_LDADD = \ $(top_builddir)/src/share/utf8/libutf8.la \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ @@ -51,6 +55,7 @@ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_builddir)/src/lib...
2004 Sep 10
1
flac-1.1.0: libtool warnings
...simply turning static noinst_LIBRARIES into libootl noinst_LTLIBRARIES is enough. Libtool then will manage PIC and non-PIC object code automagically. --- flac-1.1.0~/src/flac/Makefile.am 2003-01-25 21:14:42 +0300 +++ flac-1.1.0/src/flac/Makefile.am 2004-02-05 03:52:31 +0300 @@ -41,10 +41,10 @@ flac_LDADD = \ $(NEED_OGGFLAC_LIB) \ - $(top_builddir)/src/share/grabbag/libgrabbag.a \ - $(top_builddir)/src/share/gain_analysis/libgain_analysis.a \ - $(top_builddir)/src/share/getopt/libgetopt.a \ - $(top_builddir)/src/share/utf8/libutf8.a \ + $(top_builddir)/src/share/grabbag/libgrabbag.la \ + $(top_bui...
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post a big file, so you can get it here: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2 Josh __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/
2017 Jan 06
8
[PATCH 0/5] Allow multiple targets to be disabled
Hi, This patchet allows a few targets to be disabled when unrequired. The rational is coming from VLC's contrib buildsystem, so far we use make -C to select only some subparts of the available targets. It would be easier and cleaner to use autoconf to do so IMHO. There's an additional patch which fixes the build when building for WinRT/UWP platform, upstreamed from VLC. We have a couple
2017 Jan 13
9
Upstreaming Gentoo patches
Dear FLAC devs, I would like to get some of our patches merged into master. Most of them deal with adhering to GNU conventions, respectively not overriding flags/variables that are up to the user to set. For instance, honoring $(htmldir) is important, as we have installation paths for the documentation that differ from what is currently coded in the various Makefile.am's. Regards David
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...n -test_libFLAC: libFLAC test_libs_common -test_seeking: libFLAC -test_streams: libFLAC +include $(topdir)/Makefile.deps diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index abc10f5..38fc347 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -47,9 +47,9 @@ flac_SOURCES = \ flac_LDADD = \ $(top_builddir)/src/share/utf8/libutf8.la \ + $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/getopt/libgetopt.a \ - $(top_builddir)/src/share/replaygain_analysis/libreplaygai...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...n -test_libFLAC: libFLAC test_libs_common -test_seeking: libFLAC -test_streams: libFLAC +include $(topdir)/Makefile.deps diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index abc10f5..38fc347 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -47,9 +47,9 @@ flac_SOURCES = \ flac_LDADD = \ $(top_builddir)/src/share/utf8/libutf8.la \ + $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/getopt/libgetopt.a \ - $(top_builddir)/src/share/replaygain_analysis/libreplayg...