1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
Description: don't build/install the non-existing files
For Debian, some files get removed during import, so we must not use them
in the build process...
Author: IOhannes m zmölnig
Forwarded: not-needed
Last-Update: 2023-02-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- soundscaperenderer.orig/data/Makefile.am
+++ soundscaperenderer/data/Makefile.am
@@ -44,13 +44,11 @@
reproduction_setups/circle.asd \
reproduction_setups/loudspeaker_setup_with_nearly_all_features.asd \
reproduction_setups/asdf2html.xsl \
- impulse_responses/hrirs/hrirs_fabian.wav \
impulse_responses/hrirs/hrirs_fabian_min_phase_eq.wav \
impulse_responses/hrirs/eq_filter_fabian_min_phase.wav \
impulse_responses/hrirs/hrirs_kemar.wav \
impulse_responses/hrirs/hrirs_kemar_min_phase_eq.wav \
impulse_responses/hrirs/eq_filter_kemar_min_phase.wav \
- impulse_responses/hrirs/hrirs_fabian_documentation.pdf \
impulse_responses/hrirs/README.md \
impulse_responses/wfs_prefilters/wfs_prefilter_120_1500_44100.wav \
impulse_responses/wfs_prefilters/wfs_prefilter_100_1300_44100.wav \
--- soundscaperenderer.orig/src/Makefile.am
+++ soundscaperenderer/src/Makefile.am
@@ -44,8 +44,7 @@
../apf/unit_tests/catch/catch.hpp \
../gml/README.md \
../gml/LICENSE.txt \
- ../rapidjson/readme.md \
- ../rapidjson/license.txt
+ $(empty)
ssr_binaural_SOURCES = ssr_binaural.cpp binauralrenderer.h \
$(SSRSOURCES)
@@ -197,6 +196,8 @@
SSRSOURCES += \
websocket/server.h \
websocket/connection.h \
+ $(empty)
+rapidjsonsrc =
../rapidjson/include/rapidjson/document.h \
../rapidjson/include/rapidjson/ostreamwrapper.h \
../rapidjson/include/rapidjson/stringbuffer.h \
|