Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[xsrc/xorg]: xsrc/external/mit/editres/dist initial import of editres-1.0.8
details: https://anonhg.NetBSD.org/xsrc/rev/1ca1ee1fac96
branches: xorg
changeset: 7001:1ca1ee1fac96
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Jul 11 07:31:32 2022 +0000
description:
initial import of editres-1.0.8
diffstat:
external/mit/editres/dist/ChangeLog | 107 +-
external/mit/editres/dist/Makefile.am | 3 +
external/mit/editres/dist/Makefile.in | 145 +-
external/mit/editres/dist/README.md | 37 +
external/mit/editres/dist/aclocal.m4 | 2313 +++---
external/mit/editres/dist/app-defaults/Editres | 4 +-
external/mit/editres/dist/comm.c | 16 +-
external/mit/editres/dist/compile | 17 +-
external/mit/editres/dist/config.guess | 1685 +++--
external/mit/editres/dist/config.h.in | 10 +-
external/mit/editres/dist/config.sub | 2911 ++++----
external/mit/editres/dist/configure | 7861 ++++++++++++-----------
external/mit/editres/dist/configure.ac | 8 +-
external/mit/editres/dist/depcomp | 10 +-
external/mit/editres/dist/editres.c | 4 +-
external/mit/editres/dist/editresP.h | 22 +-
external/mit/editres/dist/geometry.c | 2 +-
external/mit/editres/dist/handler.c | 26 +-
external/mit/editres/dist/install-sh | 172 +-
external/mit/editres/dist/man/Makefile.in | 19 +-
external/mit/editres/dist/missing | 16 +-
external/mit/editres/dist/setvalues.c | 2 +-
external/mit/editres/dist/svpopup.c | 2 +-
external/mit/editres/dist/utils.c | 18 +-
external/mit/editres/dist/widgets.c | 12 +-
external/mit/editres/dist/wtree.c | 6 +-
26 files changed, 8275 insertions(+), 7153 deletions(-)
diffs (truncated from 21899 to 300 lines):
diff -r afceb7b423f1 -r 1ca1ee1fac96 external/mit/editres/dist/ChangeLog
--- a/external/mit/editres/dist/ChangeLog Mon Jul 11 07:31:31 2022 +0000
+++ b/external/mit/editres/dist/ChangeLog Mon Jul 11 07:31:32 2022 +0000
@@ -1,3 +1,106 @@
+commit 2f248e96dcde3be96c21142c032f517aa5a06554
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Apr 3 11:30:51 2022 -0700
+
+ editres 1.0.8
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c62da59948e45ea316d74b98d33eba2a5b6265aa
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 3 14:45:39 2021 -0800
+
+ Build xz tarballs instead of bzip2
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9f60785b6091b5828ae28eb5763a1b8e5023a025
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 3 14:45:34 2021 -0800
+
+ gitlab CI: add a basic build test
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit ae0c5a4048bec6ebcc61a8cd4abbe79ac367c53e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Nov 28 14:25:45 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 15be5d8d295f4d7c779845cd11e06c08cfacad85
+Author: Matt Turner <mattst88%gmail.com@localhost>
+Date: Fri Mar 27 09:56:26 2020 -0700
+
+ Add const to silence warning
+
+ widgets.c:817:28: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
+
+ Signed-off-by: Matt Turner <mattst88%gmail.com@localhost>
+
+commit a97f306fd57878158962eb873c23f03a5c6da9db
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jun 2 11:38:57 2019 -0700
+
+ Clear -Wredundant-decls warnings from gcc 7.3
+
+ comm.c:55:15: warning: redundant redeclaration of ‘CM_entries’ [-Wredundant-decls]
+ extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES];
+ ^~~~~~~~~~
+ In file included from comm.c:46:0:
+ editresP.h:339:15: note: previous declaration of ‘CM_entries’ was here
+ extern Widget CM_entries[NUM_CM_ENTRIES];
+ ^~~~~~~~~~
+ comm.c:55:43: warning: redundant redeclaration of ‘TM_entries’ [-Wredundant-decls]
+ extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES];
+ ^~~~~~~~~~
+ In file included from comm.c:46:0:
+ editresP.h:343:15: note: previous declaration of ‘TM_entries’ was here
+ extern Widget TM_entries[NUM_TM_ENTRIES];
+ ^~~~~~~~~~
+
+ handler.c:502:16: warning: redundant redeclaration of ‘do_get_values’ [-Wredundant-decls]
+ extern Boolean do_get_values;
+ ^~~~~~~~~~~~~
+ In file included from handler.c:40:0:
+ editresP.h:334:16: note: previous declaration of ‘do_get_values’ was here
+ extern Boolean do_get_values;
+ ^~~~~~~~~~~~~
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 43c19175385f98894c1633ed57ec6778e17a38a6
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jun 2 11:35:43 2019 -0700
+
+ Clear 208 out of 210 -Wdiscarded-qualifiers warnings from gcc 7.3
+
+ Depends on building with a libXt version that defines String as a
+ const char * if _CONST_X_STRING is defined.
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 2b838dbd23f2ae2a3ff479003b13e03563624009
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Wed Nov 21 16:46:01 2018 -0800
+
+ Update configure.ac bug URL for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 90a95d3f6a661b76b0768b454c00468eb65e47fc
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Nov 16 19:45:13 2018 -0800
+
+ Update README for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
commit 9644bfe7f56eb8c1cc795b724a6fc95ae4172d43
Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
Date: Sun Mar 4 18:43:17 2018 -0800
@@ -655,13 +758,13 @@
fix rules to work with non-GNU make and outside of $srcdir
commit d15169a6a4c05a63b17ae630c9ade3b14a3d7181
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Mon Jun 27 22:30:58 2005 +0000
Use $(foreach ) instead of listing the appdefaults files twice
commit 349b2847900798cacdfe358eb8eb4773106657e8
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Mon Jun 27 21:35:04 2005 +0000
- Fix string test in lib/Xaw/xaw.m4
diff -r afceb7b423f1 -r 1ca1ee1fac96 external/mit/editres/dist/Makefile.am
--- a/external/mit/editres/dist/Makefile.am Mon Jul 11 07:31:31 2022 +0000
+++ b/external/mit/editres/dist/Makefile.am Mon Jul 11 07:31:32 2022 +0000
@@ -23,6 +23,7 @@
bin_PROGRAMS = editres
AM_CFLAGS = $(CWARNFLAGS) $(EDITRES_CFLAGS)
+AM_CPPFLAGS = -D_CONST_X_STRING
editres_LDADD = $(EDITRES_LIBS)
editres_SOURCES = \
@@ -59,3 +60,5 @@
$(CHANGELOG_CMD)
dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md
diff -r afceb7b423f1 -r 1ca1ee1fac96 external/mit/editres/dist/Makefile.in
--- a/external/mit/editres/dist/Makefile.in Mon Jul 11 07:31:31 2022 +0000
+++ b/external/mit/editres/dist/Makefile.in Mon Jul 11 07:31:32 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,
@@ -148,7 +148,12 @@
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)/actions.Po ./$(DEPDIR)/comm.Po \
+ ./$(DEPDIR)/editres.Po ./$(DEPDIR)/geometry.Po \
+ ./$(DEPDIR)/handler.Po ./$(DEPDIR)/setvalues.Po \
+ ./$(DEPDIR)/svpopup.Po ./$(DEPDIR)/utils.Po \
+ ./$(DEPDIR)/widgets.Po ./$(DEPDIR)/wtree.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -212,9 +217,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.
@@ -231,12 +236,9 @@
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 AUTHORS \
- COPYING ChangeLog INSTALL README compile config.guess \
+ 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)
@@ -273,9 +275,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$$'
@@ -298,8 +302,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@
@@ -311,11 +316,10 @@
ECHO_T = @ECHO_T@
EDITRES_CFLAGS = @EDITRES_CFLAGS@
EDITRES_LIBS = @EDITRES_LIBS@
-EGREP = @EGREP@
+ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FILE_MAN_DIR = @FILE_MAN_DIR@
FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
-GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_CMD = @INSTALL_CMD@
INSTALL_DATA = @INSTALL_DATA@
@@ -395,6 +399,7 @@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
+runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
@@ -405,6 +410,7 @@
top_srcdir = @top_srcdir@
SUBDIRS = man
AM_CFLAGS = $(CWARNFLAGS) $(EDITRES_CFLAGS)
+AM_CPPFLAGS = -D_CONST_X_STRING
editres_LDADD = $(EDITRES_LIBS)
editres_SOURCES = \
actions.c \
@@ -427,6 +433,7 @@
app-defaults/Editres
MAINTAINERCLEANFILES = ChangeLog INSTALL
+EXTRA_DIST = README.md
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
@@ -453,8 +460,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)
@@ -533,16 +540,22 @@
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actions.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/comm.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/editres.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geometry.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/handler.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/setvalues.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/svpopup.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wtree.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actions.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/comm.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/editres.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geometry.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/handler.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/setvalues.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/svpopup.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wtree.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
Home |
Main Index |
Thread Index |
Old Index