Re: xserver git version?

2014-04-22 Thread Bill Spitzak

On 04/22/2014 05:34 PM, Peter Hutterer wrote:


Config with --enable-xwayland is not working however:

checking whether to build XWin DDX... no
checking dependency style of $(CC)... none
checking for DMXMODULES... no
checking whether to build Xdmx DDX... no
checking for XWAYLANDMODULES... no
checking whether to build Xwayland DDX... yes
configure: error: Xwayland build explicitly requested, but required
modules not found.


you're missing the required modules. check configure.ac for what you need,
it's line 2444 here.


I found epoxy in git://people.freedesktop.org/~fredrik/libepoxy

Is that the Frederic Plourde who posted some messages here?

Hope that is the right one. make + install seems to make the xserver 
configure happy. Compiling xserver now...


___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: xserver git version?

2014-04-22 Thread Jasper St. Pierre
It looks OK, but the upstream is at https://github.com/anholt/libepoxy


On Tue, Apr 22, 2014 at 10:54 PM, Bill Spitzak spit...@gmail.com wrote:

 On 04/22/2014 05:34 PM, Peter Hutterer wrote:

  Config with --enable-xwayland is not working however:

 checking whether to build XWin DDX... no
 checking dependency style of $(CC)... none
 checking for DMXMODULES... no
 checking whether to build Xdmx DDX... no
 checking for XWAYLANDMODULES... no
 checking whether to build Xwayland DDX... yes
 configure: error: Xwayland build explicitly requested, but required
 modules not found.


 you're missing the required modules. check configure.ac for what you
 need,
 it's line 2444 here.


 I found epoxy in git://people.freedesktop.org/~fredrik/libepoxy

 Is that the Frederic Plourde who posted some messages here?

 Hope that is the right one. make + install seems to make the xserver
 configure happy. Compiling xserver now...


 ___
 wayland-devel mailing list
 wayland-devel@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/wayland-devel




-- 
  Jasper
___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: xserver git version?

2014-04-22 Thread Bill Spitzak

On 04/22/2014 08:08 PM, Jasper St. Pierre wrote:

It looks OK, but the upstream is at https://github.com/anholt/libepoxy


Thanks, fixing that.

I had to add --disable-glx but I succeeded in getting xserver to compile.

Like before there are a lot of bugs with the window borders. It often is 
missing some corners, or draws the gradient for the shadow backwards. 
Also trying to move a window sometimes gets it stuck with the hand 
cursor until I resize the window. Are these known bugs or am I the only 
one getting them?


Some of my own X software using fltk does not work until you resize the 
window. It clearly thinks the mouse is in the wrong position, based on 
the highlighting. I suspect fltk is relying on some event that other X 
servers always deliver, not sure if this is considered an fltk bug, or 
that you may want to replicate whatever it is relying on in the server. 
I can send a very small compiled test program if anybody wishes, it is 
easy to compare the behavior on X and xwayland.


___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: xserver git version?

2014-04-21 Thread Bill Spitzak

Okay that got a little further.

I had to delete my xwayland checkout and make a new git clone to get git 
to forget about the xwayland branch (there probably is a git command to 
make it pull from master but I could not find it).


After that I had to also check out and install fontsproto from git.

Config with --enable-xwayland is not working however:

checking whether to build XWin DDX... no
checking dependency style of $(CC)... none
checking for DMXMODULES... no
checking whether to build Xdmx DDX... no
checking for XWAYLANDMODULES... no
checking whether to build Xwayland DDX... yes
configure: error: Xwayland build explicitly requested, but required 
modules not found.



On 04/15/2014 11:05 PM, Marek Chalupa wrote:

Hi,

the xwayland was merged to master branch of xserver 12 days ago
(http://cgit.freedesktop.org/xorg/xserver/commit/?id=6e539d8817f738289dc2dea13d0720116287ab9d)

I just did:
  $ git reset --hard origin/master

and then configured it with --enable-xwayland.

This way I made it run, I hope it'll help

Regards,
Marek


On 16 April 2014 06:45, Bill Spitzak spit...@gmail.com
mailto:spit...@gmail.com wrote:

It looks like the xwayland branch of xserver has disappeared:

$ git pull
Your configuration specifies to merge with the ref 'xwayland'
from the remote, but no such ref was fetched.

I tried git pull origin master but it produced lots of conflicts,
it looks like there are many changes for wayland that are not in master.

Any help?

Thanks

_
wayland-devel mailing list
wayland-devel@lists.__freedesktop.org
mailto:wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/__mailman/listinfo/wayland-devel
http://lists.freedesktop.org/mailman/listinfo/wayland-devel




___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: xserver git version?

2014-04-16 Thread Pekka Paalanen
On Tue, 15 Apr 2014 21:45:53 -0700
Bill Spitzak spit...@gmail.com wrote:

 It looks like the xwayland branch of xserver has disappeared:
 
 $ git pull
 Your configuration specifies to merge with the ref 'xwayland'
 from the remote, but no such ref was fetched.
 
 I tried git pull origin master but it produced lots of conflicts, it 
 looks like there are many changes for wayland that are not in master.
 
 Any help?

Just do not use git-pull to begin with. It tries to merge what you
fetch from the remote into whatever you happen to have in your local
branch. You do not want to merge anything, you just want what is the
latest of some remote branch as is.

Simply use the master branch of xserver.


Thanks,
pq
___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: xserver git version?

2014-04-16 Thread Marek Chalupa
Hi,

the xwayland was merged to master branch of xserver 12 days ago (
http://cgit.freedesktop.org/xorg/xserver/commit/?id=6e539d8817f738289dc2dea13d0720116287ab9d
)

I just did:
 $ git reset --hard origin/master

and then configured it with --enable-xwayland.

This way I made it run, I hope it'll help

Regards,
Marek


On 16 April 2014 06:45, Bill Spitzak spit...@gmail.com wrote:

 It looks like the xwayland branch of xserver has disappeared:

 $ git pull
 Your configuration specifies to merge with the ref 'xwayland'
 from the remote, but no such ref was fetched.

 I tried git pull origin master but it produced lots of conflicts, it
 looks like there are many changes for wayland that are not in master.

 Any help?

 Thanks

 ___
 wayland-devel mailing list
 wayland-devel@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/wayland-devel

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


xserver git version?

2014-04-15 Thread Bill Spitzak

It looks like the xwayland branch of xserver has disappeared:

$ git pull
Your configuration specifies to merge with the ref 'xwayland'
from the remote, but no such ref was fetched.

I tried git pull origin master but it produced lots of conflicts, it 
looks like there are many changes for wayland that are not in master.


Any help?

Thanks

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel