RSS/Atom feed Twitter
Site is read-only, email is disabled

compile example 1

This discussion is connected to the gegl-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

4 of 4 messages available
Toggle history

Please log in to manage your subscriptions.

compile example 1 Florent Monnier 04 Jan 22:02
compile example 1 Nathan Summers 04 Jan 23:08
compile example 1 Florent Monnier 04 Jan 23:33
compile example 1 Sven Neumann 07 Jan 15:57
Florent Monnier
2006-01-04 22:02:56 UTC (about 18 years ago)

compile example 1

Re,

I'm trying to compile the 'example 1' (an example of inputs for a Node) given on this page:
http://www.gegl.org/reference/gegl/html/GeglNode.html

But I don't succed to compile it. I get this error:

/usr/include/glib-2.0/glib/gtypes.h:30:24: error: glibconfig.h: No such file or directory

When I try to find it, I get no answers: $ tree -fid /usr/include/glib-2.0/ | grep -i glibconfig $ tree -fid /usr/local/include/gegl-1.0/ | grep -i glibconfig

Nathan Summers
2006-01-04 23:08:18 UTC (about 18 years ago)

compile example 1

On 1/4/06, Florent Monnier wrote:

Re,

I'm trying to compile the 'example 1' (an example of inputs for a Node) given on this page:
http://www.gegl.org/reference/gegl/html/GeglNode.html

But I don't succed to compile it. I get this error:

/usr/include/glib-2.0/glib/gtypes.h:30:24: error: glibconfig.h: No such file or directory

When I try to find it, I get no answers: $ tree -fid /usr/include/glib-2.0/ | grep -i glibconfig $ tree -fid /usr/local/include/gegl-1.0/ | grep -i glibconfig

glibconfig.h is is arch-specific, and therefore it's in /usr/lib/glib-2.0.

Doesn't gegl have a pkg-config file to get the right CFLAGS from?

Rockwalrus

Florent Monnier
2006-01-04 23:33:30 UTC (about 18 years ago)

compile example 1

I'm trying to compile the 'example 1' (an example of inputs for a Node) given on this page:
http://www.gegl.org/reference/gegl/html/GeglNode.html

But I don't succed to compile it. I get this error:

/usr/include/glib-2.0/glib/gtypes.h:30:24: error: glibconfig.h: No such file or directory

When I try to find it, I get no answers: $ tree -fid /usr/include/glib-2.0/ | grep -i glibconfig $ tree -fid /usr/local/include/gegl-1.0/ | grep -i glibconfig

glibconfig.h is is arch-specific, and therefore it's in /usr/lib/glib-2.0.

Doesn't gegl have a pkg-config file to get the right CFLAGS from?

I don't know.
I am not use to pkg-config.
Most the time I cut past in my Makefiles the compile command lines given in the docs. But I haven't find it in the Gegl doc.

Maybe my gcc command line to compile a starting point is wrong since I haven't found the command line to use at gegl.org

Sven Neumann
2006-01-07 15:57:13 UTC (about 18 years ago)

compile example 1

Hi,

Florent Monnier writes:

I am not use to pkg-config.
Most the time I cut past in my Makefiles the compile command lines given in the docs. But I haven't find it in the Gegl doc.

pkg-config has over the last years become the de-facto standard to obtain compiler and linker flags for a library. I don't think we need to go into the details here. You probably want to read the pkg-config man-page and this chapter from the GTK+ docs:

http://developer.gnome.org/doc/API/2.0/gtk/gtk-compiling.html

Sven