Reply To: freebsd and mt-daapd-svn-1696

#15083
rpedde
Participant

@hryamzik wrote:

I’ve found no tutorials for freebsd, so tried just to
./configure; make; make install
as it’s notised in the readme file. So ./configure does something, then I try the make command:

make: no target to make.
make: don’t know how to make install. Stop

uname -a
FreeBSD 7.0-BETA4 FreeBSD 7.0-BETA4 #0: Sun Dec 2 19:19:04 UTC 2007 [email protected]:/usr/obj/usr/src/sys/GENERIC i386

I’ve missed smth?

What’s the last thing configure says? Likely something like:

“you must configure with either –enable-sqlite or –enable-sqlite3”.

You’ll need to install either sqlite2 or sqlite3 (your choice) including development libs, and then re-do the configure with –enable-sqlite or –enable-sqlite3 (depengind on which you chose).

I think fbsd installs ports to /usr/local, right? If so, then you’ll also need to use:

–with-sqlite-libs=/usr/local/lib and –with-sqlite-includes=/usr/local/include

That should probably get you going, although I think someone noted some issues with sigpipe on freebsd. Try it and see.

— Ron