diff options
author | Werner Lemberg <wl@gnu.org> | 2007-12-06 17:17:30 +0000 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2007-12-06 17:17:30 +0000 |
commit | bd7e1c3ce049aca25b34b8b50a162c6e2f297b82 (patch) | |
tree | 6db7ad38342de85cad56d5611b90276afab6a8f2 /configure | |
parent | a6d36573bd796e5a8dbee545c83475beeb55f4f7 (diff) |
Pass options from one configure script to another as-is (not
expanded). This is needed for options like
--includedir='${prefix}/include'.
* builds/unix/detect.mk, configure: Prevent argument expansion in
call to the (real) `configure' script.
* src/truetype/ttgload.c (load_truetype_glyph): Fix compilation if
TT_USE_BYTECODE_INTERPRETER isn't defined.
There exist CFFs which contain opcodes for the Type 1 operators
`hsbw' and `closepath' which are both invalid in Type 2 charstrings.
However, it doesn't harm to support them.
* src/cff/cffgload.c (CFF_Operator): Add `cff_op_hsbw' and
`cff_op_closepath.'
(cff_argument_counts): Ditto.
(cff_decoder_parse_charstrings): Handle Type 1 opcodes 9 (closepath)
and 13 (hsbw) which are invalid in Type 2 charstrings.
Diffstat (limited to 'configure')
-rw-r--r-- | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ fi CFG= for x in ${1+"$@"}; do - CFG="$CFG \"$x\"" + CFG="$CFG '$x'" done CFG=$CFG $GNUMAKE setup unix |