diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/bin2c/Makefile.am | 6 | ||||
-rw-r--r-- | src/bin2c/bin2c.c | 23 | ||||
-rw-r--r-- | src/libstore/Makefile.am | 2 | ||||
-rw-r--r-- | src/libstore/local-store.cc | 2 |
5 files changed, 4 insertions, 31 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ec36327730a1..25ae67996b2f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = bin2c boost libutil libstore libmain nix-store nix-hash \ +SUBDIRS = boost libutil libstore libmain nix-store nix-hash \ libexpr nix-instantiate nix-env nix-worker nix-setuid-helper \ nix-log2xml bsdiff-4.3 diff --git a/src/bin2c/Makefile.am b/src/bin2c/Makefile.am deleted file mode 100644 index bba3c3e3ac56..000000000000 --- a/src/bin2c/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -noinst_PROGRAMS = bin2c - -bin2c_SOURCES = bin2c.c - -bin2c$(EXEEXT): bin2c.c - $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -o bin2c bin2c.c diff --git a/src/bin2c/bin2c.c b/src/bin2c/bin2c.c deleted file mode 100644 index 5ed8a57082fd..000000000000 --- a/src/bin2c/bin2c.c +++ /dev/null @@ -1,23 +0,0 @@ -#include <stdlib.h> -#include <stdio.h> -#include <stdarg.h> - -void print(const char *format, ...) -{ - va_list ap; - va_start(ap, format); - if (vprintf(format, ap) < 0) abort(); - va_end(ap); -} - -int main(int argc, char * * argv) -{ - int c; - if (argc != 2) abort(); - print("static unsigned char %s[] = { ", argv[1]); - while ((c = getchar()) != EOF) { - print("0x%02x, ", (unsigned char) c); - } - print("0 };\n"); - return 0; -} diff --git a/src/libstore/Makefile.am b/src/libstore/Makefile.am index 3356557970a2..cb522d6bf856 100644 --- a/src/libstore/Makefile.am +++ b/src/libstore/Makefile.am @@ -29,4 +29,4 @@ AM_CXXFLAGS = -Wall \ local-store.lo: schema.sql.hh %.sql.hh: %.sql - ../bin2c/bin2c schema < $< > $@ || (rm $@ && exit 1) + sed -e 's/"/\\"/g' -e 's/.*/"\0\\n"/' < $< > $@ || (rm $@ && exit 1) diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 982644af7154..251449089796 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -374,7 +374,9 @@ void LocalStore::openDB(bool create) /* Initialise the database schema, if necessary. */ if (create) { + const char * schema = #include "schema.sql.hh" + ; if (sqlite3_exec(db, (const char *) schema, 0, 0, 0) != SQLITE_OK) throwSQLiteError(db, "initialising database schema"); } |