[psaux, cff] Move Adobe's engine components into `psaux' module.
This is the first patch of a sequence to move the Type 2 charstring processing capability from the `cff' module to the `psaux' module. NOTE: Does not compile! * src/cff/cf2*: Move these files to... * src/psaux/cf2*: Here. * src/cff/Jamfile (_sources), src/cff/rules.mk (CFF_DRV_SRC, CFF_DRV_H), src/cff/cff.c, src/cff/cffgload.c: Remove file references. * src/psaux/Jamfile (_sources), src/psaux/rules.mk, src/psaux/psaux.c (PSAUX_DRV_SRC, PSAUX_DRV_H): Add file references.
This commit is contained in:
parent
02e80da609
commit
62f095f046
19
ChangeLog
19
ChangeLog
|
@ -1,3 +1,22 @@
|
|||
2017-09-24 Ewald Hew <ewaldhew@gmail.com>
|
||||
|
||||
[psaux, cff] Move Adobe's engine components into `psaux' module.
|
||||
|
||||
This is the first patch of a sequence to move the Type 2 charstring
|
||||
processing capability from the `cff' module to the `psaux' module.
|
||||
|
||||
NOTE: Does not compile!
|
||||
|
||||
* src/cff/cf2*: Move these files to...
|
||||
* src/psaux/cf2*: Here.
|
||||
|
||||
* src/cff/Jamfile (_sources), src/cff/rules.mk (CFF_DRV_SRC,
|
||||
CFF_DRV_H), src/cff/cff.c, src/cff/cffgload.c: Remove file
|
||||
references.
|
||||
|
||||
* src/psaux/Jamfile (_sources), src/psaux/rules.mk, src/psaux/psaux.c
|
||||
(PSAUX_DRV_SRC, PSAUX_DRV_H): Add file references.
|
||||
|
||||
2017-09-24 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||
|
||||
Tweak per-face LCD filtering controls.
|
||||
|
|
|
@ -23,15 +23,6 @@ SubDir FT2_TOP $(FT2_SRC_DIR) cff ;
|
|||
cffobjs
|
||||
cffparse
|
||||
cffpic
|
||||
cf2arrst
|
||||
cf2blues
|
||||
cf2error
|
||||
cf2font
|
||||
cf2ft
|
||||
cf2hints
|
||||
cf2intrp
|
||||
cf2read
|
||||
cf2stack
|
||||
;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -27,15 +27,4 @@
|
|||
#include "cffload.c"
|
||||
#include "cffobjs.c"
|
||||
|
||||
#include "cf2arrst.c"
|
||||
#include "cf2blues.c"
|
||||
#include "cf2error.c"
|
||||
#include "cf2font.c"
|
||||
#include "cf2ft.c"
|
||||
#include "cf2hints.c"
|
||||
#include "cf2intrp.c"
|
||||
#include "cf2read.c"
|
||||
#include "cf2stack.c"
|
||||
|
||||
|
||||
/* END */
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include "cffobjs.h"
|
||||
#include "cffload.h"
|
||||
#include "cffgload.h"
|
||||
#include "cf2ft.h" /* for cf2_decoder_parse_charstrings */
|
||||
|
||||
#include "cfferrs.h"
|
||||
|
||||
|
|
|
@ -32,16 +32,7 @@ CFF_DRV_SRC := $(CFF_DIR)/cffcmap.c \
|
|||
$(CFF_DIR)/cffload.c \
|
||||
$(CFF_DIR)/cffobjs.c \
|
||||
$(CFF_DIR)/cffparse.c \
|
||||
$(CFF_DIR)/cffpic.c \
|
||||
$(CFF_DIR)/cf2arrst.c \
|
||||
$(CFF_DIR)/cf2blues.c \
|
||||
$(CFF_DIR)/cf2error.c \
|
||||
$(CFF_DIR)/cf2font.c \
|
||||
$(CFF_DIR)/cf2ft.c \
|
||||
$(CFF_DIR)/cf2hints.c \
|
||||
$(CFF_DIR)/cf2intrp.c \
|
||||
$(CFF_DIR)/cf2read.c \
|
||||
$(CFF_DIR)/cf2stack.c
|
||||
$(CFF_DIR)/cffpic.c
|
||||
|
||||
|
||||
# CFF driver headers
|
||||
|
@ -49,10 +40,7 @@ CFF_DRV_SRC := $(CFF_DIR)/cffcmap.c \
|
|||
CFF_DRV_H := $(CFF_DRV_SRC:%.c=%.h) \
|
||||
$(CFF_DIR)/cfferrs.h \
|
||||
$(CFF_DIR)/cfftoken.h \
|
||||
$(CFF_DIR)/cfftypes.h \
|
||||
$(CFF_DIR)/cf2fixed.h \
|
||||
$(CFF_DIR)/cf2glue.h \
|
||||
$(CFF_DIR)/cf2types.h
|
||||
$(CFF_DIR)/cfftypes.h
|
||||
|
||||
|
||||
# CFF driver object(s)
|
||||
|
|
|
@ -22,6 +22,15 @@ SubDir FT2_TOP $(FT2_SRC_DIR) psaux ;
|
|||
psobjs
|
||||
t1cmap
|
||||
t1decode
|
||||
cf2arrst
|
||||
cf2blues
|
||||
cf2error
|
||||
cf2font
|
||||
cf2ft
|
||||
cf2hints
|
||||
cf2intrp
|
||||
cf2read
|
||||
cf2stack
|
||||
;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -26,5 +26,15 @@
|
|||
#include "t1cmap.c"
|
||||
#include "t1decode.c"
|
||||
|
||||
#include "cf2arrst.c"
|
||||
#include "cf2blues.c"
|
||||
#include "cf2error.c"
|
||||
#include "cf2font.c"
|
||||
#include "cf2ft.c"
|
||||
#include "cf2hints.c"
|
||||
#include "cf2intrp.c"
|
||||
#include "cf2read.c"
|
||||
#include "cf2stack.c"
|
||||
|
||||
|
||||
/* END */
|
||||
|
|
|
@ -33,12 +33,24 @@ PSAUX_DRV_SRC := $(PSAUX_DIR)/psobjs.c \
|
|||
$(PSAUX_DIR)/t1cmap.c \
|
||||
$(PSAUX_DIR)/afmparse.c \
|
||||
$(PSAUX_DIR)/psconv.c \
|
||||
$(PSAUX_DIR)/psauxmod.c
|
||||
$(PSAUX_DIR)/psauxmod.c \
|
||||
$(PSAUX_DIR)/cf2arrst.c \
|
||||
$(PSAUX_DIR)/cf2blues.c \
|
||||
$(PSAUX_DIR)/cf2error.c \
|
||||
$(PSAUX_DIR)/cf2font.c \
|
||||
$(PSAUX_DIR)/cf2ft.c \
|
||||
$(PSAUX_DIR)/cf2hints.c \
|
||||
$(PSAUX_DIR)/cf2intrp.c \
|
||||
$(PSAUX_DIR)/cf2read.c \
|
||||
$(PSAUX_DIR)/cf2stack.c
|
||||
|
||||
# PSAUX driver headers
|
||||
#
|
||||
PSAUX_DRV_H := $(PSAUX_DRV_SRC:%c=%h) \
|
||||
$(PSAUX_DIR)/psauxerr.h
|
||||
$(PSAUX_DIR)/psauxerr.h \
|
||||
$(PSAUX_DIR)/cf2fixed.h \
|
||||
$(PSAUX_DIR)/cf2glue.h \
|
||||
$(PSAUX_DIR)/cf2types.h
|
||||
|
||||
|
||||
# PSAUX driver object(s)
|
||||
|
|
Loading…
Reference in New Issue