Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit merge lndir 1.0.4, transset 1.0.3, xdm 1.1.14...



details:   https://anonhg.NetBSD.org/xsrc/rev/cbe755dc637a
branches:  trunk
changeset: 7327:cbe755dc637a
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Jan 08 09:19:54 2023 +0000

description:
merge lndir 1.0.4, transset 1.0.3, xdm 1.1.14, xfd 1.1.4, and xgamma 1.0.7

diffstat:

 external/mit/lndir/dist/README      |  25 -------------------------
 external/mit/transset/dist/README   |  32 --------------------------------
 external/mit/xdm/dist/xdm/session.c |   6 +-----
 external/mit/xdm/dist/xdm/xdmauth.c |  10 +++++-----
 external/mit/xfd/dist/compile       |  17 +++++++++--------
 external/mit/xgamma/dist/README     |  26 --------------------------
 6 files changed, 15 insertions(+), 101 deletions(-)

diffs (209 lines):

diff -r 066afcb5ee62 -r cbe755dc637a external/mit/lndir/dist/README
--- a/external/mit/lndir/dist/README    Sun Jan 08 09:18:38 2023 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-lndir - create a shadow directory of symbolic links to another directory tree
-
-All questions regarding this software should be directed at the
-Xorg mailing list:
-
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
-
-The master development code repository can be found at:
-
-        git://anongit.freedesktop.org/git/xorg/util/lndir
-
-        http://cgit.freedesktop.org/xorg/util/lndir
-
-For patch submission instructions, see:
-
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
-
diff -r 066afcb5ee62 -r cbe755dc637a external/mit/transset/dist/README
--- a/external/mit/transset/dist/README Sun Jan 08 09:18:38 2023 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-transset is an utility for setting opacity property.
-
-Features:
- * select window by clicking (as transset)
- * select actual focused X11 window
- * select window by pointing
- * select by window name or id
- * force toggle
- * increase or decrease opacity
-
-All questions regarding this software should be directed at the
-Xorg mailing list:
-
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
-
-The master development code repository can be found at:
-
-        git://anongit.freedesktop.org/git/xorg/app/transset
-
-        http://cgit.freedesktop.org/xorg/app/transset
-
-For patch submission instructions, see:
-
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
diff -r 066afcb5ee62 -r cbe755dc637a external/mit/xdm/dist/xdm/session.c
--- a/external/mit/xdm/dist/xdm/session.c       Sun Jan 08 09:18:38 2023 +0000
+++ b/external/mit/xdm/dist/xdm/session.c       Sun Jan 08 09:19:54 2023 +0000
@@ -53,11 +53,7 @@
 
 # ifdef HAVE_SETPROCTITLE
 #  include <sys/types.h>
-#  ifdef __linux__
-#   include <bsd/unistd.h>
-#  else
-#   include <unistd.h>
-#  endif
+#  include <unistd.h>
 # endif
 
 #ifndef USE_PAM        /* PAM modules should handle these */
diff -r 066afcb5ee62 -r cbe755dc637a external/mit/xdm/dist/xdm/xdmauth.c
--- a/external/mit/xdm/dist/xdm/xdmauth.c       Sun Jan 08 09:18:38 2023 +0000
+++ b/external/mit/xdm/dist/xdm/xdmauth.c       Sun Jan 08 09:19:54 2023 +0000
@@ -111,7 +111,7 @@
        free (new);
        return (Xauth *) 0;
     }
-    memmove( (char *)new->name, name, namelen);
+    memcpy(new->name, name, namelen);
     new->name_length = namelen;
     if (!GenerateAuthData ((char *)new->data, new->data_length))
     {
@@ -172,9 +172,9 @@
      * which is simply the number we've been passing back and
      * forth via XDMCP
      */
-    memmove( fileauth->name, xdmcpauth->name, xdmcpauth->name_length);
-    memmove( fileauth->data, pdpy->authenticationData.data, 8);
-    memmove( fileauth->data + 8, xdmcpauth->data, 8);
+    memcpy(fileauth->name, xdmcpauth->name, xdmcpauth->name_length);
+    memcpy(fileauth->data, pdpy->authenticationData.data, 8);
+    memcpy(fileauth->data + 8, xdmcpauth->data, 8);
     XdmPrintDataHex ("Accept packet auth", xdmcpauth->data, xdmcpauth->data_length);
     XdmPrintDataHex ("Auth file auth", fileauth->data, fileauth->data_length);
     /* encrypt the session key for its trip back to the server */
@@ -245,7 +245,7 @@
            while (keylen < 7)
                key[keylen++] = '\0';
            pdpy->key.data[0] = '\0';
-           memmove( pdpy->key.data + 1, key, 7);
+           memcpy(pdpy->key.data + 1, key, 7);
            bzero(key, sizeof(key));
            fclose (keys);
            return TRUE;
diff -r 066afcb5ee62 -r cbe755dc637a external/mit/xfd/dist/compile
--- a/external/mit/xfd/dist/compile     Sun Jan 08 09:18:38 2023 +0000
+++ b/external/mit/xfd/dist/compile     Sun Jan 08 09:19:54 2023 +0000
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2021 Free Software Foundation, Inc.
 # Written by Tom Tromey <tromey%cygnus.com@localhost>.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -53,7 +53,7 @@
          MINGW*)
            file_conv=mingw
            ;;
-         CYGWIN*)
+         CYGWIN* | MSYS*)
            file_conv=cygwin
            ;;
          *)
@@ -67,7 +67,7 @@
        mingw/*)
          file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
          ;;
-       cygwin/*)
+       cygwin/* | msys/*)
          file=`cygpath -m "$file" || echo "$file"`
          ;;
        wine/*)
@@ -255,7 +255,8 @@
     echo "compile $scriptversion"
     exit $?
     ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
     func_cl_wrapper "$@"      # Doesn't return...
     ;;
 esac
@@ -339,9 +340,9 @@
 # Local Variables:
 # mode: shell-script
 # sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
diff -r 066afcb5ee62 -r cbe755dc637a external/mit/xgamma/dist/README
--- a/external/mit/xgamma/dist/README   Sun Jan 08 09:18:38 2023 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-xgamma allows X users to query and alter the gamma correction of a
-monitor via the X video mode extension (XFree86-VidModeExtension).
-
-All questions regarding this software should be directed at the
-Xorg mailing list:
-
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
-
-The master development code repository can be found at:
-
-        git://anongit.freedesktop.org/git/xorg/app/xgamma
-
-        http://cgit.freedesktop.org/xorg/app/xgamma
-
-For patch submission instructions, see:
-
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
-



Home | Main Index | Thread Index | Old Index