1a4e54154Smrg/*
2a4e54154Smrg  Copyright © 2002-2003 by Juliusz Chroboczek
3a4e54154Smrg
4a4e54154Smrg  Permission is hereby granted, free of charge, to any person obtaining a copy
5a4e54154Smrg  of this software and associated documentation files (the "Software"), to deal
6a4e54154Smrg  in the Software without restriction, including without limitation the rights
7a4e54154Smrg  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8a4e54154Smrg  copies of the Software, and to permit persons to whom the Software is
9a4e54154Smrg  furnished to do so, subject to the following conditions:
10a4e54154Smrg
11a4e54154Smrg  The above copyright notice and this permission notice shall be included in
12a4e54154Smrg  all copies or substantial portions of the Software.
13a4e54154Smrg
14a4e54154Smrg  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15a4e54154Smrg  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16a4e54154Smrg  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17a4e54154Smrg  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18a4e54154Smrg  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19a4e54154Smrg  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20a4e54154Smrg  THE SOFTWARE.
21a4e54154Smrg*/
22a4e54154Smrg
23a4e54154Smrg/* Order is significant.  For example, some B&H fonts are hinted by
24a4e54154Smrg   URW++, and both strings appear in the notice. */
25a4e54154Smrg
26a4e54154Smrgstatic const char *FcNoticeFoundries[][2] =
27a4e54154Smrg    {
28a4e54154Smrg     {"Adobe", "adobe"},
29a4e54154Smrg     {"Bigelow", "b&h"},
30a4e54154Smrg     {"Bitstream", "bitstream"},
31a4e54154Smrg     {"Gnat", "culmus"},
32a4e54154Smrg     {"Iorsh", "culmus"},
33a4e54154Smrg     {"HanYang System", "hanyang"},
34a4e54154Smrg     {"Font21", "hwan"},
35a4e54154Smrg     {"IBM", "ibm"},
36a4e54154Smrg     {"International Typeface Corporation", "itc"},
37a4e54154Smrg     {"Linotype", "linotype"},
38a4e54154Smrg     {"LINOTYPE-HELL", "linotype"},
39a4e54154Smrg     {"Microsoft", "microsoft"},
40a4e54154Smrg     {"Monotype", "monotype"},
41a4e54154Smrg     {"Omega", "omega"},
42a4e54154Smrg     {"Tiro Typeworks", "tiro"},
43a4e54154Smrg     {"URW", "urw"},
44a4e54154Smrg     {"XFree86", "xfree86"},
45a4e54154Smrg     {"Xorg", "xorg"},
46a4e54154Smrg};
47a4e54154Smrg
48a4e54154Smrg#define NUM_NOTICE_FOUNDRIES	(int) (sizeof (FcNoticeFoundries) / sizeof (FcNoticeFoundries[0]))
49