~ubuntu-branches/ubuntu/natty/libmpc/natty

« back to all changes in this revision

Viewing changes to mpcdec/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Potyra
  • Date: 2010-12-12 02:07:30 UTC
  • Revision ID: james.westby@ubuntu.com-20101212020730-ixvruwxurpgglprt
Tags: 2:0.1~r459-1ubuntu1
* debian/patches/04_link-order.patch: Link against -lm only after the
  static libraries that use math functions. Fixes the build failure
  from --as-needed, which enforces strict order.
* debian/patches/99_autoreconf.patch: Regenerate by autoconf -i and
  removing the cache directory afterwards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
@HAVE_VISIBILITY_TRUE@AM_CFLAGS = -fvisibility=hidden
198
198
METASOURCES = AUTO
199
199
mpcdec_SOURCES = mpcdec.c
200
 
mpcdec_LDADD = -lm \
 
200
mpcdec_LDADD = \
201
201
        $(top_builddir)/libmpcdec/libmpcdec.la \
202
 
        $(top_builddir)/libwavformat/libwavformat.a
 
202
        $(top_builddir)/libwavformat/libwavformat.a \
 
203
        -lm
203
204
 
204
205
all: all-am
205
206