Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/xorg-cf-files/dist initial import of xorg-cf-...



details:   https://anonhg.NetBSD.org/xsrc/rev/73ea7d165480
branches:  trunk
changeset: 10791:73ea7d165480
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Aug 23 22:21:45 2021 +0000

description:
initial import of xorg-cf-files-1.0.7

diffstat:

 external/mit/xorg-cf-files/dist/ChangeLog    |    66 +
 external/mit/xorg-cf-files/dist/Imake.tmpl   |     2 +-
 external/mit/xorg-cf-files/dist/Makefile.in  |    62 +-
 external/mit/xorg-cf-files/dist/README       |    16 +-
 external/mit/xorg-cf-files/dist/aclocal.m4   |   552 +-
 external/mit/xorg-cf-files/dist/compile      |    17 +-
 external/mit/xorg-cf-files/dist/config.guess |  1685 +++--
 external/mit/xorg-cf-files/dist/config.sub   |  2900 ++++----
 external/mit/xorg-cf-files/dist/configure    |  7837 +++++++++++++------------
 external/mit/xorg-cf-files/dist/configure.ac |     4 +-
 external/mit/xorg-cf-files/dist/install-sh   |   172 +-
 external/mit/xorg-cf-files/dist/linux.cf     |     8 +-
 external/mit/xorg-cf-files/dist/missing      |    16 +-
 external/mit/xorg-cf-files/dist/site.def     |     2 +-
 14 files changed, 7243 insertions(+), 6096 deletions(-)

diffs (truncated from 19464 to 300 lines):

diff -r fb0223e626e1 -r 73ea7d165480 external/mit/xorg-cf-files/dist/ChangeLog
--- a/external/mit/xorg-cf-files/dist/ChangeLog Mon Aug 23 21:28:58 2021 +0000
+++ b/external/mit/xorg-cf-files/dist/ChangeLog Mon Aug 23 22:21:45 2021 +0000
@@ -1,3 +1,69 @@
+commit 8142029c10379002a3f00094060b78e9d55e8322
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Aug 1 17:59:14 2021 -0700
+
+    xorg-cf-files 1.0.7
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a6d4d6223ef75119d5373fa4cc04161bcdb4e769
+Author: Petr Písař < <ppisar%redhat.com@localhost>
+Date:   Mon Mar 29 10:45:10 2021 +0200
+
+    Imake.tmpl: Invoke "ar cq" with binutils
+    
+    GNU binutils 2.36 repurposed "l" modifier. It used to be ignored, now
+    it specifies the dependencies of a static library to be recorded in an
+    archive.
+    
+    That broke nas which uses imake as a build configiration tool:
+    
+    $ ar clq libdia.a dispatch.o dixutils.o events.o globals.o main.o resource.o swapreq.o        tables.o swaprep.o        audispatch.o auswap.o autables.o auevents.o auutil.o auconfig.o        
auprocess.o  nasconf.o lex.o gram.o
+    ar: libdeps specified more than once
+    
+    This patch changes AR command from "ar clq" to "ar cq" if binutils are
+    used.
+    
+    <https://bugzilla.redhat.com/show_bug.cgi?id=1943274>
+
+commit ab38ff414778dd115414da00b065c73608dfd0d9
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 7 20:17:33 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d9ac2abeabc4b39bd2c1f1d903d34b0d055a4b30
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Mon Nov 19 23:33:43 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d47131ed97ee491bb883c29ec0b106e8d5acfcd3
+Author: Than Ngo <than%redhat.com@localhost>
+Date:   Thu Jul 5 10:42:09 2018 -0400
+
+    linux: Update LinuxDistribution == LinuxRedHat section
+    
+    The imake config files in Fedora Core 5+ and Red Hat Enterprise Linux 5+
+    have been shipping with this patch, which has then shamefully languished
+    in the srpm and never been merged. Correct this oversight.
+    
+    [Than wrote the patch, I just wrote the commit message - ajax]
+    
+    Signed-off-by: Adam Jackson <ajax%redhat.com@localhost>
+
+commit fbeeff56339e4d15a4a42b5e19edc12befde8f6e
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 14:00:22 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
 commit 689d873a035c05a9d6a39feb13a028762bf781e0
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Mon Dec 21 17:25:23 2015 -0800
diff -r fb0223e626e1 -r 73ea7d165480 external/mit/xorg-cf-files/dist/Imake.tmpl
--- a/external/mit/xorg-cf-files/dist/Imake.tmpl        Mon Aug 23 21:28:58 2021 +0000
+++ b/external/mit/xorg-cf-files/dist/Imake.tmpl        Mon Aug 23 22:21:45 2021 +0000
@@ -1078,7 +1078,7 @@
 #define ArCmdBase ar
 #endif
 #ifndef ArCmd
-#if HasLargeTmp || SystemV4
+#if HasLargeTmp || SystemV4 || LinuxBinUtilsMajorVersion
 #define ArCmd ArCmdBase cq
 #else
 #define ArCmd ArCmdBase clq
diff -r fb0223e626e1 -r 73ea7d165480 external/mit/xorg-cf-files/dist/Makefile.in
--- a/external/mit/xorg-cf-files/dist/Makefile.in       Mon Aug 23 21:28:58 2021 +0000
+++ b/external/mit/xorg-cf-files/dist/Makefile.in       Mon Aug 23 22:21:45 2021 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.4 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,
@@ -165,6 +165,8 @@
 DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
 GZIP_ENV = --best
 DIST_TARGETS = dist-bzip2 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$$'
@@ -185,8 +187,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@
@@ -196,13 +199,12 @@
 ECHO_C = @ECHO_C@
 ECHO_N = @ECHO_N@
 ECHO_T = @ECHO_T@
-EGREP = @EGREP@
 ENCODINGSDIR = @ENCODINGSDIR@
+ETAGS = @ETAGS@
 EXEEXT = @EXEEXT@
 FILE_MAN_DIR = @FILE_MAN_DIR@
 FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
 FONTROOTDIR = @FONTROOTDIR@
-GREP = @GREP@
 INSTALL = @INSTALL@
 INSTALL_CMD = @INSTALL_CMD@
 INSTALL_DATA = @INSTALL_DATA@
@@ -230,6 +232,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@
@@ -280,6 +284,7 @@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
 psdir = @psdir@
+runstatedir = @runstatedir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 srcdir = @srcdir@
@@ -449,8 +454,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)
@@ -511,8 +516,10 @@
 
 cscope cscopelist:
 
+distdir: $(BUILT_SOURCES)
+       $(MAKE) $(AM_MAKEFLAGS) distdir-am
 
-distdir: $(DISTFILES)
+distdir-am: $(DISTFILES)
        $(am__remove_distdir)
        test -d "$(distdir)" || mkdir "$(distdir)"
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -555,7 +562,7 @@
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
        || chmod -R a+r "$(distdir)"
 dist-gzip: distdir
-       tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+       tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
        $(am__post_remove_distdir)
 dist-bzip2: distdir
        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
@@ -569,6 +576,10 @@
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
        $(am__post_remove_distdir)
 
+dist-zstd: distdir
+       tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
+       $(am__post_remove_distdir)
+
 dist-tarZ: distdir
        @echo WARNING: "Support for distribution archives compressed with" \
                       "legacy program 'compress' is deprecated." >&2
@@ -580,7 +591,7 @@
        @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
+       shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
        $(am__post_remove_distdir)
 
 dist-zip: distdir
@@ -598,7 +609,7 @@
 distcheck: dist
        case '$(DIST_ARCHIVES)' in \
        *.tar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
        *.tar.bz2*) \
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
        *.tar.lz*) \
@@ -608,9 +619,11 @@
        *.tar.Z*) \
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
        *.shar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
        *.zip*) \
          unzip $(distdir).zip ;;\
+       *.tar.zst*) \
+         zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
        esac
        chmod -R a-w $(distdir)
        chmod u+w $(distdir)
@@ -626,7 +639,7 @@
            $(DISTCHECK_CONFIGURE_FLAGS) \
            --srcdir=../.. --prefix="$$dc_install_base" \
          && $(MAKE) $(AM_MAKEFLAGS) \
-         && $(MAKE) $(AM_MAKEFLAGS) dvi \
+         && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
          && $(MAKE) $(AM_MAKEFLAGS) check \
          && $(MAKE) $(AM_MAKEFLAGS) install \
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
@@ -790,17 +803,18 @@
 .PHONY: all all-am all-local am--refresh check check-am clean \
        clean-generic cscopelist-am ctags-am dist dist-all dist-bzip2 \
        dist-gzip dist-hook dist-lzip dist-shar dist-tarZ dist-xz \
-       dist-zip distcheck distclean distclean-generic distcleancheck \
-       distdir distuninstallcheck dvi dvi-am html html-am info \
-       info-am install install-am install-configDATA install-data \
-       install-data-am install-dist_configDATA install-dvi \
-       install-dvi-am install-exec install-exec-am install-html \
-       install-html-am install-info install-info-am install-man \
-       install-pdf install-pdf-am install-ps install-ps-am \
-       install-strip installcheck installcheck-am installdirs \
-       maintainer-clean maintainer-clean-generic mostlyclean \
-       mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
-       uninstall-am uninstall-configDATA uninstall-dist_configDATA
+       dist-zip dist-zstd distcheck distclean distclean-generic \
+       distcleancheck distdir distuninstallcheck dvi dvi-am html \
+       html-am info info-am install install-am install-configDATA \
+       install-data install-data-am install-dist_configDATA \
+       install-dvi install-dvi-am install-exec install-exec-am \
+       install-html install-html-am install-info install-info-am \
+       install-man install-pdf install-pdf-am install-ps \
+       install-ps-am install-strip installcheck installcheck-am \
+       installdirs maintainer-clean maintainer-clean-generic \
+       mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
+       uninstall uninstall-am uninstall-configDATA \
+       uninstall-dist_configDATA
 
 .PRECIOUS: Makefile
 
diff -r fb0223e626e1 -r 73ea7d165480 external/mit/xorg-cf-files/dist/README
--- a/external/mit/xorg-cf-files/dist/README    Mon Aug 23 21:28:58 2021 +0000
+++ b/external/mit/xorg-cf-files/dist/README    Mon Aug 23 22:21:45 2021 +0000
@@ -18,25 +18,17 @@
 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
+        https://lists.x.org/mailman/listinfo/xorg
 
 The master development code repository can be found at:
 
-        git://anongit.freedesktop.org/git/xorg/util/cf
+        https://gitlab.freedesktop.org/xorg/util/cf
 
-        http://cgit.freedesktop.org/xorg/util/cf
+Please submit bug reports and requests to merge patches there.
 
 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
+       https://www.x.org/wiki/Development/Documentation/SubmittingPatches
 
 ------------------------------------------------------------------------------
 
diff -r fb0223e626e1 -r 73ea7d165480 external/mit/xorg-cf-files/dist/aclocal.m4
--- a/external/mit/xorg-cf-files/dist/aclocal.m4        Mon Aug 23 21:28:58 2021 +0000
+++ b/external/mit/xorg-cf-files/dist/aclocal.m4        Mon Aug 23 22:21:45 2021 +0000
@@ -1,6 +1,6 @@


Home | Main Index | Thread Index | Old Index