[stsf-commit] CVS Update: stsf (branch: trunk)

Alexander Gelfenbain stsf-commit at pdx.freedesktop.org
Thu Jul 1 22:00:19 PDT 2004


CVSROOT:	/cvs/stsf
Module name:	stsf
Changes by:	adg at pdx.	04/07/01 22:00:19

Log message:
  STSF stable release 0.11.2.

Modified files:
      ./:
        ChangeLog INSTALL.TXT configure configure.ac makefile 
        st.mk 
      stsf/STClientLibrary/:
        makefile 
      stsf/STClientLibrary/src/:
        STFont.c STGlyphVector.c STGraphics.c STInternal.c 
        STLine.c STObject.c STStyle.c STSysCtl.c STText.c 
        STTextChunk.c STTextChunk.h STTypeEnv.c connection.c 
        connection.h libtest.c makefile serverconnection.c 
        stclprivate.h stperf.c sysctlvars.h 
      stsf/STFontServer/:
        makefile 
      stsf/STFontServer/dropins/:
        makefile 
      stsf/STFontServer/dropins/dummy/:
        makefile scalerglue.c 
      stsf/STFontServer/dropins/freetype2/:
        ft2_glue.c ftrenderglyph.inc makefile testft2.c 
      stsf/STFontServer/loader/:
        client.c makefile stfsloader.c stfsloader.x 
      stsf/STFontServer/src/:
        cache.c cache.h fontenumerator.c fontenumerator.h 
        fontfamilymanager.c fontmanager.c fontmanager.h 
        fontprobe.c fontprobe.h fontserver.c fsynth.c fsynth.h 
        genoffsets.py handler.c handler.h makefile metadata.c 
        metadata.h objectenumerator.c objectenumerator.h 
        pcfprobe.c prototest-door.c prototest.c saverestore.c 
        saverestore.def saverestore.h stfontserverprivate.h 
        stfs-door.c stfs.c stfs.h stpfc.c testfontserver.c 
        truetypeprobe.c type1probe.c 
      stsf/interface/:
        VERSION config.h.in fontserver.h genversion.py makefile 
        st.h stprivate.h sttypes.tmpl 
      stsf/sample_code/XST/glyphvectorrender/:
        glyphvectorrender.c makefile 
      stsf/sample_code/XST/linerender/:
        makefile xstlinerender.c 
      stsf/sample_code/stls/:
        Makefile stls.c 
      stsf/sample_code/webdemo/:
        Makefile demo.cgi stgddemo.c 
      stsf/stsflib/:
        benchmark.c conn.c conn.h crc32.c crc32.h datamgr.c 
        datamgr.h dict.c dict.h fscomm.c fscomm.h genhash.c 
        genxstinc.py inlines.h invxlat.c langtrans.c langtrans.h 
        list.c list.h lstring.c lstring.h makefile path.c path.h 
        pslint.c psscan.c psscan.h sft.c sft.h sharedcache.c 
        sharedcache.h stmath.c stmath.h stsfutil.c stsfutil.h 
        test.c testmath.c ttcr.c ttcr.h xlat.c xlat.h xstmaps.src 
Added files:
      ./:
        TODO 
      stsf/STFontServer/src/:
        debugscaler.c pfcdump.c 
      stsf/stsflib/:
        arrays.c arrays.h 
Removed files:
      stsf/STFontServer/src/:
        fontfamilymanager.h 
  
  Revision      Changes    Path
  1.23          +107 -0    stsf/ChangeLog
  1.2           +1 -1      stsf/INSTALL.TXT
  1.12          +48 -18    stsf/configure
  1.12          +26 -6     stsf/configure.ac
  1.5           +1 -6      stsf/makefile
  1.8           +2 -7      stsf/st.mk
  1.2           +1 -6      stsf/STClientLibrary/makefile
  1.2           +2 -7      stsf/STClientLibrary/src/STFont.c
  1.7           +51 -34    stsf/STClientLibrary/src/STGlyphVector.c
  1.2           +2 -7      stsf/STClientLibrary/src/STGraphics.c
  1.3           +3 -8      stsf/STClientLibrary/src/STInternal.c
  1.6           +7 -12     stsf/STClientLibrary/src/STLine.c
  1.2           +2 -7      stsf/STClientLibrary/src/STObject.c
  1.3           +2 -7      stsf/STClientLibrary/src/STStyle.c
  1.3           +21 -10    stsf/STClientLibrary/src/STSysCtl.c
  1.5           +11 -26    stsf/STClientLibrary/src/STText.c
  1.2           +6 -7      stsf/STClientLibrary/src/STTextChunk.c
  1.2           +2 -7      stsf/STClientLibrary/src/STTextChunk.h
  1.5           +21 -36    stsf/STClientLibrary/src/STTypeEnv.c
  1.4           +2 -7      stsf/STClientLibrary/src/connection.c
  1.3           +16 -21    stsf/STClientLibrary/src/connection.h
  1.6           +214 -72   stsf/STClientLibrary/src/libtest.c
  1.7           +1 -6      stsf/STClientLibrary/src/makefile
  1.11          +71 -56    stsf/STClientLibrary/src/serverconnection.c
  1.3           +2 -7      stsf/STClientLibrary/src/stclprivate.h
  1.4           +3 -8      stsf/STClientLibrary/src/stperf.c
  1.3           +4 -8      stsf/STClientLibrary/src/sysctlvars.h
  1.3           +1 -6      stsf/STFontServer/makefile
  1.2           +1 -6      stsf/STFontServer/dropins/makefile
  1.2           +1 -6      stsf/STFontServer/dropins/dummy/makefile
  1.2           +2 -7      stsf/STFontServer/dropins/dummy/scalerglue.c
  1.4           +31 -10    stsf/STFontServer/dropins/freetype2/ft2_glue.c
  1.2           +165 -80   stsf/STFontServer/dropins/freetype2/ftrenderglyph.inc
  1.2           +1 -6      stsf/STFontServer/dropins/freetype2/makefile
  1.2           +43 -316   stsf/STFontServer/dropins/freetype2/testft2.c
  1.2           +2 -7      stsf/STFontServer/loader/client.c
  1.3           +2 -7      stsf/STFontServer/loader/makefile
  1.3           +68 -25    stsf/STFontServer/loader/stfsloader.c
  1.2           +2 -7      stsf/STFontServer/loader/stfsloader.x
  1.2           +2 -7      stsf/STFontServer/src/cache.c
  1.2           +2 -7      stsf/STFontServer/src/cache.h
  1.5           +754 -143  stsf/STFontServer/src/fontenumerator.c
  1.2           +116 -12   stsf/STFontServer/src/fontenumerator.h
  1.3           +90 -29    stsf/STFontServer/src/fontfamilymanager.c
  1.2           +2 -7      stsf/STFontServer/src/fontmanager.c
  1.2           +2 -7      stsf/STFontServer/src/fontmanager.h
  1.4           +167 -18   stsf/STFontServer/src/fontprobe.c
  1.2           +67 -8     stsf/STFontServer/src/fontprobe.h
  1.7           +84 -29    stsf/STFontServer/src/fontserver.c
  1.2           +2 -7      stsf/STFontServer/src/fsynth.c
  1.2           +2 -7      stsf/STFontServer/src/fsynth.h
  1.2           +1 -6      stsf/STFontServer/src/genoffsets.py
  1.9           +3 -7      stsf/STFontServer/src/handler.c
  1.4           +2 -7      stsf/STFontServer/src/handler.h
  1.9           +24 -10    stsf/STFontServer/src/makefile
  1.3           +2 -7      stsf/STFontServer/src/metadata.c
  1.2           +2 -7      stsf/STFontServer/src/metadata.h
  1.4           +1 -6      stsf/STFontServer/src/objectenumerator.c
  1.2           +2 -7      stsf/STFontServer/src/objectenumerator.h
  1.4           +2 -7      stsf/STFontServer/src/pcfprobe.c
  1.3           +2 -7      stsf/STFontServer/src/prototest-door.c
  1.2           +2 -7      stsf/STFontServer/src/prototest.c
  1.6           +257 -130  stsf/STFontServer/src/saverestore.c
  1.2           +10 -11    stsf/STFontServer/src/saverestore.def
  1.2           +15 -13    stsf/STFontServer/src/saverestore.h
  1.2           +15 -8     stsf/STFontServer/src/stfontserverprivate.h
  1.10          +77 -43    stsf/STFontServer/src/stfs-door.c
  1.2           +2 -7      stsf/STFontServer/src/stfs.c
  1.4           +2 -7      stsf/STFontServer/src/stfs.h
  1.4           +3 -8      stsf/STFontServer/src/stpfc.c
  1.3           +2 -7      stsf/STFontServer/src/testfontserver.c
  1.3           +10 -7     stsf/STFontServer/src/truetypeprobe.c
  1.2           +4 -7      stsf/STFontServer/src/type1probe.c
  1.3           +2 -2      stsf/interface/VERSION
  1.4           +9 -0      stsf/interface/config.h.in
  1.5           +5 -8      stsf/interface/fontserver.h
  1.3           +1 -6      stsf/interface/genversion.py
  1.8           +1 -6      stsf/interface/makefile
  1.3           +2 -19     stsf/interface/st.h
  1.3           +40 -45    stsf/interface/stprivate.h
  1.9           +13 -20    stsf/interface/sttypes.tmpl
  1.2           +2 -6      stsf/sample_code/XST/glyphvectorrender/glyphvectorrender.c
  1.2           +1 -5      stsf/sample_code/XST/glyphvectorrender/makefile
  1.2           +1 -6      stsf/sample_code/XST/linerender/makefile
  1.2           +2 -7      stsf/sample_code/XST/linerender/xstlinerender.c
  1.3           +1 -6      stsf/sample_code/stls/Makefile
  1.2           +1 -6      stsf/sample_code/stls/stls.c
  1.2           +1 -6      stsf/sample_code/webdemo/Makefile
  1.2           +2 -7      stsf/sample_code/webdemo/demo.cgi
  1.2           +1 -6      stsf/sample_code/webdemo/stgddemo.c
  1.2           +2 -7      stsf/stsflib/benchmark.c
  1.3           +2 -7      stsf/stsflib/conn.c
  1.2           +2 -7      stsf/stsflib/conn.h
  1.2           +2 -7      stsf/stsflib/crc32.c
  1.2           +2 -7      stsf/stsflib/crc32.h
  1.4           +2 -7      stsf/stsflib/datamgr.c
  1.2           +2 -7      stsf/stsflib/datamgr.h
  1.3           +2 -7      stsf/stsflib/dict.c
  1.2           +2 -7      stsf/stsflib/dict.h
  1.7           +5 -10     stsf/stsflib/fscomm.c
  1.5           +5 -10     stsf/stsflib/fscomm.h
  1.2           +2 -7      stsf/stsflib/genhash.c
  1.2           +2 -6      stsf/stsflib/genxstinc.py
  1.2           +2 -7      stsf/stsflib/inlines.h
  1.2           +2 -7      stsf/stsflib/invxlat.c
  1.3           +2 -7      stsf/stsflib/langtrans.c
  1.2           +2 -7      stsf/stsflib/langtrans.h
  1.2           +2 -7      stsf/stsflib/list.c
  1.2           +2 -7      stsf/stsflib/list.h
  1.2           +2 -7      stsf/stsflib/lstring.c
  1.2           +2 -7      stsf/stsflib/lstring.h
  1.6           +8 -9      stsf/stsflib/makefile
  1.2           +2 -6      stsf/stsflib/path.c
  1.2           +2 -7      stsf/stsflib/path.h
  1.2           +2 -7      stsf/stsflib/pslint.c
  1.2           +2 -7      stsf/stsflib/psscan.c
  1.2           +2 -7      stsf/stsflib/psscan.h
  1.3           +98 -12    stsf/stsflib/sft.c
  1.2           +15 -13    stsf/stsflib/sft.h
  1.4           +8 -7      stsf/stsflib/sharedcache.c
  1.2           +2 -7      stsf/stsflib/sharedcache.h
  1.3           +2 -7      stsf/stsflib/stmath.c
  1.2           +2 -7      stsf/stsflib/stmath.h
  1.13          +75 -20    stsf/stsflib/stsfutil.c
  1.6           +11 -10    stsf/stsflib/stsfutil.h
  1.2           +2 -7      stsf/stsflib/test.c
  1.2           +2 -7      stsf/stsflib/testmath.c
  1.2           +2 -7      stsf/stsflib/ttcr.c
  1.2           +2 -7      stsf/stsflib/ttcr.h
  1.2           +2 -7      stsf/stsflib/xlat.c
  1.2           +2 -7      stsf/stsflib/xlat.h
  1.2           +2 -6      stsf/stsflib/xstmaps.src




More information about the stsf-commit mailing list