File: 1001_supported_archs.patch

package info (click to toggle)
liblmdb-file-perl 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 500 kB
  • sloc: perl: 1,090; pascal: 328; sh: 32; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: allow linking with liblmdb on i386 architecture
Bug: https://github.com/salortiz/LMDB_File/issues/35
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2021-01-03
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,10 +3,10 @@
 use ExtUtils::MakeMaker;
 use Config;
 
-if($Config{archname} =~ /686/) {
-    warn "liblmdb isn't supported in your platform, sorry.\n";
-    exit 0;
-}
+#if($Config{archname} =~ /686/) {
+#    warn "liblmdb isn't supported in your platform, sorry.\n";
+#    exit 0;
+#}
 
 my $lmdb_dir = 'liblmdb/libraries/liblmdb';