search for: bd54356

Displaying 2 results from an estimated 2 matches for "bd54356".

Did you mean: b5dd356
2013 Apr 18
1
[PATCH] Ensure AM_LDFLAGS is used consistently
...onvention -libFLAC_la_LDFLAGS = -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ +libFLAC_la_LDFLAGS = $(AM_LDFLAGS) -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ libFLAC_sources = \ bitmath.c \ diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index bd54356..35460b1 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -39,7 +39,7 @@ metaflac_SOURCES = \ options.h \ usage.h \ utils.h -metaflac_LDFLAGS = +metaflac_LDFLAGS = $(AM_LDFLAGS) metaflac_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ -- 1.8.1.4
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...r)/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/src/metaflac/Makefile.am @@ -47,8 +47,6 @@ metaflac_LDADD = \ $(top_builddir)/src/share/getopt/libgetopt.la \ $(top_builddir)/src/share/utf8/libutf8.la \ $(top_builddir)/src/libFLAC/libFLAC.la \ - @OGG_LIBS@ \ - @LIBICONV@ \ - -lm + @LIBICONV@ CL...