Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[xsrc/xorg]: xsrc/external/mit/fonttosfnt/dist initial import of fonttosfnt-1...
details: https://anonhg.NetBSD.org/xsrc/rev/60b2074ea40a
branches: xorg
changeset: 10046:60b2074ea40a
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Dec 30 08:49:51 2018 +0000
description:
initial import of fonttosfnt-1.0.5
diffstat:
external/mit/fonttosfnt/dist/ChangeLog | 314 +
external/mit/fonttosfnt/dist/INSTALL | 370 +
external/mit/fonttosfnt/dist/Makefile.am | 45 +-
external/mit/fonttosfnt/dist/Makefile.in | 736 +-
external/mit/fonttosfnt/dist/README | 24 +
external/mit/fonttosfnt/dist/aclocal.m4 | 2948 ++++-
external/mit/fonttosfnt/dist/compile | 348 +
external/mit/fonttosfnt/dist/config.guess | 934 +-
external/mit/fonttosfnt/dist/config.h.in | 3 +
external/mit/fonttosfnt/dist/config.sub | 410 +-
external/mit/fonttosfnt/dist/configure | 12358 ++++++++++++++++-----
external/mit/fonttosfnt/dist/configure.ac | 30 +-
external/mit/fonttosfnt/dist/depcomp | 584 +-
external/mit/fonttosfnt/dist/fonttosfnt.h | 8 +-
external/mit/fonttosfnt/dist/install-sh | 376 +-
external/mit/fonttosfnt/dist/man/Makefile.am | 12 +
external/mit/fonttosfnt/dist/man/Makefile.in | 496 +
external/mit/fonttosfnt/dist/man/fonttosfnt.man | 77 +
external/mit/fonttosfnt/dist/missing | 446 +-
external/mit/fonttosfnt/dist/read.c | 12 +-
external/mit/fonttosfnt/dist/struct.c | 2 +-
external/mit/fonttosfnt/dist/util.c | 10 +-
22 files changed, 15253 insertions(+), 5290 deletions(-)
diffs (truncated from 25057 to 300 lines):
diff -r 9b541ba7f893 -r 60b2074ea40a external/mit/fonttosfnt/dist/ChangeLog
--- a/external/mit/fonttosfnt/dist/ChangeLog Sun Dec 30 07:33:48 2018 +0000
+++ b/external/mit/fonttosfnt/dist/ChangeLog Sun Dec 30 08:49:51 2018 +0000
@@ -1,3 +1,317 @@
+commit 7f8d7ecf0379ebc5386ee27f385a2ca564d6decb
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:36:54 2018 +1000
+
+ Bump to 1.0.5
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9d92e49a4b69edc6e05f44e00aef8b81bb00f067
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:49:07 2018 +1000
+
+ Replace _BSD_SOURCE with _DEFAULT_SOURCE
+
+ /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
+ # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 0c993094a8899b488ba4acbb888c176f99da0849
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:45:51 2018 +1000
+
+ Fix shadowing i variable complaint
+
+ C99 is a magical thing!
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 6c37ebcfd8992fdf88da225bd1de7ca40dd69240
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:43:01 2018 +1000
+
+ Remove shadowing rc variable
+
+ All code paths assign rc and heck it immedately after. We can re-use the one
+ from the outer loop.
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 65d2d8f9cbe744b4c6c64d377f7ffd5d88ee0b1d
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:40:55 2018 +1000
+
+ README: update repository URL to gitlab
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Adam Jackson <ajax%redhat.com@localhost>
+
+commit 9d776b6a0f770cbe045a56141844d0ba393da611
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date: Tue Jul 31 11:38:41 2018 +1000
+
+ Constify a few string arguments
+
+ Cuts down on compiler warning by at least 64%, what a bargain!
+
+ Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+ Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit aead36f0be638a572ec97eb5313e45086874a5e6
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date: Thu Jan 26 14:00:20 2017 +1000
+
+ autogen: add default patch prefix
+
+ Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit 6dba18bf130e39718cc05cb8eb7d34a06b4a03a7
+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 1111127df3838bf701eb70a4e1ef053f71321fd1
+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 168cb69c5264f9b7ffd019c9c9867b23308832df
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jun 1 21:08:25 2014 -0700
+
+ autogen.sh: Honor NOCONFIGURE=1
+
+ See http://people.gnome.org/~walters/docs/build-api.txt
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 9c630e1607a29ee63f546a6a2294ba84f3493a77
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jun 1 21:08:25 2014 -0700
+
+ configure: Drop AM_MAINTAINER_MODE
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4db4880098627e9136c3cb9f6dc0a9f9914ce618
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jun 1 21:08:17 2014 -0700
+
+ config: Add missing AC_CONFIG_SRCDIR
+
+ Regroup AC statements under the Autoconf initialization section.
+ Regroup AM statements under the Automake initialization section.
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5b55964119d97ed763efa76bcc09dc918b6ab8be
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 19 10:06:55 2011 -0500
+
+ config: move man pages into their own directory
+
+ Use services provided by XORG_MANPAGE_SECTIONS.
+ Use standard Makefile for man pages.
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 98469be392fcb4bc45e14b449e3576248e5bc558
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Thu Jan 13 17:15:36 2011 -0500
+
+ man: replace hard coded man page section with substitution strings
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit a88c4ce51e28968ea6ff09f0ae12d9e1d52fb349
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Thu Jan 13 11:15:00 2011 -0500
+
+ man: remove trailing spaces and tabs
+
+ Using s/[ \t]*$//
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 6146625ddfceaf32d632b72451b257325d212dc7
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 16:28:01 2011 -0500
+
+ config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
+
+ This silences an Autoconf warning
+
+commit 218f4cbdcdc9e8035208970c699fd80e217a575d
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 15:12:08 2011 -0500
+
+ config: remove unrequired AC_SUBST([*_LIBS])
+
+ This macro is called by PKG_CHECK_MODULES
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit a132b22ae57b1e7bf03167de2f1bdb17082fba3b
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 13:33:47 2011 -0500
+
+ config: remove unrequired AC_SUBST([*_CFLAGS])
+
+ This macro is called by PKG_CHECK_MODULES
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 831d716c28934d26580391b092619e2524fb71c0
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 13:10:21 2011 -0500
+
+ config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
+
+ XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
+ AC_PROG_C_C99. This sets gcc with -std=gnu99.
+ If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 1c1e0d9c19b791fa1242f070334cf191bff97019
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 11:54:40 2011 -0500
+
+ config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
+
+ It depends on util-macros 1.8 or later
+ The existing statement can now be removed from the configuration file.
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 6e2ab22c57a18a48ad9bdf0f8ff0819191d42b3e
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 11:23:52 2011 -0500
+
+ config: upgrade to util-macros 1.8 for additional man page support
+
+ Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
+ The value of MAN_SUBST is the same for all X.Org packages.
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit f8366ba7d643c99e3bdb43df2cbb76c16cdd3443
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Jan 12 10:21:24 2011 -0500
+
+ config: update AC_PREREQ statement to 2.60
+
+ Unrelated to the previous patches, the new value simply reflects
+ the reality that the minimum level for autoconf to configure
+ all x.org modules in one pass is 2.60 dated June 2006.
+
+ A version later than 2.60 can be used, but no new features from such
+ a later version can be used in configure.ac.
+
+ Although the code in this module can be configured with a version earlier
+ than 2.60, most of code is now contained in macros from util-macros
+ which use features of version 2.60, at the present or in the future.
+
+ ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 787b998d2eebf7825cf8c03fe1864bf8d410ee18
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Thu Feb 11 10:08:06 2010 -0500
+
+ config: move CWARNFLAGS from configure.ac to Makefile.am
+
+ Compiler warning flags should be explicitly set in the makefile
+ rather than being merged with other packages compiler flags.
+
+ Signed-off-by: Gaetan Nadon <memsize%videotron.ca@localhost>
+
+commit 5686a8163364a7dac59454c5db93a1a746b67c42
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Thu Nov 26 09:19:52 2009 -0500
+
+ Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
+
+ Now that the INSTALL file is generated.
+ Allows running make maintainer-clean.
+
+commit 27b94dbde5c63da3153f179763cf4152a73b4f17
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Wed Oct 28 14:09:07 2009 -0400
+
+ INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
+
+ Add missing INSTALL file. Use standard GNU file on building tarball
+ README may have been updated
+ Remove AUTHORS file as it is empty and no content available yet.
+ Remove NEWS file as it is empty and no content available yet.
+
+commit 49dfdf15b4bbc7d16ad954672d10a1173be6886e
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Tue Oct 27 15:07:24 2009 -0400
+
+ Deploy the new XORG_DEFAULT_OPTIONS #24242
+
+ This macro aggregate a number of existing macros that sets commmon
+ X.Org components configuration options. It shields the configuration file from
+ future changes.
+
+commit 97aa84419e2a51bb6b594ea9dfacaf7bb670b710
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Mon Oct 26 22:08:37 2009 -0400
+
+ Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
+
+ ChangeLog filename is known to Automake and requires no further
+ coding in the makefile.
+
+commit f5953aeb4be49ca2711013133f8cc289db3a879b
+Author: Gaetan Nadon <memsize%videotron.ca@localhost>
+Date: Thu Oct 22 12:34:14 2009 -0400
+
+ .gitignore: use common defaults with custom section # 24239
+
+ Using common defaults will reduce errors and maintenance.
+ Only the very small or inexistent custom section need periodic maintenance
+ when the structure of the component changes. Do not edit defaults.
Home |
Main Index |
Thread Index |
Old Index