summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2007-01-12 09:28:44 +0000
committerWerner Lemberg <wl@gnu.org>2007-01-12 09:28:44 +0000
commit17432b5e3719db41ddbd85381ce4b02cb52cd0c3 (patch)
treefe9d5d1b4a2652099ab4579c26a22cebd147b6f7 /autogen.sh
parent490503acf54167ce001c9ad604693e9601ac9025 (diff)
downloadfreetype2-17432b5e3719db41ddbd85381ce4b02cb52cd0c3.tar.gz
* src/type1/t1load.c (is_space): Removed.
(parse_encoding, parse_charstrings): Use IS_PS_DELIM. (parse_charstrings): Use IS_PS_TOKEN. * autogen.sh: Avoid bash specific syntax.
Diffstat (limited to 'autogen.sh')
-rw-r--r--autogen.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 3e09c1fc1..d8fb5b2ec 100644
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright 2005, 2006 by
+# Copyright 2005, 2006, 2007 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
@@ -40,14 +40,13 @@ echo "generating \`configure.ac'"
sed -e "s;@VERSION@;$freetype_major$freetype_minor$freetype_patch;" \
< configure.raw > configure.ac
-# on MacOS X, the GNU libtool is named "glibtool"
-HOSTOS=$(uname)
+# On MacOS X, the GNU libtool is named `glibtool'.
+HOSTOS=`uname`
LIBTOOLIZE=libtoolize
-if [ "$HOSTOS"x == Darwinx ] ; then
+if test "$HOSTOS"x = Darwinx; then
LIBTOOLIZE=glibtoolize
fi
-
run aclocal -I . --force
run $LIBTOOLIZE --force --copy
run autoconf --force