Skip to content

Commit

Permalink
Fix wrapping include directory path with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed May 12, 2023
1 parent f25f437 commit 898bd41
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unlreleased

## v0.13.11
- fixed: Wrap include directory with string so it works with the compiler.

## v0.13.10
- added: Ability to specify `:load_extensions` for custom sqlite extensions.
- changed: Updated sqlite3 to `3.41.2`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ ifneq ($(EXQLITE_SYSTEM_CFLAGS),)
endif

# Set Erlang-specific compile flags
ERL_CFLAGS ?= -I$(ERL_EI_INCLUDE_DIR)
ERL_CFLAGS ?= -I"$(ERL_EI_INCLUDE_DIR)"

ifneq ($(STATIC_ERLANG_NIF),)
CFLAGS += -DSTATIC_ERLANG_NIF=1
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Exqlite.MixProject do
use Mix.Project

@version "0.13.10"
@version "0.13.11"
@sqlite_version "3.41.2"

def project do
Expand Down

0 comments on commit 898bd41

Please sign in to comment.