Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/xset/dist initial import of xset-1.2.5



details:   https://anonhg.NetBSD.org/xsrc/rev/9800ab608a55
branches:  trunk
changeset: 7338:9800ab608a55
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Jan 08 09:55:06 2023 +0000

description:
initial import of xset-1.2.5

diffstat:

 external/mit/xset/dist/ChangeLog       |   139 +-
 external/mit/xset/dist/Makefile.am     |     2 +-
 external/mit/xset/dist/Makefile.in     |   102 +-
 external/mit/xset/dist/README.md       |    18 +
 external/mit/xset/dist/aclocal.m4      |  2313 ++++----
 external/mit/xset/dist/compile         |    17 +-
 external/mit/xset/dist/config.guess    |  1488 +++--
 external/mit/xset/dist/config.h.in     |    98 +-
 external/mit/xset/dist/config.sub      |  2885 +++++-----
 external/mit/xset/dist/configure       |  8403 ++++++++++++++++---------------
 external/mit/xset/dist/configure.ac    |    10 +-
 external/mit/xset/dist/depcomp         |    10 +-
 external/mit/xset/dist/install-sh      |   172 +-
 external/mit/xset/dist/man/Makefile.in |    19 +-
 external/mit/xset/dist/man/xset.man    |    11 +-
 external/mit/xset/dist/missing         |    16 +-
 external/mit/xset/dist/xset.c          |   185 +-
 17 files changed, 8492 insertions(+), 7396 deletions(-)

diffs (truncated from 22531 to 300 lines):

diff -r 15e6f9e6f0d2 -r 9800ab608a55 external/mit/xset/dist/ChangeLog
--- a/external/mit/xset/dist/ChangeLog  Sun Jan 08 09:55:04 2023 +0000
+++ b/external/mit/xset/dist/ChangeLog  Sun Jan 08 09:55:06 2023 +0000
@@ -1,3 +1,136 @@
+commit fca58c426ef4eef0c000bfa2758e82e1d1b170e2
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Dec 3 16:06:57 2022 -0800
+
+    xset 1.2.5
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4ee612646b79497113c5df076a99ba4dafb5432a
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Nov 22 14:22:28 2022 -0800
+
+    configure: Make xf86misc support disabled by default
+    
+    Require --with-xf86misc to enable it.
+    
+    The server side of the XF86-Misc extension was removed in the xserver-1.6.0
+    release in 2008, so this code is unusable on most systems now.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit b19609386121ab113c4c71e930e71dc17508c25b
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 13 12:26:16 2022 -0800
+
+    Use C99 designated struct initializers
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c59a8dad290489d79f82ab183dbc31b279866161
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 13 11:57:50 2022 -0800
+
+    set_pixels: Mark pixels parameter as const
+    
+    As suggested by cppcheck:
+    xset.c:1145:41: style: Parameter 'pixels' can be declared with const [constParameter]
+    set_pixels(Display *dpy, unsigned long *pixels, caddr_t * colors,
+                                            ^
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7545e0ed63cb03e5a6065a9823710d02f560692c
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 13 11:56:17 2022 -0800
+
+    Remove unnecessary check for NULL pointer before calling free()
+    
+    Resolves cppcheck warning:
+    xset.c:996:9: style: Condition 'directoryList' is always true [knownConditionTrueFalse]
+        if (directoryList)
+            ^
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a6059bdf3d3baea176c9a69ffd5b39a22b4af902
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 13 11:54:30 2022 -0800
+
+    Remove unnecessary casts
+    
+    These were needed for pre-C89 systems that took char * arguments
+    instead of void * arguments, but aren't needed for C89 & later.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 6baf8e4fa706b8fffc121d535bac398723118415
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 13 11:50:26 2022 -0800
+
+    Variable scope reduction as recommended by cppcheck
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 777af080a6c48261d4fe8fc443cb57c52b9a0814
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Thu Jul 28 17:30:21 2022 -0700
+
+    gitlab CI: stop requiring Signed-off-by in commits
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e31547a20a1dbcaaf1eff5680731f412091f11f2
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Jan 9 12:45:49 2022 -0800
+
+    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 41db99ec80f43648b2e8fe61277c2200662b0f19
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Dec 7 14:08:53 2021 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7ed4a7b3da1d22be9b2f37ec9dfab72577815683
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Dec 7 14:08:32 2021 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5c4cd92bf97705c0afc63b37455d992e2859402d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 14:03:47 2021 -0800
+
+    Use the real name of the DPMS extension in messages & man page
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4427d95f41c8f641cc58a0f31611d039ae5a009a
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 17:18:41 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 128e7d83c54c48552afbc4eddf7d7526039a4597
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 23:22:06 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
 commit 12dbac38f29c3db7b74a1c04e73bfd436ab66626
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Fri Mar 9 20:16:22 2018 -0800
@@ -884,13 +1017,13 @@
         configure cache, you cache it, and the cached value is probably wrong.
 
 commit 6467b9f9b57d56d502e97260261745742a7645c7
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Thu Jul 14 22:40:16 2005 +0000
 
     Add _BSD_SOURCE to lots of applications - patch from Stefan Dirsch
 
 commit aba3f11253842b810676ae26efb20f9658182097
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Fri Jul 1 18:21:15 2005 +0000
 
     Build system for xset
@@ -921,7 +1054,7 @@
         libXaw.
 
 commit 735853aa5531434c951de4c2cd2b75b8ce7148ba
-Author: Kristian Høgsberg <krh%redhat.com@localhost>
+Author: Kristian Høgsberg  <krh%redhat.com@localhost>
 Date:   Mon Aug 16 16:36:27 2004 +0000
 
     As discussed and agreed on on the release-wranglers meeting of August 16,
diff -r 15e6f9e6f0d2 -r 9800ab608a55 external/mit/xset/dist/Makefile.am
--- a/external/mit/xset/dist/Makefile.am        Sun Jan 08 09:55:04 2023 +0000
+++ b/external/mit/xset/dist/Makefile.am        Sun Jan 08 09:55:06 2023 +0000
@@ -48,4 +48,4 @@
 XORGRELSTRING = @PACKAGE_STRING@
   XORGMANNAME = X Version 11
 
-
+EXTRA_DIST = README.md
diff -r 15e6f9e6f0d2 -r 9800ab608a55 external/mit/xset/dist/Makefile.in
--- a/external/mit/xset/dist/Makefile.in        Sun Jan 08 09:55:04 2023 +0000
+++ b/external/mit/xset/dist/Makefile.in        Sun Jan 08 09:55:06 2023 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2021 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -143,7 +143,8 @@
 am__v_at_1 = 
 DEFAULT_INCLUDES = -I.@am__isrc@
 depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/xset.Po
 am__mv = mv -f
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -179,9 +180,9 @@
   $(RECURSIVE_CLEAN_TARGETS) \
   $(am__extra_recursive_targets)
 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
-       cscope distdir dist dist-all distcheck
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
-       $(LISP)config.h.in
+       cscope distdir distdir-am dist dist-all distcheck
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
+       config.h.in
 # Read a list of newline-separated strings from the standard input,
 # and print each of them once, without duplicates.  Input order is
 # *not* preserved.
@@ -198,12 +199,9 @@
   unique=`for i in $$list; do \
     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
   done | $(am__uniquify_input)`
-ETAGS = etags
-CTAGS = ctags
-CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-       ChangeLog INSTALL README compile config.guess config.sub \
+       ChangeLog INSTALL README.md compile config.guess config.sub \
        depcomp install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
@@ -240,9 +238,11 @@
     dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
   done; \
   reldir="$$dir2"
-DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
+DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
 GZIP_ENV = --best
-DIST_TARGETS = dist-bzip2 dist-gzip
+DIST_TARGETS = dist-xz dist-gzip
+# Exists only to be overridden by the user if desired.
+AM_DISTCHECK_DVI_TARGET = dvi
 distuninstallcheck_listfiles = find . -type f -print
 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
   | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
@@ -263,8 +263,9 @@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
 CHANGELOG_CMD = @CHANGELOG_CMD@
-CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
 CWARNFLAGS = @CWARNFLAGS@
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
@@ -274,11 +275,10 @@
 ECHO_C = @ECHO_C@
 ECHO_N = @ECHO_N@
 ECHO_T = @ECHO_T@
-EGREP = @EGREP@
+ETAGS = @ETAGS@
 EXEEXT = @EXEEXT@
 FILE_MAN_DIR = @FILE_MAN_DIR@
 FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
-GREP = @GREP@
 INSTALL = @INSTALL@
 INSTALL_CMD = @INSTALL_CMD@
 INSTALL_DATA = @INSTALL_DATA@
@@ -369,6 +369,7 @@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
 psdir = @psdir@
+runstatedir = @runstatedir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 srcdir = @srcdir@
@@ -388,6 +389,7 @@
 # Strings to replace in man pages
 XORGRELSTRING = @PACKAGE_STRING@
 XORGMANNAME = X Version 11
+EXTRA_DIST = README.md
 all: config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
@@ -414,8 +416,8 @@
            echo ' $(SHELL) ./config.status'; \
            $(SHELL) ./config.status;; \
          *) \
-           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
-           cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+           cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
        esac;
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -494,7 +496,13 @@
 distclean-compile:
        -rm -f *.tab.c
 
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xset.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xset.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+       @$(MKDIR_P) $(@D)
+       @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+



Home | Main Index | Thread Index | Old Index