mirror of https://github.com/xiph/flac
remove SHARE_LIBS
This commit is contained in:
parent
4bfb6e5481
commit
1dca1c2cee
|
@ -230,8 +230,6 @@ fi
|
|||
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
||||
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
|
||||
|
||||
SHARE_LIBS='$(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'
|
||||
|
||||
dnl check for i18n(internationalization); these are from libiconv/gettext
|
||||
AM_ICONV
|
||||
AM_LANGINFO_CODESET
|
||||
|
@ -329,8 +327,6 @@ AC_SUBST(FLaC__USIZE32)
|
|||
AC_SUBST(FLaC__SIZE64)
|
||||
AC_SUBST(FLaC__USIZE64)
|
||||
|
||||
AC_SUBST(SHARE_LIBS)
|
||||
|
||||
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
|
||||
if test x$debug = xtrue; then
|
||||
OUR_CFLAGS_TAIL="-g -O0 -DDEBUG"
|
||||
|
@ -388,6 +384,8 @@ AC_OUTPUT( \
|
|||
src/share/getopt/Makefile \
|
||||
src/share/grabbag/Makefile \
|
||||
src/share/utf8/Makefile \
|
||||
src/test_grabbag/cuesheet/Makefile \
|
||||
src/test_grabbag/Makefile \
|
||||
src/test_libFLAC/Makefile \
|
||||
src/test_libFLAC++/Makefile \
|
||||
src/test_libOggFLAC/Makefile \
|
||||
|
@ -406,6 +404,7 @@ AC_OUTPUT( \
|
|||
doc/html/images/Makefile \
|
||||
doc/html/ru/Makefile \
|
||||
man/Makefile \
|
||||
test/cuesheets/Makefile \
|
||||
test/Makefile \
|
||||
build/Makefile \
|
||||
obj/debug/bin/Makefile \
|
||||
|
|
|
@ -38,4 +38,13 @@ flac_SOURCES = \
|
|||
encode.h \
|
||||
vorbiscomment.h
|
||||
|
||||
flac_LDADD = $(NEED_OGGFLAC_LIB) @SHARE_LIBS@ $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @LIBICONV@ -lm
|
||||
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/libFLAC/libFLAC.la \
|
||||
@OGG_LIBS@ \
|
||||
@LIBICONV@ \
|
||||
-lm
|
||||
|
|
|
@ -32,7 +32,18 @@ metaflac_SOURCES = \
|
|||
operations_shorthand_vorbiscomment.c \
|
||||
options.c \
|
||||
usage.c \
|
||||
utils.c
|
||||
utils.c \
|
||||
operations.h \
|
||||
options.h \
|
||||
usage.h \
|
||||
utils.h
|
||||
metaflac_LDFLAGS =
|
||||
|
||||
metaflac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la @SHARE_LIBS@ @LIBICONV@ -lm
|
||||
metaflac_LDADD = \
|
||||
$(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/libFLAC/libFLAC.la \
|
||||
@LIBICONV@ \
|
||||
-lm
|
||||
|
|
|
@ -53,8 +53,10 @@ endif
|
|||
# http://lists.freshrpms.net/pipermail/rpm-list/2002-April/000746.html
|
||||
# the workaround is the extra '-L$(top_builddir)/src/libFLAC/.libs'
|
||||
libxmms_flac_la_LIBADD = \
|
||||
@SHARE_LIBS@ \
|
||||
$(top_builddir)/src/plugin_common/libplugin_common.a \
|
||||
$(top_builddir)/src/share/grabbag/libgrabbag.a \
|
||||
$(top_builddir)/src/share/gain_analysis/libgain_analysis.a \
|
||||
$(top_builddir)/src/share/utf8/libutf8.a \
|
||||
$(top_builddir)/src/libFLAC/libFLAC.la \
|
||||
-L$(top_builddir)/src/libFLAC/.libs \
|
||||
@XMMS_LIBS@ \
|
||||
|
|
Loading…
Reference in New Issue