Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[xsrc/xorg]: xsrc/external/mit/libXtst/dist initial import of libXtst-1.2.4



details:   https://anonhg.NetBSD.org/xsrc/rev/a7e01b136f24
branches:  xorg
changeset: 7174:a7e01b136f24
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Sep 27 18:22:32 2022 +0000

description:
initial import of libXtst-1.2.4

diffstat:

 external/mit/libXtst/dist/ChangeLog                   |    194 +-
 external/mit/libXtst/dist/INSTALL                     |    119 +-
 external/mit/libXtst/dist/Makefile.am                 |      2 +
 external/mit/libXtst/dist/Makefile.in                 |     96 +-
 external/mit/libXtst/dist/README.md                   |     28 +
 external/mit/libXtst/dist/aclocal.m4                  |  18389 ++++++++-------
 external/mit/libXtst/dist/compile                     |     17 +-
 external/mit/libXtst/dist/config.guess                |   1670 +-
 external/mit/libXtst/dist/config.h.in                 |     13 +-
 external/mit/libXtst/dist/config.sub                  |   2893 +-
 external/mit/libXtst/dist/configure                   |  16557 +++++++------
 external/mit/libXtst/dist/configure.ac                |      8 +-
 external/mit/libXtst/dist/depcomp                     |     10 +-
 external/mit/libXtst/dist/install-sh                  |    416 +-
 external/mit/libXtst/dist/ltmain.sh                   |   6255 +++-
 external/mit/libXtst/dist/man/Makefile.in             |     37 +-
 external/mit/libXtst/dist/man/XTestQueryExtension.man |      2 +-
 external/mit/libXtst/dist/missing                     |     16 +-
 external/mit/libXtst/dist/specs/Makefile.in           |     41 +-
 external/mit/libXtst/dist/src/Makefile.in             |     66 +-
 external/mit/libXtst/dist/src/XRecord.c               |     33 +-
 external/mit/libXtst/dist/src/XTest.c                 |     14 +-
 22 files changed, 25658 insertions(+), 21218 deletions(-)

diffs (truncated from 59734 to 300 lines):

diff -r 080822b74508 -r a7e01b136f24 external/mit/libXtst/dist/ChangeLog
--- a/external/mit/libXtst/dist/ChangeLog       Fri Sep 16 06:27:47 2022 +0000
+++ b/external/mit/libXtst/dist/ChangeLog       Tue Sep 27 18:22:32 2022 +0000
@@ -1,3 +1,195 @@
+commit 99b89c3bcb0ebb0b6dd86bfdc9d276715eaea889
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Mon Sep 26 18:07:24 2022 -0700
+
+    libXtst 1.2.4
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 14a44d0e3e6c3d9e757e2fdd143587efe532f1e9
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Aug 20 10:39:35 2022 -0700
+
+    Remove obsolete casts from Xmalloc() and Xcalloc() calls
+    
+    Not needed in C89 and later
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit afc015217221acd8667a96111b147f3a742a2c4e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Thu Aug 18 19:12:42 2022 -0700
+
+    Variable scope reductions as suggested by cppcheck
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit ff3456b04e1b42fd77e0db061bf7a563108b5868
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Thu Aug 18 19:02:35 2022 -0700
+
+    Resolve -Wsign-compare warnings
+    
+    XRecord.c: In function ‘XRecordFreeState’:
+    XRecord.c:515:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+         for(i=0; i<state->nclients; i++) {
+                   ^
+    XRecord.c: In function ‘parse_reply_call_callback’:
+    XRecord.c:752:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 4 > rep->length << 2)
+                             ^
+    XRecord.c:759:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+          if (current_index + 1 > rep->length << 2)
+                                ^
+    XRecord.c:763:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 8 > rep->length << 2)
+                             ^
+    XRecord.c:777:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 4 > rep->length << 2)
+                             ^
+    XRecord.c:785:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 4 > rep->length << 2)
+                             ^
+    XRecord.c:792:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+          if (current_index + 4 > rep->length<<2)
+                                ^
+    XRecord.c:797:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 8 > rep->length << 2)
+                             ^
+    XRecord.c:810:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+          if (current_index + 8 > rep->length << 2)
+                                ^
+    XRecord.c:818:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (current_index + 4 > rep->length << 2)
+                             ^
+    XRecord.c:824:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+          } else if (current_index < rep->length << 2)
+                                   ^
+    XRecord.c:830:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+          if (current_index < rep->length << 2)
+                            ^
+    XRecord.c:859:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+         } while (current_index<rep->length<<2);
+                               ^
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f8a2329d8a24c0901d945986232267c02f080fc4
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Thu Aug 18 18:52:40 2022 -0700
+
+    send_axes: Mark switch statement fallthrough as intentional
+    
+    Quiets gcc warnings:
+    XTest.c: In function ‘send_axes’:
+    XTest.c:274:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
+          ev.valuator5 = *(axes+5);
+          ~~~~~~~~~~~~~^~~~~~~~~~~
+    XTest.c:275:2: note: here
+      case 5:
+      ^~~~
+    XTest.c:276:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
+          ev.valuator4 = *(axes+4);
+          ~~~~~~~~~~~~~^~~~~~~~~~~
+    XTest.c:277:2: note: here
+      case 4:
+      ^~~~
+    XTest.c:278:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
+          ev.valuator3 = *(axes+3);
+          ~~~~~~~~~~~~~^~~~~~~~~~~
+    XTest.c:279:2: note: here
+      case 3:
+      ^~~~
+    XTest.c:280:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
+          ev.valuator2 = *(axes+2);
+          ~~~~~~~~~~~~~^~~~~~~~~~~
+    XTest.c:281:2: note: here
+      case 2:
+      ^~~~
+    XTest.c:282:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
+          ev.valuator1 = *(axes+1);
+          ~~~~~~~~~~~~~^~~~~~~~~~~
+    XTest.c:283:2: note: here
+      case 1:
+      ^~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 80c35fd74d99039949be2522f18f4040e2f6eec3
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Jul 17 18:23:10 2022 -0700
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 0077e7828bd26869d7a3e9ec6158ab09bf646ef3
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Jul 17 18:21:31 2022 -0700
+
+    Fix spelling/wording issues
+    
+    Found by using:
+        codespell --builtin clear,rare,usage,informal,code,names
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 63dc5cc8fe89807c7945949d1d86da44ce69687a
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Jul 17 18:20:38 2022 -0700
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 769598f20386845f5839fbc68dfed1f4245197be
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 7 19:54:52 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9d20b76d717add6401d66f272656d3cf763d7130
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Mon Nov 19 22:46:44 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7e083f2e618ce063d1ab2885671a0c5ca8472772
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 13:52:49 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit c051091cecad4c22dab362f3d3b7463ad2a52754
+Author: Emil Velikov <emil.l.velikov%gmail.com@localhost>
+Date:   Mon Mar 9 12:00:52 2015 +0000
+
+    autogen.sh: use quoted string variables
+    
+    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
+    fall-outs, when they contain space.
+    
+    Signed-off-by: Emil Velikov <emil.l.velikov%gmail.com@localhost>
+    Reviewed-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+    Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+
+commit a4994d5f8bc949eabe2c9d8a1a7af4bfcb68df9c
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date:   Tue Jan 24 10:32:07 2017 +1000
+
+    autogen.sh: use exec instead of waiting for configure to finish
+    
+    Syncs the invocation of configure with the one from the server.
+    
+    Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+    Reviewed-by: Emil Velikov <emil.velikov%collabora.com@localhost>
+
 commit 9f5621a410f18149d4c76b02daa7f1a98b4a2c16
 Author: Matthieu Herrb <matthieu.herrb%laas.fr@localhost>
 Date:   Tue Oct 4 21:28:17 2016 +0200
@@ -1012,7 +1204,7 @@
         src/Makefile.am
 
 commit dbedf673f50e0baf6d5af60f60dbd16368071ed4
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Mon Jun 13 19:44:25 2005 +0000
 
     - Add Xtst to symlink.sh
diff -r 080822b74508 -r a7e01b136f24 external/mit/libXtst/dist/INSTALL
--- a/external/mit/libXtst/dist/INSTALL Fri Sep 16 06:27:47 2022 +0000
+++ b/external/mit/libXtst/dist/INSTALL Tue Sep 27 18:22:32 2022 +0000
@@ -1,11 +1,13 @@
 Installation Instructions
 *************************
 
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007, 2008 Free Software Foundation, Inc.
+Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
+Inc.
 
-   This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
+   Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.  This file is offered as-is,
+without warranty of any kind.
 
 Basic Installation
 ==================
@@ -13,7 +15,11 @@
    Briefly, the shell commands `./configure; make; make install' should
 configure, build, and install this package.  The following
 more-detailed instructions are generic; see the `README' file for
-instructions specific to this package.
+instructions specific to this package.  Some packages provide this
+`INSTALL' file but do not implement all of the features documented
+below.  The lack of an optional feature in a given package is not
+necessarily a bug.  More recommendations for GNU packages can be found
+in *note Makefile Conventions: (standards)Makefile Conventions.
 
    The `configure' shell script attempts to guess correct values for
 various system-dependent variables used during compilation.  It uses
@@ -42,7 +48,7 @@
 you want to change it or regenerate `configure' using a newer version
 of `autoconf'.
 
-The simplest way to compile this package is:
+   The simplest way to compile this package is:
 
   1. `cd' to the directory containing the package's source code and type
      `./configure' to configure the package for your system.
@@ -53,12 +59,22 @@
   2. Type `make' to compile the package.
 
   3. Optionally, type `make check' to run any self-tests that come with
-     the package.
+     the package, generally using the just-built uninstalled binaries.
 
   4. Type `make install' to install the programs and any data files and
-     documentation.
+     documentation.  When installing into a prefix owned by root, it is
+     recommended that the package be configured and built as a regular
+     user, and only the `make install' phase executed with root
+     privileges.
 
-  5. You can remove the program binaries and object files from the
+  5. Optionally, type `make installcheck' to repeat any self-tests, but
+     this time using the binaries in their final installed location.
+     This target does not install anything.  Running this target as a
+     regular user, particularly if the prior `make install' required
+     root privileges, verifies that the installation completed
+     correctly.
+
+  6. You can remove the program binaries and object files from the
      source code directory by typing `make clean'.  To also remove the
      files that `configure' created (so you can compile the package for
      a different kind of computer), type `make distclean'.  There is
@@ -67,8 +83,15 @@
      all sorts of other programs in order to regenerate files that came
      with the distribution.
 
-  6. Often, you can also type `make uninstall' to remove the installed
-     files again.
+  7. Often, you can also type `make uninstall' to remove the installed
+     files again.  In practice, not all packages have tested that
+     uninstallation works correctly, even though it is required by the
+     GNU Coding Standards.
+
+  8. Some packages, particularly those that use Automake, provide `make
+     distcheck', which can by used by developers to test that all other
+     targets like `make install' and `make uninstall' work correctly.
+     This target is generally not run by end users.
 
 Compilers and Options
 =====================
@@ -93,7 +116,8 @@
 own directory.  To do this, you can use GNU `make'.  `cd' to the
 directory where you want the object files and executables to go and run
 the `configure' script.  `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.


Home | Main Index | Thread Index | Old Index