From 31f2f97d8dd3c9e0881ea240a484246200da2d89 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Sun, 10 Sep 2006 20:39:08 +0200 Subject: [PATCH] Introduced new switch CONFIG_SHERLOCK which can be used to disable Sherlock compilation. Command ./configure lib/config builds only libucw, libcharset and part of libsh. --- lib/config/Makefile | 1 + lib/config/config | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 lib/config/Makefile create mode 100644 lib/config/config diff --git a/lib/config/Makefile b/lib/config/Makefile new file mode 100644 index 00000000..2a28d2d0 --- /dev/null +++ b/lib/config/Makefile @@ -0,0 +1 @@ +# Stub Makefile for custom modules diff --git a/lib/config/config b/lib/config/config new file mode 100644 index 00000000..8dade098 --- /dev/null +++ b/lib/config/config @@ -0,0 +1,22 @@ +# Libraries configuration (libucw, libcharset, libsh) + +Set("CUSTOM_DIR" => "lib/config"); + +UnSet("CONFIG_SHERLOCK"); +UnSet("CONFIG_GATHERD"); +UnSet("CONFIG_INDEXER"); +UnSet("CONFIG_SEARCH"); +UnSet("CONFIG_LARGE_DB"); +UnSet("CONFIG_LASTMOD"); +UnSet("CONFIG_FILETYPE"); +UnSet("CONFIG_LANG"); +UnSet("CONFIG_SPELL"); +UnSet("CONFIG_MAX_CONTEXTS"); +UnSet("CONFIG_32BIT_REFERENCES"); +Set("DEFAULT_CONFIG" => "cf/library"); + +# Keep turned on if debugging +Set("CONFIG_DEBUG"); + +# Return success +1; -- 2.39.2