Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/epsilon

Dir     : e17/libs/epsilon


Modified Files:
        configure.in 


Log Message:


check for and link to libpng by ourselves for epsilon... it relied on evas's
link to png to ever work... which for evas was always optional :) caro did
all the work with this patch

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/configure.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- configure.in        12 Jan 2006 05:43:07 -0000      1.15
+++ configure.in        17 Jan 2006 08:50:18 -0000      1.16
@@ -38,15 +38,21 @@
     have_epeg="yes"
   ],
   [
-    have_epeg="yes"
+    have_epeg="no"
     AC_MSG_WARN(Cannot find Epeg on your system: jpeg thumbnail suckage!)
   ]
 )
 
 dnl Make sure the png header/lib is available
 PKG_CHECK_MODULES(PNG, libpng12 >= 1.2.0,
-  [ have_png="yes" ],
-  [ have_png="no" ]
+  [
+    have_png="yes"
+    AC_DEFINE(HAVE_PNG_H, 1, [png.h is available])
+  ],
+  [
+    have_png="no"
+    AC_MSG_WARN(Cannot find libpng on your system: png thumbnail suckage!)
+  ]
 )
 
 AC_PATH_PROG(PERL, perl, 0)




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to