瀏覽代碼

mesa: fix an autoconf build-system bug related to glsl_to_tgsi

st_glsl_to_tgsi.cpp was completely ignored by makedepend because it was
not included in ALL_SOURCES, which caused that the file was not recompiled
when certain header files were changed (like glsl/ir.h).

The first part of this commit is just a consolidation.
The second part is the fix.
tags/mesa-8.0-rc1
Marek Olšák 14 年之前
父節點
當前提交
da90c8fc27
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2
    3
      src/mesa/sources.mak

+ 2
- 3
src/mesa/sources.mak 查看文件

@@ -338,14 +338,13 @@ MESA_GALLIUM_SOURCES = \
x86/common_x86.c

MESA_GALLIUM_CXX_SOURCES = \
$(MAIN_CXX_SOURCES) \
$(SHADER_CXX_SOURCES) \
$(MESA_CXX_SOURCES) \
state_tracker/st_glsl_to_tgsi.cpp

# All the core C sources, for dependency checking
ALL_SOURCES = \
$(MESA_SOURCES) \
$(MESA_CXX_SOURCES) \
$(MESA_GALLIUM_CXX_SOURCES) \
$(MESA_ASM_SOURCES) \
$(STATETRACKER_SOURCES)


Loading…
取消
儲存