about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-10-03 23:12:46 +0000
committerEric Wong <e@80x24.org>2020-10-05 01:59:27 +0000
commit4c10137458c95adf45babd388c639c1344b62211 (patch)
tree9e352e14391603e94b19c7cc5c310b4f9512bb58
parentf92f34cd6e79e8222d7bbd8d4f63b6421845e46b (diff)
downloadpublic-inbox-4c10137458c95adf45babd388c639c1344b62211.tar.gz
JSON::MaybeXS already favors Cpanel::JSON::XS (and has for many
years, now).  Allow users to skip installing JSON::MaybeXS if
they want an XS-based JSON implementation.
-rw-r--r--lib/PublicInbox/ManifestJsGz.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/ManifestJsGz.pm b/lib/PublicInbox/ManifestJsGz.pm
index f98d9d01..16d2a87c 100644
--- a/lib/PublicInbox/ManifestJsGz.pm
+++ b/lib/PublicInbox/ManifestJsGz.pm
@@ -16,7 +16,7 @@ use HTTP::Date qw(time2str);
 *try_cat = \&PublicInbox::Inbox::try_cat;
 
 our $json;
-for my $mod (qw(JSON::MaybeXS JSON JSON::PP)) {
+for my $mod (qw(Cpanel::JSON::XS JSON::MaybeXS JSON JSON::PP)) {
         eval "require $mod" or next;
         # ->ascii encodes non-ASCII to "\uXXXX"
         $json = $mod->new->ascii(1) and last;