Iain, It does not compile, I have both clutter-0.6 and 0.7 (svn) installed. I configured it with --enable-clutter --disable-gtk. I even tried bumping up required versions in configure.ac to 0.7, still no luck. I get this error now:
WebKit/clutter/webkit/webkitwebview.cpp: In function 'void webkit_web_view_request_coords(ClutterActor*, ClutterActorBox*)': WebKit/clutter/webkit/webkitwebview.cpp:757: error: 'struct _ClutterActorClass' has no member named 'request_coords' WebKit/clutter/webkit/webkitwebview.cpp: In function 'void webkit_web_view_class_init(WebKitWebViewClass*)': WebKit/clutter/webkit/webkitwebview.cpp:1149: error: 'struct _ClutterActorClass' has no member named 'request_coords' WebKit/clutter/webkit/webkitwebview.cpp: In function 'void webkit_web_view_settings_notify(WebKitWebSettings*, GParamSpec*, WebKitWebView*)': WebKit/clutter/webkit/webkitwebview.cpp:1342: warning: missing braces around initializer for '_GValue::<anonymous union> [2]' WebKit/clutter/webkit/webkitwebview.cpp:1342: warning: missing braces around initializer for '_GValue::<anonymous union>' Rest of the errors are deprecated warnings that I can fix. Is there a version of clutter that successfully compiles this? (please give svn release id). Thanks, Ashwin PS: If any of you need to access GIT behind an authenticating proxy, you need to do this: $ export http_proxy="http://username:[EMAIL PROTECTED]:80 $ export GIT_PROXY_COMMAND=/usr/bin/proxy-cmd.sh $ cat > /usr/bin/proxy-cmd.sh #! /bin/bash pass=`echo -n $http_proxy | sed -e "s/http:\/\/\([^:]\+\):\([EMAIL PROTECTED]).*/\1:\2/" |base64` auth="Proxy-Authorization: Basic $pass" hostport=`echo -n $http_proxy|sed -e "s/.*@//" -e "s/:/ /" -e "s/\///"` (echo "CONNECT $1:$2 HTTP/1.0"; echo $auth; echo; cat ) | socket $hostport | (read a; read a; cat ) -- To unsubscribe send a mail to [EMAIL PROTECTED]
