From 7140ea3db96342988995c993a5ec7ca67ececacc Mon Sep 17 00:00:00 2001 From: pancake Date: Mon, 18 Mar 2024 18:03:34 +0100 Subject: [PATCH] Fix some builds --- Makefile | 2 +- bindings/python/setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e8df48f7..4ec2d090 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ pkgconfig: include/sdb/version.h: echo '#define SDB_VERSION "${SDBVER}"' > include/sdb/version.h -CFILES=cdb.c buffer.c cdb_make.c ls.c ht.c sdb.c num.c base64.c text.c +CFILES=cdb.c cdb_make.c ls.c ht.c sdb.c num.c base64.c text.c CFILES+=json.c ns.c lock.c util.c disk.c query.c array.c fmt.c main.c EMCCFLAGS=-O2 -s EXPORTED_FUNCTIONS="['_sdb_querys','_sdb_new0']" #EMCCFLAGS+=--embed-file sdb.data diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 3617767b..b788edd2 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -25,7 +25,6 @@ "sdbsrc/match.c", "sdbsrc/json.c", "sdbsrc/diff.c", - "sdbsrc/buffer.c", "sdbsrc/ls.c", "sdbsrc/heap.c", "sdbsrc/util.c",