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';
|