forked from minhngoc25a/freetype2
* autogen.sh: New script for bootstrapping.
* README.CVS: New file which documents bootstrapping. * builds/unix/aclocal.m4, builds/unix/config.guess, builds/unix/config.sub, builds/unix/configure, builds/unix/ltmain.sh: Removed.
This commit is contained in:
parent
baa662bbea
commit
b0db0fc2c5
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2005-03-05 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* autogen.sh: New script for bootstrapping.
|
||||
|
||||
* README.CVS: New file which documents bootstrapping.
|
||||
|
||||
* builds/unix/aclocal.m4, builds/unix/config.guess,
|
||||
builds/unix/config.sub, builds/unix/configure,
|
||||
builds/unix/ltmain.sh: Removed.
|
||||
|
||||
2005-03-04 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftutil.c: Include FT_INTERNAL_OBJECTS_H.
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
The CVS archive doesn't contain pre-built configuration scripts for
|
||||
UNIXish platforms. To generate them call `autogen.sh', which in turn
|
||||
depends on the following packages:
|
||||
|
||||
automake (1.9.4)
|
||||
libtool (1.5.14)
|
||||
autoconf (2.59b)
|
||||
|
||||
The versions given in parentheses are known to work.
|
||||
|
||||
For static builds which don't use platform specific optimizations no
|
||||
configure script is necessary at all; saying
|
||||
|
||||
make setup ansi
|
||||
make
|
||||
|
||||
should work on all platforms which have GNU make (or makepp).
|
|
@ -0,0 +1,33 @@
|
|||
#!/bin/sh
|
||||
|
||||
run ()
|
||||
{
|
||||
echo "running \`$*'"
|
||||
eval $*
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "error while running \`$*'"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
if test ! -f ./builds/unix/configure.ac; then
|
||||
echo "You must be in the same directory as \`autogen.sh'."
|
||||
echo "Bootstrapping doesn't work if srcdir != builddir."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd builds/unix
|
||||
|
||||
run aclocal -I .
|
||||
run libtoolize --force --copy
|
||||
run autoconf
|
||||
|
||||
chmod +x mkinstalldirs
|
||||
chmod +x install-sh
|
||||
|
||||
cd ../..
|
||||
|
||||
chmod +x ./configure
|
||||
|
||||
# EOF
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue