diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-20 15:49:09 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-20 16:58:21 +0300 |
commit | ac0d668a407cc441dacc7d9a9edb70aff555a518 (patch) | |
tree | ebbd6c41659d93e06679762aac24d7f285023526 /configure.in | |
parent | 616b6211b7c5165620d7b80467d1d02688d09a0d (diff) |
Skip DISABLE_DBCONNECTIVITY attempts for now
Change-Id: I3d454d10aee05ce5b4bfd8ea0852bbc751933058
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 6f8d11530d60..3a52117f7014 100644 --- a/configure.in +++ b/configure.in @@ -2239,9 +2239,12 @@ if test -z "$enable_database_connectivity"; then # Do enable database connectivity for Android for now as otherwise # we presumably will get linking errors... We are not as far in # the work for iOS, so we might as well disable it for iOS already. - if test $_os != iOS; then + + # And actually, do enable it for iOS, too. Let's get back to + # figuring out what to do with this later, if ever. + #if test $_os != iOS; then enable_database_connectivity=yes - fi + #fi fi DISABLE_DBCONNECTIVITY='' |