Skip to content
Snippets Groups Projects
Commit d7005aec authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Include more F77 autoconf macros. Should be used one day to make Fortran

stuff more portable ...

Quick hack for icc. For rpath settings, icc needs -Wl which is --
unluckily -- not properly detected by configure. So just hardcode -Wl
when `basename $CC` = icc.
parent 2f389bf5
Branches
Tags
No related merge requests found
......@@ -35,10 +35,25 @@ AM_CONFIG_HEADER([config.h])
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_CC
dnl
dnl quick hack for icc
dnl
if test "`basename $CC`" = "icc"; then
lt_cv_prog_cc_wl='-Wl,'
fi
AC_PROG_F77
dnl
dnl Mmmh. Quite elaborated nowadays
dnl
AC_F77_WRAPPERS
AC_F77_MAIN
AC_F77_LIBRARY_LDFLAGS
AC_PROG_LIBTOOL
# change the installation directory. This could surely be done more elegantly...
AC_PREFIX_DEFAULT([`pwd`])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment