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 'xorg

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

2008-10-23 Thread Jeremy Huddleston
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: mach_msg async? thread communication question So... I've made some progress

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

2008-10-23 Thread Jeremy Huddleston
) +if (event[0].u.u.type == DeviceMotionNotify e.pDev- coreEvents) { -miPointerUpdateSprite(e-pDev); +miPointerUpdateSprite(e.pDev); } } } On Oct 23, 2008, at 14:08, Jeremy Huddleston wrote: Whoops... I forgot the diff to show you what I meant

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 (patch 2/4

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

2008-11-03 Thread Jeremy Huddleston
. 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 that it works... I may have missed an e- to e. or e

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.

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

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

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

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:

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)

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,

[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(-) diff --git a/mi/mieq.c b

[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] Signed-off

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 more

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

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

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 the

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: That sounds odd. I ran into a bug

[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;

[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 stray process

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

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

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
-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 at configure time, but we need that to be at compile time since we will be building

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 places which use dix-config.h but don't

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, but 1.6 shows something different

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

2009-01-16 Thread Jeremy Huddleston
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 à 14:22 -0800, Jeremy Huddleston a écrit

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 jerem...@freedesktop.org wrote: Ah... I figured it out... It has to do with --enable-builtin-fonts going from no by default in 1.5

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 give this a bit

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 dbn.li...@gmail.com 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

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;

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:

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

2009-02-02 Thread Jeremy Huddleston
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: So this is a bit odd... I'm found an issue with libXfont that is making me

[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

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 droppings Replace static ChangeLog with dist-hook to generate

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 copying

Re: Does Xorg need the kernel's DRM?

2009-04-22 Thread Jeremy Huddleston
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/ drm. Can you please be more specific about what you mean

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 some online

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 level

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

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

[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 KDE.

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-01

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

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:

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 working.

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 xorg module,

[ANNOUNCE] xinit 1.2.1

2010-03-15 Thread Jeremy Huddleston
are 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. git tag

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 limits.h --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

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

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:

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

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 be

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 process. I

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

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

2010-08-11 Thread Jeremy Huddleston
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, 2010 at 7:04 PM, Jeremy Huddleston jerem...@freedesktop.org wrote: On Aug 10, 2010, at 14:26, Ratin wrote: There are not many apps running, Xorg client

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). This new

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? X not

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 upperlimit

Re: patch: libXt-1.0.8 fix possible array overflow

2010-09-24 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(String) );

[ANNOUNCE] xorg-server 1.9.0.901

2010-10-01 Thread Jeremy Huddleston
. 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 XQuartz

[ANNOUNCE] xorg-server 1.9.0.902

2010-10-15 Thread Jeremy Huddleston
in 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 assigned

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

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

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

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 suited

[ANNOUNCE] xorg-server 1.9.2

2010-10-31 Thread Jeremy Huddleston
. This 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.freedesktop.org

[ANNOUNCE] xorg-server 1.9.2.901 (1.9.3 RC1)

2010-11-13 Thread Jeremy Huddleston
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): fix a sign

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 instruction in

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... duck / ... 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

Re: [PATCH 1/5] build: use AC_CONFIG_MACRO_DIR as per libtoolize warning

2010-11-29 Thread Jeremy Huddleston
suggesting that you add AC_CONFIG_MACRO_DIR([m4]) so that it will helpfully install it's m4 files there and attempt to make them persistent. Jeremy Huddleston asked not to do this a while back because it's then harder to replace the included libtool with the patched version on OSX. Not sure

Re: ANN: luit 20101128

2010-11-29 Thread Jeremy Huddleston
Thomas, why are you continuing your fork? I put in a lot of effort to merge your changes from the previous fork back into the master tree. That merge was just released last month as version 1.1.0: http://cgit.freedesktop.org/xorg/app/luit/ Can you please not confuse users by providing a fork

[ANNOUNCE] xorg-server 1.9.2.902

2010-12-04 Thread Jeremy Huddleston
number checks. Ferry Huberts (1): dix: do not use bit-wise operators on the boolean result of BitIsOn Jeremy Huddleston (9): XQuartz: Don't use bashism in uninstall-hook XQuartz dri: Don't check CoreGraphics version XQuartz: Remove existing localization files on install

[ANNOUNCE] xorg-server 1.9.3

2010-12-13 Thread Jeremy Huddleston
include. Fix screen number checks. Eric Anholt (1): Replace usage of DamageRegionAppend with DamageDamageRegion to fix reportAfter. Ferry Huberts (1): dix: do not use bit-wise operators on the boolean result of BitIsOn Jeremy Huddleston (14): DOC: Only build dtrace

Re: [ANNOUNCE] X11R7.6

2010-12-21 Thread Jeremy Huddleston
Thanks for all the effort Alan. That's a huge list of modules to push out. --Jeremy On Dec 20, 2010, at 16:27, Alan Coopersmith wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The X.Org Foundation and the global community of X.Org developers announce the release of X11R7.6 - Release

[ANNOUNCE] xorg-server 1.9.3.901 (1.9.4 RC1)

2011-01-08 Thread Jeremy Huddleston
. IDLETIME: Fix edge-case in IdleTimeBlockHandler Daniel Stone (1): GetTimeInMillis: Use CLOCK_MONOTONIC_COARSE where available Eoghan Sherry (1): Xi: Fix master button update when slave buttons are mapped. #24887 James Jones (1): Add and use SERVER_SYNC_*_VERSION Jeremy Huddleston (4

[ANNOUNCE] xorg-server 1.9.3.902

2011-01-30 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This is the release of xorg-serer 1.9.4 RC2. It has few changes since RC1, and if everything goes smoothly, this will be released as 1.9.4 in a week. Jeremy Huddleston (5): XQuartz: Bump version string to 2.6.1 XQuartz: Call

[ANNOUNCE] xrdb 1.0.8

2011-02-02 Thread Jeremy Huddleston
deprecated AC_HELP_STRING with AS_HELP_STRING man: remove trailing spaces and tabs config: move man pages into their own directory Jeremy Huddleston (2): Properly honor -nocpp xrdb 1.0.8 Ulrich Mueller (1): Call C preprocessor with -P option due to changed behaviour

[ANNOUNCE] xorg-server 1.9.4

2011-02-04 Thread Jeremy Huddleston
in IdleTimeBlockHandler Daniel Stone (1): GetTimeInMillis: Use CLOCK_MONOTONIC_COARSE where available Eoghan Sherry (1): Xi: Fix master button update when slave buttons are mapped. #24887 James Jones (1): Add and use SERVER_SYNC_*_VERSION Jeremy Huddleston (10): XQuartz: Just NSBeep

Re: Difference in clock MHz between X Server 1.5.2 X.Org X Server 1.9.4

2011-02-27 Thread Jeremy Huddleston
I'd recommend asking on the intel list: intel-...@lists.freedesktop.org On Feb 25, 2011, at 07:32, SD wrote: Dear All. I have ONE laptop with ONE hdd and 2 OS opensuse and fedora on it. When I boot opensuse LCD picture is perfect but is not on fedora. I spent many time to find

Re: [ANNOUNCE] xorg-server 1.9.4

2011-03-01 Thread Jeremy Huddleston
On Mar 1, 2011, at 10:57, Thierry Vignaud wrote: On 4 February 2011 21:06, Jeremy Huddleston jerem...@freedesktop.org wrote: xorg-server-1.9.4 is the fourth service release of the stable 1.9 server branch. With 1.10 around the corner, we have likely one more release before the branch

[ANNOUNCE] xorg-server 1.9.4.901

2011-03-04 Thread Jeremy Huddleston
: Fix GetDrawableContext xfree86: If the driver found modes on an output, don't add more Erkki Seppälä (1): record: avoid crash when calling RecordFlushReplyBuffer recursively Evan Broder (1): xfree86/modes: Be sure to only use new EDID for physical output dimensions Jeremy

[ANNOUNCE] libXt 1.1.0

2011-03-04 Thread Jeremy Huddleston
, minor upgrade, quote and layout configure.ac Jeremy Huddleston (2): darwin: Don't use poll() when expected to run on darwin10 and prior configure: Bump version to 1.1.0 for release walter harms (4): XtFree() can handle NULL , remove check src/Resource.c: Fix possible NULL

Re: implement X11 server on Apple iOS

2011-03-05 Thread Jeremy Huddleston
I'm sure some of XQuartz will probably work for you, but for the most part it's completely different... you'd probably be better off writing a new DDX from scratch. On Mar 5, 2011, at 14:46, Han wrote: Hi, I'd like to use/implement X11 server on my iPad for remotely running one of my

[ANNOUNCE] xorg-server 1.9.5

2011-03-17 Thread Jeremy Huddleston
: Fixed memory leak in xf86InitialConfiguration Evan Broder (1): xfree86/modes: Be sure to only use new EDID for physical output dimensions Jeremy Huddleston (9): XQuartz: Add LSApplicationCategoryType key to Info.plist XQuartz: Localization Updates XQuartz: RandR: Capture

[ANNOUNCE] libX11 1.4.2

2011-03-17 Thread Jeremy Huddleston
the book id to match the xml file basename Jamey Sharp (2): Ignore user locks after sleeping in _XReply and _XReadEvents. Call _XErrorFunction without holding the Display lock. Jeremy Huddleston (1): configure.ac: Bump version to 1.4.2 Matt Dew (1): Remove literal tags from

  1   2   >