Skip to content

Commit

Permalink
Merge branch 'play-with-config'
Browse files Browse the repository at this point in the history
  • Loading branch information
andreww committed Jan 9, 2009
2 parents fa3880e + e45efe0 commit 3434dfc
Show file tree
Hide file tree
Showing 5 changed files with 1,077 additions and 1,323 deletions.
4 changes: 4 additions & 0 deletions RELEASE
Expand Up @@ -7,8 +7,12 @@ DoX/Versioning.md
wcml/test/test_cmlEndCml_2.xml
& on the webpage

Regenerate configure script - make in config/

Check dates in license

Update Changelog

Commit state to SCM system

release.sh
19 changes: 15 additions & 4 deletions config/aclocal.m4
Expand Up @@ -4084,7 +4084,10 @@ if eval '$ac_fpp_command conftest.$ac_ext > conftest.log 2>/dev/null'; then
if test -z "$ac_tmp"; then
ac_tmp=conftest.log
ac_fpp_free_out=' > conftest.f90'
ac_fpp_out=' > conftest.f90'
# Note that the CPP tests only use fixed format
# so we need to use a .f extension to make the tests
# work.
ac_fpp_out=' > conftest.f'
fi
if grep '^ REAL A' $ac_tmp >/dev/null 2>&1; then
# we have Fortran! That worked...
Expand Down Expand Up @@ -4140,9 +4143,13 @@ if test -z "$ac_cv_prog_fpp"; then
# We try the "best" preprocessors first. We know that $FC can't preprocess
# by itself, but there is a small chance that F77 can be persuaded to
# preprocess, so we try that.
for ac_j in 'fpp' "$CPP" "$CPP -x c" 'cpp' '/lib/cpp' '/usr/ccs/lib/cpp' \
'g77 -E' '$CC -E' '$CC -E -x c' \
"$FC -F" "$FC -E" "$F77 -F" "$F77 -E"; do
# FIXME: The comment above does not agree with the code below - $FC etc.
# is being checked late, not early?
for ac_j in 'fpp' "$CPP -x f95-cpp-input" "$CPP -x f77-cpp-input" \
"$CPP -C -x c" "$CPP -x c" "$CPP" 'cpp' '/lib/cpp' '/usr/ccs/lib/cpp' \
'g77 -E' '$CC -E -x f95-cpp-input' '$CC -E -x f77-cpp-input' \
'$CC -E -x c -C' '$CC -E -x c' '$CC -E' \
"$FC -F" "$FC -E" "$F77 -F" "$F77 -E" ; do
_AC_TEST_FPP_FREE([$ac_j])
test -n "$ac_cv_prog_fpp" && break;
done
Expand Down Expand Up @@ -4792,6 +4799,10 @@ AC_CACHE_CHECK([whether $FPP fulfils requested features],
ac_cv_fpp_build_rule=indirect
if test ac_fpp_ok == no; then
AC_MSG_ERROR([Cannot find a Fortran preprocessor with the requested features])
fi
fi # test ac_fpp_ok != yes
# We have all necessary information.
Expand Down
19 changes: 15 additions & 4 deletions config/m4/fortran.m4
Expand Up @@ -2392,7 +2392,10 @@ if eval '$ac_fpp_command conftest.$ac_ext > conftest.log 2>/dev/null'; then
if test -z "$ac_tmp"; then
ac_tmp=conftest.log
ac_fpp_free_out=' > conftest.f90'
ac_fpp_out=' > conftest.f90'
# Note that the CPP tests only use fixed format
# so we need to use a .f extension to make the tests
# work.
ac_fpp_out=' > conftest.f'
fi
if grep '^ REAL A' $ac_tmp >/dev/null 2>&1; then
# we have Fortran! That worked...
Expand Down Expand Up @@ -2448,9 +2451,13 @@ if test -z "$ac_cv_prog_fpp"; then
# We try the "best" preprocessors first. We know that $FC can't preprocess
# by itself, but there is a small chance that F77 can be persuaded to
# preprocess, so we try that.
for ac_j in 'fpp' "$CPP" "$CPP -x c" 'cpp' '/lib/cpp' '/usr/ccs/lib/cpp' \
'g77 -E' '$CC -E' '$CC -E -x c' \
"$FC -F" "$FC -E" "$F77 -F" "$F77 -E"; do
# FIXME: The comment above does not agree with the code below - $FC etc.
# is being checked late, not early?
for ac_j in 'fpp' "$CPP -x f95-cpp-input" "$CPP -x f77-cpp-input" \
"$CPP -C -x c" "$CPP -x c" "$CPP" 'cpp' '/lib/cpp' '/usr/ccs/lib/cpp' \
'g77 -E' '$CC -E -x f95-cpp-input' '$CC -E -x f77-cpp-input' \
'$CC -E -x c -C' '$CC -E -x c' '$CC -E' \
"$FC -F" "$FC -E" "$F77 -F" "$F77 -E" ; do
_AC_TEST_FPP_FREE([$ac_j])
test -n "$ac_cv_prog_fpp" && break;
done
Expand Down Expand Up @@ -3100,6 +3107,10 @@ AC_CACHE_CHECK([whether $FPP fulfils requested features],
ac_cv_fpp_build_rule=indirect
if test ac_fpp_ok == no; then
AC_MSG_ERROR([Cannot find a Fortran preprocessor with the requested features])
fi
fi # test ac_fpp_ok != yes
# We have all necessary information.
Expand Down

0 comments on commit 3434dfc

Please sign in to comment.