1
0
Fork 0
forked from External/grumble

Re-add SQLite import support, but make it a build-time option.

This commit is contained in:
Mikkel Krautz 2011-08-27 20:52:06 +02:00
parent 48efaf6645
commit 4d5b897d66
11 changed files with 265 additions and 79 deletions

13
murmurdb_null.go Normal file
View file

@ -0,0 +1,13 @@
// Copyright (c) 2011 The Grumble Authors
// The use of this source code is goverened by a BSD-style
// license that can be found in the LICENSE-file.
package main
import "os"
const SQLiteSupport = false
func MurmurImport(filename string) (err os.Error) {
return os.NewError("no sqlite support built in")
}