Skip Menu |

This queue is for tickets about the DBD-SQLite CPAN distribution.

Report information
The Basics
Id: 131256
Status: new
Priority: 0/
Queue: DBD-SQLite

People
Owner: Nobody in particular
Requestors: blgl [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.64
Fixed in: (no value)



Subject: SQLITE_ENABLE_LOCKING_STYLE=0 no longer needed for Mac OS X
Everything builds and tests fine on several Mac OS X versions with SQLITE_ENABLE_LOCKING_STYLE=1 This lets you store database files on a much wider variety of filesystems.
Subject: 0001-Remove-obsolete-workaround.patch
From 7e96ae6edac5ea44b2305003eb46ade0cf1abe90 Mon Sep 17 00:00:00 2001 From: Bo Lindbergh <blgl@stacken.kth.se> Date: Thu, 26 Dec 2019 10:47:14 +0100 Subject: [PATCH] Remove obsolete workaround. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 5c832af..203b757 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -278,7 +278,7 @@ if ($^O eq 'darwin') { if ($osmajor < 8 or ($osmajor == 8 && $osminor <= 11)) { push @CC_DEFINE, '-DSQLITE_WITHOUT_ZONEMALLOC=1'; } - push @CC_DEFINE, '-DSQLITE_ENABLE_LOCKING_STYLE=0'; + push @CC_DEFINE, '-DSQLITE_ENABLE_LOCKING_STYLE=1'; } if ($^O eq 'aix') { push @CC_DEFINE, '-DSQLITE_DISABLE_DIRSYNC'; -- 2.16.3