From: Rich C. <rc...@ll...> - 2010-03-05 00:25:36
|
Hello, On our clusters, the configure script exits with the following error: configure: error: in `/usr/global/tools/VRML/OpenVRML/0.18.5/ chaos_4_x86_64_ib/openvrml-0.18.5': configure: error: GIO is required to build OpenVRML Player See `config.log' for more details. It appears this is generated by the following code: configure:21442: checking for GIO configure:21449: $PKG_CONFIG --exists --print-errors "gio-2.0" Package gio-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gio-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gio-2.0' found configure:21452: $? = 1 I did a Google search and this seems to be part of glib, maybe. I'm having trouble figuring out what to ask my sysadmin to install in order to make autoconf happy here. Can someone tell me what RPM is missing? Thanks! /* A function that takes a single integer argument and returns a pointer to a function that takes two integer arguments and returns a floating-point number. */ float (*func2(int a))(int, int); Rich Cook rc...@ll... |
From: Braden M. <br...@en...> - 2010-03-05 02:22:03
|
On Thu, 2010-03-04 at 16:25 -0800, Rich Cook wrote: > Hello, > On our clusters, the configure script exits with the following error: > > configure: error: in `/usr/global/tools/VRML/OpenVRML/0.18.5/ > chaos_4_x86_64_ib/openvrml-0.18.5': > configure: error: GIO is required to build OpenVRML Player > See `config.log' for more details. > It appears this is generated by the following code: > configure:21442: checking for GIO > configure:21449: $PKG_CONFIG --exists --print-errors "gio-2.0" > Package gio-2.0 was not found in the pkg-config search path. > Perhaps you should add the directory containing `gio-2.0.pc' > to the PKG_CONFIG_PATH environment variable > No package 'gio-2.0' found > configure:21452: $? = 1 > I did a Google search and this seems to be part of glib, maybe. It is; but it has its own .pc file and it's deployed as a distinct library. > I'm > having trouble figuring out what to ask my sysadmin to install in > order to make autoconf happy here. Can someone tell me what RPM is > missing? Thanks! On my Fedora 12 box: $ rpm -qf /usr/lib64/pkgconfig/gio-2.0.pc glib2-devel-2.22.4-2.fc12.x86_64 -- Braden McDaniel <br...@en...> |
From: Rich C. <rc...@ll...> - 2010-03-05 03:07:52
|
Thanks, my sysadmin has informed me we need an upgrade to glib, they started rolling gio into glib a couple versions after ours. Said upgrade is probably not going to happen, due to institutional inertia. :-( On Mar 4, 2010, at 6:21 PM, Braden McDaniel wrote: > On Thu, 2010-03-04 at 16:25 -0800, Rich Cook wrote: >> Hello, >> On our clusters, the configure script exits with the following error: >> >> configure: error: in `/usr/global/tools/VRML/OpenVRML/0.18.5/ >> chaos_4_x86_64_ib/openvrml-0.18.5': >> configure: error: GIO is required to build OpenVRML Player >> See `config.log' for more details. >> It appears this is generated by the following code: >> configure:21442: checking for GIO >> configure:21449: $PKG_CONFIG --exists --print-errors "gio-2.0" >> Package gio-2.0 was not found in the pkg-config search path. >> Perhaps you should add the directory containing `gio-2.0.pc' >> to the PKG_CONFIG_PATH environment variable >> No package 'gio-2.0' found >> configure:21452: $? = 1 >> I did a Google search and this seems to be part of glib, maybe. > > It is; but it has its own .pc file and it's deployed as a distinct > library. > >> I'm >> having trouble figuring out what to ask my sysadmin to install in >> order to make autoconf happy here. Can someone tell me what RPM is >> missing? Thanks! > > On my Fedora 12 box: > > $ rpm -qf /usr/lib64/pkgconfig/gio-2.0.pc > glib2-devel-2.22.4-2.fc12.x86_64 > > -- > Braden McDaniel <br...@en...> > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://*p.sf.net/sfu/intel-sw-dev > _______________________________________________ > openvrml-develop mailing list > ope...@li... > https://*lists.sourceforge.net/lists/listinfo/openvrml-develop > /* A function that takes a single integer argument and returns a pointer to a function that takes two integer arguments and returns a floating-point number. */ float (*func2(int a))(int, int); Rich Cook rc...@ll... |
From: Braden M. <br...@en...> - 2010-03-05 03:26:53
|
On Thu, 2010-03-04 at 19:07 -0800, Rich Cook wrote: > Thanks, my sysadmin has informed me we need an upgrade to glib, they > started rolling gio into glib a couple versions after ours. Said > upgrade is probably not going to happen, due to institutional > inertia. :-( Bummer. Well, the only part that needs this is openvrml-player; so you can --disable-player when running configure to get past this. Also, I seem to recall that I only used GIO to inspect the MIME type of local files. I think it would be trivial to patch that out; your version of GLib might even have some substitute functions. FWIW. -- Braden McDaniel <br...@en...> |
From: Rich C. <rc...@ll...> - 2010-03-05 03:35:22
|
On Mar 4, 2010, at 7:26 PM, Braden McDaniel wrote: > On Thu, 2010-03-04 at 19:07 -0800, Rich Cook wrote: >> Thanks, my sysadmin has informed me we need an upgrade to glib, they >> started rolling gio into glib a couple versions after ours. Said >> upgrade is probably not going to happen, due to institutional >> inertia. :-( > > Bummer. Well, the only part that needs this is openvrml-player; so > you > can --disable-player when running configure to get past this. > > Also, I seem to recall that I only used GIO to inspect the MIME type > of > local files. I think it would be trivial to patch that out; your > version of GLib might even have some substitute functions. FWIW. That sounds promising, however, there is also the GTK dependency on GtkBuilder which is equally at issue for us -- is that a simple patch as well? :-) The player would be nice. We tried freeWRL but it seems to not render accurately from what I can see. I'd like to have a local viewer for our scientists if possible. This looks like a nice way to share data with colleagues potentially. > > -- > Braden McDaniel <br...@en...> > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://*p.sf.net/sfu/intel-sw-dev > _______________________________________________ > openvrml-develop mailing list > ope...@li... > https://*lists.sourceforge.net/lists/listinfo/openvrml-develop > /* A function that takes a single integer argument and returns a pointer to a function that takes two integer arguments and returns a floating-point number. */ float (*func2(int a))(int, int); Rich Cook rc...@ll... |
From: Braden M. <br...@en...> - 2010-03-05 04:14:08
|
On Thu, 2010-03-04 at 19:35 -0800, Rich Cook wrote: > On Mar 4, 2010, at 7:26 PM, Braden McDaniel wrote: > > > On Thu, 2010-03-04 at 19:07 -0800, Rich Cook wrote: > >> Thanks, my sysadmin has informed me we need an upgrade to glib, they > >> started rolling gio into glib a couple versions after ours. Said > >> upgrade is probably not going to happen, due to institutional > >> inertia. :-( > > > > Bummer. Well, the only part that needs this is openvrml-player; so > > you > > can --disable-player when running configure to get past this. > > > > Also, I seem to recall that I only used GIO to inspect the MIME type > > of > > local files. I think it would be trivial to patch that out; your > > version of GLib might even have some substitute functions. FWIW. > > That sounds promising, however, there is also the GTK dependency on > GtkBuilder which is equally at issue for us -- is that a simple patch > as well? :-) Not nearly as simple; but doable if you're determined. GtkBuilder replaced libglade, which you can find employed in older OpenVRML releases (0.17). I think it would be doable to graft that back onto OpenVRML 0.18 in place of GtkBuilder. But we're talking about hours of work rather than minutes. > The player would be nice. We tried freeWRL but it seems to not render > accurately from what I can see. I'd like to have a local viewer for > our scientists if possible. This looks like a nice way to share data > with colleagues potentially. Well, if you can't use newer dependencies, you could try an older OpenVRML--like 0.17.12. -- Braden McDaniel <br...@en...> |