Hello,

> The second issue is a show stopper for me.  Way beyond my knowledge or 
> skill level.  I have libusb and the dev libraries installed in SLES.  
> Configure finds what it is looking for and enables USB support, but the 
> make process can not find libusb.h.  It's in /usr/include/libusb.h.

Ok.

> In file included from ow_dnssd.c:17:
> ../../../owlib/src/include/ow.h:302:20:  error: libusb.h No such file or 
> directory

Can you look for the following changes:

you have to modify the file
module/owshell/src/c/Makefile.am
In line 41 (And followed) you have to add at the end an \
and add the lines:
${LIBUSB_CFLAGS} \
${PTHREAD_CFLAGS}

Also exchange the line:
LDADD = ${LD_EXTRALIBS} ${OSLIBS}
with 
LDADD = ${LIBUSB_LIBS} ${PTHREAD_LIBS} ${LD_EXTRALIBS} ${OSLIBS}

Then modify the file
module/owshell/src/c/Makefile.in
There the same as first be line 498 and following.

Maybe this will fix the build problem.

Best regards,
Roland 

------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
_______________________________________________
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers

Reply via email to