diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-23 22:20:06 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-23 22:20:06 +0200 |
commit | ba97a23a7f0670fd1ff44e16ba61d10f66c6899d (patch) | |
tree | 602fc4ebb019f1a567e8872421f470f442e222bb /sqlite3_opt_icu.go | |
parent | Merge pull request #540 from mattn/open-mode (diff) | |
download | golite-ba97a23a7f0670fd1ff44e16ba61d10f66c6899d.tar.gz golite-ba97a23a7f0670fd1ff44e16ba61d10f66c6899d.tar.xz |
Rename
Renamed files containing current features.
Diffstat (limited to 'sqlite3_opt_icu.go')
-rw-r--r-- | sqlite3_opt_icu.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sqlite3_opt_icu.go b/sqlite3_opt_icu.go new file mode 100644 index 0000000..e960626 --- /dev/null +++ b/sqlite3_opt_icu.go @@ -0,0 +1,13 @@ +// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>. +// +// Use of this source code is governed by an MIT-style +// license that can be found in the LICENSE file. +// +build icu + +package sqlite3 + +/* +#cgo LDFLAGS: -licuuc -licui18n +#cgo CFLAGS: -DSQLITE_ENABLE_ICU +*/ +import "C" |