mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-27 01:49:56 +08:00
* aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Don't require AC_CYGWIN.
(AC_F77_NAME_MANGLING): Removed useless comment. (_AC_PROG_F77_GNU): Use `.f' not `.fpp' which is not properly processed by Abysoft's Fortran compiler.
This commit is contained in:
parent
c39fb79403
commit
5b4529d74f
@ -1,3 +1,10 @@
|
||||
2000-06-09 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Don't require AC_CYGWIN.
|
||||
(AC_F77_NAME_MANGLING): Removed useless comment.
|
||||
(_AC_PROG_F77_GNU): Use `.f' not `.fpp' which is not properly
|
||||
processed by Abysoft's Fortran compiler.
|
||||
|
||||
2000-06-09 Steven G. Johnson <stevenj@superjdj.mit.edu>
|
||||
|
||||
* aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Fixed bug where
|
||||
|
10
aclang.m4
10
aclang.m4
@ -870,12 +870,12 @@ AC_LANG_POP
|
||||
# do CPP pre-processing.
|
||||
define([_AC_PROG_F77_GNU],
|
||||
[AC_CACHE_CHECK(whether we are using GNU Fortran 77, ac_cv_prog_g77,
|
||||
[cat >conftest.fpp <<EOF
|
||||
[cat >conftest.f <<EOF
|
||||
#ifdef __GNUC__
|
||||
yes
|
||||
#endif
|
||||
EOF
|
||||
if AC_TRY_COMMAND($F77 -E conftest.fpp) | egrep yes >/dev/null 2>&1; then
|
||||
if AC_TRY_COMMAND($F77 -E conftest.f) | egrep yes >/dev/null 2>&1; then
|
||||
ac_cv_prog_g77=yes
|
||||
else
|
||||
ac_cv_prog_g77=no
|
||||
@ -1321,9 +1321,7 @@ fi
|
||||
# W. Eaton for writing this extremely useful macro. Thank you John.
|
||||
AC_DEFUN([AC_F77_LIBRARY_LDFLAGS],
|
||||
[AC_REQUIRE([AC_PROG_F77])dnl
|
||||
AC_REQUIRE([AC_CYGWIN])dnl
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries],
|
||||
ac_cv_flibs,
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries], ac_cv_flibs,
|
||||
[if test "x$FLIBS" != "x"; then
|
||||
ac_cv_flibs="$FLIBS" # Let the user override the test.
|
||||
else
|
||||
@ -1344,7 +1342,6 @@ ac_link_output=`eval $ac_link AC_FD_LOG>&1 2>&1 | grep -v 'Driving:'`
|
||||
FFLAGS=$ac_save_FFLAGS
|
||||
|
||||
rm -f conftest.*
|
||||
|
||||
AC_LANG_POP()dnl
|
||||
|
||||
# This will ultimately be our output variable.
|
||||
@ -1536,7 +1533,6 @@ AC_COMPILE_IFELSE(
|
||||
rm -f cf77_test*])
|
||||
AC_LANG_POP()dnl
|
||||
])
|
||||
dnl Get case/underscore from cache variable, in case above tests were skipped:
|
||||
f77_case=`echo "$ac_cv_f77_mangling" | sed 's/ case.*$//'`
|
||||
f77_underscore=`echo "$ac_cv_f77_mangling" | sed 's/^.*, \(.*\) .*$/\1/'`
|
||||
])# AC_F77_NAME_MANGLING
|
||||
|
@ -870,12 +870,12 @@ AC_LANG_POP
|
||||
# do CPP pre-processing.
|
||||
define([_AC_PROG_F77_GNU],
|
||||
[AC_CACHE_CHECK(whether we are using GNU Fortran 77, ac_cv_prog_g77,
|
||||
[cat >conftest.fpp <<EOF
|
||||
[cat >conftest.f <<EOF
|
||||
#ifdef __GNUC__
|
||||
yes
|
||||
#endif
|
||||
EOF
|
||||
if AC_TRY_COMMAND($F77 -E conftest.fpp) | egrep yes >/dev/null 2>&1; then
|
||||
if AC_TRY_COMMAND($F77 -E conftest.f) | egrep yes >/dev/null 2>&1; then
|
||||
ac_cv_prog_g77=yes
|
||||
else
|
||||
ac_cv_prog_g77=no
|
||||
@ -1321,9 +1321,7 @@ fi
|
||||
# W. Eaton for writing this extremely useful macro. Thank you John.
|
||||
AC_DEFUN([AC_F77_LIBRARY_LDFLAGS],
|
||||
[AC_REQUIRE([AC_PROG_F77])dnl
|
||||
AC_REQUIRE([AC_CYGWIN])dnl
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries],
|
||||
ac_cv_flibs,
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries], ac_cv_flibs,
|
||||
[if test "x$FLIBS" != "x"; then
|
||||
ac_cv_flibs="$FLIBS" # Let the user override the test.
|
||||
else
|
||||
@ -1344,7 +1342,6 @@ ac_link_output=`eval $ac_link AC_FD_LOG>&1 2>&1 | grep -v 'Driving:'`
|
||||
FFLAGS=$ac_save_FFLAGS
|
||||
|
||||
rm -f conftest.*
|
||||
|
||||
AC_LANG_POP()dnl
|
||||
|
||||
# This will ultimately be our output variable.
|
||||
@ -1536,7 +1533,6 @@ AC_COMPILE_IFELSE(
|
||||
rm -f cf77_test*])
|
||||
AC_LANG_POP()dnl
|
||||
])
|
||||
dnl Get case/underscore from cache variable, in case above tests were skipped:
|
||||
f77_case=`echo "$ac_cv_f77_mangling" | sed 's/ case.*$//'`
|
||||
f77_underscore=`echo "$ac_cv_f77_mangling" | sed 's/^.*, \(.*\) .*$/\1/'`
|
||||
])# AC_F77_NAME_MANGLING
|
||||
|
@ -870,12 +870,12 @@ AC_LANG_POP
|
||||
# do CPP pre-processing.
|
||||
define([_AC_PROG_F77_GNU],
|
||||
[AC_CACHE_CHECK(whether we are using GNU Fortran 77, ac_cv_prog_g77,
|
||||
[cat >conftest.fpp <<EOF
|
||||
[cat >conftest.f <<EOF
|
||||
#ifdef __GNUC__
|
||||
yes
|
||||
#endif
|
||||
EOF
|
||||
if AC_TRY_COMMAND($F77 -E conftest.fpp) | egrep yes >/dev/null 2>&1; then
|
||||
if AC_TRY_COMMAND($F77 -E conftest.f) | egrep yes >/dev/null 2>&1; then
|
||||
ac_cv_prog_g77=yes
|
||||
else
|
||||
ac_cv_prog_g77=no
|
||||
@ -1321,9 +1321,7 @@ fi
|
||||
# W. Eaton for writing this extremely useful macro. Thank you John.
|
||||
AC_DEFUN([AC_F77_LIBRARY_LDFLAGS],
|
||||
[AC_REQUIRE([AC_PROG_F77])dnl
|
||||
AC_REQUIRE([AC_CYGWIN])dnl
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries],
|
||||
ac_cv_flibs,
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries], ac_cv_flibs,
|
||||
[if test "x$FLIBS" != "x"; then
|
||||
ac_cv_flibs="$FLIBS" # Let the user override the test.
|
||||
else
|
||||
@ -1344,7 +1342,6 @@ ac_link_output=`eval $ac_link AC_FD_LOG>&1 2>&1 | grep -v 'Driving:'`
|
||||
FFLAGS=$ac_save_FFLAGS
|
||||
|
||||
rm -f conftest.*
|
||||
|
||||
AC_LANG_POP()dnl
|
||||
|
||||
# This will ultimately be our output variable.
|
||||
@ -1536,7 +1533,6 @@ AC_COMPILE_IFELSE(
|
||||
rm -f cf77_test*])
|
||||
AC_LANG_POP()dnl
|
||||
])
|
||||
dnl Get case/underscore from cache variable, in case above tests were skipped:
|
||||
f77_case=`echo "$ac_cv_f77_mangling" | sed 's/ case.*$//'`
|
||||
f77_underscore=`echo "$ac_cv_f77_mangling" | sed 's/^.*, \(.*\) .*$/\1/'`
|
||||
])# AC_F77_NAME_MANGLING
|
||||
|
@ -870,12 +870,12 @@ AC_LANG_POP
|
||||
# do CPP pre-processing.
|
||||
define([_AC_PROG_F77_GNU],
|
||||
[AC_CACHE_CHECK(whether we are using GNU Fortran 77, ac_cv_prog_g77,
|
||||
[cat >conftest.fpp <<EOF
|
||||
[cat >conftest.f <<EOF
|
||||
#ifdef __GNUC__
|
||||
yes
|
||||
#endif
|
||||
EOF
|
||||
if AC_TRY_COMMAND($F77 -E conftest.fpp) | egrep yes >/dev/null 2>&1; then
|
||||
if AC_TRY_COMMAND($F77 -E conftest.f) | egrep yes >/dev/null 2>&1; then
|
||||
ac_cv_prog_g77=yes
|
||||
else
|
||||
ac_cv_prog_g77=no
|
||||
@ -1321,9 +1321,7 @@ fi
|
||||
# W. Eaton for writing this extremely useful macro. Thank you John.
|
||||
AC_DEFUN([AC_F77_LIBRARY_LDFLAGS],
|
||||
[AC_REQUIRE([AC_PROG_F77])dnl
|
||||
AC_REQUIRE([AC_CYGWIN])dnl
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries],
|
||||
ac_cv_flibs,
|
||||
AC_CACHE_CHECK([for Fortran 77 libraries], ac_cv_flibs,
|
||||
[if test "x$FLIBS" != "x"; then
|
||||
ac_cv_flibs="$FLIBS" # Let the user override the test.
|
||||
else
|
||||
@ -1344,7 +1342,6 @@ ac_link_output=`eval $ac_link AC_FD_LOG>&1 2>&1 | grep -v 'Driving:'`
|
||||
FFLAGS=$ac_save_FFLAGS
|
||||
|
||||
rm -f conftest.*
|
||||
|
||||
AC_LANG_POP()dnl
|
||||
|
||||
# This will ultimately be our output variable.
|
||||
@ -1536,7 +1533,6 @@ AC_COMPILE_IFELSE(
|
||||
rm -f cf77_test*])
|
||||
AC_LANG_POP()dnl
|
||||
])
|
||||
dnl Get case/underscore from cache variable, in case above tests were skipped:
|
||||
f77_case=`echo "$ac_cv_f77_mangling" | sed 's/ case.*$//'`
|
||||
f77_underscore=`echo "$ac_cv_f77_mangling" | sed 's/^.*, \(.*\) .*$/\1/'`
|
||||
])# AC_F77_NAME_MANGLING
|
||||
|
Loading…
Reference in New Issue
Block a user