Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
a40a25e1
Commit
a40a25e1
authored
Apr 25, 2018
by
Peter W. Draper
Browse files
Need to clear settings when lib is not found and not specified
parent
48c4f03f
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
a40a25e1
...
...
@@ -444,6 +444,10 @@ if test "x$with_gsl" != "xno"; then
AC_MSG_ERROR(something is wrong with the GSL library!), $GSL_LIBS)
have_gsl="yes"
fi
if test "$have_gsl" = "no"; then
GSL_LIBS=""
GSL_INCS=""
fi
fi
AC_SUBST([GSL_LIBS])
AC_SUBST([GSL_INCS])
...
...
@@ -574,6 +578,10 @@ if test "x$with_fftw" != "xno"; then
AC_MSG_ERROR(something is wrong with the FFTW library!), $FFTW_LIBS)
have_fftw="yes"
fi
if test "$have_fftw" = "no"; then
FFTW_LIBS=""
FFTW_INCS=""
fi
fi
AC_SUBST([FFTW_LIBS])
AC_SUBST([FFTW_INCS])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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