sqlite3 missing library

General discussions
Locked
bluefigtoast
Posts: 2
Joined: Wed Jul 06, 2011 11:36 pm

sqlite3 missing library

Post by bluefigtoast »

I am on a ubuntu 10.10 system (64 bit) -- trying to compile guayadeque from source. Have done so sucessfully in the past.

I got past the mssing WxWidgets

and when I build I get:

nwayno@Homer:~/guayadeque$ ./build
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Using install prefix /usr ...
-- Found wxWidgets: TRUE
-- checking for module 'gstreamer-0.10'
-- found gstreamer-0.10, version 0.10.30
-- checking for module 'sqlite3'
-- package 'sqlite3' not found
CMake Error at CMakeLists.txt:46 (MESSAGE):
sqlite3 not found!


-- Configuring incomplete, errors occurred!

umm

if I do a dpkg -l | grep sqlite3

this is installed:

nwayno@Homer:~/guayadeque$ dpkg -l | grep sqlite3
ii libaprutil1-dbd-sqlite3 1.3.9+dfsg-3ubuntu0.10.10.1 The Apache Portable Runtime Utility Library - SQLite3 Driver
ii libdbd-sqlite3 0.8.3-1-0ubuntu1 SQLite3 database driver for libdbi
ii libsqlite3-0 3.7.2-1ubuntu0.1 SQLite 3 shared library
ii sqlite3 3.7.2-1ubuntu0.1 A command line interface for SQLite 3


so libsqlite3-0 is there - but I guess that's not what it is looking for.

Not a Linux n00b. But I could use some help.

Thanks,

Wayno
http://www.pkill-9.com
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

sqlite3 missing library

Post by anonbeat »

Please read the documentation about how to compile from source. You are missing the sqlite-devel package libsqlite3-dev

Thanks for your help
tamalet
Posts: 490
Joined: Fri Sep 24, 2010 4:34 am

sqlite3 missing library

Post by tamalet »

Locked