Your message dated Mon, 3 Feb 2020 17:19:49 +0100
with message-id <[email protected]>
and subject line Re: zita-njbridge FTCBFS: upstream Makefile hard codes wrong
compiler
has caused the Debian Bug report #916328,
regarding zita-njbridge FTCBFS: upstream Makefile hard codes wrong compiler
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
916328: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916328
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: zita-njbridge
Version: 0.4.1-1
Tags: patch upstream
User: [email protected]
Usertags: rebootstrap
zita-njbridge fails to cross build from source, because its upstream
Makefile hard codes the build architecture compiler. After making it
substitutable, it cross builds successfully. Please consider applying
the attached patch.
Helmut
--- zita-njbridge-0.4.1.orig/source/Makefile
+++ zita-njbridge-0.4.1/source/Makefile
@@ -39,7 +39,7 @@
-include $(ZITA-J2N_O:%.o=%.d)
zita-j2n: LDLIBS += -ljack -lpthread -lm -lrt
zita-j2n: $(ZITA-J2N_O)
- g++ $(LDFLAGS) -o $@ $(ZITA-J2N_O) $(LDLIBS)
+ $(CXX) $(LDFLAGS) -o $@ $(ZITA-J2N_O) $(LDLIBS)
ZITA-N2J_O = zita-n2j.o netdata.o jackrx.o netrx.o pxthread.o lfqueue.o zsockets.o syncrx.o
@@ -47,7 +47,7 @@
-include $(ZITA-N2J_O:%.o=%.d)
zita-n2j: LDLIBS += -lzita-resampler -ljack -lpthread -lm -lrt
zita-n2j: $(ZITA-N2J_O)
- g++ $(LDFLAGS) -o $@ $(ZITA-N2J_O) $(LDLIBS)
+ $(CXX) $(LDFLAGS) -o $@ $(ZITA-N2J_O) $(LDLIBS)
zita-njbridge.1.gz: zita-njbridge.1
--- End Message ---
--- Begin Message ---
version: 0.4.4-1
fixed by upstream available in sid version 0.4.1-1
signature.asc
Description: OpenPGP digital signature
--- End Message ---