caps 0.9.26⚓︎
- Package: master/make/libs/caps/
- Provides:
libcaps.so— C++ thread-safe container library - Used by: —
- Externalization: supported
The caps library provides a collection of C++ thread-safe container classes and utilities. It is a dependency for the CAPS LADSPA plugin suite, providing reusable data structures for audio processing pipelines.
Build notes⚓︎
- Patch
010-fix-exp10f-uclibc.patch(dsp/v4f_IIR2.h): uClibc (all versions, including uClibc-ng 1.0.58) does not declareexp10fin<math.h>, so the__APPLE__-only fallback in caps leaves'exp10f' was not declared in this scopeerrors when compiling on uClibc toolchains. The patch adds<math.h>and providesexp10fviapowf(10.0f, f)when__UCLIBC__is defined. glibc is unaffected (nativeexp10fdeclaration is used).