-
Notifications
You must be signed in to change notification settings - Fork 20
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
Failed updating 1 target #21
Comments
What OS you are using? diff --git a/build/Jamfile.v2 b/build/Jamfile.v2
index 3633432..125a243 100644
--- a/build/Jamfile.v2
+++ b/build/Jamfile.v2
@@ -27,7 +27,7 @@ if [ modules.peek : UNIX ]
CXXFLAGS = [ SHELL $(WX_CONFIG)" --cxxflags" ] ;
CXXFLAGS = [ MATCH "(.*)[\n]" : $(CXXFLAGS) ] ;
- LINKFLAGS = [ SHELL $(WX_CONFIG)" --libs webview,adv,core,base" ] ;
+ LINKFLAGS = [ SHELL $(WX_CONFIG)" --libs adv,core,base" ] ;
LINKFLAGS = [ MATCH "(.*)[\n]" : $(LINKFLAGS) ] ;
}
}
diff --git a/src/web_widget.cpp b/src/web_widget.cpp
index b274262..6f55bc8 100644
--- a/src/web_widget.cpp
+++ b/src/web_widget.cpp
@@ -13,6 +13,9 @@
#include <wx/webview.h>
+#undef wxUSE_WEBVIEW
+#define wxUSE_WEBVIEW 0
+
namespace boost {
namespace ui {
|
Oh sorry, my bad. I should have provided that info.
The libraries are there, just not used for some reason. I'm gonna see if I can change that gtk2 to gtk3. Another weird thing: If I use my systemwide wx-config binary, the build process just fails since it can't find the necessary libraries (headers), so this only works with manually built wxwidgets. |
It seems you are trying to use wxWidgets dev build package with your own wxWidgets build. |
I don't understand this. I tried configure with --with-gtk=3 and --enable-webview but this just doesn't work at all. |
Remove wxWidgets build directory and make clean build, see configure log setting and log messages before run |
I found the issue... I might have tried the first build with my system-wide wxwidgets installation (Which didn't support gtk3 nor webview), so when I tried it with the wxwidgets I downloaded it wouldn't compile, since I apparently needed to delete the bin.v2 folder... I never read about that anywhere once. Thanks for trying to help. |
Hey there,
I gave compiling this another attempt and I actually got further, this time I got the following error:
I have installed wxwidgets-gtk3 after noticing this error, but nothing has changed.
Why is this?
Thanks!
The text was updated successfully, but these errors were encountered: