Processed: your mail

2011-07-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 633824 https://bugs.freedesktop.org/show_bug.cgi?id=39108
Bug #633824 [xserver-xorg-video-intel] xserver-xorg-video-intel: [Arrandale] 
Regression: X freezes on start when external monitor connected via dock with 
2.6.39 and newer kernels
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=39108'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
633824: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633824
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13106263535569.transcr...@bugs.debian.org



mesa: Changes to 'upstream-experimental'

2011-07-14 Thread Christopher Halse Rogers
 Makefile|4 
 src/gallium/auxiliary/gallivm/lp_bld_debug.cpp  |   12 +-
 src/gallium/drivers/i915/i915_batch.h   |   18 +++-
 src/gallium/drivers/i915/i915_clear.c   |5 +
 src/gallium/drivers/i915/i915_context.h |2 
 src/gallium/drivers/i915/i915_flush.c   |1 
 src/gallium/drivers/i915/i915_prim_emit.c   |2 
 src/gallium/drivers/i915/i915_prim_vbuf.c   |3 
 src/gallium/drivers/i915/i915_state.c   |2 
 src/gallium/drivers/i915/i915_state_emit.c  |   34 ---
 src/gallium/drivers/i915/i915_winsys.h  |6 +
 src/gallium/drivers/r600/r600.h |3 
 src/gallium/drivers/r600/r600_blit.c|2 
 src/gallium/drivers/r600/r600_query.c   |5 -
 src/gallium/drivers/r600/r600_shader.c  |   45 ++
 src/gallium/winsys/i915/drm/i915_drm_buffer.c   |   10 ++
 src/gallium/winsys/r600/drm/r600_hw_context.c   |   24 +++--
 src/glsl/ast_to_hir.cpp |2 
 src/glsl/ir_print_visitor.cpp   |   10 ++
 src/glsl/linker.cpp |  108 
 src/glsl/lower_if_to_cond_assign.cpp|4 
 src/glsl/opt_constant_propagation.cpp   |   17 +++
 src/mesa/drivers/dri/intel/intel_pixel_bitmap.c |7 -
 src/mesa/main/version.h |2 
 src/mesa/program/ir_to_mesa.cpp |   28 ++
 src/mesa/state_tracker/st_format.c  |   35 ++-
 26 files changed, 273 insertions(+), 118 deletions(-)

New commits:
commit b033f050fd5179b051181a0a4b6d94110624d25c
Author: Ian Romanick ian.d.roman...@intel.com
Date:   Fri Jul 8 18:47:21 2011 -0700

mesa: Fix the parsers build rule so that 'make tarballs' can work

You'd think that with all the commit messages about adding stuff to
tarballs or fixing 'make tarballs' that someone would have noticed
that it was completely broken for 4 months (3158cc7).

diff --git a/Makefile b/Makefile
index 09b1e98..abdeb79 100644
--- a/Makefile
+++ b/Makefile
@@ -463,7 +463,7 @@ parsers: configure
-@touch $(TOP)/configs/current
$(MAKE) -C src/glsl glsl_parser.cpp glsl_parser.h glsl_lexer.cpp
$(MAKE) -C src/glsl/glcpp glcpp-lex.c glcpp-parse.c glcpp-parse.h
-   $(MAKE) -C src/mesa/program lex.yy.c program_parse.tab.c 
program_parse.tab.h
+   $(MAKE) -C src/mesa program/lex.yy.c program/program_parse.tab.c 
program/program_parse.tab.h
 
 # Everything for new a Mesa release:
 ARCHIVES = $(LIB_NAME).tar.gz \

commit c66982f7dcb3670b4bb8f19290dd0d74c84ab600
Author: Ian Romanick ian.d.roman...@intel.com
Date:   Fri Jul 8 18:26:39 2011 -0700

mesa: Bump version to 7.11-rc1

diff --git a/Makefile b/Makefile
index 131e578..09b1e98 100644
--- a/Makefile
+++ b/Makefile
@@ -183,7 +183,7 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-VERSION=7.11-devel
+VERSION=7.11-rc1
 DIRECTORY = Mesa-$(VERSION)
 LIB_NAME = MesaLib-$(VERSION)
 GLUT_NAME = MesaGLUT-$(VERSION)
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 2e63358..0ce78aa 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -35,7 +35,7 @@ struct gl_context;
 #define MESA_MAJOR 7
 #define MESA_MINOR 11
 #define MESA_PATCH 0
-#define MESA_VERSION_STRING 7.11-devel
+#define MESA_VERSION_STRING 7.11-rc1
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a)  16) + ((b)  8) + (c))

commit 530c68d616dd2fb9fc5252f41877d5587fbaff17
Author: Ian Romanick ian.d.roman...@intel.com
Date:   Thu Jun 2 12:42:48 2011 -0700

glsl: Fix depth unbalancing problem in if-statement flattening

Previously, if max_depth were 1, the following code would see the
first if-statement (correctly) not get flattened, but the second
if-statement would (incorrectly) get flattened:

void main()
{
if (a)
gl_Position = vec4(0);

if (b)
gl_Position = vec4(1);
}

This is because the visit_leave(ir_if*) method would not decrement the
depth before returning on the first if-statement.

NOTE: This is a candidate for the 7.10 and 7.11 branches.

Reviewed-by: Kenneth Graunke kenn...@whitecape.org
(cherry picked from commit d2c6cef18aa37d197eb323a0795969d271d02819)

diff --git a/src/glsl/lower_if_to_cond_assign.cpp 
b/src/glsl/lower_if_to_cond_assign.cpp
index e3a1065..b637eb4 100644
--- a/src/glsl/lower_if_to_cond_assign.cpp
+++ b/src/glsl/lower_if_to_cond_assign.cpp
@@ -149,11 +149,9 @@ ir_visitor_status
 ir_if_to_cond_assign_visitor::visit_leave(ir_if *ir)
 {
/* Only flatten when beyond the GPU's maximum supported nesting depth. */
-   if (this-depth = this-max_depth)
+   if (this-depth-- = this-max_depth)
   return visit_continue;
 
-   this-depth--;
-
bool found_control_flow = false;
ir_variable *cond_var;
ir_assignment *assign;

commit 

Bug#586312: Same problem on linux 2.6.38 (Ubuntu server 64bit)

2011-07-14 Thread Arnuschky
Hi,

same problem here:

[2.669272] irq 18: nobody cared (try booting with the irqpoll option)
[2.669278] Pid: 191, comm: modprobe Not tainted 2.6.38-8-server #42-Ubuntu
[2.669281] Call Trace:
[2.669283]  IRQ  [810d478b] ? __report_bad_irq.clone.2+0x2b/0xa0
[2.669299]  [810d4b8a] ? note_interrupt+0x19a/0x1e0
[2.669304]  [8106d3e9] ? __do_softirq+0xf9/0x1c0
[2.669308]  [810d5a7d] ? handle_fasteoi_irq+0xdd/0x110
[2.669313]  [8100e982] ? handle_irq+0x22/0x40
[2.669318]  [815df97d] ? do_IRQ+0x5d/0xe0
[2.669323]  [815d7cd3] ? ret_from_intr+0x0/0x15
[2.669325]  EOI  [812e4add] ? delay_tsc+0x3d/0x80
[2.669334]  [812e4aea] ? delay_tsc+0x4a/0x80
[2.669338]  [812e4a3e] ? __const_udelay+0x2e/0x30
[2.669379]  [a015ccee] ? radeon_set_pll.clone.4+0x52e/0xb20 
[radeon]
[2.669410]  [a015da3c] ? radeon_crtc_mode_set+0x3c/0x160 [radeon]
[2.669419]  [a00b05c3] ? drm_crtc_helper_set_mode+0x343/0x4e0 
[drm_kms_helper]
[2.669423]  [815d7cce] ? common_interrupt+0xe/0x13
[2.669430]  [a00b147d] ? drm_crtc_helper_set_config+0x84d/0xa10 
[drm_kms_helper]
[2.669435]  [815d5f01] ? mutex_lock+0x1/0x50
[2.669440]  [a00af22c] ? drm_fb_helper_set_par+0x7c/0xf0 
[drm_kms_helper]
[2.669444]  [8132ebd0] ? fbcon_init+0x650/0x6c0
[2.669449]  [8139810f] ? visual_init+0xcf/0x180
[2.669453]  [813987bc] ? bind_con_driver+0x1cc/0x410
[2.669456]  [81398b81] ? take_over_console+0x61/0x70
[2.669460]  [81329a73] ? fbcon_takeover+0x63/0xc0
[2.669463]  [8132f3bd] ? fbcon_event_notify+0x4dd/0x550
[2.669468]  [815db8ed] ? notifier_call_chain+0x4d/0x70
[2.669473]  [8108d588] ? __blocking_notifier_call_chain+0x58/0x80
[2.669478]  [813246f9] ? fb_add_videomode+0x89/0xf0
[2.669482]  [8108d5c6] ? blocking_notifier_call_chain+0x16/0x20
[2.669486]  [8131e00b] ? fb_notifier_call_chain+0x1b/0x20
[2.669490]  [8131f5d8] ? register_framebuffer+0x1d8/0x2b0
[2.669495]  [a00af4f2] ? 
drm_fb_helper_single_fb_probe+0x252/0x2f0 [drm_kms_helper]
[2.669501]  [a00af684] ? drm_fb_helper_initial_config+0xf4/0x120 
[drm_kms_helper]
[2.669533]  [a0170e8a] ? radeon_fbdev_init+0xca/0x120 [radeon]
[2.669564]  [a016a746] ? radeon_modeset_init+0x226/0x250 [radeon]
[2.669591]  [a0143048] ? radeon_driver_load_kms+0x118/0x1a0 
[radeon]
[2.669610]  [a004ea3e] ? drm_get_pci_dev+0x18e/0x300 [drm]
[2.669615]  [81154e8f] ? kmem_cache_alloc_trace+0xef/0x110
[2.669645]  [a01d36be] ? radeon_pci_probe+0xb2/0xba [radeon]
[2.669649]  [812ff26f] ? local_pci_probe+0x5f/0xd0
[2.669653]  [81300b69] ? pci_device_probe+0x129/0x130
[2.669659]  [813bab9a] ? driver_sysfs_add+0x7a/0xb0
[2.669662]  [813bacc8] ? really_probe+0x68/0x190
[2.669666]  [813bafd5] ? driver_probe_device+0x45/0x70
[2.669670]  [813bb0ab] ? __driver_attach+0xab/0xb0
[2.669673]  [813bb000] ? __driver_attach+0x0/0xb0
[2.669677]  [813b9e4e] ? bus_for_each_dev+0x5e/0x90
[2.669681]  [813bab1e] ? driver_attach+0x1e/0x20
[2.669684]  [813ba685] ? bus_add_driver+0xc5/0x280
[2.669707]  [a0219000] ? radeon_init+0x0/0x1000 [radeon]
[2.669711]  [813bb346] ? driver_register+0x76/0x140
[2.669733]  [a0219000] ? radeon_init+0x0/0x1000 [radeon]
[2.669736]  [812ff916] ? __pci_register_driver+0x56/0xd0
[2.669748]  [a004ef54] ? drm_pci_init+0xe4/0xf0 [drm]
[2.669770]  [a0219000] ? radeon_init+0x0/0x1000 [radeon]
[2.669780]  [a00465f8] ? drm_init+0x58/0x70 [drm]
[2.669802]  [a02190c4] ? radeon_init+0xc4/0x1000 [radeon]
[2.669807]  [81002175] ? do_one_initcall+0x45/0x190
[2.669812]  [810a472b] ? sys_init_module+0xfb/0x250
[2.669816]  [8100bfc2] ? system_call_fastpath+0x16/0x1b
[2.669818] handlers:
[2.669820] [81449f30] (usb_hcd_irq+0x0/0x80)
[2.669826] [a0172ae0] (radeon_driver_irq_handler_kms+0x0/0x20 
[radeon])
[2.669858] Disabling IRQ #18

I found a maybe related post at the LKML:
https://lkml.org/lkml/2011/5/2/271

Seems all to be quite recent (2011), so I assume it's quite a new
problem with the radeon driver. 



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110714115957.348572c4@edison



Bug#633849: xserver-xorg: XKB settings lost after suspend (hibernate) / resume

2011-07-14 Thread Vincent Lefevre
Package: xserver-xorg
Version: 1:7.6+7
Severity: normal

I have personal XKB settings. From my .initrc file:

  xkbcomp -w0 -I$HOME/.xkb -R$HOME/.xkb keymap/custom $DISPLAY

They are lost after suspend (hibernate) / resume.

Possible related bugs:

 #541388  xserver-xorg: Xmodmap settings lost across suspend/hibernate
 #568868  key repeat for caps lock goes away after suspend/resume
 #582566  bell settings (xset -b) not preserved after suspend/resume


-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 2009-06-04 16:13:46 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1957728 2011-07-02 12:07:20 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
01:00.0 VGA compatible controller [0300]: nVidia Corporation G98M [Quadro NVS 
160M] [10de:06eb] (rev a1)

/etc/X11/xorg.conf does not exist.

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 2.6.39-2-amd64 (Debian 2.6.39-3) (b...@decadent.org.uk) (gcc 
version 4.4.6 (Debian 4.4.6-6) ) #1 SMP Tue Jul 5 02:51:22 UTC 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 34996 2011-07-14 13:32:26 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[725909.102] 
X.Org X Server 1.10.2.902 (1.10.3 RC 2)
Release Date: 2011-07-01
[725909.102] X Protocol Version 11, Revision 0
[725909.102] Build Operating System: Linux 2.6.39-2-amd64 x86_64 Debian
[725909.102] Current Operating System: Linux xvii 2.6.39-2-amd64 #1 SMP Tue Jul 
5 02:51:22 UTC 2011 x86_64
[725909.102] Kernel command line: root=/dev/mapper/xvii-root ro quiet
[725909.102] Build Date: 02 July 2011  10:05:17AM
[725909.102] xorg-server 2:1.10.2.902-1 (Cyril Brulebois k...@debian.org) 
[725909.102] Current version of pixman: 0.22.2
[725909.102]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[725909.102] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[725909.102] (==) Log file: /var/log/Xorg.0.log, Time: Thu Jul 14 13:32:24 
2011
[725909.103] (==) Using system config directory /usr/share/X11/xorg.conf.d
[725909.103] (==) No Layout section.  Using the first Screen section.
[725909.103] (==) No screen section available. Using defaults.
[725909.103] (**) |--Screen Default Screen Section (0)
[725909.103] (**) |   |--Monitor default monitor
[725909.103] (==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
[725909.103] (==) Automatically adding devices
[725909.103] (==) Automatically enabling devices
[725909.103] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[725909.103]Entry deleted from font path.
[725909.103] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[725909.103] (==) ModulePath set to /usr/lib/xorg/modules
[725909.103] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[725909.103] (II) Loader magic: 0x7d7f40
[725909.103] (II) Module ABI versions:
[725909.103]X.Org ANSI C Emulation: 0.4
[725909.103]X.Org Video Driver: 10.0
[725909.103]X.Org XInput driver : 12.2
[725909.103]X.Org Server Extension : 5.0
[725909.104] (--) PCI:*(0:1:0:0) 10de:06eb:1028:0233 rev 161, Mem @ 
0xf500/16777216, 0xe000/268435456, 0xf200/33554432, I/O @ 
0xdf00/128, BIOS @ 0x/131072
[725909.104] (II) Open ACPI successful (/var/run/acpid.socket)
[725909.104] (II) LoadModule: extmod
[725909.104] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[725909.105] (II) Module extmod: vendor=X.Org Foundation
[725909.105]compiled for 1.10.2.902, module version = 1.0.0
[725909.105]Module class: X.Org Server Extension
[725909.105]ABI class: X.Org Server Extension, version 5.0
[725909.105] (II) Loading extension SELinux
[725909.105] (II) Loading extension MIT-SCREEN-SAVER
[725909.105] (II) Loading extension XFree86-VidModeExtension
[725909.105] (II) Loading extension XFree86-DGA
[725909.105] (II) Loading extension DPMS
[725909.105] (II) Loading extension XVideo
[725909.105] (II) Loading extension XVideo-MotionCompensation
[725909.105] (II) Loading 

Processed: libegl1-mesa: libEGL warning: failed to create DRM screen

2011-07-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 633612 libdrm-intel1
Bug #633612 [libegl1-mesa] libegl1-mesa: libEGL warning: failed to create DRM 
screen
Bug reassigned from package 'libegl1-mesa' to 'libdrm-intel1'.
Bug No longer marked as found in versions mesa/7.10.3-3.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
633612: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633612
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.131069060327046.transcr...@bugs.debian.org



Processed: libegl1-mesa: libEGL warning: failed to create DRM screen

2011-07-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 affects 633612 libegl1-mesa
Bug #633612 [libdrm-intel1] libegl1-mesa: libEGL warning: failed to create DRM 
screen
Added indication that 633612 affects libegl1-mesa

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
633612: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633612
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.131069237032537.transcr...@bugs.debian.org



Bug#624548: More info for #624548

2011-07-14 Thread Pigeon

Hi all,

I have the same problem for a quite while now. The first time
was running urxvt as mentioned by others.

I also found that clicking on a qt dropdown list (so that
it pops up the list of items for you to choose) will cause a crash too.
Tested with qtconfig-qt4 and skype. The backtrace from Xorg is pretty
much the same as running urxvt:

Backtrace:
0: Xorg (xorg_backtrace+0x26) [0x4a3836]
1: Xorg (0x40+0x65049) [0x465049]
2: /lib/x86_64-linux-gnu/libpthread.so.0 (0x7fabbf523000+0xf020)
[0x7fabbf532020]
3: Xorg (doListFontsWithInfo+0x10b) [0x43372b]
4: Xorg (ProcessWorkQueue+0x21) [0x436eb1]
5: Xorg (WaitForSomething+0x65) [0x45e745]
6: Xorg (0x40+0x32a92) [0x432a92]
7: Xorg (0x40+0x26fae) [0x426fae]
8: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xfd)
[0x7fabbe25cead]
9: Xorg (0x40+0x2729d) [0x42729d]


I'm using nvidia with the proprietary driver btw.


Pigeon.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110715111758.61334...@saba.fluffyspider.com.au



xterm-271

2011-07-14 Thread Thomas Dickey
Patch #271 - 2011/07/14

 * omit  permissions  adjustments to pty on exit except for pre-Unix98
   ptys,  since  modern  implementations handle this (report by Sean C
   Farley).
 * modify  logic  for  switching  fonts  between  UTF-8  and non-UTF-8
   encoding  to  not  merge  the  derivable  bold-, wide- and widebold
   values  from  the VT100 fonts. Also suppress warning when not using
   UTF-8  fonts  if  wide-  and  widebold-fonts  cannot  be derived or
   otherwise loaded (report by Werner Scheinast).
 * modify  menu-creation  to suppress entries which will never be used
   in the current configuration, rather than simply disabling them.
 * add  resource  printModeImmediate  and  menu item to allow print of
   screen plus saved lines to a file.
 * add   menu   item   to   allow   runtime   enable/disable   of  the
   printFileOnXError feature.
 * append  a  timestamp to filename used in printFileOnXError feature,
   and restrict its permissions (request by Vincent Lefevre).
 * add  a check when cancelling cursor-blinking, in case the cursor is
   blinked  off.  Fix  so that the cursor is repainted without waiting
   for other events, e.g., keypress (report by Ailin Nemui).
 * add   configure   --with-app-class  option,  to  simplify  building
   xterm-dev  packages  with  filenames  that  do  not conflict with
   conventional xterm packages.
 * corrected  logic  flow  for  DECSCL,  which  prevented  the updated
   operating  level  from  being reported via DECRQSS (report by Ailin
   Nemui).
 * corrected default for brokenStringTerm resource to match manpage.
 * add vttests/dynamic.pl
 * add  runtime  check  for  locale  not supported by X libraries, and
   fallback to XA_STRING in this case (request by Bryan Henderson).
 * fix  a special case in configure script after no FreeType libraries
   are  found.  The  script  was  proceeding  to  check  for  a usable
   configuration.
 * add  xterm+tmux  building  block  to terminfo (adapted from changes
   proposed by Ailin Nemui and Nicholas Marriott).
 * improve  discussion  of  faceName resource in manpage (adapted from
   suggestions by Jens Schweikhardt).
 * correct   mapping   of   shifted  up/down  cursor-keys  in  termcap
   function-keys  mode,  i.e.,  resource  tcapFunctionKeys  (patch  by
   Gertjan Halkes).
 * update  AIX  case in CF_XOPEN_SOURCE configure macro to add release
   7.x.
 * modify  ifdef's  in  xterm_io.h for __hpux to force that to use the
   hacked  SYSV  support  in  that  file.  This fixes a problem with a
   non-blocking socket call (patch by Paul Lampert).
 * improve filtering of desktop category scanning, to exclude XFCE.
 * modify configure script to work with systems that have both ncurses
   (or  other  terminfo)  as  well  as  a  real termcap library, e.g.,
   Slackware (report by Alan Watts).
 * modify  configure  script  to work around special case where user's
   environment  adds  compiler  flags  to the CC variable (prompted by
   report by Paul Lampert).
 * amend  change for Debian #110226 so that -h or -v options cause
   an  exit, rather than simply printing to stdout while the window is
   displayed (Debian #629358).
 * add response for DECRQSS which gives the setting for DECSCUSR.
 * modify   AllocateTermColor()   to  handle  XtDefaultForeground  and
   XtDefaultBackground,  which  are not recognized by XParseColor. For
   example,  this  fixes  the  use  of OSC 112 when no explicit cursor
   color was set (report by Ailin Nemui).
 * handle  special-case  of  KeyPress  translated to popup-menu action
   (Ubuntu #756273).

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#459366: 2011 HONDA PROMOTION

2011-07-14 Thread HONDA COMPANY



Your email address has luckily won you 1,750,000.00 GBP.




--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/61c3ed7c05c155bb9aa6eaf6ce0dcc6d.squir...@www.ing.unp.edu.ar