Source: fil-plugins Version: 0.3.0-6 Tags: patch upstream User: [email protected] Usertags: rebootstrap
fil-plugins fails to cross build from source, because the uptsream build system hard codes the build architecture compiler g++. After making it substitutable, fil-plugins cross builds successfully. Please consider applying the attached patch. Helmut
--- fil-plugins-0.3.0.orig/Makefile +++ fil-plugins-0.3.0/Makefile @@ -23,7 +23,7 @@ filters.so: filters.o filters_if.o exp2ap.o - g++ $(LDFLAGS) -shared filters.o filters_if.o exp2ap.o -o filters.so -Wl,--as-needed + $(CXX) $(LDFLAGS) -shared filters.o filters_if.o exp2ap.o -o filters.so -Wl,--as-needed filters.o: ladspaplugin.h filters.h filters_if.o: ladspaplugin.h filters.h
_______________________________________________ pkg-multimedia-maintainers mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
