One fewer place to have to update.
Reviewed-by: Eric Anholt <eric@anholt.net>
AM_CPPFLAGS = \
$(GALLIUM_PIPE_LOADER_DEFINES) \
- -DMESA_VERSION=\"$(MESA_VERSION)\" \
-DPIPE_SEARCH_DIR=\"$(libdir)/gallium-pipe\" \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src/gallium/include \
return string_property(buf, size, size_ret, dev->vendor_name());
case CL_DRIVER_VERSION:
- return string_property(buf, size, size_ret, MESA_VERSION);
+ return string_property(buf, size, size_ret, PACKAGE_VERSION);
case CL_DEVICE_PROFILE:
return string_property(buf, size, size_ret, "FULL_PROFILE");
case CL_DEVICE_VERSION:
- return string_property(buf, size, size_ret, "OpenCL 1.1 MESA " MESA_VERSION);
+ return string_property(buf, size, size_ret, "OpenCL 1.1 MESA " PACKAGE_VERSION);
case CL_DEVICE_EXTENSIONS:
return string_property(buf, size, size_ret, "");
case CL_PLATFORM_VERSION:
return string_property(buf, size, size_ret,
- "OpenCL 1.1 MESA " MESA_VERSION);
+ "OpenCL 1.1 MESA " PACKAGE_VERSION);
case CL_PLATFORM_NAME:
return string_property(buf, size, size_ret, "Default");
AM_CFLAGS = $(GALLIUM_CFLAGS)
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
- -I$(top_srcdir)/src/mapi \
- -DVEGA_VERSION_STRING=\"$(MESA_VERSION)\"
+ -I$(top_srcdir)/src/mapi
noinst_LTLIBRARIES = libvega.la
Dir('.'),
])
env.Append(CPPDEFINES = [
- 'VEGA_VERSION_STRING=',
+ 'PACKAGE_VERSION='
'KHRONOS_DLL_EXPORTS',
])
}
static const struct st_api vg_api = {
- "Vega " VEGA_VERSION_STRING,
+ "Vega " PACKAGE_VERSION,
ST_API_OPENVG,
ST_PROFILE_DEFAULT_MASK,
0,
#define SERVER_MINOR_VERSION 4
/* This is appended onto the glXGetClient/ServerString version strings. */
-#define MESA_GLX_VERSION "Mesa " MESA_VERSION_STRING
+#define MESA_GLX_VERSION "Mesa " PACKAGE_VERSION
/* Who implemented this GLX? */
#define VENDOR "Brian Paul"
#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
if (MESA_VERBOSE != 0) {
_mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
- MESA_VERSION_STRING, __DATE__, __TIME__);
+ PACKAGE_VERSION, __DATE__, __TIME__);
}
#endif
_mesa_vsnprintf( str, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args );
va_end( args );
fprintf(stderr, "Mesa %s implementation error: %s\n",
- MESA_VERSION_STRING, str);
+ PACKAGE_VERSION, str);
fprintf(stderr, "Please report at bugs.freedesktop.org\n");
}
}
ctx->VersionString = malloc(max);
if (ctx->VersionString) {
_mesa_snprintf(ctx->VersionString, max,
- "%s%u.%u%s Mesa " MESA_VERSION_STRING
+ "%s%u.%u%s Mesa " PACKAGE_VERSION
#ifdef MESA_GIT_SHA1
" (" MESA_GIT_SHA1 ")"
#endif
}
static const struct st_api st_gl_api = {
- "Mesa " MESA_VERSION_STRING,
+ "Mesa " PACKAGE_VERSION,
ST_API_OPENGL,
#if FEATURE_GL
ST_PROFILE_DEFAULT_MASK |