Add support for importing a server from a Murmur SQLite database. Add support for seralizing a server to disk 'freezing' (currently zlib-JSON based).

This commit is contained in:
Mikkel Krautz 2011-04-08 13:21:47 +02:00
parent 2eb5516d31
commit 3ae9881d91
11 changed files with 130730 additions and 55 deletions

16
pkg/sqlite/Makefile Normal file
View file

@ -0,0 +1,16 @@
# Copyright 2010 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
TARG=sqlite
CGOFILES=sqlite.go
CGO_OFILES=sqlite3.o
ifeq ($(GOOS),linux)
CGO_LDFLAGS=-lpthread -ldl
endif
include $(GOROOT)/src/Make.pkg