|
From: Alain P. <apa...@us...> - 2002-08-02 08:56:54
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- bt_vendor.c 1.38 1.39=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added a simple way to include config.h if you use configure when compiling OpenBT. The diff of the modified file(s): --- bt_vendor.c 31 Jul 2002 09:50:42 -0000 1.38 +++ bt_vendor.c 2 Aug 2002 08:56:52 -0000 1.39 @@ -56,6 +56,13 @@ #include "bt_vendor.h" #include "bt_if.h" =20 +/* If you use configure scripts, just define ENABLE_CONFIGURE_INCLUDES */ +/* to include the generated .h file */ + +#ifdef ENABLE_CONFIGURE_INCLUDES +#include <config.h> +#endif + #define D(x) //x =20 static void csr_init_phys(int fd, int flow_control); @@ -291,7 +298,6 @@ unsigned short msg[CSR_PSKEY_MAXPARAMS + CSR_PSKEY_MSGHDR_SIZE]; =20 #ifndef CONFIG_BLUETOOTH_SD_SPECIFIC - syslog(LOG_INFO, __FUNCTION__": ps_key 0x%x rw_mode : %d", ps_key, rw_mo= de); =20 msg[0] =3D ps_key; |