Hi

in a freebsd-7/amd64 system, I am trying to build emotion and etk using
the troback script (everything checked out from cvs).
However, I'm getting the same error in both:

[...]
Running automake...
[...]
checking dynamic linker characteristics... freebsd7.0 ld.so
checking how to hardcode library paths into programs... immediate
function: not found
./configure.lineno: arithmetic expression: syntax error: "  * 100  "
gmake: *** No rule to make target `clean'.  Stop.
[...]
checking how to hardcode library paths into programs... immediate
function: not found
./configure.lineno: arithmetic expression: syntax error: "  * 100  "
Error building e17/libs/emotion !

Everything else compiles smoothly, but these two are the only ones that
have the following code in their configure.lineno (the same
code appears in configure and configure.in as well): 

function vser
{
  v=$1
  VSTART=`echo $v | awk -F_ '{printf("%s", $1);}'`
  V1=`echo $VSTART | awk -F\. '{printf("%s", $1);}'`
  V2=`echo $VSTART | awk -F\. '{printf("%s", $2);}'`
  V3=`echo $VSTART | awk -F\. '{printf("%s", $3);}'`
  V4="0"
  VEND=`echo $v | awk -F_ '{printf("%s", $2);}'`
  if test -n "$VEND"; then
    V4=`echo $VEND | sed s/pre//`
  fi
  V3=$(( $V3 * 100  ));
  V2=$(( $V2 * 10000  ));
  V1=$(( $V1 * 1000000  ));
  V=$(( $V4 + $V3 + $V2 + $V1 ));
  echo $V
}

I was looking through edevelop.org, and it appears that this is a
freebsd specific problem: 

http://edevelop.org/node/896#comment-1872
http://edevelop.org/node/896#comment-2679

and

http://edevelop.org/node/1117

However, I couldn't find a solution anywhere.

I don't know if I'm missing something here, but any help or advice on
how to solve it would be appreciated.

Thank you

-------------------------------------------------------------------------
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=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to