diff options
Diffstat (limited to 'sci-chemistry/apbs/files/apbs-1.4.1-manip.patch')
-rw-r--r-- | sci-chemistry/apbs/files/apbs-1.4.1-manip.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch b/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch new file mode 100644 index 000000000000..378223397594 --- /dev/null +++ b/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch @@ -0,0 +1,50 @@ + apbs/CMakeLists.txt | 2 +- + apbs/tools/CMakeLists.txt | 4 ---- + apbs/tools/mesh/CMakeLists.txt | 4 ++-- + 4 files changed, 5 insertions(+), 9 deletions(-) + +diff --git a/apbs/CMakeLists.txt b/apbs/CMakeLists.txt +index 8917fc4..5152008 100644 +--- a/apbs/CMakeLists.txt ++++ b/apbs/CMakeLists.txt +@@ -293,7 +293,7 @@ option(ENABLE_FETK "Enable the finite element solver" OFF) + + if(ENABLE_FETK) + message(STATUS "Checking for fetk components") +- set(FETK_ENALBED 1) ++ set(FETK_ENABLED 1) + + list(APPEND APBS_LIBS "-lstdc++") + list(APPEND APBS_LIBS "-L${FETK_PATH}/lib") +diff --git a/apbs/tools/manip/CMakeLists.txt b/apbs/tools/manip/CMakeLists.txt +index 937dac7..5768cc5 100644 +--- a/apbs/tools/manip/CMakeLists.txt ++++ b/apbs/tools/manip/CMakeLists.txt +@@ -4,9 +4,9 @@ set(LIBS "") + list(APPEND LIBS "apbs_generic") + list(APPEND LIBS "apbs_mg") + list(APPEND LIBS "apbs_pmgc") +-if(FETK_ENALBED) ++if(FETK_ENABLED) + list(APPEND LIBS "apbs_fem") +-endif(FETK_ENALBED) ++endif(FETK_ENABLED) + + message(STATUS "libraries: ${LIBS}") + +diff --git a/apbs/tools/mesh/CMakeLists.txt b/apbs/tools/mesh/CMakeLists.txt +index 1406377..6e6dfb9 100644 +--- a/apbs/tools/mesh/CMakeLists.txt ++++ b/apbs/tools/mesh/CMakeLists.txt +@@ -4,9 +4,9 @@ set(LIBS "") + list(APPEND LIBS "apbs_generic") + list(APPEND LIBS "apbs_mg") + list(APPEND LIBS "apbs_pmgc") +-if(FETK_ENALBED) ++if(FETK_ENABLED) + list(APPEND LIBS "apbs_fem") +-endif(FETK_ENALBED) ++endif(FETK_ENABLED) + + message(STATUS "libraries: ${LIBS}") + |