Hi Hendrik, > > I have included the support for NetBSD now. For FreeBSD it should be > > straight forward. So if anybody cares, please send me a patch. > [...] > > I don't use OpenOBEX on Windows, but if someone is willing to test > > stuff, I am happy to apply patches. > > Hmm, I am not really running any of them but I can cross-compile to win32 by > using mingw (and have all needed header files) > Maybe I'll give it a try based on my own code but I cannot really test it > (I don't have windows installed, sorry).
me neither. So don't look at me ;) > Are there plans to use Subversion from SF.net instead of CVS? If not, can you > disable the Subversion entry at the SF project page (that's possible from the > admin page)? I had plans to convert the CVS into Subversion, but then the SF.net guys disabled the conversion support and I am stuck with CVS. > Testing for all three bluetooth stacks on every platform is not necessary, > autoconf has stuff for that: > ------------------------------snip------------------------------------ > --- configure.in 20 Oct 2006 09:56:34 -0000 1.12 > +++ configure.in 20 Oct 2006 10:44:19 -0000 > @@ -3,6 +3,7 @@ > > AM_INIT_AUTOMAKE(openobex, 1.3) > AM_CONFIG_HEADER(config.h) > +AC_CANONICAL_HOST > > AM_MAINTAINER_MODE > > @@ -12,6 +13,7 @@ > > AC_PROG_CC > AC_PROG_CC_PIE > +AC_CHECK_TOOL(LD,ld,:) Why do you check for ld? > -AC_PATH_GLIB > AC_PATH_IRDA > -AC_PATH_NETBSDBT > -AC_PATH_FREEBSDBT > -AC_PATH_BLUEZ > -AC_PATH_USB > > +case $host in > +*-*-linux*) > + AC_PATH_BLUEZ > + ;; > + > +*-*-netbsd*) > + AC_PATH_NETBSDBT > + ;; > + > +*-*-freebsd*) > + AC_PATH_FREEBSDBT > + ;; > + > +esac > + > +AC_PATH_USB > AC_ARG_OPENOBEX Actually I prefer to keep all of them in case people cross-compile it unless you have an idea. Or is $host always the target architecture. > I just assume that AC_PATH_GLIB is an old left-over. No. It is back in for the OpenOBEX GLib bindings, but it is optional. Regards Marcel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Openobex-users mailing list [email protected] http://lists.sourceforge.net/lists/listinfo/openobex-users
