Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nek5000
giraffe
Commits
b02e7ba7
Commit
b02e7ba7
authored
Dec 12, 2016
by
Ron Rahaman
Browse files
Comments, rearranging calls for readability
parent
f2ad3cab
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
b02e7ba7
...
...
@@ -81,8 +81,8 @@ AC_F77_WRAPPERS # Discover how to call F77 funcs from C, set F77_FUNC ma
# Discover flags for Fortran preprocessing
FC_temp="$F77"; FC="$F77"
AC_FC_PP_SRCEXT([f])
AC_FC_PP_DEFINE
AC_FC_PP_SRCEXT([f])
# Discover what flags are needed to preprocess .f files
AC_FC_PP_DEFINE
# Discover the flag (eg, -D, -Df) is used to define PP symbols
FC="$FC_temp"
###############################################################################
...
...
@@ -94,6 +94,11 @@ if test "$ac_cv_sizeof_int_p" -eq 8; then
AC_DEFINE([PTRSIZE8], 1, [If sizeof *int is 8])
fi
# See if 'underscore' is in mangling scheme.
if echo "foobar"| tr -d @<:@:blank:@:>@ | grep '\<underscore\>' > /dev/null ; then
AC_DEFINE([UNDERSCORE], 1, [If Fortran name-mangling scheme adds an underscore])
fi
# See if MPI is enabled
if test "$mpi" = "yes"; then
AC_DEFINE([MPI], 1, [If MPI is enabled])
...
...
@@ -109,11 +114,6 @@ if test "$ac_cv_sizeof_long_int" -eq 8; then
AC_DEFINE([LONGINT8], 1, [If sizeof long int is 8])
fi
# See if 'underscore' is in mangling scheme.
if echo "foobar"| tr -d @<:@:blank:@:>@ | grep '\<underscore\>' > /dev/null ; then
AC_DEFINE([UNDERSCORE], 1, [If Fortran name-mangling scheme adds an underscore])
fi
# See if timer is enabled
if test "$timer" = "no"; then
AC_DEFINE([NOTIMER], 1, [If timer is disabled])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment