Displaying 2 results from an estimated 2 matches for "772422a".
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...S = -lgrabbag -lreplaygain_analysis -ltest_libs_common -lFLAC
-L$(OGG_LIB_DIR) -logg -lm
+ LIBS = -lgrabbag -lreplaygain_analysis -ltest_libs_common -lFLAC
$(OGG_LIBS) -lm
endif
SRCS_C = \
diff --git a/src/test_libs_common/Makefile.lite
b/src/test_libs_common/Makefile.lite
index a1921ab..772422a 100644
--- a/src/test_libs_common/Makefile.lite
+++ b/src/test_libs_common/Makefile.lite
@@ -24,6 +24,12 @@ libdir = $(topdir)/obj/$(BUILD)/lib
LIB_NAME = libtest_libs_common
+ifeq ($(OS),Darwin)
+ EXPLICIT_LIBS = $(libdir)/libFLAC.a $(OGG_EXPLICIT_LIBS) -lm
+else
+ LIBS = -lFLAC $(OGG_LI...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...S = -lgrabbag -lreplaygain_analysis -ltest_libs_common -lFLAC
-L$(OGG_LIB_DIR) -logg -lm
+ LIBS = -lgrabbag -lreplaygain_analysis -ltest_libs_common -lFLAC
$(OGG_LIBS) -lm
endif
SRCS_C = \
diff --git a/src/test_libs_common/Makefile.lite
b/src/test_libs_common/Makefile.lite
index a1921ab..772422a 100644
--- a/src/test_libs_common/Makefile.lite
+++ b/src/test_libs_common/Makefile.lite
@@ -24,6 +24,12 @@ libdir = $(topdir)/obj/$(BUILD)/lib
LIB_NAME = libtest_libs_common
+ifeq ($(OS),Darwin)
+ EXPLICIT_LIBS = $(libdir)/libFLAC.a $(OGG_EXPLICIT_LIBS) -lm
+else
+ LIBS = -lFLAC $(OGG_LI...