search for: libreplaygain_analysi

Displaying 19 results from an estimated 19 matches for "libreplaygain_analysi".

Did you mean: libreplaygain_analysis
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...le.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/libreplaygain_analysis.la \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_builddir)/src/libFLA...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...e.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/libreplaygain_analysis.la \ $(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \ $(top_builddir)/src/lib...
2010 Aug 17
4
Compiling static libFLAC.a still requires libogg.dylib
...funroll-loops -finline-functions -Wall -W -Winline -arch i386 -arch i386 -o flac analyze.o decode.o encode.o foreign_metadata.o main.o local_string_utils.o utils.o vorbiscomment.o ../../src/share/grabbag/.libs/libgrabbag.a ../../src/share/getopt/libgetopt.a ../../src/share/replaygain_analysis/.libs/libreplaygain_analysis.a ../../src/share/replaygain_synthesis/.libs/libreplaygain_synthesis.a ../../src/share/utf8/.libs/libutf8.a ../../src/libFLAC/.libs/libFLAC.a -L/Users/glennm/libOGG-i386/lib /Users/glennm/libOGG-i386/lib/libogg.dylib -liconv -lm i686-apple-darwin10-gcc-4.2.1: /Users/glennm/libOGG-i386/lib/libogg.d...
2014 May 04
0
Building FLAC with LTO
...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/libFLAC/libFLAC.la \ + $(win_utf8_lib) \ @LIBICONV@ \ -lm --- flac-1.3.0/src/metaflac/Makefile.am.orig 2013-05-26 09:30:33.936201600 +0000 +++ flac-1.3.0/src/metaflac/Makefile.am 2014-05-...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
...ent.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_builddir)/src/libFLAC/libFLAC.la \ - @LIBICONV@ \ + $(win_utf8_lib) @LIBICONV@ \ -lm CLEANFILES = flac.exe diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index d6e76e8..94fda50 100644...
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 --------------
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...op_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/Makefile.am index dc286dc..bd54356 100644 --- a/src/metaflac/Makefile.am +++ b/sr...
2010 Aug 17
1
Compiling static libFLAC.a still requires libogg.dylib
...nline -arch i386 -arch >> i386 -o flac analyze.o decode.o encode.o foreign_metadata.o main.o >> local_string_utils.o utils.o vorbiscomment.o >> ../../src/share/grabbag/.libs/libgrabbag.a >> ../../src/share/getopt/libgetopt.a >> ../../src/share/replaygain_analysis/.libs/libreplaygain_analysis.a >> ../../src/share/replaygain_synthesis/.libs/libreplaygain_synthesis.a >> ../../src/share/utf8/.libs/libutf8.a ../../src/libFLAC/.libs/libFLAC.a >> -L/Users/glennm/libOGG-i386/lib >> /Users/glennm/libOGG-i386/lib/libogg.dylib -liconv -lm >> i686-apple-darwin10-gcc-...
2006 Jul 27
0
[PATCH] libstc++ import fix
...ac-1.1.2.orig/src/test_libFLAC++/Makefile.am flac-1.1.2/src/test_libFLAC++/Makefile.am --- flac-1.1.2.orig/src/test_libFLAC++/Makefile.am Sun Jan 30 20:06:13 2005 +++ flac-1.1.2/src/test_libFLAC++/Makefile.am Thu Jul 27 05:17:52 2006 @@ -26,7 +26,7 @@ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/libFLAC++/libFLAC++.la \ $(top_builddir)/src/libFLAC/libFLAC.la \ - -lm + -lm -lstdc++ test_libFLAC___SOURCES = \ decoders.cpp \ encoders.cpp \
2010 Aug 17
0
Compiling static libFLAC.a still requires libogg.dylib
...nctions -Wall -W -Winline -arch i386 -arch > i386 -o flac analyze.o decode.o encode.o foreign_metadata.o main.o > local_string_utils.o utils.o vorbiscomment.o > ../../src/share/grabbag/.libs/libgrabbag.a > ../../src/share/getopt/libgetopt.a > ../../src/share/replaygain_analysis/.libs/libreplaygain_analysis.a > ../../src/share/replaygain_synthesis/.libs/libreplaygain_synthesis.a > ../../src/share/utf8/.libs/libutf8.a ../../src/libFLAC/.libs/libFLAC.a > -L/Users/glennm/libOGG-i386/lib > /Users/glennm/libOGG-i386/lib/libogg.dylib -liconv -lm > i686-apple-darwin10-gcc-4.2.1: > /Users/g...
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
...t_libFLAC++.vcxproj.filters AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -noinst_PROGRAMS = test_libFLAC++ +check_PROGRAMS = test_libFLAC++ test_libFLAC___LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ diff --git a/src/test_libFLAC/Makefile.am b/src/test_libFLAC/Makefile.am index ee3e1109..22e9453e 100644 --- a/src/test_libFLAC/Makefile.am +++ b/src/test_libFLAC/Makefile.am @@ -24,7 +24,7 @@ EXTRA_DIST = \ AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -I$(to...
2012 Dec 03
0
[PATCH 3/5] Hide symbols with gcc.
...rc/test_libFLAC/Makefile.am b/src/test_libFLAC/Makefile.am index 91a57fb..ed9aee8 100644 --- a/src/test_libFLAC/Makefile.am +++ b/src/test_libFLAC/Makefile.am @@ -27,7 +27,7 @@ test_libFLAC_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/test_libs_common/libtest_libs_common.la \ - $(top_builddir)/src/libFLAC/libFLAC.la \ + $(top_builddir)/src/libFLAC/libFLAC-static.la \ @OGG_LIBS@ \ -lm -- 1.7.11.7
2010 Aug 16
2
Compiling static libFLAC.a still requires libogg.dylib
Hi, I'm trying to compile a static lib of libFLAC yet whenever I use it in an application, the application will fail on other machines because it's trying to use libogg.0.dylib. I'm using the following configure command ./configure prefix=${HOME}/libFLAC --disable-asm-optimizations --disable-dependency-tracking --with-ogg=${HOME}/libOGG --enable-shared=no but to do avail. Is there
2012 Dec 03
4
[PATCH 1/5] Remove old GNU-stack sections from nasm files.
They are not needed since the section is defined in nasm.h. --- src/libFLAC/ia32/bitreader_asm.nasm | 4 ---- src/libFLAC/ia32/cpu_asm.nasm | 4 ---- src/libFLAC/ia32/fixed_asm.nasm | 4 ---- src/libFLAC/ia32/lpc_asm.nasm | 4 ---- src/libFLAC/ia32/stream_encoder_asm.nasm | 4 ---- 5 files changed, 20 deletions(-) diff --git
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...s/Makefile.am +++ b/src/share/replaygain_analysis/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to produce Makefile.in -AUTOMAKE_OPTIONS = foreign - AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -I$(top_srcdir)/include/share noinst_LTLIBRARIES = libreplaygain_analysis.la diff --git a/src/share/replaygain_synthesis/Makefile.am b/src/share/replaygain_synthesis/Makefile.am index c8de600..7b95791 100644 --- a/src/share/replaygain_synthesis/Makefile.am +++ b/src/share/replaygain_synthesis/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to produce Mak...
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik, I've found a middleground for the problem of setting default CFLAGS. I've gone back to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script (i.e., the user hasn't specified anything) and then proceed to set them to the defaults as before. This has been suggested before: https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html In
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...eplaygain_analysis/Makefile.am +++ b/src/share/replaygain_analysis/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -INCLUDES = -I$(top_srcdir)/include/share +AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -I$(top_srcdir)/include/share noinst_LTLIBRARIES = libreplaygain_analysis.la diff --git a/src/share/replaygain_synthesis/Makefile.am b/src/share/replaygain_synthesis/Makefile.am index 4ea9e8a..c8de600 100644 --- a/src/share/replaygain_synthesis/Makefile.am +++ b/src/share/replaygain_synthesis/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = include...
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools based build system. There is a lot more that could and should be done, but I tried to stay conservative for now and just resolve some of the most obvious issues. Max Horn (5): configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN autogen.sh: replace this by a simple call to autoreconf configure: always print
2007 Oct 17
1
Fwd: Re: FLAC for "ARM little endian for glibc"
...-f Makefile make[5]: Leaving directory `/home/rba/UPnPTVStack/lgpl-code/flac-1.1.2/src/share/replaygain_synthesis' Making distclean in replaygain_analysis make[5]: Entering directory `/home/rba/UPnPTVStack/lgpl-code/flac-1.1.2/src/share/replaygain_analysis' rm -rf .libs _libs test -z "libreplaygain_analysis.la" || rm -f libreplaygain_analysis.la rm -f "./so_locations" rm -f *.o rm -f *.lo rm -f *.tab.c rm -f rm -f libtool rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags rm -rf ./.deps rm -f Makefile make[5]: Leaving directory `/home/rba/UPnPTVStack/lgpl-code/flac-1.1.2/src/share/replaygain...