Closed skidoo23 closed 1 year ago
I think this is probably a side-effect of commit 23f249e. To confirm, please could you try (in the top-level bluez-alsa directory)
find . -name bluealsa-iface.c
The file should be found at ./build/src/bluealsa-iface.c
If you have it at ./src/bluealsa-iface.c
then this is because this work area was previously used to build an earlier bluez-alsa version. My work-around was to delete the iface.c files from ./src, then make distclean and try again:
cd bluez-alsa
rm src/*-iface.c
cd build
make distclean
cd ..
autoreconf -fi
cd build
../configure --enable-aac --enable-ofono --enable-rfcomm
make
If the find
command did not find any instance of bluealsa-iface.c, or if it was found (only) in ./src/build/
then there is some other problem which will require more investigation.
rm src/*-iface.c
did the trick :) Thank you.
Case closed.
Problem
Build error
Reproduction steps
Setup
Additional context
N/A