-
Notifications
You must be signed in to change notification settings - Fork 62
Commit 1637dff
committed
PortAudio: Disable sndio in PortAudio to avoid missing -lsndio errors
Fixes a compilation error introduced in #76, where the `make all` target fails
during the build of the PortAudio library on GNU/Linux systems.
The failure was caused by PortAudio's configure script automatically enabling
the sndio backend when `libsndio-dev` headers are present, which leads to
linker errors due to missing `-lsndio`.
To avoid this, we now explicitly pass `--without-sndio` to PortAudio’s
configure script. This ensures that sndio support is disabled regardless of
system headers, eliminating the need for `-lsndio` and fixing the build.1 parent 82f39b9 commit 1637dff
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
100 | 100 |
| |
101 | 101 |
| |
102 | 102 |
| |
103 | - | ||
103 | + | ||
104 | 104 |
| |
105 | 105 |
| |
106 | 106 |
| |
|
0 commit comments