Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[xsrc/xorg]: xsrc/external/mit/ico/dist initial import of ico-1.0.6
details: https://anonhg.NetBSD.org/xsrc/rev/bf4a4d9923bc
branches: xorg
changeset: 7165:bf4a4d9923bc
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Sep 11 05:45:58 2022 +0000
description:
initial import of ico-1.0.6
diffstat:
external/mit/ico/dist/ChangeLog | 117 +-
external/mit/ico/dist/Makefile.am | 2 +
external/mit/ico/dist/Makefile.in | 102 +-
external/mit/ico/dist/README.md | 20 +
external/mit/ico/dist/aclocal.m4 | 2313 ++++----
external/mit/ico/dist/compile | 17 +-
external/mit/ico/dist/config.guess | 1488 +++--
external/mit/ico/dist/config.h.in | 10 +-
external/mit/ico/dist/config.sub | 2885 ++++++-----
external/mit/ico/dist/configure | 7826 +++++++++++++++++---------------
external/mit/ico/dist/configure.ac | 6 +-
external/mit/ico/dist/depcomp | 10 +-
external/mit/ico/dist/ico.c | 31 +-
external/mit/ico/dist/install-sh | 172 +-
external/mit/ico/dist/man/Makefile.in | 19 +-
external/mit/ico/dist/man/ico.man | 4 -
external/mit/ico/dist/missing | 16 +-
17 files changed, 8041 insertions(+), 6997 deletions(-)
diffs (truncated from 21122 to 300 lines):
diff -r 75514d476606 -r bf4a4d9923bc external/mit/ico/dist/ChangeLog
--- a/external/mit/ico/dist/ChangeLog Sun Sep 11 05:45:56 2022 +0000
+++ b/external/mit/ico/dist/ChangeLog Sun Sep 11 05:45:58 2022 +0000
@@ -1,3 +1,118 @@
+commit 3737d77a549d94043e0fbdb5f30562973da66fa8
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Tue Aug 30 17:13:18 2022 -0700
+
+ ico 1.0.6
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c125d8bac5b1629e36069c13a13919e542dc3a9b
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sat Aug 13 16:04:06 2022 -0700
+
+ Add cast to clear -Wsign-compare warning
+
+ ico.c: In function ‘do_ico_window’:
+ ico.c:1084:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ if (xev.xclient.data.l[0] == wm_delete_window)
+ ^~
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit fc54ce8a6f248e465a518f807dd5e51657b6e535
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sat Aug 13 15:59:06 2022 -0700
+
+ Rename global "poly" to fix gcc -Wshadow warnings
+
+ ico.c: In function ‘initPoly’:
+ ico.c:472:45: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
+ initPoly(struct closure *closure, Polyinfo *poly, int icoW, int icoH)
+ ^~~~
+ ico.c:238:18: note: shadowed declaration is here
+ static Polyinfo *poly; /* -obj: the poly to draw */
+ ^~~~
+ ico.c: In function ‘drawPoly’:
+ ico.c:567:45: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
+ drawPoly(struct closure *closure, Polyinfo *poly, GC gc,
+ ^~~~
+ ico.c:238:18: note: shadowed declaration is here
+ static Polyinfo *poly; /* -obj: the poly to draw */
+ ^~~~
+ ico.c: In function ‘giveObjHelp’:
+ ico.c:1137:13: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
+ Polyinfo *poly = polygons+i;
+ ^~~~
+ ico.c:238:18: note: shadowed declaration is here
+ static Polyinfo *poly; /* -obj: the poly to draw */
+ ^~~~
+ ico.c: In function ‘findpoly’:
+ ico.c:1152:13: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
+ Polyinfo *poly = polygons+i;
+ ^~~~
+ ico.c:238:18: note: shadowed declaration is here
+ static Polyinfo *poly; /* -obj: the poly to draw */
+ ^~~~
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9e5fe5ae18c3f6eae93cd1521645717295ce2c23
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sat Aug 13 15:56:22 2022 -0700
+
+ Apply scope reduction suggestions from cppcheck
+
+ [ico.c:587]: (style) The scope of the variable 'pxvz' can be reduced.
+ [ico.c:730]: (style) The scope of the variable 't' can be reduced.
+ [ico.c:1132]: (style) The scope of the variable 'poly' can be reduced.
+ [ico.c:1149]: (style) The scope of the variable 'poly' can be reduced.
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit bd5040cdec7770501619393021eeffeb591e73f6
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sat Apr 2 11:51:12 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 9fa65d638319f6c10abde4a637e596872ff159c7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 3 15:48:28 2021 -0800
+
+ Build xz tarballs instead of bzip2
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d46e6314e03009ae3519f69aaf5773b095822f34
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 3 15:48:26 2021 -0800
+
+ gitlab CI: add a basic build test
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4635817dde85c6a6197857b8bf09d47dbb3fed93
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Wed Nov 21 16:47:57 2018 -0800
+
+ Update configure.ac bug URL for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7aa38ed59eff2519138af7aa3b3b8a8e1270e408
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Nov 16 20:01:30 2018 -0800
+
+ Update README for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
commit e2a3e08d7a93738a88fdc889517f85d17371b626
Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
Date: Fri Mar 9 22:26:48 2018 -0800
@@ -556,7 +671,7 @@
configure cache, you cache it, and the cached value is probably wrong.
commit 9e0555e9d980217dd20d1f7385ff47514675629c
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Tue Jun 28 15:00:13 2005 +0000
Check in build system for ico
diff -r 75514d476606 -r bf4a4d9923bc external/mit/ico/dist/Makefile.am
--- a/external/mit/ico/dist/Makefile.am Sun Sep 11 05:45:56 2022 +0000
+++ b/external/mit/ico/dist/Makefile.am Sun Sep 11 05:45:58 2022 +0000
@@ -46,3 +46,5 @@
$(CHANGELOG_CMD)
dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md
diff -r 75514d476606 -r bf4a4d9923bc external/mit/ico/dist/Makefile.in
--- a/external/mit/ico/dist/Makefile.in Sun Sep 11 05:45:56 2022 +0000
+++ b/external/mit/ico/dist/Makefile.in Sun Sep 11 05:45:58 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,
@@ -143,7 +143,8 @@
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)/ico.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -179,9 +180,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.
@@ -198,12 +199,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 COPYING \
- ChangeLog INSTALL README compile config.guess config.sub \
+ ChangeLog INSTALL README.md compile config.guess config.sub \
depcomp install-sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
@@ -240,9 +238,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$$'
@@ -263,8 +263,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@
@@ -274,11 +275,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@
ICO_CFLAGS = @ICO_CFLAGS@
ICO_LIBS = @ICO_LIBS@
INSTALL = @INSTALL@
@@ -360,6 +360,7 @@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
+runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
@@ -382,6 +383,7 @@
polyinfo.h
MAINTAINERCLEANFILES = ChangeLog INSTALL
+EXTRA_DIST = README.md
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
@@ -408,8 +410,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)
@@ -488,7 +490,13 @@
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ico.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ico.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 $@ $<
@@ -609,8 +617,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'`; \
@@ -678,8 +688,9 @@
! -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
$(am__post_remove_distdir)
@@ -687,11 +698,14 @@
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
-
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
Home |
Main Index |
Thread Index |
Old Index