From 5ebbc3a366287b631775ed3e17537580d380db8a Mon Sep 17 00:00:00 2001 From: marha Date: Fri, 30 Aug 2013 15:35:17 +0200 Subject: fontconfig mesa xserver xkeyboard-config xkbcomp git update 30 aug 2013 xserver commit 94d4e29aedc69431fa9b299ca1b67947173d7a24 xkeyboard-config commit fcb91cb1013cbdd87a6f77533f188d5934f24046 xkbcomp commit 24d18e0a844041ef82441adb16aa18cc4b4814ae fontconfig commit 071ce44c35733e54cb477cc75810cbe55025b619 mesa commit f7217b99f243738f941a5d009c68387dfadcb50a --- fontconfig/README | 37 ++++- fontconfig/configure.ac | 2 +- fontconfig/fc-lang/Makefile.am | 1 + fontconfig/fontconfig/fontconfig.h | 2 +- mesalib/configure.ac | 2 +- mesalib/docs/index.html | 7 + mesalib/docs/relnotes/9.2.html | 155 ++++++++++++++++++++- mesalib/src/glsl/ast_to_hir.cpp | 29 ++-- mesalib/src/glsl/ir.cpp | 1 + mesalib/src/glsl/ir.h | 7 + mesalib/src/glsl/ir_constant_expression.cpp | 11 ++ mesalib/src/glsl/ir_print_visitor.cpp | 12 +- mesalib/src/glsl/ir_validate.cpp | 1 + mesalib/src/mesa/main/api_validate.c | 51 ++++--- mesalib/src/mesa/program/ir_to_mesa.cpp | 1 + mesalib/src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 1 + mesalib/src/mesa/vbo/vbo_exec_array.c | 12 ++ xkbcomp/xkbscan.c | 14 +- xorg-server/Xi/grabdev.c | 5 +- xorg-server/Xi/xiallowev.c | 2 +- xorg-server/dix/events.c | 25 ++-- xorg-server/include/inputstr.h | 2 +- xorg-server/test/signal-logging.c | 3 +- xorg-server/xkeyboard-config/symbols/ara | 23 +++ xorg-server/xkeyboard-config/symbols/us | 4 + 25 files changed, 343 insertions(+), 67 deletions(-) diff --git a/fontconfig/README b/fontconfig/README index 8120585a7..abaf506b8 100644 --- a/fontconfig/README +++ b/fontconfig/README @@ -1,12 +1,45 @@ Fontconfig Font configuration and customization library - Version 2.10.93 (2.11 RC3) - 2013-05-20 + Version 2.10.94 (2.11 RC4) + 2013-08-29 Check INSTALL for compilation and installation instructions. Report bugs to https://bugs.freedesktop.org in the fontconfig module. +2.10.94 (2.11 RC4) + +Akira TAGOH (25): + Bug 64906 - FcNameParse() should ignore leading whitespace in parameters + Fix a comparison of constant warning with clang + Fix a shift count overflow on 32bit box + Fix a incompatible pointer warning on NetBSD + Add FcTypeUnknown to FcType to avoid comparison of constant -1 + Fix the behavior of intermixed tests end edits in match + Ignore scandir() check on mingw + Use INT_MAX instead of unreliable hardcoding value + Add FC_UNUSED to FC_ASSERT_STATIC macro to avoid compiler warning + Rework to apply the intermixed test and edit elements in one-pass + trivial code optimization + Correct fontconfig.pc to add certain dependencies for build + Correct fontconfig.pc to add certain dependencies for static build + Fix wrong edit position + Bug 67809 - Invalid read/write with valgrind when assigning something twice + warn deprecated only when migration failed + Bug 67845 - Match on FC_SCALABLE + Bug 16818 - fontformat in match pattern is not respected? + Bug 68340 - More metric compat fonts + Bug 63399 - Add default aliases for Georgia, Garamond, Palatino Linotype, Trebuchet MS + Fix a typo + Fix a crash when non-builtin objects are edited + Fix a wrong edit position when 'kind' is different + Bug 68587 - copy qu.orth to quz.orth + Add quz.orth to Makefile.am + +Behdad Esfahbod (2): + Minor + Fix assertion + 2.10.93 (2.11 RC3) Akira TAGOH (10): diff --git a/fontconfig/configure.ac b/fontconfig/configure.ac index 321feced4..12d414938 100644 --- a/fontconfig/configure.ac +++ b/fontconfig/configure.ac @@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library dnl version. This same version number must appear in fontconfig/fontconfig.h dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's dnl not possible to extract the version number here from fontconfig.h -AC_INIT([fontconfig], [2.10.93], [https://bugs.freedesktop.org/enger_bug.cgi?product=fontconfig]) +AC_INIT([fontconfig], [2.10.94], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig]) AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) diff --git a/fontconfig/fc-lang/Makefile.am b/fontconfig/fc-lang/Makefile.am index 2340de4a6..6f76ee015 100644 --- a/fontconfig/fc-lang/Makefile.am +++ b/fontconfig/fc-lang/Makefile.am @@ -263,6 +263,7 @@ ORTH = \ pap_an.orth \ pap_aw.orth \ qu.orth \ + quz.orth \ rn.orth \ rw.orth \ sc.orth \ diff --git a/fontconfig/fontconfig/fontconfig.h b/fontconfig/fontconfig/fontconfig.h index 39d1b1b9c..9a667022b 100644 --- a/fontconfig/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig/fontconfig.h @@ -52,7 +52,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 10 -#define FC_REVISION 93 +#define FC_REVISION 94 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) diff --git a/mesalib/configure.ac b/mesalib/configure.ac index e20a2289a..b19ab189e 100644 --- a/mesalib/configure.ac +++ b/mesalib/configure.ac @@ -1444,7 +1444,7 @@ egl_platforms=`IFS=', '; echo $with_egl_platforms` for plat in $egl_platforms; do case "$plat" in wayland) - PKG_CHECK_MODULES([WAYLAND], [wayland-client >= 1.0.2 wayland-server >= 1.0.2]) + PKG_CHECK_MODULES([WAYLAND], [wayland-client >= 1.2.0 wayland-server >= 1.2.0]) GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland" WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client` diff --git a/mesalib/docs/index.html b/mesalib/docs/index.html index 30f58ab42..2f04335dc 100644 --- a/mesalib/docs/index.html +++ b/mesalib/docs/index.html @@ -16,6 +16,13 @@

News

+

August 27, 2013

+

+Mesa 9.2 is released. +This is a new development release. +See the release notes for more information about the release. +

+

August 1, 2013

Mesa 9.1.6 is released. diff --git a/mesalib/docs/relnotes/9.2.html b/mesalib/docs/relnotes/9.2.html index 1f93b8963..9e1c01522 100644 --- a/mesalib/docs/relnotes/9.2.html +++ b/mesalib/docs/relnotes/9.2.html @@ -14,7 +14,7 @@

-

Mesa 9.2 Release Notes / (date TBD)

+

Mesa 9.2 Release Notes / (August 27, 2013)

Mesa 9.2 is a new development release. @@ -33,7 +33,9 @@ because GL_ARB_compatibility is not supported.

MD5 checksums

-tbd
+4f93c6475ec656fc1f7b93aeffc9b6c4  MesaLib-9.2.0.tar.gz
+4185b6aae890bc62a964f4b24cc1aca8  MesaLib-9.2.0.tar.bz2
+3bc5339bc98b9c37777ffd14e3a8eca4  MesaLib-9.2.0.zip
 
@@ -44,12 +46,14 @@ Note: some of the new features are only available with certain drivers.