Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[xsrc/trunk]: xsrc/external/mit/libFS/dist initial import of libFS-1.0.8
details: https://anonhg.NetBSD.org/xsrc/rev/43cef9ca0f09
branches: trunk
changeset: 10215:43cef9ca0f09
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Mar 11 06:33:49 2019 +0000
description:
initial import of libFS-1.0.8
diffstat:
external/mit/libFS/dist/ChangeLog | 146 +
external/mit/libFS/dist/Makefile.am | 2 +
external/mit/libFS/dist/Makefile.in | 6 +-
external/mit/libFS/dist/README.md | 21 +
external/mit/libFS/dist/aclocal.m4 | 17945 ++++++++++++++--------------
external/mit/libFS/dist/config.guess | 679 +-
external/mit/libFS/dist/config.h.in | 9 +-
external/mit/libFS/dist/config.sub | 304 +-
external/mit/libFS/dist/configure | 2362 ++-
external/mit/libFS/dist/configure.ac | 6 +-
external/mit/libFS/dist/ltmain.sh | 5812 +++++---
external/mit/libFS/dist/src/FSFontInfo.c | 32 +-
external/mit/libFS/dist/src/FSFtNames.c | 23 +-
external/mit/libFS/dist/src/FSListCats.c | 28 +-
external/mit/libFS/dist/src/FSOpenFont.c | 17 +-
external/mit/libFS/dist/src/FSQGlyphs.c | 28 +-
external/mit/libFS/dist/src/FSQXExt.c | 28 +-
external/mit/libFS/dist/src/FSQXInfo.c | 3 +-
external/mit/libFS/dist/src/FSQuExt.c | 13 +-
external/mit/libFS/dist/src/FSSetCats.c | 31 +-
external/mit/libFS/dist/src/FSlibint.h | 3 +
external/mit/libFS/dist/src/Makefile.in | 3 +
external/mit/libFS/dist/test/Makefile.in | 3 +
23 files changed, 15192 insertions(+), 12312 deletions(-)
diffs (truncated from 35843 to 300 lines):
diff -r 2de4759933b5 -r 43cef9ca0f09 external/mit/libFS/dist/ChangeLog
--- a/external/mit/libFS/dist/ChangeLog Mon Mar 11 05:08:42 2019 +0000
+++ b/external/mit/libFS/dist/ChangeLog Mon Mar 11 06:33:49 2019 +0000
@@ -1,3 +1,149 @@
+commit 02de7390e58f00a3701f656a2b205dc6c8dafb58
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Mar 10 15:39:06 2019 -0700
+
+ libFS 1.0.8
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e8642e3203f9793c2cca19b2df334b4160c56742
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 7 19:29:44 2018 -0800
+
+ Update configure.ac bug URL for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 6052aa6479be8059c9294ced6e3a33e2316bb2d5
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Nov 18 21:46:25 2018 -0800
+
+ Update README for gitlab migration
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d3af455fb236931fadb6e863e5a4ed509c61d868
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 19:26:02 2018 -0700
+
+ Don't try to send strings larger than protocol allows in requests
+
+ Also clears up all "Loss of precision on implicit conversion" warnings
+ from Oracle's Parfait static analyser.
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 12d64c65200930885c694d018ec66d8946b3a214
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 13:51:25 2018 -0700
+
+ Fix sign comparison warning in loop index in FSQueryXInfo
+
+ FSQXInfo.c: In function â??FSQueryXInfoâ??:
+ FSQXInfo.c:110:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (j=0; j<props->num_offsets; j++)
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 3eb9c6bbfb4e6caf6efb5dec8744f257c2d63be7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 13:47:35 2018 -0700
+
+ Fix sign comparison warning in loop indexes in FSQueryXExtents{8,16}
+
+ FSQXExt.c: In function â??FSQueryXExtents8â??:
+ FSQXExt.c:105:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i = 0; i < reply.num_extents; i++) {
+ ^
+ FSQXExt.c: In function â??FSQueryXExtents16â??:
+ FSQXExt.c:141:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i = 0; i < str_len; i++) {
+ ^
+ FSQXExt.c:165:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i = 0; i < reply.num_extents; i++) {
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 8213b7070c039ea16d0112eff01cc7420031c089
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 13:44:59 2018 -0700
+
+ Fix sign comparison warning in loop indexes in FSQueryXBitmaps{8,16}
+
+ FSQGlyphs.c: In function â??FSQueryXBitmaps8â??:
+ FSQGlyphs.c:113:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i=0; i<reply.num_chars; i++)
+ ^
+ FSQGlyphs.c: In function â??FSQueryXBitmaps16â??:
+ FSQGlyphs.c:160:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i = 0; i < str_len; i++) {
+ ^
+ FSQGlyphs.c:198:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i=0; i<reply.num_chars; i++)
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit caee4c2bf188484f117e5bd866e3b56c8506593e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 13:40:30 2018 -0700
+
+ Fix sign comparison warning in loop index in FSListCatalogues
+
+ FSListCats.c: In function â??FSListCataloguesâ??:
+ FSListCats.c:104:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (i = 0; i < rep.num_catalogues; i++) {
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit b37bbeb7ca931b0f5170e877b0bbfd0959d344b7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Sep 23 13:34:04 2018 -0700
+
+ Fix sign comparison warning in loop index in FSListFontsWithXInfo
+
+ FSFontInfo.c: In function â??FSListFontsWithXInfoâ??:
+ FSFontInfo.c:182:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
+ for (j=0; j<pi[i]->num_offsets; j++)
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit fed3794a5204eace3926f13573b10f0b51f85fbc
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date: Thu Jan 26 13:52:49 2017 +1000
+
+ autogen: add default patch prefix
+
+ Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit 89f456580ea831652f119158f8b257dfd531a7e1
+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 4ef3748251ac2139b73b137dcef529421447652b
+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 a9db12661e7412dd935706c92db6d7bc46238782
Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
Date: Thu Apr 30 21:14:46 2015 -0700
diff -r 2de4759933b5 -r 43cef9ca0f09 external/mit/libFS/dist/Makefile.am
--- a/external/mit/libFS/dist/Makefile.am Mon Mar 11 05:08:42 2019 +0000
+++ b/external/mit/libFS/dist/Makefile.am Mon Mar 11 06:33:49 2019 +0000
@@ -42,3 +42,5 @@
lint:
(cd src && $(MAKE) $(MFLAGS) lint)
endif LINT
+
+EXTRA_DIST = README.md
diff -r 2de4759933b5 -r 43cef9ca0f09 external/mit/libFS/dist/Makefile.in
--- a/external/mit/libFS/dist/Makefile.in Mon Mar 11 05:08:42 2019 +0000
+++ b/external/mit/libFS/dist/Makefile.in Mon Mar 11 06:33:49 2019 +0000
@@ -209,7 +209,7 @@
CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
- $(srcdir)/libfs.pc.in COPYING ChangeLog INSTALL README compile \
+ $(srcdir)/libfs.pc.in COPYING ChangeLog INSTALL compile \
config.guess config.sub install-sh ltmain.sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
@@ -311,6 +311,7 @@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MALLOC_ZERO_CFLAGS = @MALLOC_ZERO_CFLAGS@
MANIFEST_TOOL = @MANIFEST_TOOL@
@@ -333,6 +334,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@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
@@ -400,6 +403,7 @@
pkgconfig_DATA = libfs.pc
dist_doc_DATA = doc/FSlib.txt
MAINTAINERCLEANFILES = ChangeLog INSTALL
+EXTRA_DIST = README.md
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
diff -r 2de4759933b5 -r 43cef9ca0f09 external/mit/libFS/dist/README.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/mit/libFS/dist/README.md Mon Mar 11 06:33:49 2019 +0000
@@ -0,0 +1,21 @@
+libFS - X Font Service client library
+-------------------------------------
+
+This library is used by clients of X Font Servers (xfs), such as
+xfsinfo, fslsfonts, and the X servers themselves.
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+ https://lists.x.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+ https://gitlab.freedesktop.org/xorg/lib/libFS
+
+Please submit bug reports and requests to merge patches there.
+
+For patch submission instructions, see:
+
+ https://www.x.org/wiki/Development/Documentation/SubmittingPatches
+
diff -r 2de4759933b5 -r 43cef9ca0f09 external/mit/libFS/dist/aclocal.m4
--- a/external/mit/libFS/dist/aclocal.m4 Mon Mar 11 05:08:42 2019 +0000
+++ b/external/mit/libFS/dist/aclocal.m4 Mon Mar 11 06:33:49 2019 +0000
@@ -1150,8622 +1150,71 @@
AC_SUBST([am__untar])
]) # _AM_PROG_TAR
-# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
-#
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
-# Written by Gordon Matzigkeit, 1996
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-m4_define([_LT_COPYING], [dnl
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
-# Written by Gordon Matzigkeit, 1996
-#
-# This file is part of GNU Libtool.
-#
-# GNU Libtool is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
-#
-# GNU Libtool is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Libtool; see the file COPYING. If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-])
-
-# serial 57 LT_INIT
-
-
-# LT_PREREQ(VERSION)
-# ------------------
-# Complain and exit if this libtool version is less that VERSION.
-m4_defun([LT_PREREQ],
-[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
- [m4_default([$3],
- [m4_fatal([Libtool version $1 or higher is required],
- 63)])],
- [$2])])
-
-
-# _LT_CHECK_BUILDDIR
-# ------------------
-# Complain if the absolute build directory name contains unusual characters
-m4_defun([_LT_CHECK_BUILDDIR],
-[case `pwd` in
- *\ * | *\ *)
- AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
-esac
-])
-
-
-# LT_INIT([OPTIONS])
-# ------------------
-AC_DEFUN([LT_INIT],
Home |
Main Index |
Thread Index |
Old Index