ref: c7c2c91ad0fe4e0bef99fe8bf382d4ce3ad62f90
parent: b6c1bf861a7c45709c3d770937548a33d49f43c0
author: Werner Lemberg <[email protected]>
date: Fri Jan 12 00:32:04 EST 2001
* builds/unix/freetype-config.in: Fix problems with separate --prefix and --exec-prefix. more robust handling of pathname wildcard matching.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
-2001-01-11 David Turner <[email protected]>
+2001-01-11 Matthew Crosby <[email protected]>
+ * builds/unix/freetype-config.in: Fix problems with separate
+ --prefix and --exec-prefix.
+
+2001-01-11 David Turner <[email protected]>
+
* docs/docmaker.py: Added cross-references generation as well as
- more robust handling of pathname wildward matching
+ more robust handling of pathname wildcard matching.
2001-01-10 Werner Lemberg <[email protected]>
@@ -8,7 +13,7 @@
* docs/docmaker.py: Minor improvements to reduce unwanted spaces
and empty lines in output.
-2001-01-09 David Turner <[email protected]>
+2001-01-09 David Turner <[email protected]>
* docs/docmaker.py: Improved script to generate table of contents
and index pages. It also supports wildcards on non Unix systems.
@@ -127,7 +132,7 @@
* src/autohint/ahhint.c (ah_hinter_load_glyph):
Removed unnecessary comments and commented-out code.
-2000-12-21 David Turner <[email protected]>
+2000-12-21 David Turner <[email protected]>
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
we'll work on supporting CID AFM files later I guess :-)
@@ -153,7 +158,7 @@
* INSTALL: Added info about makepp.
-2000-12-14 David Turner <[email protected]>
+2000-12-14 David Turner <[email protected]>
Added support for clipped direct rendering in the smooth renderer.
This should not break binary compatibility of existing applications.
@@ -172,7 +177,7 @@
* src/raster/ftraster.c (ft_black_render): Test for unsupported
direct rendering before testing arguments.
-2000-12-13 David Turner <[email protected]>
+2000-12-13 David Turner <[email protected]>
* include/freetype/config/ft2build.h,
include/freetype/internal/internal.h: Fixed header inclusion macros
@@ -412,7 +417,7 @@
* include/freetype/internal/ftdebug.h: Replaced FT_CAT and FT_XCAT
with a direct solution (which also satifies picky compilers).
-2000-11-28 YAMANO-UCHI Hidetoshi <[email protected]>
+2000-11-28 YAMANO-UCHI Hidetoshi <[email protected]>
* src/truetype/ttobjs.c (TT_Init_Size): Fix #ifdef's to work with
disabled interpreter also.
@@ -465,7 +470,7 @@
* src/cff/t2load.c (T2_Get_String): Called T2_Get_Name with a
sid that was off by one.
-2000-11-16 David Turner <[email protected]>
+2000-11-16 David Turner <[email protected]>
* src/autohint/ahtypes.h (AH_Hinter): Added new fields to control
auto-hinting of synthetic Type 1 fonts.
--- a/builds/unix/freetype-config.in
+++ b/builds/unix/freetype-config.in
@@ -2,7 +2,6 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
-exec_prefix_set=no
usage()
{
@@ -23,7 +22,6 @@
usage 1 1>&2
fi
-
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
@@ -33,6 +31,7 @@
case $1 in
--prefix=*)
prefix=$optarg
+ local_prefix=yes
;;
--prefix)
echo_prefix=yes
@@ -40,6 +39,7 @@
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
+ local_prefix=yes
;;
--exec-prefix)
echo_exec_prefix=yes
@@ -64,8 +64,10 @@
shift
done
-if test "$exec_prefix_set" = "no"; then
- exec_prefix=$prefix
+if test "$local_prefix" = "yes" ; then
+ if test "$exec_prefix_set" != "yes"; then
+ exec_prefix=$prefix
+ fi
fi
if test "$echo_prefix" = "yes"; then