Re: [Gegl-developer] Compiling GEGL in Windows

2011-05-24 Thread Jasper van de Gronde
On 23-05-11 16:37, Øyvind Kolås wrote:
 On Mon, May 23, 2011 at 2:29 PM, Jasper van de Gronde
 th.v.d.gro...@hccnet.nl wrote:
 What about just plain MSYS/MingW? Has anyone ever managed to
 successfully compile GEGL on Windows? I tried it quite a while back,
 without much success. In the end I did manage to compile it, but then it
 didn't work in some weird way.
 
 GIMP does work on windows using GEGL, as far as I've understood
 compiled both from windows and cross compiled from Linux.

Thanks for the tip, perhaps I'll have a look at their build procedures
in the near future.
___
Gegl-developer mailing list
Gegl-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gegl-developer


[Gegl-developer] Error in compiling GEGL in windows using MSYS/MinGW

2011-05-24 Thread Sayak
Hi all,
I was trying to compile GEGL in windows using MSYS/MinGW. i have compiled Babl
perfectly, but when i tried to compile GEGL, i had the following errors..

$ make -j4
make  all-recursive
make[1]: Entering directory `/home/stable-sources/gegl-0.1.2'
Making all in gegl
make[2]: Entering directory `/home/stable-sources/gegl-0.1.2/gegl'
Making all in buffer
make[3]: Entering directory `/home/stable-sources/gegl-0.1.2/gegl/buffer'
  CC gegl-tile-backend-tiledir.lo
  CC gegl-buffer.lo
  CC gegl-buffer-access.lo
  CC gegl-buffer-share.lo
In file included from gegl-buffer-share.c:25:0:
../../gegl/gegl.h:23:23: fatal error: babl/babl.h: No such file or directory
compilation terminated.
make[3]: *** [gegl-buffer-share.lo] Error 1
make[3]: *** Waiting for unfinished jobs
In file included from gegl-buffer-access.c:29:0:
../../gegl/gegl.h:23:23: fatal error: babl/babl.h: No such file or directory
compilation terminated.
In file included from gegl-buffer.c:49:0:
../../gegl/gegl.h:23:23: fatal error: babl/babl.h: No such file or directory
compilation terminated.
make[3]: *** [gegl-buffer.lo] Error 1
make[3]: *** [gegl-buffer-access.lo] Error 1
In file included from gegl-tile-backend.h:22:0,
 from gegl-tile-backend-tiledir.c:26:
gegl-tile-source.h:23:23: fatal error: babl/babl.h: No such file or directory
compilation terminated.
make[3]: *** [gegl-tile-backend-tiledir.lo] Error 1
make[3]: Leaving directory `/home/stable-sources/gegl-0.1.2/gegl/buffer'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/stable-sources/gegl-0.1.2/gegl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/stable-sources/gegl-0.1.2'
make: *** [all] Error 2

___
Gegl-developer mailing list
Gegl-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gegl-developer


Re: [Gegl-developer] Compiling GEGL in Windows

2011-05-24 Thread Sayak
Jasper van de Gronde th.v.d.gronde@... writes:

 
 On 23-05-11 16:37, Øyvind Kolås wrote:
  On Mon, May 23, 2011 at 2:29 PM, Jasper van de Gronde
  th.v.d.gronde@... wrote:
  What about just plain MSYS/MingW? Has anyone ever managed to
  successfully compile GEGL on Windows? I tried it quite a while back,
  without much success. In the end I did manage to compile it, but then it
  didn't work in some weird way.
  
  GIMP does work on windows using GEGL, as far as I've understood
  compiled both from windows and cross compiled from Linux.
 
 Thanks for the tip, perhaps I'll have a look at their build procedures
 in the near future.
 


Thanks for the Tips. I also dont want to use Visual Studio. But, the purpose of
using GEGL library is to implement it later in Android programming. i use this
sequence c- JNI- Android. if i use plain MSYS/MinGW, i will have problem later
in debugging in eclipse. 

___
Gegl-developer mailing list
Gegl-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gegl-developer


Re: [Gegl-developer] Error in compiling GEGL in windows using MSYS/MinGW

2011-05-24 Thread Martin Nordholts
2011/5/25 Sayak sayak...@yahoo.com:
 Hi all,
 I was trying to compile GEGL in windows using MSYS/MinGW. i have compiled Babl
 perfectly, but when i tried to compile GEGL, i had the following errors..

 $ make -j4
 make  all-recursive
 make[1]: Entering directory `/home/stable-sources/gegl-0.1.2'
 Making all in gegl
 make[2]: Entering directory `/home/stable-sources/gegl-0.1.2/gegl'
 Making all in buffer
 make[3]: Entering directory `/home/stable-sources/gegl-0.1.2/gegl/buffer'
  CC gegl-tile-backend-tiledir.lo
  CC gegl-buffer.lo
  CC gegl-buffer-access.lo
  CC gegl-buffer-share.lo
 In file included from gegl-buffer-share.c:25:0:
 ../../gegl/gegl.h:23:23: fatal error: babl/babl.h: No such file or directory
 compilation terminated.

babl/babl.h is not on the compiler include path, probably because you
haven't setup PKG_CONFIG_PATH properly before running configure. The
weird thing is that you are able to make at all; configure should have
failed if it didn't find babl.

You should also setup some other environment variables to allow the
babl files to be found, refer to
http://www.chromecode.com/2009/12/best-way-to-keep-up-with-gimp-from-git_26.html
for some inspiration.

 / Martin


-- 

My GIMP Blog:
http://www.chromecode.com/
GIMP 2.8 schedule on tasktaste.com
___
Gegl-developer mailing list
Gegl-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gegl-developer