reader.c:669:19: warning: comparison of integers of different signs: 'int' and 'size_t' (aka 'unsigned long') [-Wsign-compare]
else if (nBytes < block->rawdata_size - remainder)
~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
reader.c:683:9: error: invalid output constraint '=a' in asm
: "=a" (data[0]),
^
15 warnings and 1 error generated.
make[2]: *** [pear-reader.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
Many of the warnings are labeled as [-Wsign-compare] but others include [-Wmissing-prototypes], [-Wreturn-type], and [-Wbad-function-cast].
Is this an error that is occurring due to not having run the autogen.sh command prior? If so, how can I get this command to run? And if not, how can I fix this issue to properly install PEAR on my system?
Thank you for any help.
Best,
Vivian J