Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
0f8e2715
Commit
0f8e2715
authored
Jun 26, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing iOS detection in core persistence
parent
dd7eeea1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
persistence.cpp
modules/core/src/persistence.cpp
+6
-6
No files found.
modules/core/src/persistence.cpp
View file @
0f8e2715
...
@@ -50,12 +50,12 @@
...
@@ -50,12 +50,12 @@
#define USE_ZLIB 1
#define USE_ZLIB 1
#ifdef __APPLE__
#ifdef __APPLE__
#include "TargetConditionals.h"
#
include "TargetConditionals.h"
#
if defined TARGET_OS_IPHONE || defined TARGET_IPHONE_SIMULATOR
#
if (defined TARGET_OS_IPHONE && TARGET_OS_IPHONE) || (defined TARGET_IPHONE_SIMULATOR && TARGET_IPHONE_SIMULATOR)
#undef USE_ZLIB
#
undef USE_ZLIB
#define USE_ZLIB 0
#
define USE_ZLIB 0
typedef
void
*
gzFile
;
typedef
void
*
gzFile
;
#endif
#
endif
#endif
#endif
#if USE_ZLIB
#if USE_ZLIB
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment