~ubuntu-branches/ubuntu/oneiric/libmpc/oneiric

« back to all changes in this revision

Viewing changes to mpcenc/Makefile.am

  • 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:
22
22
        $(common_sources) \
23
23
        mpcenc.h predict.h config.h
24
24
 
25
 
mpcenc_LDADD = -lm \
 
25
mpcenc_LDADD = \
26
26
        $(EXTRALIBS) \
27
27
        $(top_builddir)/libmpcpsy/libmpcpsy.a \
28
 
        $(top_builddir)/libmpcenc/libmpcenc.a
 
28
        $(top_builddir)/libmpcenc/libmpcenc.a \
 
29
        -lm
29
30