~ubuntu-branches/ubuntu/precise/puredata/precise

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Paul Brossier, IOhannes m zmölnig, Paul Brossier
  • Date: 2011-05-11 01:03:01 UTC
  • Revision ID: james.westby@ubuntu.com-20110511010301-fem05b1q975xx0gz
Tags: 0.43.0-3
[ IOhannes m zmölnig ]
* debian/patches/kfreebsd_fixes.patch: kFreeBSD build fixes
* debian/rules: simplified arch-dependent build-depends
* debian/rules: use dh_auto_configure, distinguish between linux/non-linux
* debian/patches/audio_oss_cleanup.patch: cleanup ifdef logic in
  s_audio_oss.c
* debian/patches/hurd_fixes.patch: fix hurd compilation
* debian/patches/series: updated
* debian/rules: link with --as-needed
* debian/patches/clean_helpbrowser.patch: cleanup helpbrowser to show files
  after directories
* forwarded patches to upstream
* debian/changelog: shortened changelog-lines to keep lintian happy
* debian/control: Conflict with older versions of puredata (Closes: #625663)

[ Paul Brossier ]
* debian/changelog: write changelog, build and upload package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
endif
106
106
 
107
107
if HURD
108
 
pd_SOURCES += s_midi_dummy.c
 
108
libpdbindir = $(pkglibdir)/bin
 
109
libpdbin_DATA = 
 
110
libpdbin_PROGRAMS = pd-watchdog pd
 
111
# this flag has to have a single leading "-" for libtool, even though ld uses
 
112
# --export-dynamic, and libtool sends -Wl,--export-dynamic to ld...
 
113
pd_LDFLAGS += -export-dynamic
 
114
# on Ubuntu/Karmic 9.10, it doesn't seem to find libm, so force it
 
115
pd_LDFLAGS += $(LIBM)
 
116
# force linking to pthread, which should really be done with some autotools way
 
117
pd_LDFLAGS += -lpthread
 
118
# force linking to dl, which should really be done with some autotools way
 
119
pd_LDFLAGS += -ldl
109
120
endif
110
121
 
111
122
if LINUX