[Nickle] nickle: Branch 'master' - 2 commits

Keith Packard keithp at keithp.com
Thu Nov 30 12:59:34 PST 2023


 configure.ac     |    4 ++--
 debian/changelog |    7 +++++++
 test/Makefile.am |   12 ++++++------
 3 files changed, 15 insertions(+), 8 deletions(-)

New commits:
commit 5d3ee4e35e9977e6826b9da259d3924937d20c2a
Author: Keith Packard <keithp at keithp.com>
Date:   Thu Nov 30 12:14:44 2023 -0800

    Version 2.94
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/configure.ac b/configure.ac
index 15899a5..8d50057 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,8 +6,8 @@ dnl for licensing information.
 
 AC_PREREQ([2.69])
 
-AC_INIT([nickle],[2.93],[http://nickle.org],[nickle])
-RELEASE_DATE="2023-06-20"
+AC_INIT([nickle],[2.94],[http://nickle.org],[nickle])
+RELEASE_DATE="2023-11-30"
 AC_CONFIG_SRCDIR([nickle.h])
 AC_CONFIG_HEADERS([nickle-config.h])
 AC_CONFIG_AUX_DIR(.)
diff --git a/debian/changelog b/debian/changelog
index b0886c7..8a5bd02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+nickle (2.94) unstable; urgency=medium
+
+  * Add true/false/null support to json.5c
+  * Add file input/output to json.5c
+
+ -- Keith Packard <keithp at keithp.com>  Thu, 30 Nov 2023 12:13:48 -0800
+
 nickle (2.93) unstable; urgency=medium
 
   * Add hex float support to scanf and printf
commit b679990bf025b98f1db2f097d1ba12129116f152
Author: Keith Packard <keithp at keithp.com>
Date:   Thu Nov 30 12:43:28 2023 -0800

    test: Fix how math-tables is built
    
    Use noinst_PROGRAMS instead of hand-coding the rules
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/test/Makefile.am b/test/Makefile.am
index ecb9aa8..7201fdf 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -38,11 +38,11 @@ EXTRA_DIST=$(check_SCRIPTS) math-tables.c
 
 math.5c: $(TABLES)
 
-$(TABLES): math-tables$(BUILD_EXEEXT)
-	./math-tables$(BUILD_EXEEXT) > $(TABLES)
+noinst_PROGRAMS = math-tables
+
+math_tables_SOURCES = math-tables.c
 
-math-tables$(BUILD_EXEEXT): math-tables.o
-	$(CC_FOR_BUILD) -o $@ $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) math-tables.o -lm
+math_tables_LIBS = -lm
 
-math-tables.o: math-tables.c
-	$(CC_FOR_BUILD) -o $@ $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) -c math-tables.c
+$(TABLES): math-tables$(BUILD_EXEEXT)
+	./math-tables$(BUILD_EXEEXT) > $(TABLES)


More information about the Nickle mailing list