1b2448f93Smrgcommit bcfa27aeef3a9eb720e6b48e3fb8a4c2813fef52
2b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
3b2448f93SmrgDate:   Sun Mar 3 10:06:37 2024 -0800
4b2448f93Smrg
5b2448f93Smrg    mkfontscale 1.2.3
6b2448f93Smrg    
7b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8b2448f93Smrg
9b2448f93Smrgcommit b7ebb9b042974874782f4e662bfc442bc96c5647
10b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
11b2448f93SmrgDate:   Sat Nov 4 12:24:49 2023 -0700
12b2448f93Smrg
13b2448f93Smrg    Fix -Wimplicit-float-conversion warnings from clang
14b2448f93Smrg    
15b2448f93Smrg    mkfontscale.c:110:32: warning: implicit conversion loses floating-point precision: 'double' to 'float' [-Wimplicit-float-conversion]
16b2448f93Smrg    static float bigEncodingFuzz = 0.02;
17b2448f93Smrg                 ~~~~~~~~~~~~~~~   ^~~~
18b2448f93Smrg    mkfontscale.c:262:52: warning: implicit conversion loses floating-point precision: 'double' to 'float' [-Wimplicit-float-conversion]
19b2448f93Smrg                bigEncodingFuzz = atof(argv[argn + 1]) / 100.0;
20b2448f93Smrg                                ~ ~~~~~~~~~~~~~~~~~~~~~^~~~~~~
21b2448f93Smrg    
22b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
23b2448f93Smrg
24b2448f93Smrgcommit 3bc4d05ff753c1b8357455a614bc5d11fffcfc0e
25b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
26b2448f93SmrgDate:   Sat Nov 4 12:21:16 2023 -0700
27b2448f93Smrg
28b2448f93Smrg    Resolve some -Wsign-conversion warnings from clang
29b2448f93Smrg    
30b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
31b2448f93Smrg
32b2448f93Smrgcommit 19137ec2f129f91ce3adb46218c86e1bf547e661
33b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
34b2448f93SmrgDate:   Sat Nov 4 11:28:44 2023 -0700
35b2448f93Smrg
36b2448f93Smrg    Variable scope reductions as recommended by cppcheck
37b2448f93Smrg    
38b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
39b2448f93Smrg
40b2448f93Smrgcommit ffd69eb38f153229f5033ef5cc789c0ab3704edd
41b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
42b2448f93SmrgDate:   Sat Nov 4 10:43:35 2023 -0700
43b2448f93Smrg
44b2448f93Smrg    ident.c: clear -Wdeclaration-after-statement warning
45b2448f93Smrg    
46b2448f93Smrg    ident.c: In function ‘getInt32’:
47b2448f93Smrg    ident.c:228:5: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
48b2448f93Smrg      228 |     unsigned int u[4] = { c[0], c[1], c[2], c[3] };
49b2448f93Smrg          |     ^~~~~~~~
50b2448f93Smrg    
51b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
52b2448f93Smrg
53b2448f93Smrgcommit 568f31aefd6e060779572c1fe593519714f0d50b
54b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
55b2448f93SmrgDate:   Sat Nov 4 10:39:54 2023 -0700
56b2448f93Smrg
57b2448f93Smrg    mkfontscale.c: handle -Wshadow warnings from gcc
58b2448f93Smrg    
59b2448f93Smrg    mkfontscale.c: In function ‘doDirectory’:
60b2448f93Smrg    mkfontscale.c:810:66: warning: declaration of ‘encodingsToDo’ shadows a global declaration [-Wshadow]
61b2448f93Smrg      810 | doDirectory(const char *dirname_given, int numEncodings, ListPtr encodingsToDo)
62b2448f93Smrg          |                                                          ~~~~~~~~^~~~~~~~~~~~~
63b2448f93Smrg    mkfontscale.c:117:16: note: shadowed declaration is here
64b2448f93Smrg      117 | static ListPtr encodingsToDo;
65b2448f93Smrg          |                ^~~~~~~~~~~~~
66b2448f93Smrg    mkfontscale.c: In function ‘readEncodings’:
67b2448f93Smrg    mkfontscale.c:1353:23: warning: declaration of ‘encodings’ shadows a global declaration [-Wshadow]
68b2448f93Smrg     1353 | readEncodings(ListPtr encodings, char *dirname)
69b2448f93Smrg          |               ~~~~~~~~^~~~~~~~~
70b2448f93Smrg    mkfontscale.c:93:21: note: shadowed declaration is here
71b2448f93Smrg       93 | static ConstListPtr encodings, extra_encodings;
72b2448f93Smrg          |                     ^~~~~~~~~
73b2448f93Smrg    
74b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
75b2448f93Smrg
76b2448f93Smrgcommit fa682decde0b4513f5ce6084df590107359158f5
77b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
78b2448f93SmrgDate:   Sat Nov 4 10:10:34 2023 -0700
79b2448f93Smrg
80b2448f93Smrg    doDirectory: add missing check for malloc() returning NULL
81b2448f93Smrg    
82b2448f93Smrg    Resolves gcc analyzer warning:
83b2448f93Smrg    
84b2448f93Smrg    mkfontscale.c: In function ‘doDirectory’:
85b2448f93Smrg    mkfontscale.c:974:17: warning: use of possibly-NULL ‘s’ where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
86b2448f93Smrg      974 |                 memcpy(s, xlfd_name, l - 11);
87b2448f93Smrg          |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
88b2448f93Smrg    
89b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
90b2448f93Smrg
91b2448f93Smrgcommit 05401f3c4e641c1e67d11187dfb943c7ec1708f4
92b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
93b2448f93SmrgDate:   Sat Nov 4 10:06:36 2023 -0700
94b2448f93Smrg
95b2448f93Smrg    Convert to X.Org standard code style
96b2448f93Smrg    
97b2448f93Smrg    Mostly via util/modular/x-indent-all.sh, plus some manual cleanup
98b2448f93Smrg    
99b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
100b2448f93Smrg
101b2448f93Smrgcommit a631117eb3d816e8b3fdb969017fc5d3c7357ba3
102b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
103b2448f93SmrgDate:   Sat Feb 25 08:54:46 2023 -0800
104b2448f93Smrg
105b2448f93Smrg    Remove "All rights reserved" from Oracle copyright notices
106b2448f93Smrg    
107b2448f93Smrg    Oracle no longer includes this term in our copyright & license notices.
108b2448f93Smrg    
109b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
110b2448f93Smrg
111b2448f93Smrgcommit 44459a9f083c78c53aa17b266ccd26da3478e7ec
112b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
113b2448f93SmrgDate:   Tue Dec 20 19:16:22 2022 -0800
114b2448f93Smrg
115b2448f93Smrg    gitlab CI: stop requiring Signed-off-by in commits
116b2448f93Smrg    
117b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
118b2448f93Smrg
119b2448f93Smrgcommit 9a63cbccd03b643622df89a0fda4e81c2f523c7d
120b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
121b2448f93SmrgDate:   Mon Dec 19 19:11:00 2022 -0800
122b2448f93Smrg
123b2448f93Smrg    configure: Use AC_SYS_LARGEFILE to enable large file support
124b2448f93Smrg    
125b2448f93Smrg    While font files should never be more than 2gb in size,
126b2448f93Smrg    they may be stored on filesystems with large inodes.
127b2448f93Smrg    
128b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
129b2448f93Smrg
130b2448f93Smrgcommit a992510baba1ae46f0c1a4013f955cc74ecb212e
131b2448f93SmrgAuthor: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
132b2448f93SmrgDate:   Sat Dec 3 15:14:25 2022 -0800
133b2448f93Smrg
134b2448f93Smrg    Address s UBSan warning about int left shift overflow
135b2448f93Smrg    
136b2448f93Smrg    ident.c:220:22: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
137b2448f93Smrg    
138b2448f93Smrg    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
139b2448f93Smrg
140b2448f93Smrgcommit 592c3d2b8f56679b35f2b8b97aeba3f8e3fb3b9e
141b2448f93SmrgAuthor: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
142b2448f93SmrgDate:   Sun Jun 19 10:43:33 2022 -0700
143b2448f93Smrg
144b2448f93Smrg    configure: Move check for zlib into its own section
145b2448f93Smrg    
146b2448f93Smrg    This allows systems that don't have zlib.pc (eg: darwin) to build
147b2448f93Smrg    by specifying ZLIB_CFLAGS and ZLIB_LIBS in the build environment
148b2448f93Smrg    
149b2448f93Smrg    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
150b2448f93Smrg
151b2448f93Smrgcommit 54b0411f06c4b84ae7efd110c7540edc688a991e
152b2448f93SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
153b2448f93SmrgDate:   Tue Apr 5 19:04:07 2022 -0700
154b2448f93Smrg
155b2448f93Smrg    configure: Use pkg-config to find zlib
156b2448f93Smrg    
157b2448f93Smrg    Fixes: #6
158b2448f93Smrg    
159b2448f93Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
160b2448f93Smrg
161764c86d1Smrgcommit b7e75ca2ccd8733496e0e891e84dc3856840813d
162764c86d1SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
163764c86d1SmrgDate:   Sun Apr 3 12:20:15 2022 -0700
164764c86d1Smrg
165764c86d1Smrg    mkfontscale 1.2.2
166764c86d1Smrg    
167764c86d1Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
168764c86d1Smrg
169764c86d1Smrgcommit 2ee95eca936971e841a135ecc4f4a25875232fa2
170764c86d1SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
171764c86d1SmrgDate:   Fri Dec 3 16:17:48 2021 -0800
172764c86d1Smrg
173764c86d1Smrg    Build xz tarballs instead of bzip2
174764c86d1Smrg    
175764c86d1Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
176764c86d1Smrg
177764c86d1Smrgcommit f49cc4f618ce520fdb6c43d5434ff376d6324356
178764c86d1SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
179764c86d1SmrgDate:   Fri Dec 3 16:17:39 2021 -0800
180764c86d1Smrg
181764c86d1Smrg    gitlab CI: add a basic build test
182764c86d1Smrg    
183764c86d1Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
184764c86d1Smrg
185764c86d1Smrgcommit b88c27bc45d0db78a6591bb92635915b3d5903b8
186764c86d1SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
187764c86d1SmrgDate:   Sun Nov 28 15:52:37 2021 -0800
188764c86d1Smrg
189764c86d1Smrg    Fix spelling/wording issues
190764c86d1Smrg    
191764c86d1Smrg    Found by using:
192764c86d1Smrg        codespell --builtin clear,rare,usage,informal,code,names
193764c86d1Smrg    
194764c86d1Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
195764c86d1Smrg
196764c86d1Smrgcommit f9c76b4dee38619ccf4004f05f609a5e00806771
197764c86d1SmrgAuthor: Maya Rashish <maya@NetBSD.org>
198764c86d1SmrgDate:   Sun Oct 27 20:07:16 2019 +0200
199764c86d1Smrg
200764c86d1Smrg    Add "ExtraBold" as a valid T1 font weight.
201764c86d1Smrg    
202764c86d1Smrg    Used by freefonts.
203764c86d1Smrg    
204764c86d1Smrg    Signed-off-by: Maya Rashish <maya@NetBSD.org>
205764c86d1Smrg
206764c86d1Smrgcommit 73a6d0e02eece1e51bfaed9638f1929404d2c66a
207764c86d1SmrgAuthor: Maya Rashish <maya@NetBSD.org>
208764c86d1SmrgDate:   Sun Oct 27 20:04:27 2019 +0200
209764c86d1Smrg
210764c86d1Smrg    Use case insensitive comparison for T1 font weight
211764c86d1Smrg    
212764c86d1Smrg    Signed-off-by: Maya Rashish <maya@NetBSD.org>
213764c86d1Smrg
214bd8ad950Smrgcommit 79f686765238ddd0e4753f9d4ee62b5a5296610e
215bd8ad950SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
216bd8ad950SmrgDate:   Wed Mar 20 20:58:15 2019 -0700
217bd8ad950Smrg
218bd8ad950Smrg    mkfontscale 1.2.1
219bd8ad950Smrg    
220bd8ad950Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
221bd8ad950Smrg
222bd8ad950Smrgcommit 29cab25240cf30f546671f265167a2eeadfd4c75
223bd8ad950SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
224bd8ad950SmrgDate:   Thu Mar 7 13:23:00 2019 -0800
225bd8ad950Smrg
226bd8ad950Smrg    Revert "Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in"
227bd8ad950Smrg    
228bd8ad950Smrg    This reverts commit 1f9d14bec07092d62da29a5a233cefbf84d47289.
229bd8ad950Smrg    It caused https://gitlab.freedesktop.org/xorg/app/mkfontscale/issues/5
230bd8ad950Smrg
23112458b28Smrgcommit 8fbafcfe7e5ef4a2030e3963f31143bba2c8786f
23212458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
23312458b28SmrgDate:   Sat Mar 2 14:16:48 2019 -0800
23412458b28Smrg
23512458b28Smrg    mkfontscale 1.2.0
23612458b28Smrg    
23712458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
23812458b28Smrg
23912458b28Smrgcommit bef1c614465f2c8546a7d946a75d8f10c5f3ca40
24012458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
24112458b28SmrgDate:   Tue Feb 19 11:45:29 2019 -0800
24212458b28Smrg
24312458b28Smrg    Add mkfontdir to .gitignore
24412458b28Smrg    
24512458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
24612458b28Smrg
24712458b28Smrgcommit 1f9d14bec07092d62da29a5a233cefbf84d47289
24812458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
24912458b28SmrgDate:   Mon Feb 18 18:27:31 2019 -0800
25012458b28Smrg
25112458b28Smrg    Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in
25212458b28Smrg    
25312458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
25412458b28Smrg
25512458b28Smrgcommit d3b0f267bd25ab888efc0417f62d525afa32208a
25612458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
25712458b28SmrgDate:   Mon Feb 18 18:23:50 2019 -0800
25812458b28Smrg
25912458b28Smrg    Add mkfontdir to README.md
26012458b28Smrg    
26112458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
26212458b28Smrg
26312458b28Smrgcommit 270540bb11914ea92436e251b14bc39d6b5df589
26412458b28SmrgAuthor: Jeremy Huddleston <jeremyhu@apple.com>
26512458b28SmrgDate:   Thu Oct 6 10:29:42 2011 -0700
26612458b28Smrg
26712458b28Smrg    mkfontdir: Fix issues where mkfontscale and mkfontdir are installed in different locations or bindir contains a space
26812458b28Smrg    
26912458b28Smrg    https://bugs.freedesktop.org/show_bug.cgi?id=24465
27012458b28Smrg    
27112458b28Smrg    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
27212458b28Smrg
27312458b28Smrgcommit cfbeaa0b99944ab887b4854baa63eadd4e5481f5
27412458b28SmrgAuthor: Jon TURNEY <jon.turney@dronecode.org.uk>
27512458b28SmrgDate:   Tue Mar 15 11:55:11 2011 +0000
27612458b28Smrg
27712458b28Smrg    mkfontdir: Fix for non-srcdir builds
27812458b28Smrg    
27912458b28Smrg    Fix commit ad5fefcc7a0a0beb1c02270d9f28c8b28da61199 for non-srcdir builds
28012458b28Smrg    
28112458b28Smrg    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
28212458b28Smrg    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
28312458b28Smrg
28412458b28Smrgcommit 758df83c5825b77f338e44c1fcc4c5070d3c3516
28512458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
28612458b28SmrgDate:   Fri Mar 11 14:10:19 2011 -0800
28712458b28Smrg
28812458b28Smrg    mkfontdir: Make Makefile.am compatible with Solaris make
28912458b28Smrg    
29012458b28Smrg    Solaris make won't substitute $< in explicit rules, only implicit ones
29112458b28Smrg    
29212458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
29312458b28Smrg
29412458b28Smrgcommit 8290027e067ffd0a3f37eeafbd27121e2884cea4
29512458b28SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
29612458b28SmrgDate:   Sat Jan 22 09:27:09 2011 -0500
29712458b28Smrg
29812458b28Smrg    mkfontdir: config: substitute bindir in mkfontdir using Autoconf @bindir@
29912458b28Smrg    
30012458b28Smrg    Use the Autoconf recommended way of substituting bindir, see
30112458b28Smrg    http://www.gnu.org/software/autoconf/manual/autoconf.html
30212458b28Smrg    
30312458b28Smrg    Use # sign for comment in script.
30412458b28Smrg    Only sed is used, drop the cpp terminology.
30512458b28Smrg    
30612458b28Smrg    Reviewed-by: Rémi Cardona <remi@gentoo.org>
30712458b28Smrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
30812458b28Smrg
30912458b28Smrgcommit 07d71396a502515a02bd12c5b01cdd98a7a30dab
31012458b28SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
31112458b28SmrgDate:   Wed Jan 19 10:06:55 2011 -0500
31212458b28Smrg
31312458b28Smrg    mkfontdir: config: move man pages into their own directory
31412458b28Smrg    
31512458b28Smrg    Use services provided by XORG_MANPAGE_SECTIONS.
31612458b28Smrg    Use standard Makefile for man pages.
31712458b28Smrg    
31812458b28Smrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
31912458b28Smrg
32012458b28Smrgcommit 91cae6761d1a1eb9e5e2eba9eea8d7be6e3993d1
32112458b28SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
32212458b28SmrgDate:   Thu Jan 13 11:15:47 2011 -0500
32312458b28Smrg
32412458b28Smrg    mkfontdir: man: remove trailing spaces and tabs
32512458b28Smrg    
32612458b28Smrg    Using s/[ \t]*$//
32712458b28Smrg    
32812458b28Smrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
32912458b28Smrg
33012458b28Smrgcommit 7bb2d75a9f00546178f16fd536946fe1bdabdebb
33112458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
33212458b28SmrgDate:   Sun Nov 7 11:14:14 2010 -0800
33312458b28Smrg
33412458b28Smrg    mkfontdir: Drop CVS version tag from mkfontdir.cpp too
33512458b28Smrg    
33612458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
33712458b28Smrg
33812458b28Smrgcommit b1e80a29150c90c39915e5e758262815c2c4da05
33912458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
34012458b28SmrgDate:   Sun Nov 7 11:10:09 2010 -0800
34112458b28Smrg
34212458b28Smrg    mkfontdir: config: Remove unnecessary calls from configure.ac
34312458b28Smrg    
34412458b28Smrg    AC_PROG_SED & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
34512458b28Smrg    
34612458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
34712458b28Smrg
34812458b28Smrgcommit daee1aa67b7b11b2d4f9e38ddc39603e9206557a
34912458b28SmrgAuthor: Jesse Adkins <jesserayadkins@gmail.com>
35012458b28SmrgDate:   Tue Sep 28 13:29:49 2010 -0700
35112458b28Smrg
35212458b28Smrg    mkfontdir: Purge cvs tags.
35312458b28Smrg    
35412458b28Smrg    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
35512458b28Smrg
35612458b28Smrgcommit 43d1aae1b0e1f9f759fe3439aa2079a88dab03af
35712458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
35812458b28SmrgDate:   Sat Oct 10 22:47:09 2009 -0700
35912458b28Smrg
36012458b28Smrg    mkfontdir: Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
36112458b28Smrg    
36212458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
36312458b28Smrg
36412458b28Smrgcommit 2dac61a84d474e533df29b5874ce6ca5e68d4ddd
36512458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
36612458b28SmrgDate:   Fri Jan 11 12:40:52 2008 -0800
36712458b28Smrg
36812458b28Smrg    mkfontdir: Fix formatting of man page so ellipsis are shown with Solaris nroff
36912458b28Smrg
37012458b28Smrgcommit 8609ad731b9c9c670a815c915055ae416d2396d8
37112458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
37212458b28SmrgDate:   Fri Jan 11 12:39:00 2008 -0800
37312458b28Smrg
37412458b28Smrg    mkfontdir: Fill in COPYING file with copyright/license notices
37512458b28Smrg
37612458b28Smrgcommit 18654870df3e8c65abc4443a0f510abd46c5fbaa
37712458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
37812458b28SmrgDate:   Mon Jan 7 14:16:07 2008 -0800
37912458b28Smrg
38012458b28Smrg    mkfontdir: Add references to mkfontscale to man page
38112458b28Smrg    
38212458b28Smrg    Also convert (1) to (__appmansuffix__)
38312458b28Smrg
38412458b28Smrgcommit 1d15009075c3d316bd54c5861ac2859330ab2e64
38512458b28SmrgAuthor: Matthieu Herrb <matthieu.herrb@laas.fr>
38612458b28SmrgDate:   Sun Mar 5 19:52:51 2006 +0000
38712458b28Smrg
38812458b28Smrg    mkfontdir: Let BSD make find mkfontdir.cpp when building in a separate obj dir
38912458b28Smrg
39012458b28Smrgcommit 1cb06c20467030fddf6a0a7be855f6849cadf7b4
39112458b28SmrgAuthor: Adam Jackson <ajax@nwnk.net>
39212458b28SmrgDate:   Tue Aug 2 01:58:09 2005 +0000
39312458b28Smrg
39412458b28Smrg    mkfontdir: Find mkfontscale through @bindir@ rather than AC_PATH_PROG, since the one in the path could be from an old install that doesn't support all the needed flags.
39512458b28Smrg
39612458b28Smrgcommit a8341c3f17050b253a9f55aba76f1d8437165c26
39712458b28SmrgAuthor: Matthieu Herrb <matthieu.herrb@laas.fr>
39812458b28SmrgDate:   Thu Jul 14 20:59:48 2005 +0000
39912458b28Smrg
40012458b28Smrg    mkfontdir: build fix for non-GNU make
40112458b28Smrg
40212458b28Smrgcommit fa554ab53809943cb141e07687c96364d91e3f9c
40312458b28SmrgAuthor: Kevin E Martin <kem@kem.org>
40412458b28SmrgDate:   Sat Jul 2 21:42:05 2005 +0000
40512458b28Smrg
40612458b28Smrg    mkfontdir: Add build system for bdftopcf, mkfontdir and mkfontscale
40712458b28Smrg
40812458b28Smrgcommit c40a94766668aad01ef57eea181752a370762cd0
40912458b28SmrgAuthor: Egbert Eich <eich@suse.de>
41012458b28SmrgDate:   Fri Apr 23 19:54:36 2004 +0000
41112458b28Smrg
41212458b28Smrg    mkfontdir: Merging XORG-CURRENT into trunk
41312458b28Smrg
41412458b28Smrgcommit 1a302e07687403c0be7452d865d20e4cb0761770
41512458b28SmrgAuthor: Egbert Eich <eich@suse.de>
41612458b28SmrgDate:   Sun Mar 14 08:34:54 2004 +0000
41712458b28Smrg
41812458b28Smrg    mkfontdir: Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
41912458b28Smrg
42012458b28Smrgcommit c01032201686db5622b4f997d5294d724800c694
42112458b28SmrgAuthor: Egbert Eich <eich@suse.de>
42212458b28SmrgDate:   Wed Mar 3 12:12:53 2004 +0000
42312458b28Smrg
42412458b28Smrg    mkfontdir: Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
42512458b28Smrg
42612458b28Smrgcommit 3a6aebdfeb88dd8501d715117990af646f687555
42712458b28SmrgAuthor: Egbert Eich <eich@suse.de>
42812458b28SmrgDate:   Thu Feb 26 13:36:15 2004 +0000
42912458b28Smrg
43012458b28Smrg    mkfontdir: readding XFree86's cvs IDs
43112458b28Smrg
43212458b28Smrgcommit fa75fa1a5d7c1599692d4e309c39fca34b2a0f84
43312458b28SmrgAuthor: Egbert Eich <eich@suse.de>
43412458b28SmrgDate:   Thu Feb 26 09:23:56 2004 +0000
43512458b28Smrg
43612458b28Smrg    mkfontdir: Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
43712458b28Smrg
43812458b28Smrgcommit 9b6d7d062c91a86e110eea7ed38d44e104463fba
43912458b28SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
44012458b28SmrgDate:   Tue Nov 25 19:29:02 2003 +0000
44112458b28Smrg
44212458b28Smrg    mkfontdir: Initial revision
44312458b28Smrg
44412458b28Smrgcommit 2247072a89b7b9da8ed22d0aaec100cef3adb62d
44512458b28SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
44612458b28SmrgDate:   Fri Nov 14 16:48:57 2003 +0000
44712458b28Smrg
44812458b28Smrg    mkfontdir: XFree86 4.3.0.1
44912458b28Smrg
45012458b28Smrgcommit 1b920768b5122bac7368860fd6fc7e4f5275ed8f
45112458b28SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
45212458b28SmrgDate:   Fri Nov 14 15:54:53 2003 +0000
45312458b28Smrg
45412458b28Smrg    mkfontdir: R6.6 is the Xorg base-line
45512458b28Smrg
45612458b28Smrgcommit 0a20abea3ec9742f0982e043e725cdadf0fc493e
45712458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
45812458b28SmrgDate:   Sun Jan 6 14:26:00 2019 -0800
45912458b28Smrg
46012458b28Smrg    Clear some -Wshorten-64-to-32 warnings from clang 6
46112458b28Smrg    
46212458b28Smrg    ident.c:84:13: warning: implicit conversion loses integer precision:
46312458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
46412458b28Smrg        int n = strlen(filename);
46512458b28Smrg            ~   ^~~~~~~~~~~~~~~~
46612458b28Smrg    ident.c:130:9: warning: implicit conversion loses integer precision:
46712458b28Smrg          'off64_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
46812458b28Smrg            return gzseek(ff->f.gz, offset, whence);
46912458b28Smrg            ~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
47012458b28Smrg    ident.c:140:17: warning: implicit conversion loses integer precision:
47112458b28Smrg          'long' to 'int' [-Wshorten-64-to-32]
47212458b28Smrg                n = offset - ff->pos;
47312458b28Smrg                  ~ ~~~~~~~^~~~~~~~~
47412458b28Smrg    ident.c:143:10: warning: implicit conversion loses integer precision:
47512458b28Smrg          'off_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
47612458b28Smrg                n = offset;
47712458b28Smrg                  ~ ^~~~~~
47812458b28Smrg    ident.c:156:12: warning: implicit conversion loses integer precision:
47912458b28Smrg          'off_t' (aka 'long') to 'unsigned int' [-Wshorten-64-to-32]
48012458b28Smrg            ff->pos = offset;
48112458b28Smrg                    ~ ^~~~~~
48212458b28Smrg    ident.c:157:9: warning: implicit conversion loses integer precision:
48312458b28Smrg          'off_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
48412458b28Smrg            return offset;
48512458b28Smrg            ~~~~~~ ^~~~~~
48612458b28Smrg    mkfontscale.c:704:13: warning: implicit conversion loses integer precision:
48712458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
48812458b28Smrg        int n = strlen(dirname);
48912458b28Smrg            ~   ^~~~~~~~~~~~~~~
49012458b28Smrg    mkfontscale.c:748:13: warning: implicit conversion loses integer precision:
49112458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
49212458b28Smrg        int n = strlen(filename);
49312458b28Smrg            ~   ^~~~~~~~~~~~~~~~
49412458b28Smrg    mkfontscale.c:794:14: warning: implicit conversion loses integer precision:
49512458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
49612458b28Smrg            xl = strlen (exclusionSuffix);
49712458b28Smrg               ~ ^~~~~~~~~~~~~~~~~~~~~~~~
49812458b28Smrg    mkfontscale.c:796:9: warning: implicit conversion loses integer precision:
49912458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
50012458b28Smrg        i = strlen(dirname_given);
50112458b28Smrg          ~ ^~~~~~~~~~~~~~~~~~~~~
50212458b28Smrg    mkfontscale.c:858:15: warning: implicit conversion loses integer precision:
50312458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
50412458b28Smrg                int dl = strlen (entry->d_name);
50512458b28Smrg                    ~~   ^~~~~~~~~~~~~~~~~~~~~~
50612458b28Smrg    mkfontscale.c:930:21: warning: implicit conversion loses integer precision:
50712458b28Smrg          'unsigned long' to 'int' [-Wshorten-64-to-32]
50812458b28Smrg                int l = strlen(xlfd_name);
50912458b28Smrg                    ~   ^~~~~~~~~~~~~~~~~
51012458b28Smrg    
51112458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
51212458b28Smrg
51312458b28Smrgcommit a311033403730db56bbbd0c56977e6c49a6b5519
51412458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
51512458b28SmrgDate:   Sun Jan 6 13:33:42 2019 -0800
51612458b28Smrg
51712458b28Smrg    Clear some -Wsign-compare warnings from gcc 7
51812458b28Smrg    
51912458b28Smrg    mkfontscale.c: In function ‘getName’:
52012458b28Smrg    mkfontscale.c:336:22: warning: comparison between signed and unsigned
52112458b28Smrg       integer expressions [-Wsign-compare]
52212458b28Smrg             for(i = 0; i < name.string_len / 2; i++) {
52312458b28Smrg                          ^
52412458b28Smrg    mkfontscale.c: In function ‘nameWidth’:
52512458b28Smrg    mkfontscale.c:427:18: warning: comparison between signed and unsigned
52612458b28Smrg       integer expressions [-Wsign-compare]
52712458b28Smrg         for(i = 0; i < NUMWIDTHS; i++)
52812458b28Smrg                      ^
52912458b28Smrg    mkfontscale.c: In function ‘notice_foundry’:
53012458b28Smrg    mkfontscale.c:1261:18: warning: comparison between signed and unsigned
53112458b28Smrg       integer expressions [-Wsign-compare]
53212458b28Smrg         for(i = 0; i < countof(notice_foundries); i++)
53312458b28Smrg                      ^
53412458b28Smrg    mkfontscale.c: In function ‘vendor_foundry’:
53512458b28Smrg    mkfontscale.c:1285:18: warning: comparison between signed and unsigned
53612458b28Smrg       integer expressions [-Wsign-compare]
53712458b28Smrg         for(i = 0; i < countof(vendor_foundries); i++)
53812458b28Smrg                      ^
53912458b28Smrg    
54012458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
54112458b28Smrg
54212458b28Smrgcommit d971bb62c6d2a35eccfdcd0c3c6c65c4f841f556
54312458b28SmrgAuthor: Thomas Klausner <wiz@NetBSD.org>
54412458b28SmrgDate:   Mon Jul 27 23:16:45 2015 +0200
54512458b28Smrg
54612458b28Smrg    Add new ConstList functions and use them.
54712458b28Smrg    
54812458b28Smrg    Gets rid of lots of const warnings.
54912458b28Smrg    
55012458b28Smrg    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
55112458b28Smrg
55212458b28Smrgcommit bd8ff8a513d928878c877ea7b448baf7aee003a3
55312458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
55412458b28SmrgDate:   Wed Nov 21 16:49:31 2018 -0800
55512458b28Smrg
55612458b28Smrg    Update configure.ac bug URL for gitlab migration
55712458b28Smrg    
55812458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
55912458b28Smrg
56012458b28Smrgcommit 17dec8c3c2805707767a2e416358db860b2b2427
56112458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
56212458b28SmrgDate:   Fri Nov 16 20:25:32 2018 -0800
56312458b28Smrg
56412458b28Smrg    Update README for gitlab migration
56512458b28Smrg    
56612458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
56712458b28Smrg
56812458b28Smrgcommit eac885fa5ebff24e0839144863872443a010d7c2
56912458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
57012458b28SmrgDate:   Mon Oct 1 21:24:45 2018 -0700
57112458b28Smrg
57212458b28Smrg    Stop shadowing 'found' in checkExtraEncoding()
57312458b28Smrg    
57412458b28Smrg    mkfontscale.c: In function ‘checkExtraEncoding’:
57512458b28Smrg    mkfontscale.c:1220:17: warning: declaration of ‘found’ shadows a parameter [-Wshadow]
57612458b28Smrg                 int found = 0;
57712458b28Smrg                     ^~~~~
57812458b28Smrg    mkfontscale.c:1214:59: note: shadowed declaration is here
57912458b28Smrg     checkExtraEncoding(FT_Face face, char *encoding_name, int found)
58012458b28Smrg                                                               ^~~~~
58112458b28Smrg    
58212458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
58312458b28Smrg
58412458b28Smrgcommit 325621bd083236567bd861d41ff161313fc96e96
58512458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
58612458b28SmrgDate:   Mon Oct 1 21:19:58 2018 -0700
58712458b28Smrg
58812458b28Smrg    Rename variable 'n' to avoid shadowing another 'n' in doDirectory
58912458b28Smrg    
59012458b28Smrg    mkfontscale.c: In function ‘doDirectory’:
59112458b28Smrg    mkfontscale.c:928:17: warning: declaration of ‘n’ shadows a previous local [-Wshadow]
59212458b28Smrg                 int n = strlen(xlfd_name);
59312458b28Smrg                     ^
59412458b28Smrg    mkfontscale.c:788:12: note: shadowed declaration is here
59512458b28Smrg         int i, n, dirn, diri, found, rc;
59612458b28Smrg                ^
59712458b28Smrg    
59812458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
59912458b28Smrg
60012458b28Smrgcommit 0faf882de6de6c1ec26aace9a9939914b40e7b89
60112458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
60212458b28SmrgDate:   Mon Oct 1 21:10:59 2018 -0700
60312458b28Smrg
60412458b28Smrg    Use vasprintf(), if available, to implement dsprintf()
60512458b28Smrg    
60612458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
60712458b28Smrg
60812458b28Smrgcommit 3b747cc5d2981c44ff517f64c355e76d70194f24
60912458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
61012458b28SmrgDate:   Mon Oct 1 20:52:18 2018 -0700
61112458b28Smrg
61212458b28Smrg    Replace dsprintf("%s", s) with strdup(s)
61312458b28Smrg    
61412458b28Smrg    dsprintf is an allocating sprintf.  With a format string of "%s", it
61512458b28Smrg    reduces to just being a more complicated version of strdup, so lets
61612458b28Smrg    just use strdup instead to save time and reduce complexity.
61712458b28Smrg    
61812458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
61912458b28Smrg
62012458b28Smrgcommit 65fe4ef6f5674b0b52e797924990b090dbbd52af
62112458b28SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
62212458b28SmrgDate:   Mon Oct 1 20:48:21 2018 -0700
62312458b28Smrg
62412458b28Smrg    Remove last use of strcat
62512458b28Smrg    
62612458b28Smrg    If getcwd returned a string that exactly filled the prefix buffer,
62712458b28Smrg    it could write the null terminator byte out of bounds.
62812458b28Smrg    
62912458b28Smrg    Instead, since the prefix is copied to a newly allocated string and
63012458b28Smrg    never used again, just let the dsprintf() call take care of it.
63112458b28Smrg    
63212458b28Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
63312458b28Smrg
63412458b28Smrgcommit 7b4203577af4b835ef069e0cd2bd9510b599789c
63512458b28SmrgAuthor: Bernhard M. Wiedemann <bwiedemann@suse.de>
63612458b28SmrgDate:   Mon Sep 10 10:17:52 2018 +0200
63712458b28Smrg
63812458b28Smrg    Sort input file list
63912458b28Smrg    
64012458b28Smrg    so that openSUSE's installation-images builds in a reproducible way
64112458b28Smrg    in spite of indeterministic filesystem readdir order
64212458b28Smrg    
64312458b28Smrg    See https://reproducible-builds.org/ for why this is good.
64412458b28Smrg    
64512458b28Smrg    Signed-off-by: Bernhard M. Wiedemann <bwiedemann@suse.de>
64612458b28Smrg
647d87830e5Smrgcommit 4b1d7d3af1c1bc1586b2e9a780aea0dee7df5a14
648d87830e5SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
649d87830e5SmrgDate:   Tue Mar 6 22:57:01 2018 -0800
650d87830e5Smrg
651d87830e5Smrg    mkfontscale 1.1.3
652d87830e5Smrg    
653d87830e5Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
654d87830e5Smrg
655d87830e5Smrgcommit 27295c6c9b40b5cee0d1f45dfdc742a12613cb58
656d87830e5SmrgAuthor: Mihail Konev <k.mvc@ya.ru>
657d87830e5SmrgDate:   Thu Jan 26 14:00:20 2017 +1000
658d87830e5Smrg
659d87830e5Smrg    autogen: add default patch prefix
660d87830e5Smrg    
661d87830e5Smrg    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
662d87830e5Smrg
663d87830e5Smrgcommit 3258ad61892298d07236a857e1668171de5e8880
664d87830e5SmrgAuthor: Emil Velikov <emil.l.velikov@gmail.com>
665d87830e5SmrgDate:   Mon Mar 9 12:00:52 2015 +0000
666d87830e5Smrg
667d87830e5Smrg    autogen.sh: use quoted string variables
668d87830e5Smrg    
669d87830e5Smrg    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
670d87830e5Smrg    fall-outs, when they contain space.
671d87830e5Smrg    
672d87830e5Smrg    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
673d87830e5Smrg    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
674d87830e5Smrg    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
675d87830e5Smrg
676d87830e5Smrgcommit e8e4bdca31c006e2600ba25ef753fe77b20d6aca
677d87830e5SmrgAuthor: Peter Hutterer <peter.hutterer@who-t.net>
678d87830e5SmrgDate:   Tue Jan 24 10:32:07 2017 +1000
679d87830e5Smrg
680d87830e5Smrg    autogen.sh: use exec instead of waiting for configure to finish
681d87830e5Smrg    
682d87830e5Smrg    Syncs the invocation of configure with the one from the server.
683d87830e5Smrg    
684d87830e5Smrg    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
685d87830e5Smrg    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
686d87830e5Smrg
687d87830e5Smrgcommit 07b761b0862bcea65b83052b9d960c4459af0466
688d87830e5SmrgAuthor: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
689d87830e5SmrgDate:   Sun Sep 18 16:25:22 2016 -0700
690d87830e5Smrg
691d87830e5Smrg    mkfontscale: Avoid a buffer underrun
692d87830e5Smrg    
693d87830e5Smrg    https://bugs.freedesktop.org/show_bug.cgi?id=96905
694d87830e5Smrg    
695d87830e5Smrg    =================================================================
696d87830e5Smrg    ==3068==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60300000de6f at pc 0x000109df79d1 bp 0x7fff55e37d90 sp 0x7fff55e37550
697d87830e5Smrg    READ of size 1 at 0x60300000de6f thread T0
698d87830e5Smrg        #0 0x109df79d0 in wrap_strcmp (libclang_rt.asan_osx_dynamic.dylib+0xe9d0)
699d87830e5Smrg        #1 0x109dc8ef7 in fontFileOpen (mkfontscale+0x100001ef7)
700d87830e5Smrg        #2 0x109dc8e0b in bitmapIdentify (mkfontscale+0x100001e0b)
701d87830e5Smrg        #3 0x109dcc874 in doDirectory (mkfontscale+0x100005874)
702d87830e5Smrg        #4 0x109dcbc78 in main (mkfontscale+0x100004c78)
703d87830e5Smrg        #5 0x7fff9083f5ac in start (libdyld.dylib+0x35ac)
704d87830e5Smrg        #6 0x3  (<unknown module>)
705d87830e5Smrg    
706d87830e5Smrg    0x60300000de6f is located 1 bytes to the left of 20-byte region [0x60300000de70,0x60300000de84)
707d87830e5Smrg    allocated by thread T0 here:
708d87830e5Smrg        #0 0x109e34570 in wrap_malloc (libclang_rt.asan_osx_dynamic.dylib+0x4b570)
709d87830e5Smrg        #1 0x109dca92a in dsprintf (mkfontscale+0x10000392a)
710d87830e5Smrg        #2 0x109dcc788 in doDirectory (mkfontscale+0x100005788)
711d87830e5Smrg        #3 0x109dcbc78 in main (mkfontscale+0x100004c78)
712d87830e5Smrg        #4 0x7fff9083f5ac in start (libdyld.dylib+0x35ac)
713d87830e5Smrg        #5 0x3  (<unknown module>)
714d87830e5Smrg    
715d87830e5Smrg    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
716d87830e5Smrg
717d87830e5Smrgcommit ecb248d8865df376a97a795c2e4f58a3bf64c3f1
718d87830e5SmrgAuthor: Stefan Dirsch <sndirsch@suse.de>
719d87830e5SmrgDate:   Thu Apr 21 16:52:15 2016 +0200
720d87830e5Smrg
721d87830e5Smrg    fix handling of Type1 fonts without /FamilyName and/or /FullName
722d87830e5Smrg    
723d87830e5Smrg    https://bugzilla.opensuse.org/show_bug.cgi?id=918466
724d87830e5Smrg    
725d87830e5Smrg    Signed-off-by: Stefan Dirsch <sndirsch@suse.de>
726d87830e5Smrg    Reviewed-by: Adam Jackson <ajax@redhat.com>
727d87830e5Smrg
72848f45e26Smrgcommit 87d628f8eec170ec13bb9feefb1ce05aed07d1d6
72948f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
73048f45e26SmrgDate:   Fri Jan 16 23:40:40 2015 -0800
73148f45e26Smrg
73248f45e26Smrg    mkfontscale 1.1.2
73348f45e26Smrg    
73448f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
73548f45e26Smrg
73648f45e26Smrgcommit 47908fd7a0d061fdcd21e3498da4e223ca9136d9
73748f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
73848f45e26SmrgDate:   Fri Jun 20 23:23:54 2014 -0700
73948f45e26Smrg
74048f45e26Smrg    Remove extraneous duplicate checks for -r & -n options
74148f45e26Smrg    
74248f45e26Smrg    Flagged by cppcheck 1.65:
74348f45e26Smrg    [mkfontscale.c:247]: (style) Expression is always false because
74448f45e26Smrg     'else if' condition matches previous condition at line 224.
74548f45e26Smrg    [mkfontscale.c:245]: (style) Expression is always false because
74648f45e26Smrg     'else if' condition matches previous condition at line 227.
74748f45e26Smrg    
74848f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
74948f45e26Smrg    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
75048f45e26Smrg
75148f45e26Smrgcommit 48e541dc2f2fc3f4e99d3e168c28241ff5adff4d
75248f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
75348f45e26SmrgDate:   Mon Jun 2 19:39:49 2014 -0700
75448f45e26Smrg
75548f45e26Smrg    autogen.sh: Honor NOCONFIGURE=1
75648f45e26Smrg    
75748f45e26Smrg    See http://people.gnome.org/~walters/docs/build-api.txt
75848f45e26Smrg    
75948f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
76048f45e26Smrg
76148f45e26Smrgcommit f14019d598c215e09cff88c739bbf7f4d6c6b89f
76248f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
76348f45e26SmrgDate:   Mon Jun 2 19:39:49 2014 -0700
76448f45e26Smrg
76548f45e26Smrg    configure: Drop AM_MAINTAINER_MODE
76648f45e26Smrg    
76748f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
76848f45e26Smrg
76948f45e26Smrgcommit 399db42a151687f1181ae23d28a76d31125a2853
77048f45e26SmrgAuthor: Thomas Klausner <wiz@NetBSD.org>
77148f45e26SmrgDate:   Tue Mar 18 23:14:47 2014 +0100
77248f45e26Smrg
77348f45e26Smrg    Only include config.h if it exists.
77448f45e26Smrg    
77548f45e26Smrg    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
77648f45e26Smrg    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
77748f45e26Smrg
77848f45e26Smrgcommit eac564e0fc9052a39981ea47b271f7f3d2821944
77948f45e26SmrgAuthor: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
78048f45e26SmrgDate:   Thu Jan 2 00:43:14 2014 -0800
78148f45e26Smrg
78248f45e26Smrg    Fix possible malloc allocation error found by clang static analysis
78348f45e26Smrg    
78448f45e26Smrg    list.c:238:23: warning: Call to 'malloc' has an allocation size of 0 bytes
78548f45e26Smrg        ListPtr *sorted = malloc(l * sizeof(ListPtr));
78648f45e26Smrg                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
78748f45e26Smrg    
78848f45e26Smrg    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
78948f45e26Smrg
79048f45e26Smrgcommit 423ffbe9c5552dfeffa81bb6e2f2b62ab6b17580
79148f45e26SmrgAuthor: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
79248f45e26SmrgDate:   Thu Jan 2 00:39:25 2014 -0800
79348f45e26Smrg
79448f45e26Smrg    Plug a memory leak found by clang static analysis
79548f45e26Smrg    
79648f45e26Smrg    mkfontscale.c:635:25: warning: Potential leak of memory pointed to by 'notice'
79748f45e26Smrg                    foundry = notice_foundry(notice);
79848f45e26Smrg                    ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
79948f45e26Smrg    mkfontscale.c:640:8: warning: Potential leak of memory pointed to by 'notice'
80048f45e26Smrg        if(strcmp(slant, "i") == 0) {
80148f45e26Smrg           ^~~~~~
80248f45e26Smrg    
80348f45e26Smrg    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
80448f45e26Smrg
80548f45e26Smrgcommit 880a0c4733e62e54e6a0f1238c7430727d23657b
80648f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
80748f45e26SmrgDate:   Fri Nov 8 23:48:28 2013 -0800
80848f45e26Smrg
80948f45e26Smrg    Print which option was in error along with usage message
81048f45e26Smrg    
81148f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
81248f45e26Smrg    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
81348f45e26Smrg
81448f45e26Smrgcommit 26c89de6cdf0a5b7122a630a5df37fd67a4163e2
81548f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
81648f45e26SmrgDate:   Fri Nov 8 23:28:16 2013 -0800
81748f45e26Smrg
81848f45e26Smrg    Make usage() always exit(1)
81948f45e26Smrg    
82048f45e26Smrg    Avoid duplicating exit(1) calls after every single call to usage()
82148f45e26Smrg    
82248f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
82348f45e26Smrg    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
82448f45e26Smrg
82548f45e26Smrgcommit 43ab9b11699acadbf09b8ed050a7a2f7e630dce4
82648f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
82748f45e26SmrgDate:   Fri Nov 8 23:21:32 2013 -0800
82848f45e26Smrg
82948f45e26Smrg    Add -v flag to print program version
83048f45e26Smrg    
83148f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
83248f45e26Smrg    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
83348f45e26Smrg
83448f45e26Smrgcommit e5788db7f179bf89d2e5e3c97c69058027cb93bd
83548f45e26SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
83648f45e26SmrgDate:   Fri Nov 8 22:56:02 2013 -0800
83748f45e26Smrg
83848f45e26Smrg    Add missing newline to usage output
83948f45e26Smrg    
84048f45e26Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
84148f45e26Smrg    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
84248f45e26Smrg
84387aef7c3Smrgcommit f48de13423c7300f4da9f61993b624426b38ddc0
84487aef7c3SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
84587aef7c3SmrgDate:   Tue Jul 16 22:50:54 2013 -0700
84687aef7c3Smrg
84787aef7c3Smrg    mkfontscale 1.1.1
84887aef7c3Smrg    
84987aef7c3Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
85087aef7c3Smrg
85187aef7c3Smrgcommit f731c5c36f28ddd0f25f474d2991c96f9a7a915c
85287aef7c3SmrgAuthor: Thomas Klausner <wiz@NetBSD.org>
85387aef7c3SmrgDate:   Sun Jun 2 21:16:54 2013 +0200
85487aef7c3Smrg
85587aef7c3Smrg    Protect config.h inclusion like usual.
85687aef7c3Smrg    
85787aef7c3Smrg    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
85887aef7c3Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
85987aef7c3Smrg
86087aef7c3Smrgcommit 19e2cb7c6a3ec2c5b1bc0d24866fa685eef0ee13
86187aef7c3SmrgAuthor: Peter Hutterer <peter.hutterer@who-t.net>
86287aef7c3SmrgDate:   Tue May 21 15:50:19 2013 +1000
86387aef7c3Smrg
86487aef7c3Smrg    Document -u/-U options in man page
86587aef7c3Smrg    
86687aef7c3Smrg    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
86787aef7c3Smrg    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
86887aef7c3Smrg
86987aef7c3Smrgcommit b3af8de8d25128f565c2ed2f7c63b6e4099eb84e
87087aef7c3SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
87187aef7c3SmrgDate:   Sat Jan 19 12:05:06 2013 -0800
87287aef7c3Smrg
87387aef7c3Smrg    Replace malloc(strlen);strcpy() calls with strdup
87487aef7c3Smrg    
87587aef7c3Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
87687aef7c3Smrg
87787aef7c3Smrgcommit 547517571e695728278a264eedbac47b6e1f43bc
87887aef7c3SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
87987aef7c3SmrgDate:   Sat Jan 19 11:51:39 2013 -0800
88087aef7c3Smrg
88187aef7c3Smrg    Since hash() returns unsigned int, store results in unsigned ints
88287aef7c3Smrg    
88387aef7c3Smrg    Clears clang warnings:
88487aef7c3Smrg    hash.c:82:13: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion]
88587aef7c3Smrg        int i = hash(key);
88687aef7c3Smrg            ~   ^~~~~~~~~
88787aef7c3Smrg    hash.c:94:13: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion]
88887aef7c3Smrg        int i = hash(key);
88987aef7c3Smrg            ~   ^~~~~~~~~
89087aef7c3Smrg    
89187aef7c3Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
89287aef7c3Smrg
89387aef7c3Smrgcommit 1157b3039551b552b483f05f6a411e57941a87c0
89487aef7c3SmrgAuthor: Egbert Eich <eich@freedesktop.org>
89587aef7c3SmrgDate:   Fri Jan 11 12:04:16 2013 -0500
89687aef7c3Smrg
89787aef7c3Smrg    Fix compilation for MinGW
89887aef7c3Smrg    
89987aef7c3Smrg    Fix compilation for MinGW since 9cbe3256bc932b82f2435b23cda0931f4f5f5ba2
90087aef7c3Smrg    Unfortunately, MinGW doesn't define S_ISLNK, so check for that as well.
90187aef7c3Smrg    
90287aef7c3Smrg    Signed-off-by: Egbert Eich <eich@freedesktop.org>
90387aef7c3Smrg    Reviewed-by: Colin Harrison <colin.harrison at virgin.net>
90487aef7c3Smrg
90587aef7c3Smrgcommit 9cbe3256bc932b82f2435b23cda0931f4f5f5ba2
90687aef7c3SmrgAuthor: Egbert Eich <eich@freedesktop.org>
90787aef7c3SmrgDate:   Thu May 19 10:38:44 2011 +0200
90887aef7c3Smrg
90987aef7c3Smrg    Prefer original file over symlink (v2)
91087aef7c3Smrg    
91187aef7c3Smrg    If a symlink to a fontfile in the same directory exists the file
91287aef7c3Smrg    that got picked depends on the order in which readdir() picked
91387aef7c3Smrg    entries.
91487aef7c3Smrg    This patch gives the file a higher preference than the symlink to
91587aef7c3Smrg    it so it will be preferred if the xlfd entries match.
91687aef7c3Smrg    
91787aef7c3Smrg    v2: Followed a suggestion by Julien Cristau <jcristau@debian.org>
91887aef7c3Smrg        to check for DT_LNK being defined instead of _BSD_SOURCE
91987aef7c3Smrg        and fall back to lstat() if d_type is DT_UNKNOWN.
92087aef7c3Smrg    
92187aef7c3Smrg    Signed-off-by: Egbert Eich <eich@freedesktop.org>
92287aef7c3Smrg
923663cdc11Smrgcommit 4c3f72f9e3385d9c855416b6498ced067a97c712
924663cdc11SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
925663cdc11SmrgDate:   Fri Feb 10 20:19:37 2012 -0800
926663cdc11Smrg
927663cdc11Smrg    mkfontscale 1.1.0
928663cdc11Smrg    
929663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
930663cdc11Smrg
931663cdc11Smrgcommit bf7d4fd83c896b70f68d59de756a3847417d9add
932663cdc11SmrgAuthor: Maxim Iorsh <iorsh@users.sourceforge.net>
933663cdc11SmrgDate:   Thu Oct 20 08:08:47 2011 +0200
934663cdc11Smrg
935663cdc11Smrg    mkfontscale: fix Culmus entries to precede URW
936663cdc11Smrg    
937663cdc11Smrg    Culmus must precede URW and Bitstream in notice list, since its fonts are
938663cdc11Smrg    based on URW/Bitstream sometimes.
939663cdc11Smrg    
940663cdc11Smrg    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
941663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
942663cdc11Smrg
943663cdc11Smrgcommit cd8182e74636ffd9b140603fc61502b42a9d6f2b
944663cdc11SmrgAuthor: Maxim Iorsh <iorsh@users.sourceforge.net>
945663cdc11SmrgDate:   Tue Oct 18 22:07:45 2011 -0700
946663cdc11Smrg
947663cdc11Smrg    Add Culmus foundry to the vendor list for TrueType & Type1 fonts
948663cdc11Smrg    
949663cdc11Smrg    Maps fonts produced by the Culmus project <http://culmus.sourceforge.net>
950663cdc11Smrg    to the XLFD foundry name "culmus"
951663cdc11Smrg    
952663cdc11Smrg    For TrueType fonts, maps the vendor code "CLM" from the TrueType vendor
953663cdc11Smrg    id field.
954663cdc11Smrg    
955663cdc11Smrg    For Type1 fonts, which use heuristics to guess mappings to XLFD foundries
956663cdc11Smrg    from words in the copyright notice, add the names of the main contributors
957663cdc11Smrg    to the Culmus product to recognize the fonts under their copyright.
958663cdc11Smrg    
959663cdc11Smrg    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
960663cdc11Smrg    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
961663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
962663cdc11Smrg
963663cdc11Smrgcommit a39deac00add15532b15827c80601f87738cb405
964663cdc11SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
965663cdc11SmrgDate:   Tue Oct 4 21:03:13 2011 -0700
966663cdc11Smrg
967663cdc11Smrg    Strip trailing whitespace
968663cdc11Smrg    
969663cdc11Smrg    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
970663cdc11Smrg    git diff -w & git diff -b show no diffs from this change
971663cdc11Smrg    
972663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
973663cdc11Smrg
974663cdc11Smrgcommit b2d0f04a50f1444f9d62d11636a28c89951f0f40
975663cdc11SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
976663cdc11SmrgDate:   Tue Oct 4 21:00:11 2011 -0700
977663cdc11Smrg
978663cdc11Smrg    Add const attributes to fix gcc -Wwrite-strings warnings
979663cdc11Smrg    
980663cdc11Smrg    Does not fix all of them since some lists contain constant strings and
981663cdc11Smrg    some contain dynamically allocated strings that need to be freed later.
982663cdc11Smrg    
983663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
984663cdc11Smrg
985663cdc11Smrgcommit 0f4f6462597841e5f8470571d56cfda61144ee8f
986663cdc11SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
987663cdc11SmrgDate:   Mon Sep 26 15:55:12 2011 -0700
988663cdc11Smrg
989663cdc11Smrg    Mark format string argument to dsprintf as const char *
990663cdc11Smrg    
991663cdc11Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
992663cdc11Smrg
993663cdc11Smrgcommit 8ee3b3f73a6c14c4326435fea7136c09fe2822d1
994663cdc11SmrgAuthor: Maxim Iorsh <iorsh@users.sourceforge.net>
995663cdc11SmrgDate:   Mon Oct 3 21:52:15 2011 +0200
996663cdc11Smrg
997663cdc11Smrg    mkfontscale: Support FontForge weight designations.
998663cdc11Smrg    
999663cdc11Smrg    Fontforge uses 'ExtraLight' and 'Heavy' weights in Type 1 fonts, which
1000663cdc11Smrg    should be understood by mkfontscale. Other FontForge designations are
1001663cdc11Smrg    already addressed.
1002663cdc11Smrg    
1003663cdc11Smrg    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
1004663cdc11Smrg    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1005663cdc11Smrg
1006245f6787Smrgcommit d429321888c335042332d991480095f67c85bb64
1007245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1008245f6787SmrgDate:   Wed Jun 29 20:25:37 2011 -0700
1009245f6787Smrg
1010245f6787Smrg    mkfontscale 1.0.9
1011245f6787Smrg    
1012245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1013245f6787Smrg
1014245f6787Smrgcommit 82af43b3e142ed8a85f1057bc67fc44baf95cc13
1015245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1016245f6787SmrgDate:   Mon May 23 18:33:53 2011 -0700
1017245f6787Smrg
1018245f6787Smrg    Add _X_ATTRIBUTE_PRINTF to functions taking printf format arguments
1019245f6787Smrg    
1020245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1021245f6787Smrg    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1022245f6787Smrg
1023245f6787Smrgcommit 3da7640b35c9660944168217c145a1011547712b
1024245f6787SmrgAuthor: Jeremy Huddleston <jeremyhu@apple.com>
1025245f6787SmrgDate:   Sun May 8 09:36:02 2011 -0700
1026245f6787Smrg
1027245f6787Smrg    Dead code removal
1028245f6787Smrg    
1029245f6787Smrg    have_face is initialized to 0 at the beginning of the loop, so no need to set
1030245f6787Smrg    it to 0 just before it goes out of scope at the end of the loop.
1031245f6787Smrg    
1032245f6787Smrg    mkfontscale.c:945:13: warning: Value stored to 'have_face' is never read
1033245f6787Smrg                have_face = 0;
1034245f6787Smrg                ^           ~
1035245f6787Smrg    
1036245f6787Smrg    Found-by: clang static analyzer
1037245f6787Smrg    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1038245f6787Smrg
1039245f6787Smrgcommit b8c26cb3d41b18dfcc14a1ae256f6575c7df7593
1040245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1041245f6787SmrgDate:   Thu Feb 24 23:24:17 2011 -0800
1042245f6787Smrg
1043245f6787Smrg    makeList: free partially allocated list on failure
1044245f6787Smrg    
1045245f6787Smrg    Error: Memory leak (CWE 401)
1046245f6787Smrg       Memory leak of pointer 'first' allocated with malloc(8)
1047245f6787Smrg            at line 192 of list.c in function 'makeList'.
1048245f6787Smrg              'first' allocated at line 181 with malloc(8).
1049245f6787Smrg              first leaks when next == 0 at line 191.
1050245f6787Smrg    
1051245f6787Smrg    [ This bug was found by the Parfait 0.3.6 bug checking tool.
1052245f6787Smrg      For more information see http://labs.oracle.com/projects/parfait/ ]
1053245f6787Smrg    
1054245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1055245f6787Smrg    Reviewed-by: Julien Cristau <jcristau@debian.org>
1056245f6787Smrg
1057245f6787Smrgcommit 9d424d79ca56e7e372a286fca478996eeee8ebfe
1058245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1059245f6787SmrgDate:   Thu Feb 24 23:15:25 2011 -0800
1060245f6787Smrg
1061245f6787Smrg    Leave room for null terminator in file & font name arrays
1062245f6787Smrg    
1063245f6787Smrg    fscanf %s arguments don't include the trailing \0 byte in their counts.
1064245f6787Smrg    
1065245f6787Smrg    Error: Buffer overrun
1066245f6787Smrg       Buffer overflow (CWE 120): Use of fscanf(%1024[), with buffer 'font'
1067245f6787Smrg          Array size is 1024 bytes
1068245f6787Smrg            at line 707 of mkfontscale.c in function 'readFontScale'.
1069245f6787Smrg       Buffer overflow (CWE 120): Use of fscanf(%1024s), with buffer 'file'
1070245f6787Smrg          Array size is 1024 bytes
1071245f6787Smrg            at line 707 of mkfontscale.c in function 'readFontScale'.
1072245f6787Smrg    
1073245f6787Smrg    [ This bug was found by the Parfait 0.3.6 bug checking tool.
1074245f6787Smrg      For more information see http://labs.oracle.com/projects/parfait/ ]
1075245f6787Smrg    
1076245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1077245f6787Smrg    Reviewed-by: Julien Cristau <jcristau@debian.org>
1078245f6787Smrg
1079245f6787Smrgcommit 45b33b463c8acc2c0ff37e209387d6b664576cc4
1080245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1081245f6787SmrgDate:   Mon Feb 14 23:22:56 2011 -0800
1082245f6787Smrg
1083245f6787Smrg    Sort contents of encodings.dir
1084245f6787Smrg    
1085245f6787Smrg    Allows easier comparison between builds to detect changes.
1086245f6787Smrg    Helps reduce deltas in packaging systems that compare old & new versions.
1087245f6787Smrg    
1088245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1089245f6787Smrg
1090245f6787Smrgcommit 623a620bde1988e105b2fe814a3158da0e7b863c
1091245f6787SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1092245f6787SmrgDate:   Wed Jan 19 10:06:55 2011 -0500
1093245f6787Smrg
1094245f6787Smrg    config: move man pages into their own directory
1095245f6787Smrg    
1096245f6787Smrg    Use services provided by XORG_MANPAGE_SECTIONS.
1097245f6787Smrg    Use standard Makefile for man pages.
1098245f6787Smrg    
1099245f6787Smrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1100245f6787Smrg
1101245f6787Smrgcommit 2e2073e358a6d9069dd5b5f3757de769cbc92721
1102245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1103245f6787SmrgDate:   Sun Jan 9 13:44:31 2011 -0800
1104245f6787Smrg
1105245f6787Smrg    Remove unused NEED_SNPRINTF code to #include non-existent snprintf.c
1106245f6787Smrg    
1107245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1108245f6787Smrg
1109245f6787Smrgcommit 2ad869a51804e5232f10c1c933e2822c205c3265
1110245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1111245f6787SmrgDate:   Sun Jan 9 13:39:00 2011 -0800
1112245f6787Smrg
1113245f6787Smrg    Make fscanf format string constant so it can be checked at compile time
1114245f6787Smrg    
1115245f6787Smrg    Clears gcc warning of:
1116245f6787Smrg    mkfontscale.c:714: warning: format not a string literal, argument types not checked
1117245f6787Smrg    
1118245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1119245f6787Smrg
1120245f6787Smrgcommit ed14fe953f8f6fee90fcf28cd6775037b5f6e228
1121245f6787SmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1122245f6787SmrgDate:   Sun Jan 9 13:24:10 2011 -0800
1123245f6787Smrg
1124245f6787Smrg    config: Add missing AC_CONFIG_SRCDIR
1125245f6787Smrg    
1126245f6787Smrg    Regroup AC statements under the Autoconf initialization section.
1127245f6787Smrg    Regroup AM statements under the Automake initialization section.
1128245f6787Smrg    
1129245f6787Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1130245f6787Smrg
1131245f6787Smrgcommit f27bcd4d366b2c12e658ff018542c4273b36631a
1132245f6787SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1133245f6787SmrgDate:   Thu Jan 13 11:15:47 2011 -0500
1134245f6787Smrg
1135245f6787Smrg    man: remove trailing spaces and tabs
1136245f6787Smrg    
1137245f6787Smrg    Using s/[ \t]*$//
1138245f6787Smrg    
1139245f6787Smrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1140245f6787Smrg
1141245f6787Smrgcommit fedc022d29297f524d39a2637c1529782edcdceb
1142245f6787SmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1143245f6787SmrgDate:   Wed Jan 12 16:28:02 2011 -0500
1144245f6787Smrg
1145245f6787Smrg    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
1146245f6787Smrg    
1147245f6787Smrg    This silences an Autoconf warning
1148245f6787Smrg
1149b6f2c9ccSmrgcommit 7a1e1e64c171ae95339bbd327806f892816850d7
1150b6f2c9ccSmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1151b6f2c9ccSmrgDate:   Fri Oct 29 23:03:40 2010 -0700
1152b6f2c9ccSmrg
1153b6f2c9ccSmrg    mkfontscale 1.0.8
1154b6f2c9ccSmrg    
1155b6f2c9ccSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1156b6f2c9ccSmrg
1157b6f2c9ccSmrgcommit 6a013e3524c0bdee54a33b0e9a255f3a7580603f
1158b6f2c9ccSmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1159b6f2c9ccSmrgDate:   Fri Oct 29 23:01:47 2010 -0700
1160b6f2c9ccSmrg
1161b6f2c9ccSmrg    Remove unnecessary calls from configure.ac
1162b6f2c9ccSmrg    
1163b6f2c9ccSmrg    XORG_DEFAULT_OPTIONS calls AC_PROG_CC and AC_PROG_INSTALL
1164b6f2c9ccSmrg    PKG_CHECK_MODULES calls AC_SUBST on LIBS & CFLAGS variables
1165b6f2c9ccSmrg    
1166b6f2c9ccSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1167b6f2c9ccSmrg
1168b6f2c9ccSmrgcommit ae4a7325cf30dda566391b37d9ce7ffb946b842e
1169b6f2c9ccSmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1170b6f2c9ccSmrgDate:   Fri Oct 29 22:58:07 2010 -0700
1171b6f2c9ccSmrg
1172b6f2c9ccSmrg    config: upgrade to util-macros 1.8 for additional man page support
1173b6f2c9ccSmrg    
1174b6f2c9ccSmrg    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
1175b6f2c9ccSmrg    The value of MAN_SUBST is the same for all X.Org packages.
1176b6f2c9ccSmrg    
1177b6f2c9ccSmrg    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
1178b6f2c9ccSmrg    Enables use of platform appropriate version of sed.
1179b6f2c9ccSmrg    
1180b6f2c9ccSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1181b6f2c9ccSmrg
1182b6f2c9ccSmrgcommit 332cbd76cf14a567a75589e85d82a7d3278d1c8b
1183b6f2c9ccSmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1184b6f2c9ccSmrgDate:   Tue Jul 20 18:45:18 2010 -0400
1185b6f2c9ccSmrg
1186b6f2c9ccSmrg    config: update AC_PREREQ statement to 2.60
1187b6f2c9ccSmrg    
1188b6f2c9ccSmrg    Unrelated to the previous patches, the new value simply reflects
1189b6f2c9ccSmrg    the reality that the minimum level for autoconf to configure
1190b6f2c9ccSmrg    all x.org modules is 2.60 dated June 2006.
1191b6f2c9ccSmrg    
1192b6f2c9ccSmrg    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
1193b6f2c9ccSmrg    
1194b6f2c9ccSmrg    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1195b6f2c9ccSmrg
1196b6f2c9ccSmrgcommit 64b1f54bcebc6ed628f74f0204d9ec7242e6e9ce
1197b6f2c9ccSmrgAuthor: Alan Coopersmith <alan.coopersmith@oracle.com>
1198b6f2c9ccSmrgDate:   Fri Oct 29 22:57:04 2010 -0700
1199b6f2c9ccSmrg
1200b6f2c9ccSmrg    Sun's copyrights now belong to Oracle
1201b6f2c9ccSmrg    
1202b6f2c9ccSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1203b6f2c9ccSmrg
1204b6f2c9ccSmrgcommit a697d45a4b7e265654a1cb64d5af0e05b377a040
1205b6f2c9ccSmrgAuthor: Jesse Adkins <jesserayadkins@gmail.com>
1206b6f2c9ccSmrgDate:   Tue Sep 28 13:29:49 2010 -0700
1207b6f2c9ccSmrg
1208b6f2c9ccSmrg    Purge cvs tags.
1209b6f2c9ccSmrg    
1210b6f2c9ccSmrg    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
1211b6f2c9ccSmrg
1212b6f2c9ccSmrgcommit 0ba1bdaf1db3391c5501fb687df8395fb23b7f6a
1213b6f2c9ccSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1214b6f2c9ccSmrgDate:   Thu Jan 14 22:01:58 2010 -0800
1215b6f2c9ccSmrg
1216b6f2c9ccSmrg    Update Sun license notices to current X.Org standard form
1217b6f2c9ccSmrg    
1218b6f2c9ccSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1219b6f2c9ccSmrg
1220b6f2c9ccSmrgcommit 570c7b11f38355be8e126d21dbc2ae91428dd7c0
1221b6f2c9ccSmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1222b6f2c9ccSmrgDate:   Thu Nov 26 09:19:52 2009 -0500
1223b6f2c9ccSmrg
1224b6f2c9ccSmrg    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
1225b6f2c9ccSmrg    
1226b6f2c9ccSmrg    Now that the INSTALL file is generated.
1227b6f2c9ccSmrg    Allows running make maintainer-clean.
1228b6f2c9ccSmrg
1229b6f2c9ccSmrgcommit 54698669d9cd1fba4918ad76edd994ecf7a6aa11
1230b6f2c9ccSmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1231b6f2c9ccSmrgDate:   Wed Oct 28 14:09:07 2009 -0400
1232b6f2c9ccSmrg
1233b6f2c9ccSmrg    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
1234b6f2c9ccSmrg    
1235b6f2c9ccSmrg    Add missing INSTALL file. Use standard GNU file on building tarball
1236b6f2c9ccSmrg    README may have been updated
1237b6f2c9ccSmrg    Remove AUTHORS file as it is empty and no content available yet.
1238b6f2c9ccSmrg    Remove NEWS file as it is empty and no content available yet.
1239b6f2c9ccSmrg
1240b6f2c9ccSmrgcommit a96b22739ed1204b55a0eb00dc15a3bf7d3c77f4
1241b6f2c9ccSmrgAuthor: Gaetan Nadon <memsize@videotron.ca>
1242b6f2c9ccSmrgDate:   Thu Oct 22 12:34:14 2009 -0400
1243b6f2c9ccSmrg
1244b6f2c9ccSmrg    .gitignore: use common defaults with custom section # 24239
1245b6f2c9ccSmrg    
1246b6f2c9ccSmrg    Using common defaults will reduce errors and maintenance.
1247b6f2c9ccSmrg    Only the very small or inexistent custom section need periodic maintenance
1248b6f2c9ccSmrg    when the structure of the component changes. Do not edit defaults.
1249b6f2c9ccSmrg
1250e83ac88aSmrgcommit 34a5a7ae5dc6c8d5f8cb50755d16ef0f573ff2f2
1251e83ac88aSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1252e83ac88aSmrgDate:   Sat Oct 10 22:31:00 2009 -0700
1253e83ac88aSmrg
1254e83ac88aSmrg    mkfontscale 1.0.7
1255e83ac88aSmrg    
1256e83ac88aSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1257e83ac88aSmrg
1258e83ac88aSmrgcommit acedad9e929c1edfa17fc1cb9d37a19701cd200d
1259e83ac88aSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1260e83ac88aSmrgDate:   Sat Oct 10 22:29:08 2009 -0700
1261e83ac88aSmrg
1262e83ac88aSmrg    Add link to SubmittingPatches wiki page to README
1263e83ac88aSmrg    
1264e83ac88aSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1265e83ac88aSmrg
1266e83ac88aSmrgcommit 245160adaca3957ead8fc278387c20e11b9bb7d2
1267e83ac88aSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1268e83ac88aSmrgDate:   Sat Oct 10 22:26:24 2009 -0700
1269e83ac88aSmrg
1270e83ac88aSmrg    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
1271e83ac88aSmrg    
1272e83ac88aSmrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1273e83ac88aSmrg
1274e83ac88aSmrgcommit 2ff1863a387a393e237e9f05525a48806e900368
1275e83ac88aSmrgAuthor: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1276e83ac88aSmrgDate:   Fri Jan 16 20:17:08 2009 -0200
1277e83ac88aSmrg
1278e83ac88aSmrg    Silence sparse warnings and update .gitignore.
1279e83ac88aSmrg
12807978d3cdSmrgcommit a34031ea9074a453aee217b5845d07333019f26c
12817978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
12827978d3cdSmrgDate:   Thu Dec 18 16:56:12 2008 -0800
12837978d3cdSmrg
12847978d3cdSmrg    Version 1.0.6
12857978d3cdSmrg
12867978d3cdSmrgcommit 95c7da3a2717a0352cdd08830fdd1dd1a4024dda
12877978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
12887978d3cdSmrgDate:   Thu Dec 18 16:55:56 2008 -0800
12897978d3cdSmrg
12907978d3cdSmrg    man page typo fix
12917978d3cdSmrg
12927978d3cdSmrgcommit 0d1a2b7970c0eadb834fc2a6c3a68a09691b84ea
12937978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
12947978d3cdSmrgDate:   Wed Dec 17 19:29:54 2008 -0800
12957978d3cdSmrg
12967978d3cdSmrg    Add hooks for checking sources with lint/sparse/etc.
12977978d3cdSmrg
12987978d3cdSmrgcommit 3ae585a3f08cb660c6ce6838557c94f88821b7a5
12997978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
13007978d3cdSmrgDate:   Wed Dec 17 19:22:27 2008 -0800
13017978d3cdSmrg
13027978d3cdSmrg    Add basic README with URL's of git, bugzilla & mailing list
13037978d3cdSmrg
13047978d3cdSmrgcommit 03f6a08c503ff12e2457a9ccc13bfbb801e2161d
13057978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
13067978d3cdSmrgDate:   Wed Dec 17 19:19:03 2008 -0800
13077978d3cdSmrg
13087978d3cdSmrg    Use XORG_CWARNFLAGS & XORG_CHANGELOG from xorg-macros 1.2
13097978d3cdSmrg
13107978d3cdSmrgcommit 0ca983a6bac03489fb0d2ad158114a811eb276a2
13117978d3cdSmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
13127978d3cdSmrgDate:   Wed Nov 5 10:07:33 2008 -0800
13137978d3cdSmrg
13147978d3cdSmrg    Add support for bzip2 compressed fonts if configured --with-bzip2
13157978d3cdSmrg
1316ea6ae205Smrgcommit 8126d2b694f48cc8137be05705a125f7d02e7e12
1317ea6ae205SmrgAuthor: Julien Cristau <jcristau@debian.org>
1318ea6ae205SmrgDate:   Sun May 11 00:03:44 2008 +0200
1319ea6ae205Smrg
1320ea6ae205Smrg    Bump to 1.0.5
1321ea6ae205Smrg
1322ea6ae205Smrgcommit f131ff40d2b46692c393346110df2567cfa67c29
1323ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1324ea6ae205SmrgDate:   Sat May 10 23:58:55 2008 +0200
1325ea6ae205Smrg
1326ea6ae205Smrg    Update copyright date.
1327ea6ae205Smrg
1328ea6ae205Smrgcommit c322c79c2b9b8d6075b6782d572033cc50799a49
1329ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1330ea6ae205SmrgDate:   Sat May 10 23:56:33 2008 +0200
1331ea6ae205Smrg
1332ea6ae205Smrg    Fix handling of OpenType/CFF fonts with embedded bitmaps.
1333ea6ae205Smrg    The old workaround would trigger with CFF fonts with embedded bitmaps.
1334ea6ae205Smrg    We now explicitly check for the font format being TrueType.
1335ea6ae205Smrg    Reported by Andrey V. Panov.
1336ea6ae205Smrg
1337ea6ae205Smrgcommit 5db9e13aafbed8c0562838005147ebefb12d08ac
1338ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1339ea6ae205SmrgDate:   Sat May 10 23:37:14 2008 +0200
1340ea6ae205Smrg
1341ea6ae205Smrg    Remove doubly included header.
1342ea6ae205Smrg
1343ea6ae205Smrgcommit b0860282c3229d088840fa0758d8473ea6d8813b
1344ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1345ea6ae205SmrgDate:   Mon Apr 28 19:53:11 2008 +0200
1346ea6ae205Smrg
1347ea6ae205Smrg    Add bdf and pcf to font priority table.
1348ea6ae205Smrg    This mirrors the behaviour of the old mkfontdir, which prefers pcf to
1349ea6ae205Smrg    bdf fonts.
1350ea6ae205Smrg
1351ea6ae205Smrgcommit 9c5594ad13e9143e86a7fd94f90858795ae2970b
1352ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1353ea6ae205SmrgDate:   Mon Apr 28 19:15:05 2008 +0200
1354ea6ae205Smrg
1355ea6ae205Smrg    Fix typo in mkfontscale.c.
1356ea6ae205Smrg    This spurious break statement disabled checking for Apple and ISO Unicode
1357ea6ae205Smrg    CMaps in SFNT fonts.  Thanks to Alan Coopersmith and Stefan Dirsch.
1358ea6ae205Smrg
1359ea6ae205Smrgcommit 5ca409f025fb35a20ab1ef4742a9034a36e3d959
1360ea6ae205SmrgAuthor: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1361ea6ae205SmrgDate:   Sat Mar 15 18:44:06 2008 -0300
1362ea6ae205Smrg
1363ea6ae205Smrg    Compile warning fixes.
1364ea6ae205Smrg    
1365ea6ae205Smrg    Include headers for proper prototypes and "ansify" makeHashTable.
1366ea6ae205Smrg    
1367ea6ae205Smrg    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1368ea6ae205Smrg
1369ea6ae205Smrgcommit 47ec1e2697eb856f823cc1b488c6b5a1d2077df9
1370ea6ae205SmrgAuthor: Adam Jackson <ajax@redhat.com>
1371ea6ae205SmrgDate:   Thu Mar 6 16:40:41 2008 -0500
1372ea6ae205Smrg
1373ea6ae205Smrg    mkfontscale 1.0.4
1374ea6ae205Smrg
1375ea6ae205Smrgcommit 1cb9c0074c5075bbce63ff3601712f34bbb74ca1
1376ea6ae205SmrgAuthor: Adam Jackson <ajax@redhat.com>
1377ea6ae205SmrgDate:   Sun Feb 24 21:34:00 2008 -0500
1378ea6ae205Smrg
1379ea6ae205Smrg    Bug #11337: Use strcasecmp() instead of broken open-coded version.
1380ea6ae205Smrg    
1381ea6ae205Smrg    Also, use tolower() instead of broken open-coded version.
1382ea6ae205Smrg
1383ea6ae205Smrgcommit 11651914cb1700528524bd3aabe2372629ce86c8
1384ea6ae205SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1385ea6ae205SmrgDate:   Mon Jan 7 14:28:30 2008 -0800
1386ea6ae205Smrg
1387ea6ae205Smrg    Fix typo in man page
1388ea6ae205Smrg
1389ea6ae205Smrgcommit 963552c24bf90610f2b3e2e77277ad77e2b21210
1390ea6ae205SmrgAuthor: Alan Coopersmith <alan.coopersmith@sun.com>
1391ea6ae205SmrgDate:   Mon Jan 7 14:26:56 2008 -0800
1392ea6ae205Smrg
1393ea6ae205Smrg    Convert (1) to (__appmansuffix__) in man page
1394ea6ae205Smrg
1395ea6ae205Smrgcommit 3e8bfcc4d87cd26b9426be1ab8941e1a8d709d3c
1396ea6ae205SmrgAuthor: James Cloos <cloos@jhcloos.com>
1397ea6ae205SmrgDate:   Thu Dec 6 16:37:03 2007 -0500
1398ea6ae205Smrg
1399ea6ae205Smrg    Replace static ChangeLog with dist-hook to generate from git log
1400ea6ae205Smrg
1401ea6ae205Smrgcommit d59c58bc3e09fd4adf773cd2e0a8c8c0e6018b08
1402ea6ae205SmrgAuthor: James Cloos <cloos@jhcloos.com>
1403ea6ae205SmrgDate:   Mon Sep 3 05:51:05 2007 -0400
1404ea6ae205Smrg
1405ea6ae205Smrg    Add *~ to .gitignore to skip patch/emacs droppings
1406ea6ae205Smrg
1407ea6ae205Smrgcommit 73e8b8696e09c2502c2b3f66cbe364a8de14198e
1408ea6ae205SmrgAuthor: James Cloos <cloos@jhcloos.com>
1409ea6ae205SmrgDate:   Thu Aug 23 19:24:29 2007 -0400
1410ea6ae205Smrg
1411ea6ae205Smrg    Rename .cvsignore to .gitignore
1412ea6ae205Smrg
1413ea6ae205Smrgcommit 08cf5e3544be3a64725e5aacd6209bae32185ff0
1414ea6ae205SmrgAuthor: Daniel Stone <daniel@fooishbar.org>
1415ea6ae205SmrgDate:   Wed Nov 8 16:29:43 2006 +0200
1416ea6ae205Smrg
1417ea6ae205Smrg    bump to 1.0.3
1418ea6ae205Smrg
1419ea6ae205Smrgcommit b155ad1329e193987ed4102384b7996d6dd45088
1420ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1421ea6ae205SmrgDate:   Tue Oct 31 16:48:18 2006 +0100
1422ea6ae205Smrg
1423ea6ae205Smrg    Allow SemiBold weight for Type 1 fonts.
1424ea6ae205Smrg    Thanks to Andrey Panov.
1425ea6ae205Smrg
1426ea6ae205Smrgcommit b849af72d7b564f7c09ee480f7496a741063b2a8
1427ea6ae205SmrgAuthor: Juliusz Chroboczek <jch@pps.jussieu.fr>
1428ea6ae205SmrgDate:   Tue Oct 31 01:35:27 2006 +0100
1429ea6ae205Smrg
1430ea6ae205Smrg    Fix typos in manual page, update author's address, update COPYING.
1431ea6ae205Smrg
1432ea6ae205Smrgcommit 65908e9db4457af1a896d82d5d153655096afb4e
1433ea6ae205SmrgAuthor: Adam Jackson <ajax@benzedrine.nwnk.net>
1434ea6ae205SmrgDate:   Fri Oct 13 17:45:45 2006 -0400
1435ea6ae205Smrg
1436ea6ae205Smrg    Bump to 1.0.2
1437ea6ae205Smrg
1438ea6ae205Smrgcommit 72d7891bba975dc637dfcc4df068da4a0afae40c
1439ea6ae205SmrgAuthor: Alan Hourihane <alanh@fairlite.demon.co.uk>
1440ea6ae205SmrgDate:   Wed Jul 19 09:47:10 2006 +0100
1441ea6ae205Smrg
1442ea6ae205Smrg    open files in binary mode. fixes cygwin issues.
1443ea6ae205Smrg
1444ea6ae205Smrgcommit 74743bd788dc7d9f65e151142a594dd5dd3679fb
1445ea6ae205SmrgAuthor: Jeremy C. Reed <reed@reedmedia.net>
1446ea6ae205SmrgDate:   Thu May 25 23:18:01 2006 +0000
1447ea6ae205Smrg
1448ea6ae205Smrg    Check for xproto not x11 (libX11 is not needed).
1449ea6ae205Smrg
1450ea6ae205Smrgcommit 300ead104133e0967dd2edfd8ef000768e5b2ec5
1451ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1452ea6ae205SmrgDate:   Wed Dec 21 02:29:43 2005 +0000
1453ea6ae205Smrg
1454ea6ae205Smrg    Update package version for X11R7 release.
1455ea6ae205Smrg
1456ea6ae205Smrgcommit 749ba16c39f2787823d65677c46dd0df10210127
1457ea6ae205SmrgAuthor: Adam Jackson <ajax@nwnk.net>
1458ea6ae205SmrgDate:   Mon Dec 19 16:22:41 2005 +0000
1459ea6ae205Smrg
1460ea6ae205Smrg    Stub COPYING files
1461ea6ae205Smrg
1462ea6ae205Smrgcommit f6c3c20921a741d1b8aca31ae4c29105c62e6eb0
1463ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1464ea6ae205SmrgDate:   Thu Dec 15 00:24:03 2005 +0000
1465ea6ae205Smrg
1466ea6ae205Smrg    Update package version number for final X11R7 release candidate.
1467ea6ae205Smrg
1468ea6ae205Smrgcommit db2fd6b3063b161726303f469510edae5552506a
1469ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1470ea6ae205SmrgDate:   Tue Dec 6 22:48:17 2005 +0000
1471ea6ae205Smrg
1472ea6ae205Smrg    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
1473ea6ae205Smrg
1474ea6ae205Smrgcommit 36de3963aaeca770500ca1a0c1677a2a087506d3
1475ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1476ea6ae205SmrgDate:   Sat Dec 3 05:49:16 2005 +0000
1477ea6ae205Smrg
1478ea6ae205Smrg    Update package version number for X11R7 RC3 release.
1479ea6ae205Smrg
1480ea6ae205Smrgcommit 35101f83cc13a9989a0a505afbe1557e2eb2b431
1481ea6ae205SmrgAuthor: Alan Coopersmith <Alan.Coopersmith@sun.com>
1482ea6ae205SmrgDate:   Mon Nov 28 22:01:37 2005 +0000
1483ea6ae205Smrg
1484ea6ae205Smrg    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
1485ea6ae205Smrg        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
1486ea6ae205Smrg
1487ea6ae205Smrgcommit 7494ff7b73b4bf0b3d01703f2b8d9bcbcb032c89
1488ea6ae205SmrgAuthor: Eric Anholt <anholt@freebsd.org>
1489ea6ae205SmrgDate:   Mon Nov 21 10:34:56 2005 +0000
1490ea6ae205Smrg
1491ea6ae205Smrg    Another pass at .cvsignores for apps.
1492ea6ae205Smrg
1493ea6ae205Smrgcommit 818a45cd26343f5a90b5861ee3eacaeb7f1b02d9
1494ea6ae205SmrgAuthor: Eric Anholt <anholt@freebsd.org>
1495ea6ae205SmrgDate:   Sun Nov 20 22:08:49 2005 +0000
1496ea6ae205Smrg
1497ea6ae205Smrg    Add/improve .cvsignore files for apps.
1498ea6ae205Smrg
1499ea6ae205Smrgcommit ff0494da73f7375ef051621c72f6ce91a101574a
1500ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1501ea6ae205SmrgDate:   Sat Nov 19 07:15:35 2005 +0000
1502ea6ae205Smrg
1503ea6ae205Smrg    Update pkgconfig files to separate library build-time dependencies from
1504ea6ae205Smrg        application build-time dependencies, and update package deps to work
1505ea6ae205Smrg        with separate build roots.
1506ea6ae205Smrg
1507ea6ae205Smrgcommit cf92d3afb96be73691967875a1e659bfaf47bd5d
1508ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1509ea6ae205SmrgDate:   Wed Oct 19 02:47:49 2005 +0000
1510ea6ae205Smrg
1511ea6ae205Smrg    Update package version number for RC1 release.
1512ea6ae205Smrg
1513ea6ae205Smrgcommit c1e504c4af80f9b55d766eeab7f8a76e1043f1f8
1514ea6ae205SmrgAuthor: Alan Coopersmith <Alan.Coopersmith@sun.com>
1515ea6ae205SmrgDate:   Mon Oct 17 23:56:20 2005 +0000
1516ea6ae205Smrg
1517ea6ae205Smrg    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
1518ea6ae205Smrg        work better with BSD make
1519ea6ae205Smrg
1520ea6ae205Smrgcommit 8abe389feee29a21ad92277f0a9bc54143102b0b
1521ea6ae205SmrgAuthor: Alan Coopersmith <Alan.Coopersmith@sun.com>
1522ea6ae205SmrgDate:   Fri Oct 14 00:25:42 2005 +0000
1523ea6ae205Smrg
1524ea6ae205Smrg    Use sed to fill in variables in man page
1525ea6ae205Smrg
1526ea6ae205Smrgcommit d2ef439ebff65d9507e8409c32ce83ed24f81c77
1527ea6ae205SmrgAuthor: Alan Coopersmith <Alan.Coopersmith@sun.com>
1528ea6ae205SmrgDate:   Sat Jul 30 19:32:32 2005 +0000
1529ea6ae205Smrg
1530ea6ae205Smrg    Add -D flags to clear more compiler warnings (Stefan Dirsch)
1531ea6ae205Smrg
1532ea6ae205Smrgcommit d84b476fa167fe34d827f36c0a5e35bca7884136
1533ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1534ea6ae205SmrgDate:   Fri Jul 29 21:22:29 2005 +0000
1535ea6ae205Smrg
1536ea6ae205Smrg    Various changes preparing packages for RC0:
1537ea6ae205Smrg    - Verify and update package version numbers as needed
1538ea6ae205Smrg    - Implement versioning scheme
1539ea6ae205Smrg    - Change bug address to point to bugzilla bug entry form
1540ea6ae205Smrg    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
1541ea6ae205Smrg        reenable it)
1542ea6ae205Smrg    - Fix makedepend to use pkgconfig and pass distcheck
1543ea6ae205Smrg    - Update build script to build macros first
1544ea6ae205Smrg    - Update modular Xorg version
1545ea6ae205Smrg
1546ea6ae205Smrgcommit 4ae6c4a84f601196a4cf67dd6f1269c239c757b1
1547ea6ae205SmrgAuthor: Adam Jackson <ajax@nwnk.net>
1548ea6ae205SmrgDate:   Wed Jul 20 19:31:49 2005 +0000
1549ea6ae205Smrg
1550ea6ae205Smrg    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
1551ea6ae205Smrg        configure cache, you cache it, and the cached value is probably wrong.
1552ea6ae205Smrg
1553ea6ae205Smrgcommit bdd6bc86322d8769390ce81e74a9c2da103e3533
1554ea6ae205SmrgAuthor: Alan Coopersmith <Alan.Coopersmith@sun.com>
1555ea6ae205SmrgDate:   Fri Jul 15 00:50:30 2005 +0000
1556ea6ae205Smrg
1557ea6ae205Smrg    Add dependency on zlib
1558ea6ae205Smrg
1559ea6ae205Smrgcommit 30441ee004c0c23d42b76af09e58314aa2218fa3
1560ea6ae205SmrgAuthor: Kevin E Martin <kem@kem.org>
1561ea6ae205SmrgDate:   Sat Jul 2 21:42:05 2005 +0000
1562ea6ae205Smrg
1563ea6ae205Smrg    Add build system for bdftopcf, mkfontdir and mkfontscale
1564ea6ae205Smrg
1565ea6ae205Smrgcommit 3748201b7bbae3a0c0d20001651430245beab335
1566ea6ae205SmrgAuthor: Roland Mainz <roland.mainz@nrubsig.org>
1567ea6ae205SmrgDate:   Fri Nov 5 05:01:52 2004 +0000
1568ea6ae205Smrg
1569ea6ae205Smrg    xc/fonts/encodings/Imakefile
1570ea6ae205Smrg    xc/fonts/encodings/ascii-0.enc
1571ea6ae205Smrg    Adding ascii-0 font encoding which helps in cases where a font has all
1572ea6ae205Smrg        ASCII chars populated but not enougth glyphs to match the requirements
1573ea6ae205Smrg        for ISO8859-1 (and to add backwards compatibility to ttmkfdir).
1574ea6ae205Smrg
1575ea6ae205Smrgcommit 55185f35a75e6aad933e6faedd68bc14dfb94ccc
1576ea6ae205SmrgAuthor: Egbert Eich <eich@suse.de>
1577ea6ae205SmrgDate:   Fri Apr 23 19:54:36 2004 +0000
1578ea6ae205Smrg
1579ea6ae205Smrg    Merging XORG-CURRENT into trunk
1580ea6ae205Smrg
1581ea6ae205Smrgcommit 8e877ebe858657d8de7b5757a6b1d371dbfa6c88
1582ea6ae205SmrgAuthor: Egbert Eich <eich@suse.de>
1583ea6ae205SmrgDate:   Sun Mar 14 08:34:54 2004 +0000
1584ea6ae205Smrg
1585ea6ae205Smrg    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1586ea6ae205Smrg
1587ea6ae205Smrgcommit ef2e82cd947202294f2c6cf8e503512bac1452b5
1588ea6ae205SmrgAuthor: Egbert Eich <eich@suse.de>
1589ea6ae205SmrgDate:   Wed Mar 3 12:12:53 2004 +0000
1590ea6ae205Smrg
1591ea6ae205Smrg    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1592ea6ae205Smrg
1593ea6ae205Smrgcommit a641a5d0ebd81e83fd6d61cef460b9013229a279
1594ea6ae205SmrgAuthor: Egbert Eich <eich@suse.de>
1595ea6ae205SmrgDate:   Thu Feb 26 13:36:15 2004 +0000
1596ea6ae205Smrg
1597ea6ae205Smrg    readding XFree86's cvs IDs
1598ea6ae205Smrg
1599ea6ae205Smrgcommit 0bd86c8568761556a0841afff463a2aa5e3f682b
1600ea6ae205SmrgAuthor: Egbert Eich <eich@suse.de>
1601ea6ae205SmrgDate:   Thu Feb 26 09:23:56 2004 +0000
1602ea6ae205Smrg
1603ea6ae205Smrg    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1604ea6ae205Smrg
1605ea6ae205Smrgcommit 8b2ffc7720361ca3dd61bda16e384e8258aae803
1606ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1607ea6ae205SmrgDate:   Fri Dec 19 20:55:45 2003 +0000
1608ea6ae205Smrg
1609ea6ae205Smrg    XFree86 4.3.99.902 (RC 2)
1610ea6ae205Smrg
1611ea6ae205Smrgcommit c76578dc7395126605b9282f8453f1c54f38e61e
1612ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1613ea6ae205SmrgDate:   Thu Dec 4 22:03:44 2003 +0000
1614ea6ae205Smrg
1615ea6ae205Smrg    XFree86 4.3.99.901 (RC 1)
1616ea6ae205Smrg
1617ea6ae205Smrgcommit 324cfb1744c2c3cc253dd0f63c2252206eb72249
1618ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1619ea6ae205SmrgDate:   Tue Nov 25 19:29:02 2003 +0000
1620ea6ae205Smrg
1621ea6ae205Smrg    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1622ea6ae205Smrg
1623ea6ae205Smrgcommit 632e8a138dd16efe41384a4335ec46530da4a04b
1624ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1625ea6ae205SmrgDate:   Tue Nov 25 19:29:02 2003 +0000
1626ea6ae205Smrg
1627ea6ae205Smrg    Initial revision
1628ea6ae205Smrg
1629ea6ae205Smrgcommit 7b08fca9270b3735a66f0cf9ce898336a33ea1d6
1630ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1631ea6ae205SmrgDate:   Fri Nov 14 16:48:57 2003 +0000
1632ea6ae205Smrg
1633ea6ae205Smrg    XFree86 4.3.0.1
1634ea6ae205Smrg
1635ea6ae205Smrgcommit 7d6e5e7aefebf361afb149d7243d09ab6cf54c2f
1636ea6ae205SmrgAuthor: Kaleb Keithley <kaleb@freedesktop.org>
1637ea6ae205SmrgDate:   Fri Nov 14 16:48:57 2003 +0000
1638ea6ae205Smrg
1639ea6ae205Smrg    Initial revision
1640