-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot build #16
Comments
And if I just run
Do you have a recommended Linux configuration for this? |
Same issue here on Ubuntu 15.10, I receive the gcc errors when I run |
This will be fixed if sourcegraph/go-webkit2#32 gets merged |
sourcegraph/go-webkit2#32 is merged by now and I'm able to successfully build go-webkit2. But building webloop throws same error:
Running Debian 8.6 (Wheezy) |
|
I found that old diff --git a/example_test.go b/example_test.go
index e93d5c1..20e2e8a 100644
--- a/example_test.go
+++ b/example_test.go
@@ -5,7 +5,7 @@ import (
"os"
"runtime"
- "github.com/conformal/gotk3/gtk"
+ "github.com/gotk3/gotk3/gtk"
"github.com/sourcegraph/webloop"
)
diff --git a/static_renderer.go b/static_renderer.go
index 3ecb797..720c86c 100644
--- a/static_renderer.go
+++ b/static_renderer.go
@@ -8,7 +8,7 @@ import (
"sync"
"time"
- "github.com/conformal/gotk3/gtk"
+ "github.com/gotk3/gotk3/gtk"
)
// StaticRenderer generates and returns static HTML based on a snapshot of a Web
diff --git a/webloop.go b/webloop.go
index a326681..4a65fdf 100644
--- a/webloop.go
+++ b/webloop.go
@@ -3,7 +3,7 @@ package webloop
import (
"errors"
- "github.com/conformal/gotk3/glib"
+ "github.com/gotk3/gotk3/glib"
"github.com/sourcegraph/go-webkit2/webkit2"
"github.com/sqs/gojs"
)
diff --git a/webloop_test.go b/webloop_test.go
index 4646897..a8100a1 100644
--- a/webloop_test.go
+++ b/webloop_test.go
@@ -7,7 +7,7 @@ import (
"runtime"
"testing"
- "github.com/conformal/gotk3/gtk"
+ "github.com/gotk3/gotk3/gtk"
)
func init() { |
Note, OSX needs both of these packages
And the missing-from-brew javascriptcoregtk as well:
|
Thanks @akabos and @canuckfan772 |
I am running
libgtk 3.12
in Ubuntu 14.04 and get the following when I dogo get -tags gtk_3_12 github.com/sourcegraph/webloop/...
The text was updated successfully, but these errors were encountered: