|
From: Peter K. <pk...@us...> - 2001-11-19 11:29:31
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.32 1.33=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Only define configuration options here if neither CONFIG_BLUETOOTH nor CONFIG_BLUETOOTH_MODULE is set. The diff of the modified file(s): --- btconfig.h 2001/07/31 19:00:28 1.32 +++ btconfig.h 2001/11/19 11:29:29 1.33 @@ -49,7 +49,7 @@ * this next section. See Config.in in the source directory. * --gmcnutt */ -#ifndef CONFIG_BLUETOOTH +#if !defined(CONFIG_BLUETOOTH) && !defined(CONFIG_BLUETOOTH_MODULE) /****************** * General * ******************/ @@ -116,7 +116,7 @@ /*************** * SDP * ***************/ -#endif /* CONFIG_BLUETOOTH */ +#endif /* !CONFIG_BLUETOOTH && !CONFIG_BLUETOOTH_MODULE */ =20 /*************************************************************************= **/ =20 |