Source-Changes-HG archive

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

[xsrc/xorg]: xsrc/external/mit/imake/dist initial import of imake-1.0.9



details:   https://anonhg.NetBSD.org/xsrc/rev/47aa8d18237d
branches:  xorg
changeset: 7230:47aa8d18237d
user:      mrg <mrg%NetBSD.org@localhost>
date:      Fri Nov 11 07:52:26 2022 +0000

description:
initial import of imake-1.0.9

diffstat:

 external/mit/imake/dist/ChangeLog    |   157 +
 external/mit/imake/dist/Makefile.in  |    81 +-
 external/mit/imake/dist/README.md    |     2 +-
 external/mit/imake/dist/aclocal.m4   |  2313 ++++----
 external/mit/imake/dist/compile      |    17 +-
 external/mit/imake/dist/config.guess |  1488 +++--
 external/mit/imake/dist/config.h.in  |    10 +-
 external/mit/imake/dist/config.sub   |  2885 ++++++-----
 external/mit/imake/dist/configure    |  8301 ++++++++++++++++++---------------
 external/mit/imake/dist/configure.ac |     9 +-
 external/mit/imake/dist/depcomp      |    10 +-
 external/mit/imake/dist/imake.c      |    71 +-
 external/mit/imake/dist/install-sh   |   172 +-
 external/mit/imake/dist/missing      |    16 +-
 14 files changed, 8349 insertions(+), 7183 deletions(-)

diffs (truncated from 21870 to 300 lines):

diff -r 59884603472b -r 47aa8d18237d external/mit/imake/dist/ChangeLog
--- a/external/mit/imake/dist/ChangeLog Fri Nov 11 07:48:54 2022 +0000
+++ b/external/mit/imake/dist/ChangeLog Fri Nov 11 07:52:26 2022 +0000
@@ -1,3 +1,160 @@
+commit d9b33435847e27b44b8e357327728cb3e39d5822
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Oct 19 10:29:38 2022 -0700
+
+    imake 1.0.9
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 323bc318e9bfb5cea24dfca0a47031d1861506dd
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:44:37 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 187945b6f93f193d7b8a4580191a040186de0f18
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:36:45 2022 -0700
+
+    unifdef SIGNALRETURNSINT
+    
+    Signal handlers have been required to have a void return, not int,
+    since C89.  This #define hadn't been set in many years.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a511600f0391e7ecc2fa55e5cda222b5535422e8
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:30:20 2022 -0700
+
+    Simplify HAVE_MKSTEMP block
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4945a09e914c48a2a55dacdb24ffe2806378641b
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:24:18 2022 -0700
+
+    Make Emalloc() argument a size_t to match malloc()
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 8c0dfb819569baf3c388bf9915fea1d332a29908
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:18:31 2022 -0700
+
+    Fix -Wshadow warnings
+    
+    imake.c: In function ‘FindImakefile’:
+    imake.c:662:27: warning: declaration of ‘Imakefile’ shadows a global declaration [-Wshadow]
+     FindImakefile(const char *Imakefile)
+                               ^~~~~~~~~
+    imake.c:319:13: note: shadowed declaration is here
+     const char *Imakefile = NULL;
+                 ^~~~~~~~~
+    
+    imake.c: In function ‘define_os_defaults’:
+    imake.c:1636:9: warning: declaration of ‘name’ shadows a previous local [-Wshadow]
+        char name[PATH_MAX];
+             ^~~~
+    imake.c:1430:18: note: shadowed declaration is here
+      struct utsname *name = NULL;
+                      ^~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 0db44a83b2bb9b74a266d41e8b7d2731713d7eac
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Sep 17 09:11:05 2022 -0700
+
+    Fix -Wsign-compare warnings
+    
+    imake.c: In function ‘ask_sun_compiler_for_versions’:
+    imake.c:1200:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+       if (len < sizeof(cmdtorun)) {
+               ^
+    imake.c: In function ‘get_gcc’:
+    imake.c:1380:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+      for (i = 0; i < sizeof (gcc_path) / sizeof gcc_path[0]; i++) {
+                    ^
+    imake.c: In function ‘writetmpfile’:
+    imake.c:2027:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+      if (fwrite(buf, sizeof(char), cnt, fd) == -1)
+                                             ^~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 793d9d83620c50308f128e0a635224a2fbb14a62
+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>
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 3cee0855e54d539e042177a1ff64e08cc29c34b7
+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>
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 279d6a683ceed4e07a00acce2d122f48a6428dac
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jun 18 09:38:25 2022 -0700
+
+    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
+    
+    configure.ac:130: warning: AC_OUTPUT should be used without arguments.
+    configure.ac:130: You should run autoupdate.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit eebb170e09a82982027ed50acf6f48e82f90a29e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 15 16:10:21 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 9b3cb72304be1d79b865890a9bd05765806a05a5
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 15 15:18:43 2022 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 6861335df1bc9483a077bc81c4b327e009b63626
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 15 15:16:26 2022 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
 commit 5d1d5150e5863f019e407d572556a8a08e834c1e
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Sat Mar 16 16:25:02 2019 -0700
diff -r 59884603472b -r 47aa8d18237d external/mit/imake/dist/Makefile.in
--- a/external/mit/imake/dist/Makefile.in       Fri Nov 11 07:48:54 2022 +0000
+++ b/external/mit/imake/dist/Makefile.in       Fri Nov 11 07:52:26 2022 +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,
@@ -179,7 +179,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)/imake-imake.Po \
+       ./$(DEPDIR)/revpath.Po
 am__mv = mv -f
 AM_V_lt = $(am__v_lt_@AM_V@)
 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
@@ -205,8 +207,8 @@
     *) (install-info --version) >/dev/null 2>&1;; \
   esac
 DATA = $(appman_DATA)
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
-       $(LISP)config.h.in
+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.
@@ -223,13 +225,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
 AM_RECURSIVE_TARGETS = cscope
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-       ChangeLog INSTALL compile config.guess config.sub depcomp \
-       install-sh missing
+       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)
@@ -240,9 +239,11 @@
       || { sleep 5 && rm -rf "$(distdir)"; }; \
   else :; fi
 am__post_remove_distdir = $(am__remove_distdir)
-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$$'
@@ -267,6 +268,8 @@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CPP_PROGRAM = @CPP_PROGRAM@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
 CWARNFLAGS = @CWARNFLAGS@
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
@@ -276,11 +279,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@
 HAS_PERL = @HAS_PERL@
 INSTALL = @INSTALL@
 INSTALL_CMD = @INSTALL_CMD@
@@ -370,6 +372,7 @@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
 psdir = @psdir@
+runstatedir = @runstatedir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 srcdir = @srcdir@
@@ -450,8 +453,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)
@@ -569,8 +572,14 @@
 distclean-compile:
        -rm -f *.tab.c
 
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imake-imake.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/revpath.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imake-imake.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/revpath.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+       @$(MKDIR_P) $(@D)
+       @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
 
 .c.o:
 @am__fastdepCC_TRUE@   $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -679,8 +688,10 @@
 distclean-tags:
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
        -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
+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'`; \
@@ -723,8 +734,9 @@


Home | Main Index | Thread Index | Old Index