Fix: OSX icu module

This commit is contained in:
Gert-Jan Timmer 2018-05-25 11:41:14 +02:00
parent 59885cf9d4
commit 5abd024785
2 changed files with 3 additions and 1 deletions

View File

@ -157,7 +157,7 @@ before_install:
- | - |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update brew update
brew install icu4c brew upgrade icu4c
fi fi
- | - |
if [[ "${GOOS}" != "windows" ]]; then if [[ "${GOOS}" != "windows" ]]; then

View File

@ -9,5 +9,7 @@ package sqlite3
/* /*
#cgo LDFLAGS: -licuuc -licui18n #cgo LDFLAGS: -licuuc -licui18n
#cgo CFLAGS: -DSQLITE_ENABLE_ICU #cgo CFLAGS: -DSQLITE_ENABLE_ICU
#cgo darwin CFLAGS: -I/usr/local/opt/icu4c/include
#cgo darwin LDFLAGS: -L/usr/local/opt/icu4c/lib
*/ */
import "C" import "C"