Hi all, I'm trying to build magic in a centos7 Doc...
# magic
a
Hi all, I'm trying to build magic in a centos7 Docker with no luck, everything works up to this point:
Copy code
--- compiling net2ir/net2ir.o
--- linking libnet2ir.o
--- making Tcl shared libraries
make[2]: *** No rule to make target `../graphics/libgraphics.o', needed by `tclmagic.so'.  Stop.
--- installing executable to /build/bin
--- installing runtime files to /build/lib
make[2]: *** No rule to make target `../graphics/libgraphics.o', needed by `tclmagic.so'.  Stop.
Any idea might be going wrong? I'm attaching the Dockerfile as well as the build log. Any help would be very appreciated. (it's probably because of using the wrong version of one of the dependencies but I'm still unable to find which one is it) also:
Copy code
grTOGL3.c:16:20: fatal error: GL/glu.h: No such file or directory
although:
Copy code
checking for GL/gl.h... yes
@Tim Edwards ^^
t
@Amr Gouhar: Apparently it has a check for gl.h but not glu.h? There is a "libglu" package that you can install, or you can compile without OpenGL support (Cairo support is more or less equivalent).
👍 1
a
@Tim Edwards: adding
libglu
seems to have worked. Thank you very much!