bluez detection
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1396 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f767128244
commit
a54e7ba3ad
|
@ -20,6 +20,6 @@ env_wiiuse = env.Clone(
|
||||||
)
|
)
|
||||||
|
|
||||||
libs = [
|
libs = [
|
||||||
'm', 'bluetooth',
|
'm',
|
||||||
]
|
]
|
||||||
env_wiiuse.SharedLibrary(env['libs_dir']+"wiiuse", files, LIBS=libs)
|
env_wiiuse.SharedLibrary(env['libs_dir']+"wiiuse", files, LIBS=libs)
|
||||||
|
|
|
@ -182,6 +182,9 @@ if not env['osx64']:
|
||||||
if not conf.CheckSDL('1.0.0'):
|
if not conf.CheckSDL('1.0.0'):
|
||||||
Exit(1)
|
Exit(1)
|
||||||
|
|
||||||
|
if not conf.CheckPKG('bluez'):
|
||||||
|
Exit(1)
|
||||||
|
|
||||||
if not env['osx64']:
|
if not env['osx64']:
|
||||||
if not conf.CheckPKG('ao'):
|
if not conf.CheckPKG('ao'):
|
||||||
Exit(1)
|
Exit(1)
|
||||||
|
@ -219,6 +222,9 @@ if not env['osx64']:
|
||||||
if not env['osx64']:
|
if not env['osx64']:
|
||||||
env.ParseConfig('pkg-config --cflags --libs ao')
|
env.ParseConfig('pkg-config --cflags --libs ao')
|
||||||
|
|
||||||
|
# bluetooth for wii
|
||||||
|
env.ParseConfig('pkg-config --cflags --libs bluez')
|
||||||
|
|
||||||
# add methods from utils to env
|
# add methods from utils to env
|
||||||
env.AddMethod(utils.filterWarnings)
|
env.AddMethod(utils.filterWarnings)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue