Reply To: Noob needs help on My Book World Edition 500GB

#15899
rpedde
Participant

@AndyK wrote:

Ok, managed to get sqlite 3.5.4 tea to install as this had the TCL files with it. However I now get a sqlite3.h not found error on the ./configure of mt-daapd. I am almost there and it’s bloody got me again. Anyone know what I need to be looking at doing to get this? I have done a find . -name for sqlite3.h but it doesn’t find it. Can someone help?? Pretty please?

If you did a “make; make install” on sqlite3, it probably put the headers in /usr/local/include. See if sqlite3.h is there. If not, then check /usr/include

Once you’ve found it, use

–enable-sqlite3 –with-sqlite3-includes=/usr/local/include –with-sqlite3-libs=/usr/local/lib

(assuming that it did indeed put the headers in /usr/local/include, with libs in /usr/local/lib. If you find sqlite3.h in /usr/include, then you want to use that for your includes path, and /lib for your libs path).

— Ron