You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gcc -o make_v34_convolutional_coders ../src/make_v34_convolutional_coders.c -DHAVE_CONFIG_H -I../src -lm
./make_v34_convolutional_coders >v34_convolutional_coders.h
gcc -o make_v34_probe_signals ../src/make_v34_probe_signals.c ../src/g711.c ../src/alloc.c -DHAVE_CONFIG_H -I../src -lm
In file included from ../src/make_v34_probe_signals.c:28:
../src/spandsp.h:48:10: fatal error: tiffio.h: No such file or directory
48 | #include <tiffio.h>
| ^~~~~~~~~~
compilation terminated.
make[4]: *** [Makefile:1602: make_v34_probe_signals] Error 1
The issue is with make_v34_probe_signals.c that includes "spandsp.h" which, in turn, demands tiffio.h.
A trial solution is to replace spandsp.h with the following includes:
Compilation fails with this output:
The issue is with make_v34_probe_signals.c that includes "spandsp.h" which, in turn, demands tiffio.h.
A trial solution is to replace spandsp.h with the following includes:
Also there's an issue in meteor-engine.c:979 with printf format missing a string parameter:
The text was updated successfully, but these errors were encountered: