I have the following problem: i try to install bmpx-0.40.14. The configure script finished successful. But during the build (make), i get the following problem :
....
l/lib/libofa.so /usr/lib/libexpat.so /usr/local/lib/libfftw3.a -lm -lhal-storage -lhal /usr/local/lib/libdbus-1.so -Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib
bmp2_bin-database.o: In function `Bmp:

B:

atabase::statement_prepare(sqlite3_stmt**, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, sqlite3*) const':
/root/Desktop/bmpx-0.40.11/src/database.cc:520: undefined reference to `sqlite3_prepare_v2'
collect2: ld returned 1 exit status
make[4]: *** [bmp2-bin] Error 1
make[4]: Leaving directory `/root/Desktop/bmpx-0.40.11/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/Desktop/bmpx-0.40.11/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/root/Desktop/bmpx-0.40.11/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/Desktop/bmpx-0.40.11'
make: *** [all] Error 2
You have mail in /var/spool/mail/root
[root@localhost bmpx-0.40.11]#
It seems that function Bmp:

B:

atabase::statement_prepare(sqlite3_stmt**, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, sqlite3*) const cannot find sqlite3_prepare_v2 in my sqlite package. However i have:
[root@localhost sqlite-3.6.4]# pkg-config --modversion sqlite3
3.6.4.
And the new sqlite3_prepare_v2 API was added in release version 3.3.9
http://www.sqlite.org/changes.html
If try to install older versions of bmpx-0.32 and 0.36 it build and install without errors.
Please write if you have any suggestions.