diff options
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/SConscript | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/SConscript b/src/gallium/auxiliary/pipe-loader/SConscript index 393b6021bee..c611fb892f8 100644 --- a/src/gallium/auxiliary/pipe-loader/SConscript +++ b/src/gallium/auxiliary/pipe-loader/SConscript @@ -17,12 +17,11 @@ env.Append(CPPDEFINES = [ source = env.ParseSourceList('Makefile.sources', 'COMMON_SOURCES') -#if HAVE_LIBDRM -source += env.ParseSourceList('Makefile.sources', 'DRM_SOURCES') +if env['HAVE_DRM']: + source += env.ParseSourceList('Makefile.sources', 'DRM_SOURCES') -env.PkgUseModules('DRM') -env.Append(LIBS = [libloader]) -#endif + env.PkgUseModules('DRM') + env.Append(LIBS = [libloader]) pipe_loader = env.ConvenienceLibrary( target = 'pipe_loader', |