Hi Marcel,

Am Freitag 20 Oktober 2006 12:14 schrieb Marcel Holtmann:
> 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).

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)?

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,:)
 AC_PROG_INSTALL

 m4_define([_LT_AC_TAGCONFIG], [])
@@ -19,13 +21,24 @@

 AC_PROG_LIBTOOL

-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

 AC_OUTPUT(Makefile include/Makefile lib/Makefile glib/Makefile apps/Makefile 
ircp/Makefile doc/Makefile openobex.pc openobex-glib.pc)
------------------------------snip------------------------------------

I just assume that AC_PATH_GLIB is an old left-over.

HS

-------------------------------------------------------------------------
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

Reply via email to