pboehm/ddns

What is wrong?

slith76 opened this issue · 2 comments

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/

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.

ok thx