summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@epoch.ncsc.mil>2004-05-04 19:44:02 +0000
committerEamon Walsh <ewalsh@epoch.ncsc.mil>2004-05-04 19:44:02 +0000
commit9d9d4412847a968277e303121d109b9f4f924e51 (patch)
tree354cae4f9da1945e0a3cb909b2e95f48653fa041
parent22c7560ce8835074d16eb9568213532338a07a7c (diff)
Merge the new release from HEADXACE-SELINUX
-rw-r--r--fonttosfnt.c2
-rw-r--r--fonttosfnt.man8
-rw-r--r--read.c26
-rw-r--r--util.c2
-rw-r--r--write.c2
5 files changed, 24 insertions, 16 deletions
diff --git a/fonttosfnt.c b/fonttosfnt.c
index e8e41b0..2b7537d 100644
--- a/fonttosfnt.c
+++ b/fonttosfnt.c
@@ -19,7 +19,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-/* $XdotOrg: xc/programs/fonttosfnt/fonttosfnt.c,v 1.4 2003/12/19 02:16:36 dawes Exp $ */
+/* $XdotOrg: xc/programs/fonttosfnt/fonttosfnt.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */
/* $XFree86: xc/programs/fonttosfnt/fonttosfnt.c,v 1.3 2003/07/08 15:39:49 tsi Exp $ */
#include <stdio.h>
diff --git a/fonttosfnt.man b/fonttosfnt.man
index 3a189cf..5bc5ef2 100644
--- a/fonttosfnt.man
+++ b/fonttosfnt.man
@@ -69,8 +69,10 @@ Some of the font-level values, notably sub- and superscript positions,
are dummy values.
.SH SEE ALSO
X(7), Xserver(1), Xft(3x).
-.I Fonts in XFree86.
+.I Fonts in X.
.SH AUTHOR
+The version of
.B Fonttosfnt
-was written by Juliusz Chroboczek <jch@xfree86.org> for the XFree86
-project.
+included in this X.Org Foundation release
+was originally written by Juliusz Chroboczek <jch@xfree86.org>
+for the XFree86 project.
diff --git a/read.c b/read.c
index 8c43edd..bded23c 100644
--- a/read.c
+++ b/read.c
@@ -1,3 +1,4 @@
+/* $XdotOrg: xc/programs/fonttosfnt/read.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */
/*
Copyright (c) 2002 by Juliusz Chroboczek
@@ -19,7 +20,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-/* $XdotOrg: xc/programs/fonttosfnt/read.c,v 1.6 2003/12/19 02:16:36 dawes Exp $ */
+/* $XdotOrg: xc/programs/fonttosfnt/read.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */
/* $XFree86: xc/programs/fonttosfnt/read.c,v 1.5 2003/12/19 02:05:39 dawes Exp $ */
#include <stdio.h>
@@ -117,14 +118,17 @@ readFile(char *filename, FontPtr font)
unique; it only needs to be unique among all installed fonts on a
Windows system. We don't bother getting it quite right. */
if(face->num_fixed_sizes <= 0)
- unique_name = sprintf_reliable("%s XFree86 bitmap", full_name);
+ unique_name = sprintf_reliable("%s "XVENDORNAMESHORT" bitmap"
+ , full_name);
else if(face->available_sizes[0].width ==
face->available_sizes[0].height)
- unique_name = sprintf_reliable("%s XFree86 bitmap size %d",
+ unique_name = sprintf_reliable("%s "XVENDORNAMESHORT
+ " bitmap size %d",
full_name,
face->available_sizes[0].height);
else
- unique_name = sprintf_reliable("%s XFree86 bitmap size %dx%d",
+ unique_name = sprintf_reliable("%s "XVENDORNAMESHORT
+ " bitmap size %dx%d",
full_name,
face->available_sizes[0].width,
face->available_sizes[0].height);
@@ -178,15 +182,17 @@ readFile(char *filename, FontPtr font)
}
font->names[i].nid = 10;
- font->names[i].size = 2 * strlen("XFree86 converted bitmap font");
- font->names[i].value = makeUTF16("XFree86 converted bitmap font");
+ font->names[i].size = 2 * strlen(XVENDORNAMESHORT
+ " converted bitmap font");
+ font->names[i].value = makeUTF16(XVENDORNAMESHORT
+ "X converted bitmap font");
i++;
-
+#ifdef __VENDORWEBSUPPORT__
font->names[i].nid = 11;
- font->names[i].size = 2 * strlen("http://www.xfree86.org");
- font->names[i].value = makeUTF16("http://www.xfree86.org");
+ font->names[i].size = 2 * strlen(__VENDORWEBSUPPORT__);
+ font->names[i].value = makeUTF16(__VENDORWEBSUPPORT__);
i++;
-
+#endif
font->numNames = i;
font->flags = faceFlags(face) | (symbol ? FACE_SYMBOL : 0);
diff --git a/util.c b/util.c
index c40cc32..05a3156 100644
--- a/util.c
+++ b/util.c
@@ -19,7 +19,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-/* $XdotOrg: xc/programs/fonttosfnt/util.c,v 1.11 2003/12/19 02:16:36 dawes Exp $ */
+/* $XdotOrg: xc/programs/fonttosfnt/util.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */
/* $XFree86: xc/programs/fonttosfnt/util.c,v 1.10 2003/12/19 02:05:39 dawes Exp $ */
#include <time.h>
diff --git a/write.c b/write.c
index b308934..42ccec3 100644
--- a/write.c
+++ b/write.c
@@ -1030,7 +1030,7 @@ writeOS2(FILE* out, FontPtr font)
static int
writePCLT(FILE* out, FontPtr font)
{
- char name[16] = "XFree86 font ";
+ char name[16] = XVENDORNAME" font ";
char filename[6] = "X11R00";
unsigned char charComplement[8] =
{0xFF, 0xFF, 0xFF, 0xFF, 0x0B, 0xFF, 0xFF, 0xFE};