~ubuntu-branches/ubuntu/vivid/vlc/vivid

« back to all changes in this revision

Viewing changes to extras/contrib/src/Patches/portaudio-cross.patch

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2012-02-13 01:34:02 UTC
  • mfrom: (1.1.44)
  • Revision ID: package-import@ubuntu.com-20120213013402-7utx6r7s9dg3r0pf
Tags: 2.0.0~unix-0ubuntu1
* New upstream release (Closes: #499381, #573064, #624027, LP: #455825,
  #573775, #695882, #705151, #708448, #738381, #743581, #747757, #817924,
  #931083).
* Remove dropped mozilla-plugin-vlc, vlc-plugin-ggi, and vlc-plugin-svgalib.
  The Mozilla browser plug-in is now provided by a separate source tarball.
* Add new plugins to and remove dropped plugins from vlc-nox.
* Add new and remove dropped build dependencies:
  + libbluray-dev (for Blu-ray support)
  + libresid-builder-dev
  + libsamplerate0-dev
  + libsidplay2-dev
  + lbspeexdsp-dev
  + libxcb-composite0-dev
  - libgtk2.0-dev
  - xulrunner-dev
* vlc-plugin-fluidsynth depends on fluid-soundfont-gm or
  musescore-soundfont-gm for having a sound font for playing MIDI files.
* Drop all patches (they were either backported or accepted by upstream).
* Update symbols for libvlc5.
* Install plugins.dat instead of running vlc-cache-gen in postinst.
* Update minimum version of build dependencies.
* Change Build-Dependency from libupnp3-dev to unversioned libupnp-dev.
  (Closes: #656831)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -ruN portaudio/Makefile.in portaudio.n/Makefile.in
2
 
--- portaudio/Makefile.in       2007-10-24 17:29:04.000000000 +0200
3
 
+++ portaudio.n/Makefile.in     2007-12-18 05:43:27.000000000 +0100
4
 
@@ -120,7 +120,7 @@
5
 
 SUBDIRS =
6
 
 @ENABLE_CXX_TRUE@SUBDIRS += bindings/cpp
7
 
 
8
 
-all: lib/$(PALIB) all-recursive tests
9
 
+all: lib/$(PALIB) all-recursive
10
 
 
11
 
 tests: bin-stamp $(TESTS)
12
 
 
13
 
diff -ruN portaudio/configure.in portaudio.n/configure.in
14
 
--- portaudio/configure.in      2007-11-13 22:22:56.000000000 +0100
15
 
+++ portaudio.n/configure.in    2007-12-18 05:43:14.000000000 +0100
16
 
@@ -95,9 +95,10 @@
17
 
 
18
 
 dnl sizeof checks: we will need a 16-bit and a 32-bit type
19
 
 
20
 
-AC_CHECK_SIZEOF(short)
21
 
-AC_CHECK_SIZEOF(int)
22
 
-AC_CHECK_SIZEOF(long)
23
 
+dnl don't work if you crosscompile 
24
 
+dnl AC_CHECK_SIZEOF(short)
25
 
+dnl AC_CHECK_SIZEOF(int)
26
 
+dnl AC_CHECK_SIZEOF(long)
27
 
 
28
 
 save_LIBS="${LIBS}"
29
 
 AC_CHECK_LIB(rt, clock_gettime, [rt_libs=" -lrt"])