Re: Xnest

2008-09-30 Thread Jeremy Huddleston
hw/xnest in xorg/xserver On Sep 30, 2008, at 13:47, tsuraan wrote: Where are the sources for Xnest to be found? I've been browsing http://cgit.freedesktop.org/, especially under the xorg/xserver repository, but I'm not having any luck finding Xnest. Thanks in advance.

override-redirect issues in Xquartz

2008-10-16 Thread Jeremy Huddleston
We're having some difficulty with menus in some applications like nedit and xemacs. I believe these menus are windows with override- redirect set on them per section 4.1.10 (popup windows) of ICCCM: http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.10 """ If the window will be visible for a ver

Re: override-redirect issues in Xquartz

2008-10-17 Thread Jeremy Huddleston
On Oct 17, 2008, at 07:57, Adam Jackson wrote: Yeah, menus are typically children of the root, because if they were children of the toplevel they'd be clipped to within the toplevel. Lame, eh? You can probably get most of the way towards the right behaviour by treating o-r windows as logical ch

git and utf16

2008-10-21 Thread Jeremy Huddleston
Does anyone know if there's a way I can tell git that a file is utf16 text so it treats it more intelligently than a binary file? Begin forwarded message: From: [EMAIL PROTECTED] (Jeremy Huddleston) Date: October 21, 2008 19:37:20 PDT To: [EMAIL PROTECTED] Subject: xserver: Branch

Re: [PATCH 2/4] X event queue mutex

2008-10-23 Thread Jeremy Huddleston
nd later if nevents > 1) --Jeremy Begin forwarded message: From: Jeremy Huddleston <[EMAIL PROTECTED]> Date: October 19, 2008 12:59:16 PDT To: Kevin Van Vechten <[EMAIL PROTECTED]>, Jordan Hubbard <[EMAIL PROTECTED]> Cc: George Peter Staplin <[EMAIL PROTECTED]> Subject:

Re: [PATCH 2/4] X event queue mutex

2008-10-23 Thread Jeremy Huddleston
;pDev; +dev = e.pDev; } -dev->public.processInputProc(e->event, dev, e->nevents); +dev->public.processInputProc(e.event, dev, e.nevents); } } -#ifdef XQUARTZ -pthread_mutex_unlock(&miEventQueueMutex); -#endif }

Re: [PATCH 2/4] X event queue mutex

2008-10-23 Thread Jeremy Huddleston
xfree(event); +xfree(event); xfree(master_event); } /* Update the sprite now. Next event may be from different device. */ -if (e->events->event[0].u.u.type == DeviceMotionNotify -&& e->pDev->coreEven

Re: xserver: Branch 'xorg-server-1.5-apple'

2008-10-23 Thread Jeremy Huddleston
+ * gstaplin: I fixed the usage of this DeleteProperty so that it would compile. + * QUESTION: Where is this xa_native_window_id set? + */ rootlessWindow.c:DEFINE_ATOM_HELPER (xa_native_window_id, "_NATIVE_WINDOW_ID") smime.p7s Description: S/MIME cryptographic signature __

Re: [PATCH 2/4] X event queue mutex

2008-10-23 Thread Jeremy Huddleston
On Oct 23, 2008, at 16:05, Tiago Vignatti wrote: Hey Jeremy, I'm going well. Thanks my friend. Jeremy Huddleston escreveu: I hope things are going well for you. I've recently hit an issue using locks in miEq. We're doing it the same way in mieq.c as your proposal (patc

Re: [PATCH 2/4] X event queue mutex

2008-11-03 Thread Jeremy Huddleston
reply, I was tied up and missed the mail. On Thu, Oct 23, 2008 at 02:47:30PM -0700, Jeremy Huddleston wrote: And here's a stab at setting up mieqProcessInputEvents in master to be more friendly towards this locking. master doesn't work for us on OSX, so I can't really verify tha

Re: [PATCH 2/4] X event queue mutex

2008-11-04 Thread Jeremy Huddleston
On Nov 3, 2008, at 22:08, Peter Hutterer wrote: ... righty-o. hunk 2 is different, with the change you suggested. To make the flow cleaner, I moved all the EQ and memory alloc stuff together and the copies into local variables below it. Almost... you need to move the pop down 4 lines. ie

Re: [PATCH 2/4] X event queue mutex

2008-11-04 Thread Jeremy Huddleston
terer wrote: On Tue, Nov 04, 2008 at 09:34:23AM -0800, Jeremy Huddleston wrote: +dev = e->pDev; +screen = e->pScreen; + miEventQueue.head = (miEventQueue.head + 1) % QUEUE_SIZE; +type= event->u.u.type; +master = (!dev->isMaster &&

Re: xquartz dereferencing a NULL pointer (patch 2)

2008-11-05 Thread Jeremy Huddleston
On Nov 5, 2008, at 07:34, George Peter Staplin wrote: On Nov 5, 2008, at 12:33 AM, Jeremy Huddleston wrote: The locks inside mieqProcessInputEvents() should do nothing. mieqProcessInputEvents is the only thread that modifies miEventQueue.head, and we don't care if miEventQueue

Re: xquartz dereferencing a NULL pointer (patch 2)

2008-11-05 Thread Jeremy Huddleston
On Nov 5, 2008, at 11:37, George Peter Staplin wrote: On Nov 5, 2008, at 10:35 AM, Jeremy Huddleston wrote: I see two possibilities for handling this: 1) Lock inside mieqProcessInputEvents I think the pthread locking is actually safe in xquartz. I can't find any places ca

Re: [PATCH 2/4] X event queue mutex

2008-11-07 Thread Jeremy Huddleston
On Nov 6, 2008, at 20:52, Tiago Vignatti wrote: Hey, Jeremy Huddleston escreveu: Looks good! A recent bug report has surfaced for us since I got rid of the locking in mieqProcessInputEvents. We need to update miEventQueue.tail only after the data has actually been pushed into the tail

Re: [PATCH 2/4] X event queue mutex

2008-11-07 Thread Jeremy Huddleston
On Nov 7, 2008, at 12:23, Tiago Vignatti wrote: For this reason, I went back to locking inside mieqProcessInputEvents with XQUARTZ. Your mutex will lags your cursor update on screen because the input thread will block before enqueuing while the main thread pops events. On this case try to

Re: Your last commit for beforelight

2008-11-09 Thread Jeremy Huddleston
There we go... sorry... On Nov 9, 2008, at 05:57, Peter Breitenlohner wrote: Hi Jeremy, your commit from yesterday for beforelight (Buildfix for case insensitive file systems) has removed ./Beforelight.ad but failed to add ./app-defaults/Beforelight.ad. Please fix that. Regards Peter Breit

ConfigureNotify - Are x,y parent-relative or root-relative?

2008-11-12 Thread Jeremy Huddleston
On Nov 12, 2008, at 15:51, George Staplin wrote: In the tarball I've attached there is a withdraw_remap.tcl that I run with wish8.5 for X11 from macports. If you have it initially mapped, and drag it to another position before it becomes unmapped (by pressing Begin), and then it's mapped

Re: Or'ing with a bit mask error?

2008-11-14 Thread Jeremy Huddleston
I fixed it in the apple branches, but for some reason it didn't get into master. It's fixed now: original: http://gitweb.freedesktop.org/?p=xorg/xserver.git;a=commit;h=3ec234976079d30f10e5246f6847a7eee01c144e master: http://gitweb.freedesktop.org/?p=xorg/xserver.git;a=commit;h=e917806fc556c20

Re: X server 1.6 release schedule

2008-11-15 Thread Jeremy Huddleston
On Nov 14, 2008, at 14:03, Donnie Berkholz wrote: On 13:13 Fri 14 Nov , Keith Packard wrote: Here's a proposed schedule of events: Cut a release branch, do a -RC1 release:11/24 Track remaining work on scheduled features, cherry-picking commits from master. Cut -RC212/8 Stop

evdev with sun type6 keyboard... also modmap gripes...

2008-11-16 Thread Jeremy Huddleston
I have a sun type6 usb keyboard, and evdev treats it as pc105+inet: (II) config/hal: Adding input device HID 0430:0005 (**) HID 0430:0005: always reports core events (**) HID 0430:0005: Device: "/dev/input/event4" (II) HID 0430:0005: Found keys (II) HID 0430:0005: Configuring as keyboard (II) XIN

Re: evdev with sun type6 keyboard... also modmap gripes...

2008-11-16 Thread Jeremy Huddleston
On Nov 16, 2008, at 18:54, David Miller wrote: I have a sun type6 usb keyboard, and evdev treats it as pc105+inet: That's correct as far as I can tell. Actually, I'm assuming you're under Linux, and if you are all keyboard types emit PC keyboard codes rather than type specific ones. Yes, it

Re: evdev with sun type6 keyboard... also modmap gripes...

2008-11-16 Thread Jeremy Huddleston
On Nov 16, 2008, at 19:51, Peter Hutterer wrote: On Sun, Nov 16, 2008 at 05:52:53PM -0800, Jeremy Huddleston wrote: The keyboard mostly works, but it would probably be better if it were treated as sun6... I just use the "old-fashioned" keyboard driver with: Option "XkbMode

[Patch 00/02] mieq threading prep

2008-11-17 Thread Jeremy Huddleston
These are two fairly straight forward patches I'd like to give someone a chance to comment on. In a single-thread Xserver, these patches should have no effect, but they make the code a little more friendly to Tiago's threading patches (and this is what we're already doing in the apple bran

[Patch 01/02] mieq threading prep: Push screen-saver/DPMS handling to after the EQ pop operation.

2008-11-17 Thread Jeremy Huddleston
This way we on't need to hold the mutex during the dixSaveScreens() call. Signed-off-by: Jeremy Huddleston <[EMAIL PROTECTED]> Signed-off-by: Peter Hutterer <[EMAIL PROTECTED]> --- mi/mieq.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-)

[Patch 01/02] mieq threading prep: Only increment tail (push) when the event data is actually in the queue

2008-11-17 Thread Jeremy Huddleston
mi: Only increment tail (push) when the event data is actually in the queue We don't want to increment tail until the data is already in place since mieqProcessInputEvents assumes the data to be there if tail is incremented. Signed-off-by: Jeremy Huddleston <[EMAIL PROTECTED]>

Re: [Patch 01/02] mieq threading prep: Only increment tail (push) when the event data is actually in the queue

2008-11-18 Thread Jeremy Huddleston
On Nov 18, 2008, at 11:54, Simon Thum wrote: Jeremy Huddleston wrote: -unsigned int oldtail = miEventQueue.tail, newtail; +unsigned int oldtail = miEventQueue.tail; All fine, but is there a specific reason to remove newtail? Not that I'd expect this to save

Re: Tabs/spaces coding style question

2008-11-19 Thread Jeremy Huddleston
FTR, the replacement of 8 spaces with a tab in indentation is one of my biggest pet-peeves in poor coding etiquette. Either use a tab consistently to denote one level of indentation and have people setup their editor to "display" tabs differently, or force spaces and /bop people over the h

Re: Tabs/spaces coding style question

2008-11-19 Thread Jeremy Huddleston
On Nov 19, 2008, at 15:05, Peter Hutterer wrote: I'm a particularly big fan of the randomly occuring tabspacespacespacetabtabspace indentation. It makes me go all warm inside. /bop smime.p7s Description: S/MIME cryptographic signature ___ xorg m

Weird wm behavior with xeyes

2008-11-27 Thread Jeremy Huddleston
Someone discovered an odd bug that our wm exhibits with xeyes. The "black-lines" are drawn at the right spot, but the ovals that select which region to view move down as quartz-wm starts and stops. ConfigureNotify is always returning the upper left of the "inner" window, and we are doing

Re: Weird wm behavior with xeyes

2008-11-27 Thread Jeremy Huddleston
> by resize increments/hints. I learned that you have to apply the > hints, then resize the window, and update the state carefully. Thus > the code looks something like this: Yeah, it's not happening on resize though... > On Nov 27, 2008, at 13:51, Jeremy Huddleston wro

Re: Weird wm behavior with xeyes

2008-11-28 Thread Jeremy Huddleston
I traced the problem to wrong coordinates in a XShapeCombineShape... code refactoring missed one obscure corner case... sigh... All better now... On Nov 27, 2008, at 23:06, Jeremy Huddleston wrote: > > > On Nov 27, 2008, at 21:57, George Peter Staplin wrote: >> >> Th

[PATCH] mieqProcessInputEvents - Lessen memory overhead

2008-12-13 Thread Jeremy Huddleston
This patch updates mieqProcessInputEvents to not xcalloc() for every event it sees. diff --git a/mi/mieq.c b/mi/mieq.c index cb940e4..b865d82 100644 --- a/mi/mieq.c +++ b/mi/mieq.c @@ -313,7 +313,8 @@ mieqProcessInputEvents(void) int x = 0, y = 0; int type, nevents, evlen, i; S

Re: [PATCH] mieqProcessInputEvents - Lessen memory overhead

2008-12-17 Thread Jeremy Huddleston
Hey Peter, The mieqProcessInputEvents patch I made doesn't merge against server-1.6-branch because of the master_event -> masterEvents changes not being in 1.6 yet. Should that patch be nominated for 1.6, or should I craft a new mieqProcessInputEvents patch just for 1.6? http://cgit.freede

[ANNOUNCE] xinit 1.1.1

2008-12-17 Thread Jeremy Huddleston
This is mainly just a bunch of updates for OSX Tiger compatability and SnowLeopard fratures. Alan Coopersmith (1): Fix build of startx & xinitrc with Solaris make Jeremy Huddleston (17): Apple: privleged_startx: Increase the timeout so slower machines don't get a stra

xorg-commit messages

2008-12-28 Thread Jeremy Huddleston
It looks like the automated messages to xorg-commit aren't getting generated... is someone on that? ___ xorg mailing list xorg@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/xorg

Re: xorg-commit messages

2008-12-28 Thread Jeremy Huddleston
On Dec 28, 2008, at 04:45, Daniel Stone wrote: > On Sun, Dec 28, 2008 at 12:41:24AM -0800, Jeremy Huddleston wrote: >> It looks like the automated messages to xorg-commit aren't getting >> generated... is someone on that? > > Um, works for me: >> Date: Sun,

Autorepeat question - quick review

2008-12-30 Thread Jeremy Huddleston
Is this the right way to setup auto-repeating? I didn't see an XkbSetRepeatRate or something similar... so is this what I should be doing, or should I be calling something? (note that this hunk is immediately after my call to XkbInitKeyboardDeviceStruct(pDev, ...): diff --git a/hw/xquartz/

Re: xserver: Branch 'server-1.6-branch' - 2 commits

2009-01-14 Thread Jeremy Huddleston
Keith, We needed this stuff to be in dix-config-post-verbatim.h since configure would change: "#undef _XSERVER64" to "/* #undef _XSERVER64 */" or "#define _XSERVER64 1" at configure time, but we need that to be at compile time since we will be building for 32bit and 64bit targets at the same

Re: xserver: Branch 'server-1.6-branch' - 2 commits

2009-01-14 Thread Jeremy Huddleston
009-01-14 at 19:26 -0800, Jeremy Huddleston wrote: >> Keith, >> >> We needed this stuff to be in dix-config-post-verbatim.h since >> configure would change: >> "#undef _XSERVER64" to "/* #undef _XSERVER64 */" or "#define >> _XSERVER64 1&quo

Re: xserver: Branch 'server-1.6-branch' - 2 commits

2009-01-14 Thread Jeremy Huddleston
On Jan 14, 2009, at 21:25, Keith Packard wrote: > On Wed, 2009-01-14 at 21:09 -0800, Jeremy Huddleston wrote: >> Ugg... sorry, I forgot to put it in EXTRA_DIST or whatever it is for >> the make dist magicness. > > There's that, and then there's fixing all of the

Font rendering problem in 1.6 branch (fine in 1.5 and master)

2009-01-16 Thread Jeremy Huddleston
Has anyone noticed oddities in font rendering (or perhaps even just font selection) in the 1.6 branch? It looks fine in 1.5 and in master, but 1.6 shows something different. I looked through the list of nominated patches for 1.6 and nothing jumped out as fixing this. Does someone have a

Re: Font rendering problem in 1.6 branch (fine in 1.5 and master)

2009-01-16 Thread Jeremy Huddleston
On Jan 16, 2009, at 14:27, Xavier Bestel wrote: > Le vendredi 16 janvier 2009 à 14:22 -0800, Jeremy Huddleston a écrit : >> Has anyone noticed oddities in font rendering (or perhaps even just >> font selection) in the 1.6 branch? It looks fine in 1.5 and in >> master, bu

Re: Font rendering problem in 1.6 branch (fine in 1.5 and master)

2009-01-16 Thread Jeremy Huddleston
in 1.6 by reverting 385943e0e97463ce4681a9b6a4a40d7e3c91e51e ? http://cgit.freedesktop.org/xorg/xserver/commit/?id=385943e0e97463ce4681a9b6a4a40d7e3c91e51e On Jan 16, 2009, at 14:37, Jeremy Huddleston wrote: > > On Jan 16, 2009, at 14:27, Xavier Bestel wrote: > >> Le vendredi 16 janvier 2009

Re: Font rendering problem in 1.6 branch (fine in 1.5 and master)

2009-01-17 Thread Jeremy Huddleston
On Jan 17, 2009, at 18:49, Keith Packard wrote: > On Fri, 2009-01-16 at 14:58 -0800, Dan Nicholson wrote: >> On Fri, Jan 16, 2009 at 2:51 PM, Jeremy Huddleston >> wrote: >>> Ah... I figured it out... It has to do with --enable-builtin-fonts >>> going from &

Re: Font rendering problem in 1.6 branch (fine in 1.5 and master)

2009-01-18 Thread Jeremy Huddleston
On Jan 17, 2009, at 23:34, Keith Packard wrote: > On Sun, 2009-01-18 at 04:50 -0200, Paulo César Pereira de Andrade > wrote: > >> It worked as expected in all cases (falling back to builtin fonts >> if the "real" fixed font could not be found) >> > > Thanks much! If a few other people could giv

Re: [PATCH 3/4] Kill off --with-mesa-source completely

2009-01-18 Thread Jeremy Huddleston
On Jan 18, 2009, at 09:53, Dan Nicholson wrote: > On Mon, Dec 22, 2008 at 2:31 PM, Dan Nicholson > wrote: >> There were a few spots left in the source that were using the >> --with-mesa-source defined headers or the now removed $(top_srcdir)/ >> GL >> directory. These aren't needed anymore as

Re: [ANNOUNCE] xorg-server 1.5.99.902

2009-01-30 Thread Jeremy Huddleston
We need to do something about the '--enable-builtin-fonts' issue in 1.6... either change it back to default=no or use Paulo's patch (which works for me with XQuartz, but I can't verify the xfree86 changes) On Jan 30, 2009, at 21:33, Keith Packard wrote: > Ok, it's getting down to the wire; he

autoreconf issue with libXfont

2009-02-02 Thread Jeremy Huddleston
So this is a bit odd... I'm found an issue with libXfont that is making me a bit nuts. I think it's probably related to libtool, autoconf, or automake... I wanted to see if anyone has seen something similar... When starting the server, it immediately dies because it can't find fonts: Cou

Newer libtool breaking libXfont with -Wl, -single_module (Was Re: autoreconf issue with libXfont)

2009-02-02 Thread Jeremy Huddleston
(-arch ppc) (cd .libs && rm -f libXfont.1.dylib && ln -s libXfont.1.4.1.dylib libXfont.1.dylib) (cd .libs && rm -f libXfont.dylib && ln -s libXfont.1.4.1.dylib libXfont.dylib) rm -fr .libs/libXfont.lax On Feb 2, 2009, at 01:17, Jeremy Huddleston wrote: &

[ANNOUNCE] applewmproto 1.2.0

2009-03-04 Thread Jeremy Huddleston
Jeremy Huddleston (4): Use sized types to avoid issues on x86_64 Revert previous struct changes to the userland applewm.h Added XAppleWMSendPSN to let server know the psn of the WM Version bump to 1.2.0 Paulo Cesar Pereira de Andrade (1): Janitor: Correct make

[ANNOUNCE] libAppleWM 1.2.0

2009-03-04 Thread Jeremy Huddleston
Alan Coopersmith (2): renamed: .cvsignore -> .gitignore Add README with pointers to mailing list, bugzilla & git repos James Cloos (2): Add *~ to .gitignore to skip patch/emacs droppings Replace static ChangeLog with dist-hook to generate from git log

Re: [ANNOUNCE] libAppleWM 1.2.0

2009-03-05 Thread Jeremy Huddleston
of March 2009, Jeremy Huddleston wrote: >> Alan Coopersmith (2): >> renamed: .cvsignore -> .gitignore >> Add README with pointers to mailing list, bugzilla & git repos >> >> James Cloos (2): >> Add *~ to .gitignore to skip patch/emacs droppin

Re: Does Xorg need the kernel's DRM?

2009-04-22 Thread Jeremy Huddleston
The linux kernel should not be installing anything in /usr/include/ drm. Can you please be more specific about what you mean by, "when I enable DRM and install the kernel"? I interpret that as enabling drm with 'make config' then doing the standard 'make && make modules_install' then copyi

Re: Does Xorg need the kernel's DRM?

2009-04-22 Thread Jeremy Huddleston
ernel, install libdrm, install mesa with DRI drivers for your video card, and install the most recent X11 drivers for your video card. On Apr 22, 2009, at 11:39, Angel Tsankov wrote: > Jeremy Huddleston wrote: >> The linux kernel should not be installing anything in /usr/include/ &

Re: server GLX version: GLX 1.3, GLX 1.4

2009-05-11 Thread Jeremy Huddleston
On May 11, 2009, at 07:29, Roland Scheidegger wrote: > On 09.05.2009 14:56, Martin Walch wrote: >> Hello list, >> >> when trying to run some Java code with j3d, I got the error message >> that glx >> 1.3 is needed, but only glx 1.2 is available. As I do not know much >> about glx, >> I made s

Re: server GLX version: GLX 1.3, GLX 1.4

2009-05-11 Thread Jeremy Huddleston
> Thank you for your replys. Is there any chance to see server side > support for > GLX 1.3/1.4 soon? I found an article on Phoronix saying that GLX 1.4 > support > was planned for xorg-server 1.5: Yeah, it was added to xorg-server-1.5 ... so update your server, and you should be good to go.

Re: override_redirect

2009-06-23 Thread Jeremy Huddleston
On Jun 23, 2009, at 05:47, Bedő Sándor wrote: > Hi! > > This will be much more an xlib question than an xorg one, so please > forgive me! Is there a way in a window manager to force all the other > clients to set override_redirect to False in their > XSetWindowAttributes > structures on top le

X server hang - intel, GEM, i915, 2.6.28

2009-07-01 Thread Jeremy Huddleston
I help administer a box for a group I used to belong to, and they're having some trouble with recent X. They've got a dell with Intel E7221 integrated graphics. With recent servers, the console locks up as soon as X starts. The screen blanks, and there is no more possible interaction wit

Re: static library for X11

2009-07-03 Thread Jeremy Huddleston
Well... isn't there an '--enable-static' option for configure? On Jul 3, 2009, at 01:56, rahul ravindran wrote: > Hello, > Is there any way to compile the X library statically. > ___ > xorg mailing list > xorg@lists.freedesktop.org > http://lists.freede

[ANNOUNCE] applewmproto 1.3.0

2009-07-03 Thread Jeremy Huddleston
Jeremy Huddleston (3): Pad xAppleWMNotifyEvent up to 32 bytes to properly match sizeof(xEvent) Added XAppleWMAttachTransient to push that codepath from quartz- wm into Xplugin... needed for SL. 1.3.0 git tag: applewmproto-1.3.0 http://xorg.freedesktop.org/archive

[ANNOUNCE] libAppleWM 1.3.0

2009-07-03 Thread Jeremy Huddleston
Jeremy Huddleston (3): Remove compile warning about signedness Added XAppleWMAttachTransient for SnowLeopard 1.3.0 git tag: libAppleWM-1.3.0 http://xorg.freedesktop.org/archive/individual/lib/libAppleWM-1.3.0.tar.bz2 MD5: e79128571bb64e4c1286b8a1a8c4b8ab libAppleWM-1.3.0

Re: minimal X

2009-08-15 Thread Jeremy Huddleston
If you want to use gnome or KDE, you pretty much need everything... http://www.x.org/wiki/Releases/7.4 On Aug 15, 2009, at 11:06, Bill Cunningham wrote: >Can someone tell me or point me to the minimal X packages I need > for my > linux system? I need it for higher GUI's such as gnome or KD

Re: [PATCH] fix typo in bigreq.c

2009-09-01 Thread Jeremy Huddleston
Whoops... sorry about that. Thanks. On Sep 1, 2009, at 07:47, Jerome Glisse wrote: > On Tue, 2009-09-01 at 12:54 +0200, Stefano Avallone wrote: >> Hi, >> >> the following simple patch fixes a typo in Xext/bigreq.c that >> prevented to >> compile the X server: >> >> --- bigreq.c.orig2009-09

Re: Alt + Tab application switching

2009-09-03 Thread Jeremy Huddleston
That's really dependent on the window manager that you're using. X11 itself doesn't deal with that level of things. I'd check with the gnome, kde, xfce, etc list for help specific to your WM. On Sep 3, 2009, at 10:09, olcar...@cableone.net wrote: > Could someone give me a tip on how to get

Re: Finishing the X11R7.5 katamari

2009-10-02 Thread Jeremy Huddleston
If anyone disagrees with these, or the module versions listed as being a stable, X11R7.5-compatible version that should be included in the katamari, now is the time to speak, as at the rate we're going, we should have the X11R7.5 release finished by this time next week. ...

Re: Possible reason why Intel 1.9.0 doesn't load with server 1.7.0 but does with 1.6.x

2009-10-07 Thread Jeremy Huddleston
On Oct 7, 2009, at 17:49, Marty Jack wrote: I found that Intel 1.9.0 calls DGAInit, which isn't defined at all in 1.7.0. from xf86.h : /* xf86DGA.c */ #ifdef XFreeXDGA extern _X_EXPORT Bool DGAInit(ScreenPtr pScreen, DGAFunctionPtr funcs, DGAModePtr modes, int n

Re: Finishing the X11R7.5 katamari

2009-10-10 Thread Jeremy Huddleston
On Oct 9, 2009, at 22:01, Alan Coopersmith wrote: All the libraries on the list are released. I notice these omissions from releases, and just want to make sure they are intentional: libXevie ... RIP libxkbui ... ??? libXp... RIP libXtrap ... RIP Almost all the protocol modules are

Re: [ANNOUNCE] xorg-server 1.7.99.2

2009-12-20 Thread Jeremy Huddleston
We don't intentionally make things not cross-compile. Can you provide the patch you're using, and we'll review it for inclusion in the next release. --Jeremy On Dec 20, 2009, at 05:19, Stephan Raue wrote: > Hi all, > > when i am crosscompiling xorg-server i get an error from configure: > chec

Re: how Can i disable Xinput on Xorg-server-1.7.1

2009-12-28 Thread Jeremy Huddleston
You need Xinput. xkb is required in 1.7. Xsdl isn't expected to work. On Dec 28, 2009, at 01:45, 조원준 wrote: > i crosscompiled xorg-server-1.7.1 on ppc architecture. > > but xkbKeymap is not working. > > so i crosscompiled xkeyboard-config-1.7 and xkbcomp-1.1.1, too. > > but Xsdl is not workin

Re: Xorg crashes...

2010-01-06 Thread Jeremy Huddleston
On Jan 6, 2010, at 10:50, Ryan Daly wrote: >> not sure whats going on, but by >> looking at the log I see some userspace tools >> erroring out(which should not keep the screen from >> going forward), but I also see something about >> fglrx not found.. could either mean that you >> haven't the xor

Re: modular build, libGL "make install" fails

2010-01-30 Thread Jeremy Huddleston
1) mesa has its own list 2) you want to use sudo for make install. You need root permissions On Jan 30, 2010, at 15:17, David Gerard wrote: > Is this a bug, or just me? This is doing the modular build with jhbuild: > > /home/fun/.local/bin/install-check -d /usr/local/include/GL > install: cann

[ANNOUNCE] xinit 1.2.1

2010-03-15 Thread Jeremy Huddleston
missing/incorrect #24206 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES Jeremy Huddleston (4): Quiet warning for fts_open darwin: Handle home directories that contain a single-quote (') Updates for .gitignore Update to version 1.2.1 for release. gi

Re: Current tinderbox regression (libXcb)

2010-04-24 Thread Jeremy Huddleston
sigh. sorry. I though sys/syslimits.h was standard. I'll change it to --Jeremy On Apr 23, 2010, at 19:10, Chris Ball wrote: > http://tinderbox.x.org/builds/2010-04-24-0002/logs/libxcb/#build > > xcb_util.c:31:27: error: sys/syslimits.h: No such file or directory > xcb_util.c: In function '

Re: Issue with pkg-config files after X11R6.9 compilation

2010-05-09 Thread Jeremy Huddleston
You should really update to a newer release. X11R6.9 is quite dated. If you want an automated build solution, you can use build.sh or jhbuild. http://cgit.freedesktop.org/xorg/util/modular/ On May 9, 2010, at 02:48, sami md wrote: > Hi All, > I cross-compiled X11R6.9 for ARM, the cro

Re: Current tinderbox regression (xserver, OS X)

2010-05-15 Thread Jeremy Huddleston
gah. It's using the older system headers rather than the ones installed by the build ... this is a bug in my jhbuild rather than a bug in the server ... On May 14, 2010, at 22:05, Chris Ball wrote: > http://tinderbox.x.org/builds/2010-05-15-0003/logs/xserver/#build > > ../include/os.h:302: e

Re: Xwindows for Darwin Unix on iMAC

2010-05-15 Thread Jeremy Huddleston
I'm not sure what you really mean here. darwin is a flavor of UNIX. Assuming you have Mac OSX on your iMac G5, you already have UNIX on your system. If you are trying to run X11 on your system, then you should install X11 from your install DVD, or install it from http://xquartz.macosforge.org,

Re: Xwindows for Darwin Unix on iMAC

2010-05-15 Thread Jeremy Huddleston
On May 15, 2010, at 20:28, Glenn Stumpp wrote: > Yes, I have Darwin; just not XWindows. All vendors (HP, Sun Microsoft, IBM > AIX, and others} include it in their Unix Versions. I've gone round and > round on this due to phone calls demanding my attention and misstated my > need. I want to

Re: ANN luit 20100601

2010-06-01 Thread Jeremy Huddleston
Is this a fork of http://cgit.freedesktop.org/xorg/app/luit ? If so, what's the purpose of the fork? Licensing differences? On May 31, 2010, at 23:48, Thomas Dickey wrote: > http://invisible-island.net/luit/ > > 2010/6/1 - > * add makefile rules for generating pdf, etc., for manpage. >

Re: [ANNOUNCE] libXcm-0.2.6

2010-06-17 Thread Jeremy Huddleston
On Jun 17, 2010, at 01:42, Kai-Uwe Behrmann wrote: > Instead > --libdir=/opt/local > works fine. Thats used by rpm and I think deb as well. I'm guessing you mean: --libdir=/opt/local/lib --libdir takes the path to the lib directory, not the prefix.

Re: How to revert back glx version from 1.4 to 1.2

2010-08-10 Thread Jeremy Huddleston
On Aug 10, 2010, at 03:44, Adam Jackson wrote: > On Mon, 2010-08-09 at 16:43 -0700, Ratin wrote: > >> Hi Adam, I do have a testcase, I decode/render video with NVidia's >> VDPAU constantly, over time the system becomes really sluggish, a >> simple comand like "ls" will take about 30 sec to proce

Re: How to revert back glx version from 1.4 to 1.2

2010-08-10 Thread Jeremy Huddleston
On Aug 10, 2010, at 14:26, Ratin wrote: > There are not many apps running, Xorg client for decoded video is the > primary task. Other things include networking stack, and a simple bash > script based watchdog. I am using an ION platform, top shows 1.2 gig > of used total memory out of 1.5 gig of t

Re: How to revert back glx version from 1.4 to 1.2

2010-08-11 Thread Jeremy Huddleston
? > It would help to know how many pages are being used by what process in > the kernel memory space but I am not an expert to investigate this, > perhaps there is a utility I can load as a kernel module which writes > the logs to a file.. > > Ratin > > On Tue, Aug 10, 201

Re: Informations about X11R7.6

2010-08-17 Thread Jeremy Huddleston
On Aug 17, 2010, at 09:03, Marco Marco wrote: > > Hi team Xorg > > I just installed ubuntu 10.10alpha 3 and i have a video card SiS Mirage 3 > Grapichs. Unfotuntley this is the same bug version video relution(800x600). > > I knew a few weeks released the new version of Xorg(X11R7.6). > > Thi

Re: Informations about X11R7.6

2010-08-17 Thread Jeremy Huddleston
On Aug 17, 2010, at 16:24, Marco Marco wrote: >> Is the problem that you're defaulting to 800x600 or is the problem that X is >> not noticing other resolutions? If it is the latter, the problem might be >> with your monitor's EDID. Do you have this problem with other monitors as >> well? > >

Re: patch: libXt-1.0.8 fix possible array overflow

2010-09-23 Thread Jeremy Huddleston
As I had mentioned earlier, there actually is no overflow because the code cannot reach that point if *num_params is 0. On Sep 23, 2010, at 09:26, walter harms wrote: > > > Barry Scott schrieb: >> On Wednesday 22 September 2010 08:18:21 walter harms wrote: >>> hi List, >>> the code checks the

Re: patch: libXt-1.0.8 fix possible array overflow

2010-09-23 Thread Jeremy Huddleston
On Sep 23, 2010, at 11:37, walter harms wrote: > > > Pat Kane schrieb: >> In the original code if 'i' is equal to 10 then the line >> (void) memmove((char*)par, (char*)params, i * sizeof(String) ); >> moves ten things, which is okay. >> >> The next line: >> bzero( &par[i], (10-i) * sizeof(S

[ANNOUNCE] xorg-server 1.9.0.901

2010-10-01 Thread Jeremy Huddleston
ctionality. XQuartz: RandR: Toggle rootless mode on XRandR mode switch. XQuartz: RandR: Remove FAKE_RANDR code. Jeremy Huddleston (9): rootless: Remove ROOTLESS_WORKAROUND XQuartz: Localization updates XQuartz: RandR: Use deprecated CG APIs only on Leopard and earlier

[ANNOUNCE] xorg-server 1.9.0.902

2010-10-15 Thread Jeremy Huddleston
one week. Adam Jackson (1): vbe: Fix copying the mode info block Jeremy Huddleston (2): Revert "dix: don't create core motion events for non-x/y valuators." Bump version to 1.9.0.902 (1.9.1 rc2) Jon TURNEY (1): event_size is currently never

Re: Problem with the X server

2010-10-18 Thread Jeremy Huddleston
What version of the radwon drivers are you running? Are you able to build with debugging symbols and reproduce the problem? On Oct 18, 2010, at 08:23, benito perez lopez wrote: > I have a problem with the X server installed on my machine. KDE fails after > some > time > This is the log con

Re: Problem with the X server

2010-10-18 Thread Jeremy Huddleston
Well the backtrace is in the radeon driver. I don't know SuSE's package management system, so I don't know how to tell you to update those drivers, but providing /var/log/Xorg.0.log would be helpful. On Oct 18, 2010, at 11:27, benito perez lopez wrote: > I don't have idea ;-). I'm using openSU

Re: X under valgrind?

2010-10-20 Thread Jeremy Huddleston
I have a bunch of reports of this on version 1.4.2-apple53 as well (which cherry picked changes to support the new libXfont), so it probably reduces down to something in those change which were cherry picked. That's not much help, but it looks like it probably landed in late 2008 or early 2009.

Re: X under valgrind?

2010-10-21 Thread Jeremy Huddleston
On Oct 21, 2010, at 09:13, walter harms wrote: > can you see what is freed ? perhaps you can grep the code to see > if that is used somewhere else, then setting the variable there to NULL. > > If this is not happening with X 1.9.0. <901 the most easy way is to use > git-biset. Based on similar

[ANNOUNCE] xorg-server 1.9.1

2010-10-23 Thread Jeremy Huddleston
ation. Add screens to the PRIVATE_XSELINUX set. Jan Hauffa (3): XQuartz: RandR: Implement basic RandR functionality. XQuartz: RandR: Toggle rootless mode on XRandR mode switch. XQuartz: RandR: Remove FAKE_RANDR code. Jeremy Huddleston (12): rootless: Remove ROOTLESS_WORKA

Re: RandR questions

2010-10-30 Thread Jeremy Huddleston
This would be a good place... On Oct 29, 2010, at 21:07, Pedro DeKeratry wrote: > Hi everyone, > > Is this the appropriate place to ask questions about the xrandr > command line utility in order to understand how it interacts with my > system environment at large or is such a question better sui

[ANNOUNCE] xorg-server 1.9.2

2010-10-31 Thread Jeremy Huddleston
tarball was packaged using the unmodified util-macros. This additionally contains a fix for a regression in XQuartz found by Christof Wolf. Jeremy Huddleston (2): Revert "rootless: Remove ROOTLESS_WORKAROUND" Bump version to 1.9.2 git tag: xorg-server-1.9.2 http://xorg.freed

[ANNOUNCE] xorg-server 1.9.2.901 (1.9.3 RC1)

2010-11-13 Thread Jeremy Huddleston
: Replace usage of DamageRegionAppend with DamageDamageRegion to fix reportAfter. Jeremy Huddleston (4): DOC: Only build dtrace documentation with --enable-docs dix: Fix make distcheck XQuartz: Fix make distcheck Version bumped to 1.9.2.901 (1.9.3 RC1) Joe Shaw (1):

Re: libX11 build error

2010-11-22 Thread Jeremy Huddleston
A full build log would be helpful. On Nov 22, 2010, at 07:57, Deniz Fer wrote: > Hello, > > I have a computer with CentOS 5.5 installed. My current Xorg version is > attached and I want to upgrade to Release 7.5 (MPX being the main reason for > the upgrade). > > I have followed every instruct

Re: [ANNOUNCE] xcalc 1.0.4

2010-11-26 Thread Jeremy Huddleston
And here I thought this might've been because the git repos were compromised... ... too soon? On Nov 26, 2010, at 16:42, Alan Coopersmith wrote: > Somchai Smythe wrote: >> I compared it to the install-sh in xcalc-1.0.3 and it seems random >> lines were deleted from the case statement. >> -

Re: Documentation conversion status [was: Re: companies contributing to X]

2010-11-28 Thread Jeremy Huddleston
Thanks a lot for this update and the work in general. I know it was very difficult for me to get involved, and even now I'm only comfortable in a few corners of X11. In addition to making it easier for new contributors, this work will make it easier for existing contributors to expand their in

  1   2   >