From f4092abdf94af6a99aff944d6264bc1284e8bdd4 Mon Sep 17 00:00:00 2001 From: Reinhard Tartler Date: Mon, 10 Oct 2011 17:43:39 +0200 Subject: Imported nx-X11-3.1.0-1.tar.gz Summary: Imported nx-X11-3.1.0-1.tar.gz Keywords: Imported nx-X11-3.1.0-1.tar.gz into Git repository --- nx-X11/lib/font/Speedo/module/Imakefile | 47 ++++++++++++++++++++ nx-X11/lib/font/Speedo/module/speedomod.c | 72 +++++++++++++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 nx-X11/lib/font/Speedo/module/Imakefile create mode 100644 nx-X11/lib/font/Speedo/module/speedomod.c (limited to 'nx-X11/lib/font/Speedo/module') diff --git a/nx-X11/lib/font/Speedo/module/Imakefile b/nx-X11/lib/font/Speedo/module/Imakefile new file mode 100644 index 000000000..e517707c5 --- /dev/null +++ b/nx-X11/lib/font/Speedo/module/Imakefile @@ -0,0 +1,47 @@ +XCOMM $XFree86: xc/lib/font/Speedo/module/Imakefile,v 1.5 1999/08/14 10:49:18 dawes Exp $ + +#define IHaveModules +#include + + INCLUDES = -I$(FONTINCSRC) -I../../include -I$(SERVERSRC)/include \ + -I$(XINCLUDESRC) -I../ + HEADERS = + DEFINES = -DFONTMODULE + + SPEEDOSRCS = do_char.c do_trns.c out_bl2d.c out_blk.c speedomod.c \ + out_scrn.c out_util.c reset.c set_spcs.c set_trns.c + SPEEDOOBJS = do_char.o do_trns.o out_bl2d.o out_blk.o speedomod.o \ + out_scrn.o out_util.o reset.o set_spcs.o set_trns.o + + SRCS = spfuncs.c spfile.c spinfo.c sperr.c spfont.c spglyph.c \ + spencode.c bics-unicode.c \ + $(SPEEDOSRCS) + OBJS = spfuncs.o spfile.o spinfo.o sperr.o spfont.o spglyph.o \ + spencode.o bics-unicode.o \ + $(SPEEDOOBJS) + +LinkSourceFile(bics-unicode.c,..) +LinkSourceFile(do_char.c,..) +LinkSourceFile(do_trns.c,..) +LinkSourceFile(out_bl2d.c,..) +LinkSourceFile(out_blk.c,..) +LinkSourceFile(out_scrn.c,..) +LinkSourceFile(out_util.c,..) +LinkSourceFile(reset.c,..) +LinkSourceFile(set_spcs.c,..) +LinkSourceFile(set_trns.c,..) +LinkSourceFile(spfuncs.c,..) +LinkSourceFile(spfile.c,..) +LinkSourceFile(spinfo.c,..) +LinkSourceFile(sperr.c,..) +LinkSourceFile(spfont.c,..) +LinkSourceFile(spglyph.c,..) +LinkSourceFile(spencode.c,..) + +ModuleObjectRule() +LibraryModuleTarget(speedo,$(OBJS)) +InstallLibraryModule(speedo,$(MODULEDIR),fonts) + +DependTarget() + +InstallDriverSDKLibraryModule(speedo,$(DRIVERSDKMODULEDIR),fonts) diff --git a/nx-X11/lib/font/Speedo/module/speedomod.c b/nx-X11/lib/font/Speedo/module/speedomod.c new file mode 100644 index 000000000..94820fe44 --- /dev/null +++ b/nx-X11/lib/font/Speedo/module/speedomod.c @@ -0,0 +1,72 @@ +/* + * Copyright (C) 1998 The XFree86 Project, Inc. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 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. + * + * Except as contained in this notice, the name of the XFree86 Project shall + * not be used in advertising or otherwise to promote the sale, use or other + * dealings in this Software without prior written authorization from the + * XFree86 Project. + */ +/* $XFree86: xc/lib/font/Speedo/module/speedomod.c,v 1.8 2001/09/04 13:49:16 dawes Exp $ */ + +#include "misc.h" + +#include +#include "xf86Module.h" + +static MODULESETUPPROTO(speedoSetup); + + /* + * This is the module data function that is accessed when loading + * libspeedo as a module. + */ + +static XF86ModuleVersionInfo VersRec = +{ + "speedo", + MODULEVENDORSTRING, + MODINFOSTRING1, + MODINFOSTRING2, + XORG_VERSION_CURRENT, + 1, 0, 1, + ABI_CLASS_FONT, /* A font module */ + ABI_FONT_VERSION, + MOD_CLASS_FONT, + {0,0,0,0} /* signature, to be patched into the file by a tool */ +}; + +XF86ModuleData speedoModuleData = { &VersRec, speedoSetup, NULL }; + +extern void SpeedoRegisterFontFileFunctions(void); + +FontModule speedoModule = { + SpeedoRegisterFontFileFunctions, + "Speedo", + NULL +}; + +static pointer +speedoSetup(pointer module, pointer opts, int *errmaj, int *errmin) +{ + speedoModule.module = module; + LoadFont(&speedoModule); + + /* Need a non-NULL return */ + return (pointer)1; +} -- cgit v1.2.3