Re: Xvesa on FC2 and xcompmgr
Matt Jones <[email protected]>
| Newsgroups | gmane.comp.freedesktop.xserver |
|---|---|
| Message-ID | <[email protected]> |
> > 2: xcompmgr > > I have updated my tree to the latest CVS but now if i run make in the > > xcompmgr directory i get this: > > xcompmgr.c:40:39: X11/extensions/Xcomposite.h No such file or directory > > xcompmgr.c:41:36: X11/extensions/Xdamage.h No such file or directory > > > > but i can find this files in the /opt/fdo/include/X11/extensions > > directory. What i do wrong? > > i noticed that there is now a autogen.sh in the xcompmgr dir... run it the > same as you did with other parts of the FD.o XServer: > ./autogen.sh --prefix=/opt/fdo This doesn't seem to work for me either. I created a small patch to Makefile.am which defines INCLUDES in addition to xcompmgr_INCLUDES, which seems to make everything work as it should (unified diff attached). -- Matt Jones _______________________________________________ xserver mailing list [email protected] http://freedesktop.org/mailman/listinfo/xserver
Makefile.am.diff
(text/x-patch, 397 B)
Index: Makefile.am =================================================================== RCS file: /cvs/xapps/xcompmgr/Makefile.am,v retrieving revision 1.1 diff -u -r1.1 Makefile.am --- Makefile.am 25 Mar 2004 23:57:55 -0000 1.1 +++ Makefile.am 31 Mar 2004 19:58:29 -0000 @@ -2,3 +2,5 @@ xcompmgr_LDADD = @XCOMPMGR_LIBS@ -lm xcompmgr_INCLUDES = @XCOMPMGR_CFLAGS@ + +INCLUDES= @XCOMPMGR_CFLAGS@