Skip to content

Commit cd09b6a

Browse files
More README formatting fixes
1 parent cdbb43b commit cd09b6a

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -97,31 +97,31 @@ The built-in OSX/iOS version of SQLite were built with the following compilation
9797
> Fetched using `PRAGMA compile_options;`
9898
9999
- MacOSX (10.11.5)
100-
- ENABLE_API_ARMOR
101-
- ENABLE_FTS3
102-
- ENABLE_FTS3_PARENTHESIS
103-
- ENABLE_LOCKING_STYLE=1
104-
- ENABLE_RTREE
105-
- ENABLE_UPDATE_DELETE_LIMIT
106-
- OMIT_AUTORESET
107-
- OMIT_BUILTIN_TEST
108-
- OMIT_LOAD_EXTENSION
109-
- SYSTEM_MALLOC
110-
- THREADSAFE=2
100+
- `ENABLE_API_ARMOR`
101+
- `ENABLE_FTS3`
102+
- `ENABLE_FTS3_PARENTHESIS`
103+
- `ENABLE_LOCKING_STYLE=1`
104+
- `ENABLE_RTREE`
105+
- `ENABLE_UPDATE_DELETE_LIMIT`
106+
- `OMIT_AUTORESET`
107+
- `OMIT_BUILTIN_TEST`
108+
- `OMIT_LOAD_EXTENSION`
109+
- `SYSTEM_MALLOC`
110+
- `THREADSAFE=2`
111111

112112
- iPhoneOS (9.3.2)
113-
- ENABLE_API_ARMOR
114-
- ENABLE_FTS3
115-
- ENABLE_FTS3_PARENTHESIS
116-
- ENABLE_LOCKING_STYLE=1
117-
- ENABLE_RTREE
118-
- ENABLE_UPDATE_DELETE_LIMIT
119-
- MAX_MMAP_SIZE=0
120-
- OMIT_AUTORESET
121-
- OMIT_BUILTIN_TEST
122-
- OMIT_LOAD_EXTENSION
123-
- SYSTEM_MALLOC
124-
- THREADSAFE=2
113+
- `ENABLE_API_ARMOR`
114+
- `ENABLE_FTS3`
115+
- `ENABLE_FTS3_PARENTHESIS`
116+
- `ENABLE_LOCKING_STYLE=1`
117+
- `ENABLE_RTREE`
118+
- `ENABLE_UPDATE_DELETE_LIMIT`
119+
- `MAX_MMAP_SIZE=0`
120+
- `OMIT_AUTORESET`
121+
- `OMIT_BUILTIN_TEST`
122+
- `OMIT_LOAD_EXTENSION`
123+
- `SYSTEM_MALLOC`
124+
- `THREADSAFE=2`
125125

126126
SQLiteLib uses these settings with one exception - on iOS:
127127

@@ -135,15 +135,15 @@ D. Richard Hipp (SQLite architect), suggests working around this on iOS using `-
135135
>
136136
> I'm guessing this is not really a factor on iOS."
137137
138-
Thus, SQLiteLib uses SQLITE_ENABLE_LOCKING_STYLE=1 on OSX,
139-
**but on iOS, SQLiteLib compiles with ENABLE_LOCKING_STYLE=0**.
138+
Thus, SQLiteLib uses `SQLITE_ENABLE_LOCKING_STYLE=1` on OSX,
139+
**but on iOS, SQLiteLib compiles with `ENABLE_LOCKING_STYLE=0`**.
140140

141141
This removes the code that uses the deprecated function, but doesn't get rid of the warning that "`gethostuuid() is disabled`" (as of 3.13.0).
142142

143143
To prevent this warning, SQLiteLib separately specifies `-Wno-#warnings` when building for iOS.
144144

145145
All of these base settings are configured in the SQLiteLib.xcconfig file.
146-
It is strongly recommended that you do not edit this file. If you'd like to specify additional compilation options, see [the instructions above](#specifying-additional-sqlite-compilation-options)
146+
It is strongly recommended that you do not edit this file. If you'd like to specify additional compilation options, see [the instructions above](#specifying-additional-sqlite-compilation-options).
147147

148148

149149

0 commit comments

Comments
 (0)