After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 562699 - configure.ac doesn't find opengl on os x
configure.ac doesn't find opengl on os x
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-gl
git master
Other Mac OS
: Normal major
: 0.10.2
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-11-29 17:29 UTC by Tristan Matthews
Modified: 2009-08-10 23:50 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tristan Matthews 2008-11-29 17:29:58 UTC
After running autogen.sh, the configure scrip fails on this line:

dnl Check for GLEW/OpenGL
AC_SEARCH_LIBS(glLoadIdentity, [GL opengl32], , AC_MSG_ERROR([Opengl not found make sure you have Opengl installed]))

with the error:

checking for library containing glLoadIdentity... no
configure: error: Opengl not found make sure you have Opengl installed
  configure failed
Comment 1 Daniel Macks 2008-12-01 05:51:58 UTC
On my OS X 10.4 box, glLoadIdentity is actually resolved via -framework OpenGL, not -lGL directly.
Comment 2 Tristan Matthews 2008-12-01 18:53:35 UTC
did you change your own configure.ac then?
Comment 3 Daniel Macks 2008-12-01 20:07:18 UTC
I didn't try it (I don't have enough sandbox machines to play with CVS releases of this right now), but a standard OS X porting trick is to pass flags like that via LDFLAGS. First gotta see if it solves the problem before working out a clean & portable ./configure test alternative. OTOH, you noted that the test failed, but not really *how* it failed. Would be useful to see the config.log results to know what the actual error was (could be something unrelated to the actual symbol check).
Comment 4 Julien Isorce 2009-07-27 08:51:17 UTC
ping ?  (should be ok now)
Comment 5 Tristan Matthews 2009-07-27 18:51:52 UTC
Yeah it is fixed now, thanks.