From 452a3569048a46776e3f5339f6726e0588a44f21 Mon Sep 17 00:00:00 2001 From: Mike Fikes Date: Sat, 3 Oct 2020 23:00:39 -0400 Subject: [PATCH] Build failing on Fedora 32 (#1035) Fixes #1032 --- CHANGELOG.md | 5 +++-- planck-c/engine.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc3a7252..47035b0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). -## Unreleased +## [Unreleased] ### Changed - Update to ClojureScript 1.10.758 ([#1034](https://github.com/planck-repl/planck/issues/1034)) ### Fixed - Drone CI builds broken ([#1038](https://github.com/planck-repl/planck/issues/1038)) +- Build failing on Fedora 32 ([#1032](https://github.com/planck-repl/planck/issues/1032)) ## [2.25.0] - 2020-03-22 ### Added @@ -879,7 +880,7 @@ All notable changes to this project will be documented in this file. This change ### Added - Initial release. -[Unreleased]: https://github.com/mfikes/planck/compare/2.25.0..HEAD +[Unreleased]: https://github.com/mfikes/planck/compare/2.25.0...HEAD [2.25.0]: https://github.com/mfikes/planck/compare/2.24.0...2.25.0 [2.24.0]: https://github.com/mfikes/planck/compare/2.23.0...2.24.0 [2.23.0]: https://github.com/mfikes/planck/compare/2.22.0...2.23.0 diff --git a/planck-c/engine.h b/planck-c/engine.h index ad95ab0b..426ef421 100644 --- a/planck-c/engine.h +++ b/planck-c/engine.h @@ -21,7 +21,7 @@ void bootstrap(char *out_path); int block_until_engine_ready(); -const char *block_until_engine_ready_failed_msg; +extern const char *block_until_engine_ready_failed_msg; JSObjectRef get_function(char *namespace, char *name);