simon listens

Sounds good.

I have problems compiling Julius itself from the source-code. How far is your work yet and can i participate / share your results?
 
Julius itself or its library?

libjulius require libdl, which is a linux lib (/compat/linux/lib/libdl.so.2), so when compiled in FreeBSD, we've got this error:

Code:
[ 22%] Building C object julius/libjulius/CMakeFiles/julius.dir/src/confnet.o
Linking C shared library libjulius.so
/usr/bin/ld: cannot find -ldl

It's a collection of functions to dynamically load shared objects (e.g. to handle plugins).

Oh and indeed, it's plugins related:

Code:
[dereckson@lied] /usr/ports/accessibility/simon/work/simon-0.3.0/julius/libjulius/src# grep dlclose *
plugin.c:      dlclose(handle);
plugin.c:    dlclose(handle);
plugin.c:    dlclose(handle);
 
Back
Top