From: Steinar H. Gunderson Date: Sat, 28 Jan 2023 20:45:19 +0000 (+0100) Subject: Release plocate 1.1.18. X-Git-Tag: 1.1.18^0 X-Git-Url: https://git.sesse.net/?p=plocate;a=commitdiff_plain;h=068e02eec22686074a5c1e026140b601c8d61ab6 Release plocate 1.1.18. --- diff --git a/NEWS b/NEWS index 11d8767..2812c2b 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,11 @@ -plocate 1.1.7, November 21st, 2022 +plocate 1.1.18, January 28th, 2023 + + - Support the --require-visibility flag in plocate-build. + + - Various bugfixes. + + +plocate 1.1.17, November 21st, 2022 - Return 1 if no matches were found. Patch by Clément Pit-Claudel. diff --git a/conf.cpp b/conf.cpp index 60dd93f..3dd3abc 100644 --- a/conf.cpp +++ b/conf.cpp @@ -68,6 +68,10 @@ bool conf_verbose; /* = false; */ /* Configuration representation for the database configuration block */ string conf_block; +/* Absolute (not necessarily canonical) path to the config file */ +string conf_configfile_str; +const char *conf_configfile; + int conf_block_size = 32; bool use_debug = false; diff --git a/meson.build b/meson.build index aa24879..212b851 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.1.18-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.1.18') add_project_arguments('-DGROUPNAME="' + get_option('locategroup') + '"', language: 'cpp') add_project_arguments('-DUPDATEDB_CONF="/etc/updatedb.conf"', language: 'cpp')