* autogen.sh: New script for bootstrapping.


			
			
				CACHE
			
			
		
Werner Lemberg 20 years ago
parent c1a59318ba
commit 094786cb00
  1. 10
      ChangeLog
  2. 17
      README.CVS
  3. 33
      autogen.sh
  4. 6045
      builds/unix/aclocal.m4
  5. 1459
      builds/unix/config.guess
  6. 1566
      builds/unix/config.sub
  7. 22545
      builds/unix/configure
  8. 6460
      builds/unix/ltmain.sh

@ -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

22545
builds/unix/configure vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save