What is wrong?
slith76 opened this issue · 2 comments
slith76 commented
ddns@jocc:~$ go get github.com/pboehm/ddns
# github.com/gin-gonic/gin
src/github.com/gin-gonic/gin/gin.go:44: undefined: sync.Pool
ddns@jocc:~$ go version
go version go1.2.1 linux/amd64
ddns@jocc:~$ echo $GOPATH
/home/ddns/
pboehm commented
Go v1.3 introduced sync.Pool, which is being used by gin (a dependency).
So you have to upgrade your go installation to 1.3.
slith76 commented
ok thx