Source-Changes-HG archive

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

[xsrc/xorg]: xsrc/external/mit/xfsinfo/dist initial import of xfsinfo-1.0.6



details:   https://anonhg.NetBSD.org/xsrc/rev/066936e31c72
branches:  xorg
changeset: 10127:066936e31c72
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Mar 03 08:16:17 2019 +0000

description:
initial import of xfsinfo-1.0.6

diffstat:

 external/mit/xfsinfo/dist/ChangeLog       |    71 +
 external/mit/xfsinfo/dist/Makefile.am     |     2 +
 external/mit/xfsinfo/dist/Makefile.in     |    47 +-
 external/mit/xfsinfo/dist/README.md       |    21 +
 external/mit/xfsinfo/dist/aclocal.m4      |  2550 +++++++++++++++-------------
 external/mit/xfsinfo/dist/compile         |     2 +-
 external/mit/xfsinfo/dist/config.guess    |   834 ++++-----
 external/mit/xfsinfo/dist/config.sub      |   330 +-
 external/mit/xfsinfo/dist/configure       |    92 +-
 external/mit/xfsinfo/dist/configure.ac    |     4 +-
 external/mit/xfsinfo/dist/depcomp         |     2 +-
 external/mit/xfsinfo/dist/install-sh      |   354 +--
 external/mit/xfsinfo/dist/man/Makefile.in |    24 +-
 external/mit/xfsinfo/dist/missing         |     2 +-
 external/mit/xfsinfo/dist/xfsinfo.c       |     4 +-
 15 files changed, 2256 insertions(+), 2083 deletions(-)

diffs (truncated from 6446 to 300 lines):

diff -r ed17aba5d6f8 -r 066936e31c72 external/mit/xfsinfo/dist/ChangeLog
--- a/external/mit/xfsinfo/dist/ChangeLog       Sun Mar 03 08:16:16 2019 +0000
+++ b/external/mit/xfsinfo/dist/ChangeLog       Sun Mar 03 08:16:17 2019 +0000
@@ -1,3 +1,74 @@
+commit 213f67bac941815d6fb076ac9fdeddfd42eeaa58
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Feb 19 14:38:48 2019 -0800
+
+    xfsinfo 1.0.6
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5965f1cbee8fa54f7acef450f582000d8e7c99fc
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 17:04:08 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9a6eb96075dad5bd27e9f186ccd686db14f7f91f
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 22:08:11 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a52c1c5bd9751bed74c3bdc2b2c8dd1078f601f4
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Sep 23 16:58:16 2018 -0700
+
+    Correctly report maximum request size when sizeof(long) != 4
+    
+    The protocol spec says:
+      The MAXIMUM-REQUEST-LENGTH specifies the largest request size in
+      4-byte units that is accepted by the server
+    
+    The code worked on 32-bit platforms, where longs were 4 bytes, but
+    overreports the number of bytes allowed on platforms with 64-bit longs.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e45c10ebcf0ea9109f97adc2ecd1f28fcacf24ec
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 14:00:21 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit 5b02e6a65f0b9370d399a0187b711191631b85f0
+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 00540057a4ce52afc69041f400afe16952acdf91
+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 9428c7c023461a04b2cd553e932871cda353e14e
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Tue Dec 30 21:05:36 2014 -0800
diff -r ed17aba5d6f8 -r 066936e31c72 external/mit/xfsinfo/dist/Makefile.am
--- a/external/mit/xfsinfo/dist/Makefile.am     Sun Mar 03 08:16:16 2019 +0000
+++ b/external/mit/xfsinfo/dist/Makefile.am     Sun Mar 03 08:16:17 2019 +0000
@@ -39,3 +39,5 @@
        $(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md
diff -r ed17aba5d6f8 -r 066936e31c72 external/mit/xfsinfo/dist/Makefile.in
--- a/external/mit/xfsinfo/dist/Makefile.in     Sun Mar 03 08:16:16 2019 +0000
+++ b/external/mit/xfsinfo/dist/Makefile.in     Sun Mar 03 08:16:17 2019 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.15 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2014 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 = xfsinfo$(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
@@ -194,6 +202,9 @@
 CTAGS = ctags
 CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
+       ChangeLog INSTALL compile config.guess config.sub depcomp \
+       install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -295,6 +306,8 @@
 PACKAGE_VERSION = @PACKAGE_VERSION@
 PATH_SEPARATOR = @PATH_SEPARATOR@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
@@ -361,6 +374,7 @@
         xfsinfo.c
 
 MAINTAINERCLEANFILES = ChangeLog INSTALL
+EXTRA_DIST = README.md
 all: config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
@@ -381,7 +395,6 @@
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
        $(am__cd) $(top_srcdir) && \
          $(AUTOMAKE) --foreign Makefile
-.PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
@@ -673,15 +686,15 @@
        $(am__post_remove_distdir)
 
 dist-tarZ: distdir
-       @echo WARNING: "Support for shar distribution archives is" \
-                      "deprecated." >&2
+       @echo WARNING: "Support for distribution archives compressed with" \
+                      "legacy program 'compress' is deprecated." >&2
        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
        $(am__post_remove_distdir)
 
 dist-shar: distdir
-       @echo WARNING: "Support for distribution archives compressed with" \
-                      "legacy program 'compress' is deprecated." >&2
+       @echo WARNING: "Support for shar distribution archives is" \
+                      "deprecated." >&2
        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
        shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
        $(am__post_remove_distdir)
@@ -717,17 +730,17 @@
        esac
        chmod -R a-w $(distdir)
        chmod u+w $(distdir)
-       mkdir $(distdir)/_build $(distdir)/_inst
+       mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
        chmod a-w $(distdir)
        test -d $(distdir)/_build || exit 0; \
        dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
          && am__cwd=`pwd` \
-         && $(am__cd) $(distdir)/_build \
-         && ../configure \
+         && $(am__cd) $(distdir)/_build/sub \
+         && ../../configure \
            $(AM_DISTCHECK_CONFIGURE_FLAGS) \
            $(DISTCHECK_CONFIGURE_FLAGS) \
-           --srcdir=.. --prefix="$$dc_install_base" \
+           --srcdir=../.. --prefix="$$dc_install_base" \
          && $(MAKE) $(AM_MAKEFLAGS) \
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
          && $(MAKE) $(AM_MAKEFLAGS) check \
@@ -911,6 +924,8 @@
        ps ps-am tags tags-am uninstall uninstall-am \
        uninstall-binPROGRAMS
 
+.PRECIOUS: Makefile
+
 
 .PHONY: ChangeLog INSTALL
 
diff -r ed17aba5d6f8 -r 066936e31c72 external/mit/xfsinfo/dist/README.md
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/mit/xfsinfo/dist/README.md       Sun Mar 03 08:16:17 2019 +0000
@@ -0,0 +1,21 @@
+xfsinfo is a utility for displaying information about an X font
+server.  It is used to examine the capabilities of a server, the
+predefined values for various parameters used in communicating between
+clients and the server, and the font catalogues and alternate servers
+that are available.
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+  https://lists.x.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+  https://gitlab.freedesktop.org/xorg/app/xfsinfo
+
+Please submit bug reports and requests to merge patches there.
+
+For patch submission instructions, see:
+
+  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
+
diff -r ed17aba5d6f8 -r 066936e31c72 external/mit/xfsinfo/dist/aclocal.m4
--- a/external/mit/xfsinfo/dist/aclocal.m4      Sun Mar 03 08:16:16 2019 +0000
+++ b/external/mit/xfsinfo/dist/aclocal.m4      Sun Mar 03 08:16:17 2019 +0000
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.15 -*- Autoconf -*-
 
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
+# Copyright (C) 1996-2014 Free Software Foundation, Inc.
 
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -20,1162 +20,71 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
 
-# Copyright (C) 2002-2013 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_AUTOMAKE_VERSION(VERSION)
-# ----------------------------
-# Automake X.Y traces this macro to ensure aclocal.m4 has been
-# generated from the m4 files accompanying Automake X.Y.
-# (This private macro should not be called outside this file.)
-AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.14'
-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
-dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.14.1], [],
-      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
-])
-
-# _AM_AUTOCONF_VERSION(VERSION)
-# -----------------------------
-# aclocal traces this macro to find the Autoconf version.
-# This is a private macro too.  Using m4_define simplifies
-# the logic in aclocal, which can simply ignore this definition.
-m4_define([_AM_AUTOCONF_VERSION], [])
-
-# AM_SET_CURRENT_AUTOMAKE_VERSION
-# -------------------------------
-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.14.1])dnl
-m4_ifndef([AC_AUTOCONF_VERSION],
-  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
-
-# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-



Home | Main Index | Thread Index | Old Index