Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAugust "Gus" Mueller <gus@flyingmeat.com>2019-08-21 23:49:41 +0300
committerGitHub <noreply@github.com>2019-08-21 23:49:41 +0300
commit65036d66e9698c24698bfc120450cf033bbbbdb2 (patch)
tree3a8f0706b62361efb2ab478c7bf95f423e2db28e
parentb095a7e50aa8d71ad533edb366f0c707d6452224 (diff)
parent7f3c69be99ad26288be173169f2b35db32221a6e (diff)
Merge pull request #753 from R4N/sqlcipher-version-cap
Adds SQLCipher subspec major version cap which will prevent `pod upda…
-rw-r--r--FMDB.podspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/FMDB.podspec b/FMDB.podspec
index 0871ee0..eb610dc 100644
--- a/FMDB.podspec
+++ b/FMDB.podspec
@@ -40,7 +40,7 @@ Pod::Spec.new do |s|
# use SQLCipher and enable -DSQLITE_HAS_CODEC flag
s.subspec 'SQLCipher' do |ss|
- ss.dependency 'SQLCipher'
+ ss.dependency 'SQLCipher', '~> 4.0'
ss.source_files = 'src/fmdb/FM*.{h,m}'
ss.exclude_files = 'src/fmdb.m'
ss.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC -DHAVE_USLEEP=1', 'HEADER_SEARCH_PATHS' => 'SQLCipher' }