Source-Changes-HG archive

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

[xsrc/xorg]: xsrc/external/mit/xedit/dist initial import of xedit-1.2.3



details:   https://anonhg.NetBSD.org/xsrc/rev/c137db8778db
branches:  xorg
changeset: 7028:c137db8778db
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Jul 11 08:40:12 2022 +0000

description:
initial import of xedit-1.2.3

diffstat:

 external/mit/xedit/dist/ChangeLog       |   117 +-
 external/mit/xedit/dist/Makefile.in     |   507 +-
 external/mit/xedit/dist/aclocal.m4      |  2539 +++++----
 external/mit/xedit/dist/ar-lib          |    19 +-
 external/mit/xedit/dist/compile         |   138 +-
 external/mit/xedit/dist/config.guess    |  1697 +++--
 external/mit/xedit/dist/config.h.in     |    10 +-
 external/mit/xedit/dist/config.sub      |  2913 +++++-----
 external/mit/xedit/dist/configure       |  8337 ++++++++++++++++--------------
 external/mit/xedit/dist/configure.ac    |     6 +-
 external/mit/xedit/dist/depcomp         |    10 +-
 external/mit/xedit/dist/install-sh      |   416 +-
 external/mit/xedit/dist/lisp/core.c     |     2 +-
 external/mit/xedit/dist/lisp/math.c     |     2 +-
 external/mit/xedit/dist/lisp/mp/mpi.c   |     2 +-
 external/mit/xedit/dist/lisp/read.c     |     2 +-
 external/mit/xedit/dist/man/Makefile.in |    37 +-
 external/mit/xedit/dist/man/xedit.man   |    10 -
 external/mit/xedit/dist/missing         |    18 +-
 external/mit/xedit/dist/util.c          |     6 +-
 20 files changed, 9165 insertions(+), 7623 deletions(-)

diffs (truncated from 23549 to 300 lines):

diff -r 343abec4149c -r c137db8778db external/mit/xedit/dist/ChangeLog
--- a/external/mit/xedit/dist/ChangeLog Mon Jul 11 08:40:11 2022 +0000
+++ b/external/mit/xedit/dist/ChangeLog Mon Jul 11 08:40:12 2022 +0000
@@ -1,3 +1,110 @@
+commit 4a6d485fd3d35fe9d58927971bfe653a425becc1
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Apr 3 15:01:12 2022 -0700
+
+    xedit 1.2.3
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e7641ca13c6d7195f057b08d091373f392785f0a
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Apr 2 12:53:17 2022 -0700
+
+    man page: remove out-of-date COPYRIGHT section
+    
+    The information previously listed here didn't match what is present in
+    the source code or the COPYING file, and the X(7) man page doesn't list
+    any license information as this had claimed.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 02055920e23db6a42710cac0de324137e5f333e9
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Dec 4 12:05:41 2021 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 18d2efc2181fc05ec5ef37f4094b18f3e48b4dc2
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Dec 4 12:05:38 2021 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f3ce9aa82e26700d3c7ebe772ba1449bea0fdc31
+Author: Jeremy Huddleston Sequoia <jeremyhu%apple.com@localhost>
+Date:   Tue Jan 5 10:00:11 2021 -0800
+
+    Followup to previous commit to use isinfinite for darwin rather than arm64.
+    
+    It's deprecated on Intel as well as of macOS 10.9.  This also restores
+    behavior on other platforms that define __arm64__.
+    
+    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu%apple.com@localhost>
+
+commit 97bb6ccc9ed75f38e339728642a9154004a93647
+Author: Gary Palter <palter%clozure.com@localhost>
+Date:   Sat Nov 28 23:01:17 2020 -0500
+
+    Minimal changes to build on Apple silicon (i.e., new Apple M1 Macs)
+
+commit 420fa2a8a4dd7294d0b23696103d7887ae570e43
+Author: Niclas Zeising <zeising%daemonic.se@localhost>
+Date:   Wed Sep 11 22:30:16 2019 +0200
+
+    Fix segfault when tags file isn't found
+    
+    Fix a segfault when the tags file isn't found.  xedit tries to construct
+    a path to the tags file (by defailt ${HOME}/tags), using amongst other
+    things basename(3).  However, basename is called with an immutable
+    string which causes segfaults on FreeBSD, since basename(3) uses the
+    provided buffer to store it's result.
+    Change the code to duplicate the string with strdup() and call basename
+    on the duplicated string instead.
+
+commit abbacff9e01616f08c469637fa24132e151446f9
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 17:02:21 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 0d2b1ae91f7cfee5a96d49f1bb6c5e04cc04a618
+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 3cf58b05696ac7d06e43640ac1b70fd6ab141cfa
+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 7a8d28bc4cfb00daa40ca38d4cdfefe750ac2a76
+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 436a71e7390c51134f4fac629bf8d4a98b0592c5
 Author: Matt Turner <mattst88%gmail.com@localhost>
 Date:   Sat Feb 21 13:43:04 2015 -0800
@@ -94,7 +201,7 @@
     Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
 
 commit 505fc48999ca2c7040a47900697d95c6ab78d009
-Author: Stéphane Aulery <lkppo%free.fr@localhost>
+Author: Stéphane Aulery  <lkppo%free.fr@localhost>
 Date:   Sat Jul 6 15:40:00 2013 +0200
 
     Drop CRAY support
@@ -970,7 +1077,7 @@
     Don't override , automake predefines it.
 
 commit dad8235ff737556e2eaa645a5d7b48641eba270a
-Author: Kristian Høgsberg <krh%redhat.com@localhost>
+Author: Kristian Høgsberg  <krh%redhat.com@localhost>
 Date:   Tue Sep 27 20:20:36 2005 +0000
 
     Only add -DINCLUDE_XPRINT_SUPPORT if the Xaw version supports it.
@@ -1016,7 +1123,7 @@
         configure cache, you cache it, and the cached value is probably wrong.
 
 commit c46761f286f8c9a41ee0e510211b5ed667a78479
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 12 18:45:46 2005 +0000
 
     - lib/lbxutil/lbxutil.pc.in: link to lbxutil, not Xfixes
@@ -1028,7 +1135,7 @@
     - add forgotten lbxproxytrans.c file
 
 commit fc1f512d7cd7876f79190511315fe219667b2e81
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 12 17:41:52 2005 +0000
 
     Build system for xprint
@@ -1161,7 +1268,7 @@
         Xprint support optional (Bug #1273, Roland Mainz).
 
 commit 6b12ddbb33c8722e50e7f69f456ba0ba72b76ddd
-Author: Kristian Høgsberg <krh%redhat.com@localhost>
+Author: Kristian Høgsberg  <krh%redhat.com@localhost>
 Date:   Mon Aug 16 16:36:16 2004 +0000
 
     As discussed and agreed on on the release-wranglers meeting of August 16,
diff -r 343abec4149c -r c137db8778db external/mit/xedit/dist/Makefile.in
--- a/external/mit/xedit/dist/Makefile.in       Mon Jul 11 08:40:11 2022 +0000
+++ b/external/mit/xedit/dist/Makefile.in       Mon Jul 11 08:40:12 2022 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.4 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,
@@ -38,7 +38,17 @@
 
 
 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 \
       ?) ;; \
@@ -109,21 +119,22 @@
 @NEED_REALPATH_TRUE@am__append_4 = realpath.c
 @NEED_STRCASECMP_TRUE@am__append_5 = strcasecmp.c
 subdir = .
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-       $(top_srcdir)/configure $(am__configure_deps) \
-       $(srcdir)/config.h.in depcomp $(dist_lisp_DATA) \
-       $(dist_progmodes_DATA) AUTHORS COPYING ChangeLog INSTALL \
-       README ar-lib 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) $(dist_lisp_DATA) $(dist_progmodes_DATA) \
+       $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
+am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appdefaultdir)" \
+       "$(DESTDIR)$(lispdir)" "$(DESTDIR)$(progmodesdir)"
+PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
 LIBRARIES = $(noinst_LIBRARIES)
 ARFLAGS = cru
 AM_V_AR = $(am__v_AR_@AM_V@)
@@ -173,18 +184,15 @@
 am_libre_a_OBJECTS = lisp/re/libre_a-re.$(OBJEXT) \
        lisp/re/libre_a-rec.$(OBJEXT) lisp/re/libre_a-reo.$(OBJEXT)
 libre_a_OBJECTS = $(am_libre_a_OBJECTS)
-am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appdefaultdir)" \
-       "$(DESTDIR)$(lispdir)" "$(DESTDIR)$(progmodesdir)"
-PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
 am__lisp_lsp_SOURCES_DIST = hash.c lisp/lsp.c realpath.c strcasecmp.c
 @NEED_REALPATH_TRUE@am__objects_2 = lisp_lsp-realpath.$(OBJEXT)
 @NEED_STRCASECMP_TRUE@am__objects_3 = lisp_lsp-strcasecmp.$(OBJEXT)
-am_lisp_lsp_OBJECTS = lisp_lsp-hash.$(OBJEXT) \
-       lisp/lisp_lsp-lsp.$(OBJEXT) $(am__objects_2) $(am__objects_3)
+am_lisp_lsp_OBJECTS = lisp_lsp-hash.$(OBJEXT) lisp/lsp-lsp.$(OBJEXT) \
+       $(am__objects_2) $(am__objects_3)
 lisp_lsp_OBJECTS = $(am_lisp_lsp_OBJECTS)
 lisp_lsp_LINK = $(CCLD) $(lisp_lsp_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
        $(LDFLAGS) -o $@
-am_lisp_re_tests_OBJECTS = lisp/re/lisp_re_tests-tests.$(OBJEXT)
+am_lisp_re_tests_OBJECTS = lisp/re/tests-tests.$(OBJEXT)
 lisp_re_tests_OBJECTS = $(am_lisp_re_tests_OBJECTS)
 lisp_re_tests_LINK = $(CCLD) $(lisp_re_tests_CFLAGS) $(CFLAGS) \
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
@@ -216,7 +224,45 @@
 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)/lisp_lsp-hash.Po \
+       ./$(DEPDIR)/lisp_lsp-realpath.Po \
+       ./$(DEPDIR)/lisp_lsp-strcasecmp.Po \
+       ./$(DEPDIR)/xedit-commands.Po ./$(DEPDIR)/xedit-hash.Po \
+       ./$(DEPDIR)/xedit-hook.Po ./$(DEPDIR)/xedit-ispell.Po \
+       ./$(DEPDIR)/xedit-lisp.Po ./$(DEPDIR)/xedit-options.Po \
+       ./$(DEPDIR)/xedit-realpath.Po ./$(DEPDIR)/xedit-strcasecmp.Po \
+       ./$(DEPDIR)/xedit-tags.Po ./$(DEPDIR)/xedit-util.Po \
+       ./$(DEPDIR)/xedit-xedit.Po \
+       lisp/$(DEPDIR)/liblisp_a-bytecode.Po \
+       lisp/$(DEPDIR)/liblisp_a-core.Po \
+       lisp/$(DEPDIR)/liblisp_a-debugger.Po \
+       lisp/$(DEPDIR)/liblisp_a-format.Po \
+       lisp/$(DEPDIR)/liblisp_a-getenv.Po \
+       lisp/$(DEPDIR)/liblisp_a-hash.Po \
+       lisp/$(DEPDIR)/liblisp_a-helper.Po \
+       lisp/$(DEPDIR)/liblisp_a-io.Po \
+       lisp/$(DEPDIR)/liblisp_a-lisp.Po \
+       lisp/$(DEPDIR)/liblisp_a-math.Po \
+       lisp/$(DEPDIR)/liblisp_a-package.Po \
+       lisp/$(DEPDIR)/liblisp_a-pathname.Po \
+       lisp/$(DEPDIR)/liblisp_a-read.Po \
+       lisp/$(DEPDIR)/liblisp_a-regex.Po \
+       lisp/$(DEPDIR)/liblisp_a-require.Po \
+       lisp/$(DEPDIR)/liblisp_a-setenv.Po \
+       lisp/$(DEPDIR)/liblisp_a-stream.Po \
+       lisp/$(DEPDIR)/liblisp_a-string.Po \
+       lisp/$(DEPDIR)/liblisp_a-struct.Po \
+       lisp/$(DEPDIR)/liblisp_a-time.Po \
+       lisp/$(DEPDIR)/liblisp_a-write.Po \
+       lisp/$(DEPDIR)/liblisp_a-xedit.Po lisp/$(DEPDIR)/lsp-lsp.Po \
+       lisp/mp/$(DEPDIR)/libmp_a-mp.Po \
+       lisp/mp/$(DEPDIR)/libmp_a-mpi.Po \
+       lisp/mp/$(DEPDIR)/libmp_a-mpr.Po \
+       lisp/re/$(DEPDIR)/libre_a-re.Po \
+       lisp/re/$(DEPDIR)/libre_a-rec.Po \
+       lisp/re/$(DEPDIR)/libre_a-reo.Po \
+       lisp/re/$(DEPDIR)/tests-tests.Po
 am__mv = mv -f
 AM_V_lt = $(am__v_lt_@AM_V@)
 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
@@ -287,9 +333,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



Home | Main Index | Thread Index | Old Index