Hi this is about an issue with the build process:
Trying to install from a fresh clone on Ubuntu 14.04 (x64) with either setup.py or make fails with error:
> /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'tests_require'
> warnings.warn(msg)
> running install
> running build
> running build_ext
> building 'lzo' extension
> x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/lzo -I/usr/include/python2.7 -c lzomodule.c -o build/temp.linux-x86_64-2.7/lzomodule.o
> lzomodule.c:35:19: fatal error: lzo1x.h: No such file or directory
> #include <lzo1x.h>
> ^
> compilation terminated.
> error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
Hi this is about an issue with the build process: Trying to install from a fresh clone on Ubuntu 14.04 (x64) with either
setup.py
ormake
fails with error:I tried moving all include files from source code here: http://www.oberhumer.com/opensource/lzo/ to /usr/include/lzo.
It now finds the required include files but fails on compilation:
Is there a missing assumed dependency?