Skip to content

Commit

Permalink
re-generate src/Makefile.in and update CHANGELOG.md
Browse files Browse the repository at this point in the history
#20; thanks @fd00

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Aug 4, 2023
1 parent 4f67fba commit 27d2d5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release Notes #

* avoid using empty prototypes; support Clang 15 and XCode 14.3
* build shared library on Cygwin by adding -no-undefined to LDFLAGS
(https://github.com/OpenIDC/cjose/pull/20); thanks @fd00

<a name="v0.6.2.2"></a>
## [v0.6.2.2](https://github.com/OpenIDC/cjose/compare/v0.6.2.1...v0.6.2.2) (2023-07-12)
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ top_srcdir = @top_srcdir@
AM_CFLAGS = -std=gnu99 --pedantic -Wall -Werror -g -O2 -I$(top_builddir)/include
lib_LTLIBRARIES = libcjose.la
libcjose_la_CPPFLAGS = -I$(top_srcdir)/include
libcjose_la_LDFLAGS = -lm
libcjose_la_LDFLAGS = -no-undefined -lm
libcjose_la_SOURCES = version.c \
util.c \
base64.c \
Expand Down

0 comments on commit 27d2d5d

Please sign in to comment.