summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-chemistry/gromacs/files/gromacs-4.0.9999-ccache.patch')
-rw-r--r--sci-chemistry/gromacs/files/gromacs-4.0.9999-ccache.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/sci-chemistry/gromacs/files/gromacs-4.0.9999-ccache.patch b/sci-chemistry/gromacs/files/gromacs-4.0.9999-ccache.patch
deleted file mode 100644
index 68b6a1e66e1d..000000000000
--- a/sci-chemistry/gromacs/files/gromacs-4.0.9999-ccache.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-cc is not cache by ccache (bug #302048), work around that
-
-diff --git a/configure.ac b/configure.ac
-index 3100101..db9d0b6 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -288,11 +288,11 @@ AC_DEFINE_UNQUOTED([BUILD_MACHINE],["`uname -srm`"],[Hardware and OS version for
- # normally we use the default compiler, but on alpha/linux we try the compaq ones first
- case "${host_cpu}-${host_os}" in
- alpha*-linux*)
-- cc_names="ccc cc gcc"
-+ cc_names="ccc gcc"
- f77_names="fort f77 g77"
- ;;
- *)
-- cc_names="cc icc xlc gcc"
-+ cc_names="icc xlc gcc"
- f77_names="f77 ifort xlf xlf77 cf77 fl32 g77 fort77 f90 xlf90 pgf77 cf77 fort fort77 pgf90"
- ;;
- esac