aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-10 16:10:23 +0200
committerThomas White <taw@physics.org>2020-08-10 16:10:57 +0200
commit76d06dbf880d376ccb12c3eeaa64dceeb2409781 (patch)
tree358b0521e09dc8fdcd238faeabc2d155b7902396 /libcrystfel
parent870e4e5740817bc8e8f8487e867221f51ed19d54 (diff)
Disable pinkIndexer
Temporary, of course. But it needs some thought about how the interface should work.
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/CMakeLists.txt3
-rw-r--r--libcrystfel/meson.build3
2 files changed, 4 insertions, 2 deletions
diff --git a/libcrystfel/CMakeLists.txt b/libcrystfel/CMakeLists.txt
index 8bfb355b..7c8bd82b 100644
--- a/libcrystfel/CMakeLists.txt
+++ b/libcrystfel/CMakeLists.txt
@@ -2,7 +2,8 @@ project(libcrystfel VERSION ${CRYSTFEL_SHORT_VERSION} LANGUAGES C)
find_package(Curses)
pkg_check_modules (XGANDALF xgandalf)
-pkg_check_modules (PINKINDEXER pinkIndexer)
+# FIXME: Disabled
+#pkg_check_modules (PINKINDEXER pinkIndexer)
pkg_check_modules (FDIP fdip)
find_package(ZLIB REQUIRED)
find_package(FLEX REQUIRED)
diff --git a/libcrystfel/meson.build b/libcrystfel/meson.build
index d8543eb8..db624ec5 100644
--- a/libcrystfel/meson.build
+++ b/libcrystfel/meson.build
@@ -22,7 +22,8 @@ if xgandalfdep.found()
conf_data.set10('HAVE_XGANDALF', 1)
endif
-pinkindexerdep = dependency('pinkIndexer', required: false)
+# FIXME: Disabled
+pinkindexerdep = dependency('', required: false)
if pinkindexerdep.found()
conf_data.set10('HAVE_PINKINDEXER', 1)
endif