fix cross-build (again)
authorRalf Jung <post@ralfj.de>
Fri, 25 Jan 2019 14:30:49 +0000 (15:30 +0100)
committerRalf Jung <post@ralfj.de>
Fri, 25 Jan 2019 14:33:28 +0000 (15:33 +0100)
debian/changelog
debian/patches/0007-cross.patch [new file with mode: 0644]
debian/patches/series

index 7816fc55fa7be4a782e02b62adbdefcca8e7ad20..bd83f40064a89ea65297687b60f2d01b3f1ff429 100644 (file)
@@ -2,6 +2,8 @@ osspd (1.3.2-11) UNRELEASED; urgency=medium
 
   * Unreleased.
   * Update Standards-Version to 4.3.0.  No changes needed.
+  * Fix cross-build with a patch by Helmut Grohne
+    <helmut@subdivi.de> (again).  (Closes: #917827).
 
  -- Ralf Jung <post@ralfj.de>  Fri, 25 Jan 2019 15:13:46 +0100
 
diff --git a/debian/patches/0007-cross.patch b/debian/patches/0007-cross.patch
new file mode 100644 (file)
index 0000000..4a4b646
--- /dev/null
@@ -0,0 +1,54 @@
+From: Helmut Grohne <helmut@subdivi.de>
+Date: Tue, 21 Nov 2017 21:20:20 +0100
+Subject: fix using target-architecture pkg-config
+
+---
+ Makefile | 13 +++++++------
+ 1 file changed, 7 insertions(+), 6 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 11f2836..bd963ca 100644
+--- a/Makefile
++++ b/Makefile
+@@ -2,6 +2,7 @@
+ # DESTDIR is completely respected
+ CC := gcc
+ AR := ar
++PKG_CONFIG ?= pkg-config
+ CFLAGS := -Wall -pthread $(CFLAGS) $(CPPFLAGS)
+ XLDFLAGS := $(LDFLAGS)
+ LDFLAGS := -L. -lossp -pthread $(LDFLAGS)
+@@ -11,27 +12,27 @@ UDEVDIR := /etc/udev/rules.d
+ SLAVESDIR := $(prefix)/sbin
+ ifeq "$(origin OSSPD_CFLAGS)" "undefined"
+-OSSPD_CFLAGS := $(shell pkg-config --cflags fuse)
++OSSPD_CFLAGS := $(shell $(PKG_CONFIG) --cflags fuse)
+ endif
+ ifeq "$(origin OSSPD_LDFLAGS)" "undefined"
+-OSSPD_LDFLAGS := $(shell pkg-config --libs fuse)
++OSSPD_LDFLAGS := $(shell $(PKG_CONFIG) --libs fuse)
+ endif
+ ifeq "$(origin OSSP_PADSP_CFLAGS)" "undefined"
+-OSSP_PADSP_CFLAGS := $(shell pkg-config --cflags libpulse)
++OSSP_PADSP_CFLAGS := $(shell $(PKG_CONFIG) --cflags libpulse)
+ endif
+ ifeq "$(origin OSSP_PADSP_LDFLAGS)" "undefined"
+-OSSP_PADSP_LDFLAGS := $(shell pkg-config --libs libpulse)
++OSSP_PADSP_LDFLAGS := $(shell $(PKG_CONFIG) --libs libpulse)
+ endif
+ ifeq "$(origin OSSP_ALSAP_CFLAGS)" "undefined"
+-OSSP_ALSAP_CFLAGS := $(shell pkg-config --libs alsa)
++OSSP_ALSAP_CFLAGS := $(shell $(PKG_CONFIG) --libs alsa)
+ endif
+ ifeq "$(origin OSSP_ALSAP_LDFLAGS)" "undefined"
+-OSSP_ALSAP_LDFLAGS := $(shell pkg-config --libs alsa)
++OSSP_ALSAP_LDFLAGS := $(shell $(PKG_CONFIG) --libs alsa)
+ endif
+ headers := ossp.h ossp-util.h ossp-slave.h
index cefd5f4b834f511159c95f43d42e746a87dd17e7..521cc6b8057ed6e1d3d8939df62a21575d6cc492 100644 (file)
@@ -4,3 +4,4 @@
 0004-Allow-to-set-slave-installation-path-during-compilat.patch
 0005-Add-pthread-compiler-and-linker-flag.patch
 0006-fix-build-on-MIPS.patch
+0007-cross.patch