maze schrieb:
Hi,
I run Ubuntu Feisty Beta.
Get these errors when compiling:

This is from imlib2_loaders: 'checking for eet-config... no'

@exhibit: 'checking for eet-config... no
checking for eet - version >= 0.9.10.030... no
*** The eet-config script installed by eet could not be found
*** If eet was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the EET_CONFIG environment variable to the
*** full path to eet-config.
configure: error: No Eet, can't build.'

@extrackt: 'configure: error: No EET, can't build.'

@moon (e_module) 'configure: error: Cannot find eet: Is eet-config in
path?'

No error in eet config.log. It compiles OK.

echo $PATH=
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
cat /etc/ld.so.conf= include /etc/ld.so.conf.d/*.conf ## this is default.
/usr/local/lib

Any hints ?

Yes, this was already asked by me, when facing the same problem.
If you want a simple workaround, create eet-config yourself,
or take mine, which is attached. Was easy to create, though.
Hope this helps.


    The first thing was, that e17/libs/eet/src/bin is now empty,
    > is eet-config useless and was that change intentional?

    It's all being changed to use pkg-config.








#!/bin/sh

prefix=/usr
exec_prefix=/usr
exec_prefix_set=no

usage="\
Usage: eet-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] 
[--cflags]"

if test $# -eq 0; then
      echo "${usage}" 1>&2
      exit 1
fi

while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --prefix=*)
      prefix=$optarg
      if test $exec_prefix_set = no ; then
        exec_prefix=$optarg
      fi
      ;;
    --prefix)
      echo $prefix
      ;;
    --exec-prefix=*)
      exec_prefix=$optarg
      exec_prefix_set=yes
      ;;
    --exec-prefix)
      echo $exec_prefix
      ;;
    --version)
      echo 0.9.10
      ;;
    --cflags)
      if test /usr/include != /usr/include ; then
        includes="-I/usr/include"
      fi
      echo $includes   -I$prefix/include/
      ;;
    --libs)
      libdirs=-L/usr/lib
      echo $libdirs -lengrave -leet -lecore_evas -levas -lecore_x -lecore_txt 
-lecore   -levas   -lm
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
      ;;
  esac
  shift
done

exit 0

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to