libXt: Changes to 'refs/tags/libXt-1.3.0'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sun Apr 9 20:50:17 UTC 2023


Tag 'libXt-1.3.0' created by Alan Coopersmith <alan.coopersmith at oracle.com> at 2023-04-09 20:50 +0000

libXt-1.3.0
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQIcBAABCgAGBQJkMyUDAAoJEM/fFIgoxkKnsTgP/2Gwyzf1hFn6ujRpqVVZCowF
otKVxuu9Fs94Ia3dn3yA7PH6WeosFXA8tQ8sE8qzr4vmx6mOuCvYIWlYhUoKeHaW
6BTA0URW/RIJFnE1+5sX4hr26PscPsRwSlxZjJwfISusyfn9BCfKHELctM9stGFI
Zx2/KUwYb0XHTeY54EpZ3WyOi36j8PdqfbgGdfg7DdwNlzfrEeJeCdB67Mx3fwdj
BQhg6QWIHMKrvdvOWXIOG/fbRat5/qNw5HBFeu8/BUoKQ2fekAJ/aoePuUz7CeLU
va78Y8vjyrSuTZb6JLOHWN80bwsTIV0ueOH5kc7If0x5n0rfgh1t446PCB0L3VR8
lRzinqYae1sHvyIPpyUNO8kxGYv9xQ1TrsirqaqbUhO92vRyETdXiiUM1nCuGDOd
LbJkH9/2zilZk3gsf07KIYQ+gOSEur/e+7giJ+z8xOXvGljzbCmbpOIzc/DisHup
ejky59ib07eiyX7iD0xlk1ZSNjfC00WFgyVvtHC72X+md2W3TIcNwgwJDOiBubfl
QAEDZB+qVHoRom/eL7wRbA+1R/1sB1hZyOEvo8nYylu2of3mEmvQ3w6r5yVHZewT
V9LFU7b4Q1/yrkV38lY3GRc0WGtpoeoqpblCMnHbLk9HezIBDxw5WhdpbhEzTmfO
LC7xuuB8NRQDAZd190LM
=1jzM
-----END PGP SIGNATURE-----

Changes since libXt-1.2.1:
Alan Coopersmith (19):
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      Fix spelling/wording issues
      gitlab CI: stop requiring Signed-off-by in commits
      Use memcpy() instead of memmove() when buffers are known not to overlap
      Use memcpy() instead of XtMemmove() when buffers are known to differ
      tests: update g_test_bug_base url from bugzilla to gitlab
      tests: Use XORG_MEMORY_CHECK_FLAGS from xorg-macros 1.16
      tests: Replace g_assert() calls with g_assert_*() calls
      configure.ac: Replace HAVE_LIBRARY with AC_CHECK_LIB
      Add xfilesearchpath to xt.pc
      TMstate.c: Handle -Wduplicated-branches warnings
      Remove "All rights reserved" from Oracle copyright notices
      configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
      test: Add unit tests for XtMalloc, XtCalloc, & XtRealloc
      Add XtReallocArray() for overflow checking of multiplied args
      Replace XtRealloc() calls with XtReallocArray()
      Replace XtMalloc() calls with XtMallocArray()
      libXt 1.3.0

Alex Richardson (6):
      Define LONG64 if __SIZEOF_LONG__ indicates 64-bit long
      XtArgVal: Support architectures where pointers are bigger than long
      Use XtUIntPtr for integer types that can hold pointers
      Cast via intptr_t when converting integers to pointers
      Fix XrmResource layout if pointers are bigger than long
      Fix InternalCallbackRec layout if pointers are bigger than 64 bits

Keith Packard (1):
      Support buttons > 5 in translation tables [v2]

Thomas E. Dickey (7):
      add _X_NORETURN to agree with header-file
      codespell-fixes
      cppcheck and clang --analyze fixes
      fixes for gcc13 warnings
      cppcheck fixes (const, null dereferencing, uninitialized, scope)
      cppcheck (revise IsDescendant() to fix possible null-dereference)
      update copyright-date

---
 .gitlab-ci.yml                   |  107 ++++++
 COPYING                          |    4 
 README.md                        |    2 
 configure.ac                     |   53 +--
 include/X11/CallbackI.h          |    6 
 include/X11/Intrinsic.h          |   46 ++
 include/X11/IntrinsicP.h         |   13 
 include/X11/ThreadsI.h           |    2 
 include/X11/Xtos.h               |    6 
 man/XtAllocateGC.man             |    4 
 man/XtAppError.man               |    4 
 man/XtAppErrorMsg.man            |    4 
 man/XtAppInitialize.man          |    2 
 man/XtAppSetTypeConverter.man    |    2 
 man/XtError.man                  |   12 
 man/XtErrorMsg.man               |   12 
 man/XtGetErrorDatabase.man       |    4 
 man/XtGetGC.man                  |    4 
 man/XtGetSelectionTimeout.man    |    4 
 man/XtInsertEventTypeHandler.man |    2 
 man/XtMalloc.man                 |   25 -
 man/XtOpenApplication.man        |    2 
 specs/CH09.xml                   |    8 
 specs/appB.xml                   |    6 
 specs/appC.xml                   |    2 
 src/ActionHook.c                 |    2 
 src/Alloc.c                      |   58 +++
 src/Callback.c                   |    6 
 src/ClickTime.c                  |    2 
 src/Composite.c                  |    8 
 src/Constraint.c                 |    2 
 src/Convert.c                    |   12 
 src/Converters.c                 |   12 
 src/Core.c                       |    2 
 src/Create.c                     |   25 -
 src/Destroy.c                    |   19 -
 src/Display.c                    |   34 -
 src/Error.c                      |    8 
 src/Event.c                      |   86 ++--
 src/EventUtil.c                  |    9 
 src/Functions.c                  |    2 
 src/GCManager.c                  |    8 
 src/Geometry.c                   |    3 
 src/GetActKey.c                  |    2 
 src/GetResList.c                 |   20 -
 src/GetValues.c                  |   10 
 src/Hooks.c                      |    9 
 src/Initialize.c                 |   24 -
 src/Intrinsic.c                  |   11 
 src/Keyboard.c                   |   12 
 src/Manage.c                     |    7 
 src/NextEvent.c                  |   29 -
 src/Object.c                     |   20 -
 src/PassivGrab.c                 |   14 
 src/Popup.c                      |    2 
 src/ResConfig.c                  |   17 
 src/Resources.c                  |   40 +-
 src/Selection.c                  |   85 ++--
 src/SetSens.c                    |    2 
 src/SetValues.c                  |   21 -
 src/SetWMCW.c                    |    6 
 src/Shell.c                      |   21 -
 src/TMaction.c                   |   29 -
 src/TMgrab.c                     |    2 
 src/TMkey.c                      |   21 -
 src/TMparse.c                    |   98 +++--
 src/TMprint.c                    |    5 
 src/TMstate.c                    |  155 ++++----
 src/Threads.c                    |   11 
 src/VarCreate.c                  |    7 
 src/VarGet.c                     |    4 
 src/Varargs.c                    |    6 
 test/Alloc.c                     |  685 ++++++++++++++++++++++++++++++++++++++-
 test/Converters.c                |   10 
 test/Event.c                     |   14 
 test/Makefile.am                 |    3 
 util/makestrs.c                  |    2 
 xt.pc.in                         |    1 
 78 files changed, 1452 insertions(+), 587 deletions(-)
---


More information about the xorg-commit mailing list