Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lamar8/SQLite.swift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.12.2
Choose a base ref
...
head repository: lamar8/SQLite.swift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 15, 2019

  1. Fix building with standalone sqlite3 >= 3.30.0

    SQLite 3.30.0 changed the definition of SQLITE_DETERMINISTIC:
    `-#define SQLITE_DETERMINISTIC    0x800`
    `+#define SQLITE_DETERMINISTIC    0x000000800`
    
    Meaning that the (older) system sqlite3 library and the pod have
    different definitions, even though they're the same value.
    
    We've been importing the system sqlite3 module in SQLiteObjc.h
    even when linking against standalone sqlite.
    
    I added a check to SQLiteObjc.h to import the sqlite3 pod when
    we're using it, instead of always importing the system module.
    
    This leads to there being only one definition in scope.
    bmwalters committed Nov 15, 2019
    Configuration menu
    Copy the full SHA
    ef3f88f View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2020

  1. Merge pull request stephencelis#970 from bmwalters/fix/standalone-3.30.0

    Fix building with standalone sqlite3 >= 3.30.0
    jberkel authored Jan 19, 2020
    Configuration menu
    Copy the full SHA
    70fb7af View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2021

  1. team

    lamar8 committed Jul 29, 2021
    Configuration menu
    Copy the full SHA
    70e6382 View commit details
    Browse the repository at this point in the history
  2. add team

    lamar8 committed Jul 29, 2021
    Configuration menu
    Copy the full SHA
    925475d View commit details
    Browse the repository at this point in the history
Loading