forked from External/grumble
Re-add SQLite import support, but make it a build-time option.
This commit is contained in:
parent
48efaf6645
commit
4d5b897d66
11 changed files with 265 additions and 79 deletions
13
murmurdb_null.go
Normal file
13
murmurdb_null.go
Normal 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")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue