[ANNOUNCEMENT] freerdp 2.0.0-0.3.20170419git

2017-05-01 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution:

* freerdp-2.0.0-0.3.20170419git
* libfreerdp2_2-2.0.0-0.3.20170419git
* libfreerdp2-devel-2.0.0-0.3.20170419git
* libwinpr2_2-2.0.0-0.3.20170419git
* libwinpr2-devel-2.0.0-0.3.20170419git

FreeRDP is a successor to rdesktop, a longtime-favored application for use 
on *nix systems to access Windows servers and workstations. The goal of 
FreeRDP is twofold: a more complete support of keyboard layouts; and 
support of newer Remote Desktop Protocol (RDP) features found in the 
Windows 6.0 (Vista/2008) and newer environments.

This is an update to a more recent snapshot.

--
Yaakov

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



[ANNOUNCEMENT] mesa 17.0.5-1

2017-05-01 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution:

* dri-drivers-17.0.5-1
* libglapi0-17.0.5-1
* libGL1-17.0.5-1
* libGL-devel-17.0.5-1
* libOSMesa8-17.0.5-1
* libOSMesa-devel-17.0.5-1
* libEGL1-17.0.5-1
* libEGL-devel-17.0.5-1
* libGLESv2_2-17.0.5-1
* libGLESv2-devel-17.0.5-1
* windowsdriproto-17.0.5-1

Mesa is an open-source implementation of the OpenGL, OpenGL ES, and EGL 
specifications for rendering interactive 3D graphics.

Complete documentation on OpenGL usage and configuration can be found here:

http://x.cygwin.com/docs/ug/using-glx.html

This is an update to the latest upstream stable release:

https://www.mesa3d.org/relnotes/17.0.4.html
https://www.mesa3d.org/relnotes/17.0.5.html

--
Yaakov

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



How to debug XWin starting only sometimes?

2017-05-01 Thread Leon Meier
When starting "XWin Server" though the windows shortcut, it sometimes 
won't start; other times it will.


The shortcut command line is

C:\cygwin64\bin\run.exe --quote /usr/bin/bash.exe -l -c "cd; exec 
/usr/bin/startxwin"


which is executed in directory cygwin64.

The current contents of .xsession-errors is

[
** Message: couldn't connect to dbus session bus: Verbindung ist geschlossen
** Message: couldn't connect to dbus session bus: Verbindung ist geschlossen
** Message: couldn't connect to dbus session bus: Verbindung ist geschlossen
Socket /tmp/fam-admin/fam- has wrong permissions
]

As you can imagine, the directory /tmp/fam-admin contains no files at all.

Starting startxwin from mintty actually succeeds (always or at least 
more often than starting through the shortcut).


The only suspicious lines found in /var/log/xwin/XWin.0.log are

[  1106.609] pixelFormat 36: has 1 overlay, 0 underlays which aren't 
currently handledgetAttrValue failed to find attr 0x2039, using default 
value 0

[  1106.609] getAttrValue failed to find attr 0x203b, using default value 0
...
[  1106.609] pixelFormat 71: has 1 overlay, 0 underlays which aren't 
currently handledgetAttrValue failed to find attr 0x2039, using default 
value 0

[  1106.609] getAttrValue failed to find attr 0x203b, using default value 0
...
[  1294,453] SetupSysMenu: GetSystemMenu() failed for HWND 0x2027a
[  1309,640] IsOverrideRedirect: Failed to get window attributes
[  1311,687] OS has icon alpha channel support: yes
[  1353,109] SetupSysMenu: GetSystemMenu() failed for HWND 0x50374
[  1359,250] SetupSysMenu: GetSystemMenu() failed for HWND 0x50330
[  1367,859] winTopLevelWindowProc - WM_DESTROY - WM_WM_KILL
[  1378,000] SetupSysMenu: GetSystemMenu() failed for HWND 0x1c0466


In /var/log/xwin/XWin.0.log.old we see

[   775,375] winMultiWindowXMsgProc - Fatal error 1 on xcb connection

In /var/log/xwin/XWin.1.log we see

[  1523,000] winMultiWindowXMsgProc - Fatal error 1 on xcb connection

In /var/log/xwin/XWin.1.log.old we see

[  1583,187] winMultiWindowXMsgProcErrorHandler - ERROR: BadMatch 
(invalid parameter attributes)


Any hints who may be the culprit and/or how to debug the issue?

Thanks in advance,
Leon

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Re: Time zone bug

2017-05-01 Thread cyg Simple
On 4/30/2017 7:19 PM, Steven Penny wrote:
> On Sun, 30 Apr 2017 17:37:00, Ken Brown wrote:
>> As a result of a failing emacs test, I came across the following:
>>
>> $ TZ='NZST-12NZDT,M9.5.0,M4.1.0/3' date -d@0 +'%Y-%m-%d %H:%M:%S %z (%Z)'
>> 1970-01-01 12:00:00 +1200 (NZST)
>>
>> The same command on Linux yields "1970-01-01 13:00:00 +1300 (NZDT)",
>> which is
>> correct according to Paul Eggert
>> (https://lists.gnu.org/archive/html/emacs-devel/2017-04/msg00881.html).
> 
> I concur, here is non-esoteric example Linux:
> 
>$ TZ=Pacific/Auckland date +%Z
>NZST
> 
>$ TZ=NZST date +%Z
>NZST
> 
>$ TZ=NZDT date +%Z
>NZDT
> 
> Cygwin:
> 
>$ TZ=Pacific/Auckland date +%Z
>NZST
> 
>$ TZ=NZST date +%Z
>GMT
> 
>$ TZ=NZDT date +%Z
>GMT

The TZ value doesn't matter.

$ TZ=America/New_York date +%Z
EDT

$ TZ=EDT date +%Z
GMT

-- 
cyg Simple

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Re: Time zone bug

2017-05-01 Thread Brian Inglis
On 2017-05-01 09:25, cyg Simple wrote:
> On 4/30/2017 7:19 PM, Steven Penny wrote:
>> On Sun, 30 Apr 2017 17:37:00, Ken Brown wrote:
>>> As a result of a failing emacs test, I came across the following:
>>>
>>> $ TZ='NZST-12NZDT,M9.5.0,M4.1.0/3' date -d@0 +'%Y-%m-%d %H:%M:%S %z (%Z)'
>>> 1970-01-01 12:00:00 +1200 (NZST)
>>>
>>> The same command on Linux yields "1970-01-01 13:00:00 +1300 (NZDT)",
>>> which is
>>> correct according to Paul Eggert
>>> (https://lists.gnu.org/archive/html/emacs-devel/2017-04/msg00881.html).

This may be a problem in: 

winsup/cygwin/localtime.cc

not properly handling POSIX time zone specs in the S hemisphere, with DST 
which starts in autumn/fall and ends in spring, at the start of the time_t 
epoch, where the first DST transition happens with negative time_t. 

Neither localtime nor mktime on Cygwin properly handle these rules where 
both localtime and mktime on Linux do - STC and sdiff attached. 

On Linux, even if you comment out the localtime call, mktime sets the 
offset correctly; on Cygwin even using localtime and mktime fails to set 
the offset at 1970-01-01 correctly. 

Cygwin awk strftime also shows the same issue where Linux is also correct.

>> I concur, here is non-esoteric example Linux:
>>$ TZ=Pacific/Auckland date +%Z
>>NZST
>>$ TZ=NZST date +%Z
>>NZST
>>$ TZ=NZDT date +%Z
>>NZDT
>> Cygwin:
>>$ TZ=Pacific/Auckland date +%Z
>>NZST
>>$ TZ=NZST date +%Z
>>GMT
>>$ TZ=NZDT date +%Z
>>GMT

This is just a slight difference in handling POSIX time zone specs 
with no explicit offset specified - the basic format is std offset. 
If you provide only a std abbr with no offset, Cygwin defaults to 
GMT, where Linux uses the abbr and sets the offset to zero. Both 
behave identically if you specify a +-offset:

$ TZ=XXX date +"%F %a %R%z(%Z)"; TZ=XXX0 date +"%F %a %R%z(%Z)"
2017-05-01 Mon 17:13+(GMT)
2017-05-01 Mon 17:13+(XXX)
$ ssh ... 'TZ=XXX date +"%F %a %R%z(%Z)"; TZ=XXX0 date +"%F %a %R%z(%Z)"'
2017-05-01 Mon 17:13+(XXX)
2017-05-01 Mon 17:13+(XXX)

depends whether you prefer to see the same answer or the smart answer ;^>

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada
NZST-12NZDT,M9.5.0,M4.1.0/3 NZST-12NZDT,M9.5.0,M4.1.0/3

1970-01-01 001 4   00:00+s(GMT) gm  1970-01-01 001 4   
00:00+s(GMT) gm
1970-01-01 001 4   13:00+1300d(NZDT)local | 1970-01-01 001 4   
12:00+1200s(NZST)local
1970-01-01 001 4   13:00+1300d(NZDT)mk| 1970-01-01 001 4   
12:00+1200s(NZST)mk
1970-01-01 001 Thu 13:00+1300 (NZDT)  | 1970-01-01 001 Thu 12:00+1200 
(NZST)

1970-04-04 094 6   13:00+s(GMT) gm  1970-04-04 094 6   
13:00+s(GMT) gm
1970-04-05 095 0   02:00+1300d(NZDT)local | 1970-04-05 095 0   
01:00+1200s(NZST)local
1970-04-05 095 0   02:00+1300d(NZDT)mk| 1970-04-05 095 0   
01:00+1200s(NZST)mk
1970-04-05 095 Sun 02:00+1300 (NZDT)  | 1970-04-05 095 Sun 01:00+1200 
(NZST)

1970-04-04 094 6   14:00+s(GMT) gm  1970-04-04 094 6   
14:00+s(GMT) gm
1970-04-05 095 0   02:00+1200s(NZST)local   1970-04-05 095 0   
02:00+1200s(NZST)local
1970-04-05 095 0   02:00+1200s(NZST)mk  1970-04-05 095 0   
02:00+1200s(NZST)mk
1970-04-05 095 Sun 02:00+1200 (NZST)1970-04-05 095 Sun 02:00+1200 
(NZST)

1970-09-26 269 6   13:00+s(GMT) gm  1970-09-26 269 6   
13:00+s(GMT) gm
1970-09-27 270 0   01:00+1200s(NZST)local   1970-09-27 270 0   
01:00+1200s(NZST)local
1970-09-27 270 0   01:00+1200s(NZST)mk  1970-09-27 270 0   
01:00+1200s(NZST)mk
1970-09-27 270 Sun 01:00+1200 (NZST)1970-09-27 270 Sun 01:00+1200 
(NZST)

1970-09-26 269 6   14:00+s(GMT) gm  1970-09-26 269 6   
14:00+s(GMT) gm
1970-09-27 270 0   03:00+1300d(NZDT)local   1970-09-27 270 0   
03:00+1300d(NZDT)local
1970-09-27 270 0   03:00+1300d(NZDT)mk  1970-09-27 270 0   
03:00+1300d(NZDT)mk
1970-09-27 270 Sun 03:00+1300 (NZDT)1970-09-27 270 Sun 03:00+1300 
(NZDT)

1971-01-01 001 5   00:00+s(GMT) gm  1971-01-01 001 5   
00:00+s(GMT) gm
1971-01-01 001 5   13:00+1300d(NZDT)local   1971-01-01 001 5   
13:00+1300d(NZDT)local
1971-01-01 001 5   13:00+1300d(NZDT)mk  1971-01-01 001 5   
13:00+1300d(NZDT)mk
1971-01-01 001 Fri 13:00+1300 (NZDT)1971-01-01 001 Fri 13:00+1300 
(NZDT)

1971-04-03 093 6   13:00+s(GMT) gm  1971-04-03 093 6   
13:00+s(GMT) gm
1971-04-04 094 0   02:00+1300d(NZDT)local   1971-04-04 094 0   
02:00+1300d(NZDT)local
1971-04-04 094 0   02:00+1300d(NZDT)mk  1971-04-04 094 0   
02:00+1300d(NZDT)mk
1971-04-04 094 Sun 02:00+1300 (NZDT)1971-04-04 094 Sun 02:00+1300 
(NZDT)

1971-04-03 093 6   14:00+s(GMT) gm  1971-04-03 093 6   
14:00+s(GMT) gm
1971-04-04 094 0   02:00+1200s(NZST)lo

Re: [ANNOUNCEMENT] Updated: sqlite3-3.16.2-1 for Cygwin/Cygwin64

2017-05-01 Thread Nem W Schlecht
On Tue, Jan 31, 2017 at 3:17 AM, Jan Nijtmans  wrote:
>
> SQLite is a software library that implements a self-contained,
> serverless, zero-configuration, transactional SQL database engine
>
> Changes since 3.15.2-1
> =
> * Update to upstream SQLite 3.16.2.
> 

I don't see an update announcement for SQLite beyond this one, but its
now at 3.18.0-1 and the readline library was *NOT* compiled into it,
so there's no decent command line editing.  I backed mine out to
3.16.2-1, but whomever is maintaining this, it would be nice if
readline was included and a new release of 3.18 was made.

Thanks!!

-- 
Nem W Schlecht
"Perl did the magic. I just waved the wand."

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



[ANNOUNCEMENT] Updated: hwloc 1.11.7-1

2017-05-01 Thread Marco Atzeri

Version 1.11.7-1  of packages

  hwloc
  libhwloc-devel
  libhwloc5

are available in the Cygwin distribution:

CHANGES
Upstream bugfix release

Full upstream changes:
https://mail-archive.com/hwloc-announce@lists.open-mpi.org/msg00098.html

DESCRIPTION
The Portable Hardware Locality (hwloc) software package provides a portable
abstraction (across OS, versions, architectures, ...) of the hierarchical
topology of modern architectures, including NUMA memory nodes, sockets,
shared caches, cores and simultaneous multithreading.

HOMEPAGE
http://www.open-mpi.org/projects/hwloc/

Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Re: How to debug XWin starting only sometimes?

2017-05-01 Thread Ian Lambert via cygwin


On May 1, 2017 11:19:59 AM EDT, Leon Meier  wrote:
>
>Starting startxwin from mintty actually succeeds (always or at least 
>more often than starting through the shortcut).


This has been my experience as well. Not much recently, but now and then the 
black X appears, but the xdg-menu does not. Kill everything, start over, and it 
works. I don't use the start menu X shortcut, only mintty, then startxwin.


-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



[ANNOUNCEMENT] MATE Desktop 1.18

2017-05-01 Thread Yaakov Selkowitz

The following packages have been uploaded to the Cygwin distribution:

* atril-1.18.0-1
* caja-1.18.2-1
* caja-extensions-1.18.1-1
* caja-python-1.18.0-1
* engrampa-1.18.1-1
* eom-1.18.1-1
* libmatekbd-1.18.2-1
* libmatemixer-1.18.0-1
* libmateweather-1.18.0-1
* marco-1.18.0-1
* mate-applets-1.18.1-1
* mate-backgrounds-1.18.0-1
* mate-calc-1.18.0-1
* mate-common-1.18.0-1
* mate-control-center-1.18.1-1
* mate-desktop-1.18.0-1
* mate-dictionary-1.18.1-1
* mate-disk-usage-analyzer-1.18.1-1
* mate-font-viewer-1.18.1-1
* mate-icon-theme-1.18.2-1
* mate-indicator-applet-1.18.0-1
* mate-media-1.18.0-1
* mate-menus-1.18.0-1
* mate-notification-daemon-1.18.0-1
* mate-panel-1.18.1-1
* mate-screenshot-1.18.1-1
* mate-search-tool-1.18.1-1
* mate-session-manager-1.18.0-1
* mate-settings-daemon-1.18.1-1
* mate-system-log-1.18.1-1
* mate-system-monitor-1.18.0-1
* mate-terminal-1.18.0-1
* mate-themes-3.22.10-1
* mate-user-guide-1.18.0-1
* mate-user-share-1.18.0-1
* mozo-1.18.0-1
* pluma-1.18.1-1

The MATE Desktop Environment is the continuation of GNOME 2. It provides 
an intuitive and attractive desktop environment using traditional 
metaphors for Linux and other Unix-like operating systems.


This is an update to the latest upstream stable release:

https://mate-desktop.org/blog/2017-03-13-mate-1-18-released/

--
Yaakov

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple