Run autoheader BEFORE automake and autoconf. Replace old AM_ macro with

modern AC_ macro for creating config.h

svn path=/trunk/boinc/; revision=4633
This commit is contained in:
Bruce Allen 2004-11-23 16:14:22 +00:00
parent 4220f3170b
commit 764ce84f8f
3 changed files with 7 additions and 3 deletions

View File

@ -16,7 +16,7 @@ fi
echo "Bootstrapping configure script and makefiles:"
aclocal -I m4 && automake && autoconf && autoheader
aclocal -I m4 && autoheader && automake && autoconf
## We don't always run ./configure ourselves here, because the user may not
## want to run it, or may want to run with custom parameters.

View File

@ -20040,7 +20040,11 @@ Bruce 23 Nov 2004 UTC
- Added .cvsignore file for zip/ directory.
- Modified api/boinc_gl.h to use config.h to get correct include path for glut.h
- Added double-inclusion protection for config.h to avoid some warning messages
- Run autoheader BEFORE automake and autoconf in _autosetup
- Removed huge number of extraneous Makefile.in's
- Changed production of config.h from AM_ to AC_ macro
_autosetup
configure.ac
Makefile.am
config.h

View File

@ -306,8 +306,8 @@ AC_CONFIG_FILES([
zip/Makefile
])
dnl AC_CONFIG_HEADER([config.h])
AM_CONFIG_HEADER([config.h])
dnl AC_CONFIG_HEADERS([config.h])
AC_CONFIG_HEADERS([config.h])
AC_OUTPUT