Source-Changes-HG archive

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

[xsrc/xorg]: xsrc/external/mit/fstobdf/dist initial import of fstobdf-1.0.7



details:   https://anonhg.NetBSD.org/xsrc/rev/0e3e9209295b
branches:  xorg
changeset: 7182:0e3e9209295b
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Oct 16 22:46:00 2022 +0000

description:
initial import of fstobdf-1.0.7

diffstat:

 external/mit/fstobdf/dist/ChangeLog       |   164 +-
 external/mit/fstobdf/dist/Makefile.am     |     2 +
 external/mit/fstobdf/dist/Makefile.in     |   155 +-
 external/mit/fstobdf/dist/README.md       |    20 +
 external/mit/fstobdf/dist/aclocal.m4      |   565 +-
 external/mit/fstobdf/dist/chars.c         |   123 +-
 external/mit/fstobdf/dist/compile         |    17 +-
 external/mit/fstobdf/dist/config.guess    |  1690 +++--
 external/mit/fstobdf/dist/config.h.in     |    10 +-
 external/mit/fstobdf/dist/config.sub      |  2895 +++++-----
 external/mit/fstobdf/dist/configure       |  7870 +++++++++++++++-------------
 external/mit/fstobdf/dist/configure.ac    |     6 +-
 external/mit/fstobdf/dist/depcomp         |    10 +-
 external/mit/fstobdf/dist/fstobdf.c       |    94 +-
 external/mit/fstobdf/dist/fstobdf.h       |    18 +-
 external/mit/fstobdf/dist/header.c        |   162 +-
 external/mit/fstobdf/dist/install-sh      |   416 +-
 external/mit/fstobdf/dist/man/Makefile.in |    39 +-
 external/mit/fstobdf/dist/missing         |    16 +-
 external/mit/fstobdf/dist/props.c         |   104 +-
 20 files changed, 7770 insertions(+), 6606 deletions(-)

diffs (truncated from 21165 to 300 lines):

diff -r 640257be8066 -r 0e3e9209295b external/mit/fstobdf/dist/ChangeLog
--- a/external/mit/fstobdf/dist/ChangeLog       Sun Oct 16 22:45:58 2022 +0000
+++ b/external/mit/fstobdf/dist/ChangeLog       Sun Oct 16 22:46:00 2022 +0000
@@ -1,3 +1,165 @@
+commit 0c7273fbc64041ec4f617ce77eeca49f9da4e678
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Oct 5 18:40:55 2022 -0700
+
+    fstobdf 1.0.7
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 3c508f4376aa6812ea27226bbe6c4584cb07c446
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 11:21:17 2022 -0700
+
+    Add .git-blame-ignore-revs to hide whitespace commits from git blame
+    
+    To use this in your local repo clone, you will need to either run
+    `git blame --ignore-revs-file .git-blame-ignore-revs`
+    or set it permanently with
+    `git config blame.ignoreRevsFile .git-blame-ignore-revs`
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 91ccaaa80d33efd5897cacf714cb14405c2988f2
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 11:04:56 2022 -0700
+
+    Simplify printing of warning header
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit ee534667c6fc9a9b3364bb753f935d5a2f6a81e3
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 10:44:59 2022 -0700
+
+    Store strlen() results in size_t instead of unsigned int
+    
+    Avoids truncating to 32-bits just to re-expand to 64-bits when
+    passing the value to strncmp() later
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit beb0876af6a532d32ae70675dcd882b2e9e55fc8
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 10:40:34 2022 -0700
+
+    AddQuotes: mark input as const
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f82c0ee2d491b700bb8ae38dea3cf711e6bfb176
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 10:37:23 2022 -0700
+
+    Reduce scope of some variables
+    
+    No difference seen in elf binary
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 2325f84273ac846fdfc89f4655c21fd3b89da2bc
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 10:25:29 2022 -0700
+
+    EmitBitmap: declare maskTab as const
+    
+    As recommended by cppcheck
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4d54d9ad3a46815792c094fbea82351ed61c66d7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 10 10:18:20 2022 -0700
+
+    Convert sources to standard X.Org code style
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 230df18221211dbbe064c561fa9bcc7ac87c0872
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Aug 3 17:17:50 2022 -0700
+
+    Use memcpy() instead of memmove() when buffers are known not to overlap
+    
+    Most of these came from a mass bcopy() -> memmove() substitution
+    in 1993 with a commit comment of "ANSIfied for R6".
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e4188606121f82aa14516c7fcab6680df050002d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 3 15:26:11 2021 -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 d33be6f5c63df4287f1cd0353e2b820ecf62b94d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 3 15:24:34 2021 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 275f28863d70e6ee6e3f2fe58e0a23f9cf0c0f34
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 3 15:24:28 2021 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a70a1f71a176d62c9ff7838b78d0e02603e757b1
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 16:47:05 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c6b3126998d2199375fcd9b00d0a511e3e6217d0
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 19:59:28 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 16e56ed860165bf1340608692c6fc4ee359968ff
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 14:00:20 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit 9816024f4d346229927ae3f4656f75ddcc14f073
+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 c929f828c320c6c00ee054010fbd9aa0cc117808
+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 30a982223d71d6809cc01809c71f206ce736c4ea
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Tue Dec 30 20:57:33 2014 -0800
@@ -457,7 +619,7 @@
         configure cache, you cache it, and the cached value is probably wrong.
 
 commit d487591b670d61283aa8482817af8dac6b82badb
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Wed Jul 6 16:22:21 2005 +0000
 
     Add buildsystem for fstobdf
diff -r 640257be8066 -r 0e3e9209295b external/mit/fstobdf/dist/Makefile.am
--- a/external/mit/fstobdf/dist/Makefile.am     Sun Oct 16 22:45:58 2022 +0000
+++ b/external/mit/fstobdf/dist/Makefile.am     Sun Oct 16 22:46:00 2022 +0000
@@ -43,3 +43,5 @@
        $(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md
diff -r 640257be8066 -r 0e3e9209295b external/mit/fstobdf/dist/Makefile.in
--- a/external/mit/fstobdf/dist/Makefile.in     Sun Oct 16 22:45:58 2022 +0000
+++ b/external/mit/fstobdf/dist/Makefile.in     Sun Oct 16 22:46:00 2022 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 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,
@@ -36,7 +36,17 @@
 #  PERFORMANCE OF THIS SOFTWARE.
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
 am__make_running_with_option = \
   case $${target_option-} in \
       ?) ;; \
@@ -101,14 +111,12 @@
 host_triplet = @host@
 bin_PROGRAMS = fstobdf$(EXEEXT)
 subdir = .
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-       $(top_srcdir)/configure $(am__configure_deps) \
-       $(srcdir)/config.h.in depcomp COPYING ChangeLog INSTALL README \
-       compile config.guess config.sub install-sh missing
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+       $(am__configure_deps) $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
@@ -136,7 +144,9 @@
 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)/chars.Po ./$(DEPDIR)/fstobdf.Po \
+       ./$(DEPDIR)/header.Po ./$(DEPDIR)/props.Po
 am__mv = mv -f
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -172,9 +182,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.
@@ -191,10 +201,10 @@
   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.md compile config.guess config.sub \
+       depcomp install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -230,9 +240,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$$'
@@ -253,8 +265,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@
@@ -264,13 +277,12 @@



Home | Main Index | Thread Index | Old Index