From owner-freebsd-bluetooth@FreeBSD.ORG Wed Jul 6 07:34:53 2005 Return-Path: X-Original-To: freebsd-bluetooth@freebsd.org Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6B2D16A41C for ; Wed, 6 Jul 2005 07:34:52 +0000 (GMT) (envelope-from kirill@mpool.solaris.ru) Received: from mpool.solaris.ru (mailer.solaris.ru [194.85.25.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A2B043D46 for ; Wed, 6 Jul 2005 07:34:52 +0000 (GMT) (envelope-from kirill@mpool.solaris.ru) Received: from mpool.solaris.ru (localhost.solaris.ru [127.0.0.1]) by mpool.solaris.ru (8.12.10/8.12.6) with ESMTP id j667YoaF090466; Wed, 6 Jul 2005 11:34:50 +0400 (MSD) (envelope-from kirill@mpool.solaris.ru) Received: (from kirill@localhost) by mpool.solaris.ru (8.12.10/8.12.6/Submit) id j667YoM8090460; Wed, 6 Jul 2005 11:34:50 +0400 (MSD) Date: Wed, 6 Jul 2005 11:34:49 +0400 From: Kirill Bezzubets To: Vladimir Grebenschikov Message-ID: <20050706073449.GB51960@solaris.ru> References: <20050705224652.GA415@alzatex.com> <42CB1633.7050902@savvis.net> <1120628357.13100.11.camel@localhost> <20050706065500.GA51960@solaris.ru> <1120634041.1165.2.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <1120634041.1165.2.camel@localhost> User-Agent: Mutt/1.5.4i Cc: freebsd-bluetooth@freebsd.org Subject: Re: Nokia Bluetooth Sync X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2005 07:34:53 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=koi8-r Content-Disposition: inline On Wed, Jul 06, 2005 at 11:14:01AM +0400, Vladimir Grebenschikov wrote: > > > > > > Any hints how to build gammu with support of FreeBSD Bluetooth stack ? > > > ports make just disables all this options: > > > > > Hmmm... Looks strange to me. > > Could you send me the whole "make configure" output? > > log-file attached > It is 6-CURRENT, with fresh ports tree. > Ooops, looks like there's an uncommited patch. Attached. Put patch-configure.in into /usr/ports/comms/gammu/files and try again - checked just now on -CURRENT from yesterday. PS: Update of the port coming soon. -- BR, Kirill Bezzubets CASE-RIPE CASE-RIPN CTO / Head Of N.O.C. mailto:kirill@solaris.ru Solaris ISP & Telecommunications Co. Ltd http://www.solaris.ru --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=koi8-r Content-Disposition: attachment; filename="patch-configure.in" --- cfg/autoconf/configure.in.orig Thu Nov 25 13:02:35 2004 +++ cfg/autoconf/configure.in Thu Nov 25 13:01:56 2004 @@ -184,8 +184,8 @@ fi fi if test "$gsm_blue_stack" = unknown ; then - AC_CHECK_HEADERS(bluetooth/bluetooth.h, - [gsm_blue_stack=Bluez + AC_CHECK_HEADERS(bluetooth.h, + [gsm_blue_stack=FreeBSD LDLIBS="$LDLIBS -lbluetooth" AC_CHECK_LIB(sdp, sdp_list_append, LDLIBS="$LDLIBS -lsdp") AC_DEFINE(GSM_ENABLE_BLUEZ) @@ -261,7 +261,7 @@ [ --disable-bluefbus Disable Nokia FBUS2 over Bluetooth stack (Nokia 6210)], [gsm_enable_bluefbus2="no"], - [if test $gsm_blue_stack = Bluez; then + [if test $gsm_blue_stack = FreeBSD; then AC_DEFINE(GSM_ENABLE_BLUEFBUS2) gsm_enable_bluefbus2="yes" else @@ -271,7 +271,7 @@ [ --disable-bluephonet Disable Nokia PHONET FBUS over Bluetooth stack (all new Nokias)], [gsm_enable_bluephonet="no"], - [if test $gsm_blue_stack = Bluez; then + [if test $gsm_blue_stack = FreeBSD; then AC_DEFINE(GSM_ENABLE_BLUEPHONET) gsm_enable_bluephonet="yes" else @@ -280,7 +280,7 @@ AC_ARG_ENABLE(blueat, [ --disable-blueat Disable AT commands over Bluetooth stack], [gsm_enable_blueat="no"], - [if test $gsm_blue_stack = Bluez; then + [if test $gsm_blue_stack = FreeBSD; then AC_DEFINE(GSM_ENABLE_BLUEAT) gsm_enable_blueat="yes" else @@ -289,7 +289,7 @@ AC_ARG_ENABLE(blueobex, [ --disable-blueobex Disable OBEX over Bluetooth stack], [gsm_enable_blueobex="no"], - [if test $gsm_blue_stack = Bluez; then + [if test $gsm_blue_stack = FreeBSD; then AC_DEFINE(GSM_ENABLE_BLUEOBEX) gsm_enable_blueobex="yes" else @@ -408,7 +408,7 @@ Binaries - $bindir RPM making directory - $RPM_DIR Temporary directory - $TEMP_DIR - Bluez library path - $gsm_bt_dir + FreeBSD Bluetooth library path - $gsm_bt_dir General options --------------- --pf9I7BMVVzbSWLtt--