-
Notifications
You must be signed in to change notification settings - Fork 46
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
configure looks for lablgtk in a wrong place, and then disables GUI #107
Comments
yes, but the patch is not good, for different people path will be different. It should use ocamlfind to find deps. |
I know, that is why I did not submit it as a PR. |
This will be for the next release. Documented current gui build status in 16e4106 |
@ygrek Hmm, somehow this got further broken in 3.2.1, since the patch that worked earlier has no effect now. Not yet sure what went wrong. |
Ah, perhaps just this: da5db50 |
UPD. Yeah, indeed. I just need to patch configure now. |
However, this error #111 is still there, so GTK GUI does not build:
|
patch configure.in and do |
@ygrek I have found a reason why
lablgtk2
is not found. It sits in/opt/local/lib/ocaml/site-lib/lablgtk2
, but configure uses$OCAMLLIB/$LABLGTK_NAME
, whereOCAMLLIB
is defined byocamlc -where
, which gives/opt/local/lib/ocaml
. Of course, having the path wrong, configure cannot find it.This works correctly:
After the patch applied, configure finds what it should:
The text was updated successfully, but these errors were encountered: