Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir     : misc/engage


Modified Files:
        configure.in 


Log Message:
Some icon grabbing code initially for minimised windows, not working yet, in step 
anyone who can fix it
===================================================================
RCS file: /cvsroot/enlightenment/misc/engage/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- configure.in        11 Apr 2004 14:31:50 -0000      1.4
+++ configure.in        11 Apr 2004 21:11:44 -0000      1.5
@@ -92,6 +92,19 @@
 AC_SUBST(esmart_cflags)
 AC_SUBST(esmart_libs)
 
+PROG="imlib2-config";
+AC_PATH_PROG(IMLIB_CONFIG, $PROG, "", $PATH)
+if [ test -z $IMLIB_CONFIG ]; then
+  echo $PROG " is not in your \$PATH. Please ensure it is.";
+  echo "Read the manual page for you shell as to how to extend your path.";
+  echo "FATAL ERROR. ABORT.";
+  exit -1;
+fi
+imlib_cflags=`$IMLIB_CONFIG --cflags`
+imlib_libs=`$IMLIB_CONFIG --libs`
+AC_SUBST(imlib_cflags)
+AC_SUBST(imlib_libs)
+        
 
 dnl Set PACKAGE_SOURCE_DIR in config.h.
 #packagesrcdir=`cd $srcdir && pwd`
@@ -113,7 +126,16 @@
   [ AC_DEFINE(HAVE_TRANS_BG, [], [Esmart Pseudo-transparency support]) 
     have_esmart_trans="yes"  
   ])
-        
+
+have_imlib="no"
+dnl Make sure the imlib header/lib is available
+AC_CHECK_HEADER( Imlib2.h,
+  [ AC_DEFINE(HAVE_IMLIB, [], [Imlib Image Manipulation support])
+    have_imlib="yes"
+  ])
+
+
+
 AC_OUTPUT([
 Makefile
 src/Makefile




-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to