Is there someone who ever built new version mtd-utils 2.0.0.1? The latest mtd-utils uses autotools to configure. But when I used following configure parameter, configure failed.
export PREFIX=/home/ubuntu/source/
./configure --host=arm-linux CC=/home/ubuntu/crosstools/bin/arm-xilinx-linux-gnueabi-gcc --prefix=$PREFIX ZLIB_CFLAGS=-I$PREFIX/include ZLIB_LIBS=-L$PREFIX/lib LZO_CFLAGS=-I$PREFIX/include/lzo LZO_LIBS=-L$PREFIX/lib
checking for lzo1x_1_15_compress in -llzo2... no
checking for lzo1x_1_15_compress in -llzo... no
configure: error: lzo missing
make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target 'install'. Stop.
/home/ubuntu/source/ folder has lzo library and include file, but it still shows lzo missing. Who knows what is wrong with my configure?