diff options
author | Maho Nakata <maho@FreeBSD.org> | 2004-11-04 03:32:39 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2004-11-04 03:32:39 +0000 |
commit | f19df91a2dd6ac2fd42684f84e94b112e626ff50 (patch) | |
tree | 70dee8de17c400aa13218c2bda7adfea8cd34c04 /science | |
parent | 555c7d0e147de32a53867fab107e1790b3f9f03e (diff) |
Fix build by adding
.ifndef WITH_FLOAT
CONFIGURE_ARGS+= --disable-float
Submitted by: Stephen Montgomery-Smith <stephen at math.missouri.edu>
Reported by: kris via pointyhat and Bruno Afonso <brunomiguel at dequim.ist.utl.pt>
Notes
Notes:
svn path=/head/; revision=120748
Diffstat (limited to 'science')
-rw-r--r-- | science/gromacs/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/science/gromacs/Makefile b/science/gromacs/Makefile index 2bd5bb236961..45c61454caab 100644 --- a/science/gromacs/Makefile +++ b/science/gromacs/Makefile @@ -50,6 +50,10 @@ USE_XLIB= yes CONFIGURE_ARGS+= --without-fftw .endif +.ifndef WITHOUT_FLOAT +CONFIGURE_ARGS+= --disable-float +.endif + .ifdef WITH_MPI CONFIGURE_ARGS+= --enable-mpi CONFIGURE_ENV+= MPICC=${PREFIX}/mpich/bin/mpicc |