$ eesh set compmgr.resize_fix_enable 1
works!!!thanks a lot for your help guys.
roberto.
On Mar 31, 2005 6:02 PM, Roberto Winter <[EMAIL PROTECTED]> wrote:
aha!
forget all that, all I needed to do was (I still think it looks awful, but it works) changing line 3426 from
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'to
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext -I$x_includes >&5'
On Mar 31, 2005 5:43 PM, Roberto Winter <[EMAIL PROTECTED]> wrote:Ok, I tried something.... but it didn't work:
I was getting at config.log:
configure:12663: $? = 0
configure:12666: test -s conftest
configure:12669: $? = 0
configure:12682: result: yes
configure:12697: checking for X11/extensions/Xcomposite.h
configure:12713: gcc -c -g -O2 conftest.c >&5
conftest.c:104:39: X11/extensions/Xcomposite.h: No such file or directory
configure:12719: $? = 1
configure: failed program was:
so I changed configure (very ugly thing I did!) from, for instance:
for ac_header in X11/extensions/Xcomposite.h
to something like:
for ac_header in /usr/local/X11R6.8/include/X11/extensions/Xcomposite.h
did this in lines 12694, 12755, 12816 and 12877.
then the message in config.log changed to:
configure:12663: $? = 0
configure:12666: test -s conftest
configure:12669: $? = 0
configure:12682: result: yes
configure:12697: checking for /usr/local/X11R6.8/include/X11/extensions/Xcomposite.h
configure:12713: gcc -c -g -O2 conftest.c >&5
In file included from conftest.c:104:
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:28:38: X11/extensions/composite.h: No such file or directory
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:29:35: X11/extensions/Xfixes.h: No such file or directory
In file included from conftest.c:104:
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:64: error: parse error before "XCompositeCreateRegionFromBorderClip"
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:64: warning: data definition has no type or storage class
configure:12719: $? = 1
configure: failed program was:
then I thought changing line (I'm not proud of this!) 3426 from:
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
to:
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext -L$x_includes >&5'
would help... but no. I still get on config.log:
configure:12663: $? = 0
configure:12666: test -s conftest
configure:12669: $? = 0
configure:12682: result: yes
configure:12697: checking for /usr/local/X11R6.8/include/X11/extensions/Xcomposite.h
configure:12713: gcc -c -g -O2 conftest.c -L/usr/local/X11R6.8/include/ >&5
In file included from conftest.c:104:
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:28:38: X11/extensions/composite.h: No such file or directory
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:29:35: X11/extensions/Xfixes.h: No such file or directory
In file included from conftest.c:104:
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:64: error: parse error before "XCompositeCreateRegionFromBorderClip"
/usr/local/X11R6.8/include/X11/extensions/Xcomposite.h:64: warning: data definition has no type or storage class
configure:12719: $? = 1
configure: failed program was:
so I ran out of ideas... anyone can help? I think I'm pretty close, huh?
roberto.
On Mar 30, 2005 9:58 AM, Matias Grana <[EMAIL PROTECTED]> wrote:
>
> > Maybe it was disabled by configure because some required libraries or
> > header files weren't found. While running configure, do you get these
> > messages:
> >
> > checking for XCompositeQueryExtension in -lXcomposite... yes
> > checking for X11/extensions/Xcomposite.h... yes
> > checking for X11/extensions/Xdamage.h... yes
> > checking for X11/extensions/Xfixes.h... yes
> > checking for X11/extensions/Xrender.h... yes
> >
> > /Kim
>
> Sorry to jump in, but I have a similar problem. The "Composite Settings"
> line shows up in the menu, but when I click on it nothing happens. In my
> config.log I have:
>
> configure:12605: checking for XCompositeQueryExtension in -lXcomposite
> configure:12635: gcc -o conftest -g -O2 -L/usr/local/lib conftest.c
> -lXcomposite -L/usr/X11R6/lib -lXext -lX11 >&5
> /usr/bin/ld: cannot find -lXcomposite
> collect2: ld returned 1 exit status
> configure:12641: $? = 1
> configure: failed program was:
> .......................
> configure:12667: result: no
> configure:12682: checking for X11/extensions/Xcomposite.h
> configure:12698: gcc -c -g -O2 conftest.c >&5
> conftest.c:103:39: X11/extensions/Xcomposite.h: No such file or directory
> configure:12704: $? = 1
> configure: failed program was:
> ........................
> configure:12728: result: no
> configure:12743: checking for X11/extensions/Xdamage.h
> configure:12759: gcc -c -g -O2 conftest.c >&5
> conftest.c:103:36: X11/extensions/Xdamage.h: No such file or directory
> configure:12765: $? = 1
> configure: failed program was:
> .......................
> configure:12789: result: no
> configure:12804: checking for X11/extensions/Xfixes.h
> configure:12820: gcc -c -g -O2 conftest.c >&5
> conftest.c:103:35: X11/extensions/Xfixes.h: No such file or directory
> configure:12826: $? = 1
> configure: failed program was:
>
> and so on. I guess I'm missing some -devel package?
> TIA,
> Matias
>
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> enlightenment-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
>
