]> Sergey Matveev's repositories - public-inbox.git/commitdiff
altid: use msgmap at compile time
authorEric Wong <e@yhbt.net>
Sun, 5 Jan 2020 23:23:33 +0000 (23:23 +0000)
committerEric Wong <e@yhbt.net>
Mon, 6 Jan 2020 10:20:51 +0000 (10:20 +0000)
AltId requires Msgmap to work, which requires SQLite.  Search
also requires SQLite3 (for Over), nowadays, so there's no reason
for us to lazy-load Msgmap and SQLite anymore.

lib/PublicInbox/AltId.pm

index b4daaed2b64c56355ba539bebd60f1e173c7c350..6b03d603e78efdb3caf61bd1baeb69911eb75238 100644 (file)
@@ -13,6 +13,7 @@ package PublicInbox::AltId;
 use strict;
 use warnings;
 use URI::Escape qw(uri_unescape);
+use PublicInbox::Msgmap;
 
 # spec: TYPE:PREFIX:param1=value1&param2=value2&...
 # The PREFIX will be a searchable boolean prefix in Xapian
@@ -22,8 +23,6 @@ sub new {
        my ($type, $prefix, $query) = split(/:/, $spec, 3);
        $type eq 'serial' or die "non-serial not supported, yet\n";
 
-       require PublicInbox::Msgmap;
-
        my %params = map {
                my ($k, $v) = split(/=/, uri_unescape($_), 2);
                $v = '' unless defined $v;