Re: [E-devel] evas / svg configure issue and solution

2006-09-17 Thread D. Hageman

On Sun, 17 Sep 2006, ?~R?~B???~@ [EMAIL PROTECTED] wrote:


?? , 2006-09-14 ?? 14:42 -0500, D. Hageman :

I am going to send along this patch again because changes some changes
were made to the configure.in file, but they weren't the *right* changes.

This should solve the SVG issues for the Fedora/Redhat platform.



That may have worked for you, but you broke other people's builds like
that. Right now it doesn't work in slackware, whereas before raster
committed your patch, it worked.
Can we please have a unified solution that works for all systems.




I absolutely agree that we should have a unified solution that works for 
all systems.  The patch mearly corrects what raster added to make it work 
for Fedora/Redhat based systems.  I don't have any slackware boxes or 
access to slackware boxes to see what it is doing to not make it work for 
that distro.  If I did, I would love to help.  As I stated before my 
knowledge of autofoo isn't the best.  It looks to me like raster's 
solution daisy chained the library checks so if one fails, it moved on to 
the next.  This seems like a plausible solution.


Personally, I believe that the main problem comes from the maturity of these
libraries.  These kind of frusterations are common with this new of code.

--
//\\
||  D. Hagemandhageman@dracken.com  ||
\\//-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-09-15 Thread The Rasterman
On Thu, 14 Sep 2006 14:42:07 -0500 (CDT) D. Hageman dhageman@dracken.com
babbled:

in cvs :)

 
 I am going to send along this patch again because changes some changes 
 were made to the configure.in file, but they weren't the *right* changes.
 
 This should solve the SVG issues for the Fedora/Redhat platform.
 
 
 On Mon, 11 Sep 2006, D. Hageman wrote:
 
 
  Attached is a patch that should fix this once and for all.
 
 
 
  On Wed, 30 Aug 2006, D. Hageman wrote:
 
  
  On Thu, 31 Aug 2006, Carsten Haitzler wrote:
  
  On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman 
  dhageman@dracken.com
  babbled:
  
  
  I mentioned before the weekend that I was having some issues with the SVG
  in evas with Fedora Core 5.  I finally found the time to investigate the
  issue some more, but I am not sure how to fix it.
  
  Essentially this solves the problem:
  
  944c944
 PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
  ---
PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,
  
  
  Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed
  enough in autofoo to make both of those happy.
  
  in cvs - check that it's working for you.
  
  Still not completely happy yet ...
  
  In file included from evas_image_load_svg.c:4:
  /usr/include/librsvg-2/librsvg/rsvg-cairo.h:28:19: error: cairo.h: No such 
  file or directory
  In file included from evas_image_load_svg.c:4:
  /usr/include/librsvg-2/librsvg/rsvg-cairo.h:33: error: expected
  declaration specifiers or '...' before 'cairo_t'
  /usr/include/librsvg-2/librsvg/rsvg-cairo.h:36: error: expected
  declaration specifiers or '...' before 'cairo_t'
  
  I will try to get some time tomorrow to do more investigation if you don't 
  have any ideas of the top of your head.
  
  I appreciate you looking into this.
  
  
 
 
 
 -- 
 //\\
 ||  D. Hagemandhageman@dracken.com  ||
 \\//


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-09-14 Thread D. Hageman


I am going to send along this patch again because changes some changes 
were made to the configure.in file, but they weren't the *right* changes.


This should solve the SVG issues for the Fedora/Redhat platform.


On Mon, 11 Sep 2006, D. Hageman wrote:



Attached is a patch that should fix this once and for all.



On Wed, 30 Aug 2006, D. Hageman wrote:



On Thu, 31 Aug 2006, Carsten Haitzler wrote:

On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman 
dhageman@dracken.com

babbled:



I mentioned before the weekend that I was having some issues with the SVG
in evas with Fedora Core 5.  I finally found the time to investigate the
issue some more, but I am not sure how to fix it.

Essentially this solves the problem:

944c944
   PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
---

  PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,



Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed
enough in autofoo to make both of those happy.


in cvs - check that it's working for you.


Still not completely happy yet ...

In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:28:19: error: cairo.h: No such 
file or directory

In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:33: error: expected declaration 
specifiers or '...' before 'cairo_t'
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:36: error: expected declaration 
specifiers or '...' before 'cairo_t'


I will try to get some time tomorrow to do more investigation if you don't 
have any ideas of the top of your head.


I appreciate you looking into this.







--
//\\
||  D. Hagemandhageman@dracken.com  ||
\\//diff -ruN evas.orig/configure.in evas/configure.in
--- evas.orig/configure.in  2006-09-11 11:10:42.0 -0500
+++ evas/configure.in   2006-09-11 11:11:11.0 -0500
@@ -936,7 +936,7 @@
svg_libs=$SVG_LIBS $CAIRO_SVG_LIBS
 ],
 [ 
-PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,
+PKG_CHECK_MODULES(LIBSVG_CAIRO, libsvg-cairo,
   [ 
  have_svg=yes
  svg_cflags=$SVG_CFLAGS $LIBSVG_CAIRO_CFLAGS
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-09-11 Thread D. Hageman


Attached is a patch that should fix this once and for all.



On Wed, 30 Aug 2006, D. Hageman wrote:



On Thu, 31 Aug 2006, Carsten Haitzler wrote:

On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman 
dhageman@dracken.com

babbled:



I mentioned before the weekend that I was having some issues with the SVG
in evas with Fedora Core 5.  I finally found the time to investigate the
issue some more, but I am not sure how to fix it.

Essentially this solves the problem:

944c944
   PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
---

  PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,



Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed
enough in autofoo to make both of those happy.


in cvs - check that it's working for you.


Still not completely happy yet ...

In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:28:19: error: cairo.h: No such 
file or directory

In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:33: error: expected declaration 
specifiers or '...' before 'cairo_t'
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:36: error: expected declaration 
specifiers or '...' before 'cairo_t'


I will try to get some time tomorrow to do more investigation if you don't 
have any ideas of the top of your head.


I appreciate you looking into this.




--
//\\
||  D. Hagemandhageman@dracken.com  ||
\\//diff -ruN evas.orig/configure.in evas/configure.in
--- evas.orig/configure.in  2006-09-11 11:10:42.0 -0500
+++ evas/configure.in   2006-09-11 11:11:11.0 -0500
@@ -936,7 +936,7 @@
svg_libs=$SVG_LIBS $CAIRO_SVG_LIBS
 ],
 [ 
-PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,
+PKG_CHECK_MODULES(LIBSVG_CAIRO, libsvg-cairo,
   [ 
  have_svg=yes
  svg_cflags=$SVG_CFLAGS $LIBSVG_CAIRO_CFLAGS
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] evas / svg configure issue and solution

2006-08-30 Thread D. Hageman

I mentioned before the weekend that I was having some issues with the SVG 
in evas with Fedora Core 5.  I finally found the time to investigate the 
issue some more, but I am not sure how to fix it.

Essentially this solves the problem:

944c944
   PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
---
   PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,


Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed 
enough in autofoo to make both of those happy.

-- 
//\\
||  D. Hagemandhageman@dracken.com  ||
\\//

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-08-30 Thread The Rasterman
On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman dhageman@dracken.com
babbled:

 
 I mentioned before the weekend that I was having some issues with the SVG 
 in evas with Fedora Core 5.  I finally found the time to investigate the 
 issue some more, but I am not sure how to fix it.
 
 Essentially this solves the problem:
 
 944c944
PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
 ---
PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,
 
 
 Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed 
 enough in autofoo to make both of those happy.

in cvs - check that it's working for you.

 -- 
 //\\
 ||  D. Hagemandhageman@dracken.com  ||
 \\//
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-08-30 Thread D. Hageman

On Thu, 31 Aug 2006, Carsten Haitzler wrote:

 On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman dhageman@dracken.com
 babbled:


 I mentioned before the weekend that I was having some issues with the SVG
 in evas with Fedora Core 5.  I finally found the time to investigate the
 issue some more, but I am not sure how to fix it.

 Essentially this solves the problem:

 944c944
PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
 ---
   PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,


 Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well versed
 enough in autofoo to make both of those happy.

 in cvs - check that it's working for you.

Still not completely happy yet ...

In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:28:19: error: cairo.h: No such 
file or directory
In file included from evas_image_load_svg.c:4:
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:33: error: expected 
declaration specifiers or '...' before 'cairo_t'
/usr/include/librsvg-2/librsvg/rsvg-cairo.h:36: error: expected 
declaration specifiers or '...' before 'cairo_t'

I will try to get some time tomorrow to do more investigation if you don't 
have any ideas of the top of your head.

I appreciate you looking into this.

-- 
//\\
||  D. Hagemandhageman@dracken.com  ||
\\//

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evas / svg configure issue and solution

2006-08-30 Thread David Seikel
On Wed, 30 Aug 2006 21:19:40 -0500 (CDT) D. Hageman
dhageman@dracken.com wrote:

 
 On Thu, 31 Aug 2006, Carsten Haitzler wrote:
 
  On Wed, 30 Aug 2006 13:27:34 -0500 (CDT) D. Hageman
  dhageman@dracken.com babbled:
 
 
  I mentioned before the weekend that I was having some issues with
  the SVG in evas with Fedora Core 5.  I finally found the time to
  investigate the issue some more, but I am not sure how to fix it.
 
  Essentially this solves the problem:
 
  944c944
 PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg,
  ---
PKG_CHECK_MODULES(CAIRO_SVG, libsvg-cairo,
 
 
  Fedora Core calls their cairo-svg ... libsvg-cairo.  I am not well
  versed enough in autofoo to make both of those happy.
 
  in cvs - check that it's working for you.
 
 Still not completely happy yet ...
 
 In file included from evas_image_load_svg.c:4:
 /usr/include/librsvg-2/librsvg/rsvg-cairo.h:28:19: error: cairo.h: No
 such file or directory
 In file included from evas_image_load_svg.c:4:
 /usr/include/librsvg-2/librsvg/rsvg-cairo.h:33: error: expected 
 declaration specifiers or '...' before 'cairo_t'
 /usr/include/librsvg-2/librsvg/rsvg-cairo.h:36: error: expected 
 declaration specifiers or '...' before 'cairo_t'
 
 I will try to get some time tomorrow to do more investigation if you
 don't have any ideas of the top of your head.

I have noticed that it is very librsvg version dependant.  evas should
be checking for the later version 2.13 that has the proper include
files.


signature.asc
Description: PGP signature
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel