And fix these warning that appear at autoreconf time: "`:='-style assignments are not portable" --- configure.ac | 2 +- src/gallium/drivers/r300/Makefile.sources | 2 +- src/mesa/drivers/dri/i915/Makefile.sources | 4 ++-- src/mesa/drivers/dri/i965/Makefile.sources | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/configure.ac b/configure.ac index 694505d..ea9f331 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_INIT([Mesa],[mesa_version], [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa]) AC_CONFIG_AUX_DIR([bin]) AC_CANONICAL_HOST -AM_INIT_AUTOMAKE([foreign]) +AM_INIT_AUTOMAKE([foreign -Wall]) dnl http://people.gnome.org/~walters/docs/build-api.txt dnl We don't support srcdir != builddir. diff --git a/src/gallium/drivers/r300/Makefile.sources b/src/gallium/drivers/r300/Makefile.sources index e27b14e..436fe7e 100644 --- a/src/gallium/drivers/r300/Makefile.sources +++ b/src/gallium/drivers/r300/Makefile.sources @@ -1,4 +1,4 @@ -C_SOURCES := \ +C_SOURCES = \ r300_blit.c \ r300_chipset.c \ r300_context.c \ diff --git a/src/mesa/drivers/dri/i915/Makefile.sources b/src/mesa/drivers/dri/i915/Makefile.sources index 7d26640..7dcf63d 100644 --- a/src/mesa/drivers/dri/i915/Makefile.sources +++ b/src/mesa/drivers/dri/i915/Makefile.sources @@ -1,8 +1,8 @@ # Paths are relative to TOP. -i915_INCLUDES := \ +i915_INCLUDES = \ src/mesa/drivers/dri/intel -i915_C_FILES := \ +i915_C_FILES = \ i830_context.c \ i830_state.c \ i830_texblend.c \ diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 750be51..084b874 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -1,8 +1,8 @@ -i965_INCLUDES := \ +i965_INCLUDES = \ $(MESA_TOP)/src \ $(MESA_TOP)/src/mesa/drivers/dri/intel -i965_C_FILES := \ +i965_C_FILES = \ intel_batchbuffer.c \ intel_blit.c \ intel_buffer_objects.c \ @@ -111,7 +111,7 @@ i965_C_FILES := \ gen7_wm_state.c \ gen7_wm_surface_state.c -i965_CXX_FILES := \ +i965_CXX_FILES = \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ brw_fs_emit.cpp \ @@ -127,4 +127,4 @@ i965_CXX_FILES := \ brw_vec4_reg_allocate.cpp \ brw_vec4_visitor.cpp -i965_ASM_FILES := +i965_ASM_FILES = -- 1.7.4.1 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev