Patch by Andreas Faerber,

Add Optional Package for the Bluetooth Components



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25686 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-05-28 21:52:51 +00:00
parent 96f4720393
commit 6d4f2038c3
+15
View File
@@ -3,6 +3,7 @@
# be used
# Available Optional Packages:
# Bluetooth
# Development
# Firefox
# Links
@@ -302,3 +303,17 @@ if [ IsOptionalHaikuImagePackageAdded WonderBrush ] {
: /boot/apps/WonderBrush/WonderBrush ;
}
}
# Bluetooth stack
if [ IsOptionalHaikuImagePackageAdded Bluetooth ] {
local BEOS_ADD_ONS_DRIVERS_BLUETOOTH = h2generic ;
AddDriversToHaikuImage bluetooth : $(BEOS_ADD_ONS_DRIVERS_BLUETOOTH) ;
AddFilesToHaikuImage beos system servers : bluetooth_server ;
AddFilesToHaikuImage beos system lib : libbluetooth.so ;
AddFilesToHaikuImage beos bin : bt_dev_info bt_discovery ;
if [ IsOptionalHaikuImagePackageAdded Development ] {
AddSymlinkToHaikuImage develop lib x86 : /system/lib/libbluetooth.so ;
}
}