Skip to content

Commit

Permalink
build: fix LDFLAG -undefined dynamic_lookup for MacOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Sep 18, 2024
1 parent 7b5a14b commit 9b170f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c_src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ifeq ($(UNAME_SYS), Darwin)
CXXFLAGS ?= -O3 -finline-functions -Wall -Wextra -Wconversion -Wcast-align -Wformat=2 -Wformat-security \
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wstrict-overflow \
-I$(CYRUS_INCLUDE) -I$(KRB5_INCLUDE)
LDFLAGS ?= -undefined dynamic_lookup
LDFLAGS += -undefined dynamic_lookup

LDLIBS += -L$(CYRUS_LIB) -L$(KRB5_LIB)
else ifeq ($(UNAME_SYS), FreeBSD)
Expand Down
2 changes: 1 addition & 1 deletion src/sasl_auth.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, sasl_auth, [
{description, "SASL GSSAPI and SCRAM auth mechanism support for Erlang/Elixir applications"},
{vsn, "2.3.2"},
{vsn, "2.3.3"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
Expand Down

0 comments on commit 9b170f7

Please sign in to comment.