[ANNOUNCEMENT] Updated: weechat-2.2-1

2018-07-30 Thread Sébastien Helleu
Version 2.2-1 of "weechat" has been uploaded.

ChangeLog:

https://weechat.org/files/changelog/ChangeLog-2.2.html

DESCRIPTION
WeeChat is a fast, light and extensible chat client. It runs on many platforms
like Linux, Unix, BSD, GNU Hurd, Mac OS X and Windows (bash/ubuntu and
cygwin).

HOMEPAGE
https://weechat.org/

Sébastien Helleu.

--
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: Cygwin X applications do not launch

2018-07-30 Thread Marco Atzeri

Am 30.07.2018 um 10:23 schrieb Jones, Michael:

Yes, xterm, uxterm and Cygwin terminal all run ok.

I don't see any output at all from "strace -o gedit.strace /usr/bin/gedit":


I assume you run it from xterm and not mintty, correct ?

Can you send me the gedit.strace by private mail ?


--
me@mycomputer  ~
$ strace -o gedit.strace /usr/bin/gedit

me@mycomputer  ~
$
--

I have attached the output from cygcheck (note that I have edited the
file to remove project and server names, replaced by "xxx").


fine. I have not seen anything strange on it.
What AntiVirus are you running ?



Regards,
Mike




---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft.
https://www.avast.com/antivirus


--
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: Cygwin X applications do not launch

2018-07-30 Thread Marco Atzeri

Am 30.07.2018 um 12:26 schrieb Jones, Michael:

Hi Marco,

Attached is the strace output. This was run from xterm.

My anti virus is Trend Micro OfficeScan.

Regards,
Mike



Hi Mike,

I think the AV is interfering.
A lot of Windows DLL's are loaded at very low addresses:

--- Process 10964 created
--- Process 10964 loaded C:\Windows\System32\ntdll.dll at 7786
--- Process 10964 loaded C:\Windows\System32\kernel32.dll at
7774
--- Process 10964 loaded C:\Windows\System32\KernelBase.dll at
07fefd7e
--- Process 10964 loaded
C:\Windows\System32\tmumh\20019\AddOn\6.80.0.1007\TmUmEvt64.dll at
07fefc290
000
--- Process 10964 loaded C:\Windows\System32\psapi.dll at 77a0
[cut...]
--- Process 10964 loaded C:\Windows\System32\rpcrt4.dll at 07fefdfc
--- Process 10964 loaded
C:\Windows\System32\tmumh\20019\TmMon\1.6.0.1195\tmmon64.dll at
7507
--- Process 10964 loaded C:\cygwin64\bin\cygwin1.dll at 00018004


for ntdll.dll for example:
7786 your system
7ffd8170 my system

and the exception at the end of strace is in that area
779332ca

  160  398012 [main] gedit 10964 sigprocmask: 0 = sigprocmask (0, 0x0,
0x6000A2AA0)
--- Process 10964 thread 8560 created
--- Process 10964, exception 8001 at 779332ca
--- Process 10964 thread 12024 exited with status 0x8001

can you try without with AV or excluding the "C:\cygwin64" directory ?

Regards
Marco


---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft.
https://www.avast.com/antivirus


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



Issue running PowerShell code on Windows Machine from Linux machine using Cygwin

2018-07-30 Thread Shekhar Shukla
 Hi Team,

I am having issue while establishing a ssh connection from Linux to Windows
machine using Cygwin. My powershell script works when I run it from Linux
using ssh connection(Cygwin) to Windows  and manually enter my passowrd.
But whn I use public key to authenticate my user(making a password less
connection), it fails. Is it a bug with CYgwin?

Below is the step by step explantion-


1. Sample
Code
I have put on Windows machine. This machine has Cygwin installed on it

+
:
+++

echo "Hello World!"
import-module ActiveDirectory
get-adcomputer -Filter * |select Name|select -first 10
+


2. When I run
this code
 from Linux machine using Cygwin WITHOUT enabling password-less connection,
It asks for password
of Windows machine and after entering the password it
 execute
s
 like a charm. See below-

+++

shekhar@LinuxBox:~$ ssh shek...@windowsbox.doamin.com 'powershell
"C:/scripts/abc.ps1"'
shek...@windoxbox.domain.com's password:

Hello World!

Name

Server1
Server2
Server3
Server4



3. Now I generate an ssh-key on Linux for user shekhar and copy it on
Windows machine to make a password less connection.

++

shekhar@LinuxBox:~$ ssh-copy-id shek...@windowsbox.doamin.com
shekhar@WindowsBox's password:
Now try logging into the machine, with "ssh 'shek...@windowsbox.domain.com'",
and check in:

  .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.



4. Now I run the same script again. Now it doesn't asks a password makes a
connection with Windows box and display Hello world(first line of code) but
fails on the second line

+++

shekhar@LinuxBox:~$ ssh shek...@windoxbox.domain.com  'powershell
"C:/scripts/abc.ps1"'
Hello World!
WARNING: Error initializing default drive: 'Unable to contact the server.
This
may be because this server does not exist, it is currently down, or it does
not
 have the Active Directory Web Services running.'.
Get-ADComputer : Unable to contact the server. This may be because this
server
does not exist, it is currently down, or it does not have the Active
Directory
Web Services running.
At C:\scripts\abc.ps1:3 char:15
+ get-adcomputer   -Filter * |select Name|select -first 10
+ CategoryInfo  : ResourceUnavailable: (:) [Get-ADComputer],
ADSer
   verDownException
+ FullyQualifiedErrorId : Unable to contact the server. This may be
becaus
   e this server does not exist, it is currently down, or it does not have
th
  e Active Directory Web Services running.,Microsoft.ActiveDirectory.Managem
 ent.Commands.GetADComputer
++

Thanks in advance.

Regards,
Shekhar

--
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: Cygwin X applications do not launch

2018-07-30 Thread Jones, Michael
Hi Marco,

You are correct!
With AV disabled, everything seems to work fine.

I now need to work with our IT guys to figure out how to configure the AV so 
that it does not interfere.

Many thanks for your help diagnosing the cause of this problem!

Regards,
Mike

-Original Message-
From: Marco Atzeri [mailto:marco.atz...@gmail.com] 
Sent: 30 July 2018 11:54
To: Jones, Michael; cygwin@cygwin.com
Subject: Re: Cygwin X applications do not launch

Am 30.07.2018 um 12:26 schrieb Jones, Michael:
> Hi Marco,
> 
> Attached is the strace output. This was run from xterm.
> 
> My anti virus is Trend Micro OfficeScan.
> 
> Regards,
> Mike
> 

Hi Mike,

I think the AV is interfering.
A lot of Windows DLL's are loaded at very low addresses:

--- Process 10964 created
--- Process 10964 loaded C:\Windows\System32\ntdll.dll at 7786
--- Process 10964 loaded C:\Windows\System32\kernel32.dll at 
7774
--- Process 10964 loaded C:\Windows\System32\KernelBase.dll at 
07fefd7e
--- Process 10964 loaded 
C:\Windows\System32\tmumh\20019\AddOn\6.80.0.1007\TmUmEvt64.dll at 
07fefc290
000
--- Process 10964 loaded C:\Windows\System32\psapi.dll at 77a0
[cut...]
--- Process 10964 loaded C:\Windows\System32\rpcrt4.dll at 07fefdfc
--- Process 10964 loaded 
C:\Windows\System32\tmumh\20019\TmMon\1.6.0.1195\tmmon64.dll at 
7507
--- Process 10964 loaded C:\cygwin64\bin\cygwin1.dll at 00018004


for ntdll.dll for example:
7786 your system
7ffd8170 my system

and the exception at the end of strace is in that area
779332ca

   160  398012 [main] gedit 10964 sigprocmask: 0 = sigprocmask (0, 0x0, 
0x6000A2AA0)
--- Process 10964 thread 8560 created
--- Process 10964, exception 8001 at 779332ca
--- Process 10964 thread 12024 exited with status 0x8001

can you try without with AV or excluding the "C:\cygwin64" directory ?

Regards
Marco


---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft.
https://www.avast.com/antivirus


Roke Manor Research Limited, Romsey, Hampshire, SO51 0ZN, United Kingdom.Part 
of the Chemring Group. 
Registered in England & Wales. Registered No: 00267550
http://www.roke.co.uk

Please update your address book. Roke is currently transitioning to its 
original brand and will no longer 
be branded under Chemring Technology Solutions. Email addresses of Roke staff 
have therefore been changed 
from firstname.surn...@chemringts.com to firstname.surn...@roke.co.uk – please 
use this updated format 
with immediate effect.


The information contained in this e-mail and any attachments is proprietary to 
Roke Manor Research Limited and 
must not be passed to any third party without permission. This communication is 
for information only and shall 
not create or change any contractual relationship.


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



Self-compiled xorg-server 1.20.0 crashes at startup, buffer overflow

2018-07-30 Thread tumtum00
Self-compiled xorg-server 1.20.0 crashes at startup, buffer overflow

Hello all,

after building xorg-server 1.20.0 without errors, the XWin binary crashes at 
startup due to a buffer overflow. XWin 1.20.0 from Cygwin repos works as 
expected.

Setup:
- Freshly installed Win7 x86_64 VM
- Cygwin x86_64
- Dependencies installed as described in 
https://x.cygwin.com/docs/cg/prog-build-prerequisites.html, plus 
xcb-composite-devel
- Applied the following patches to my Cygwin environment, otherwise the build 
would fail:
  
https://github.com/cygwinports/cygport/commit/1072fd872757bd7aa97fa8daf95ed13f70f56291
  
https://github.com/cygwinports/cygport/commit/c4e0f0ec5f9a5a691fd19efe2bda3cdf278baef5
- Downloaded patched xorg-server 1.20.0-2 sources as described in 
https://x.cygwin.com/docs/cg/prog-obtaining-source.html, "Obtaining via Cygwin 
setup"

Build:
  $ cygport --64 xorg-server.cygport prep
  $ cygport --64 xorg-server.cygport compile

XWin binary
  
/usr/src/xorg-server-1.20.0-2.src/xorg-server-1.20.0-2.x86_64/src/xserver-cygwin-1.20.0-2/x86_64-pc-cygwin/hw/xwin/XWin
is then executed.

The `--buildtype=debug` option was added to `cygmeson` in `xorg-server.cygport` 
to generate the attached reports.

I'm out of ideas on how to continue debugging this. Help would be much 
appreciated.


gdb-bt-full
Description: Binary data
Could not load crashreporter dll
InitConnectionLimits: MaxClients = 2048
Welcome to the XWin X Server
Vendor: The Cygwin/X Project
Release: 1.20.0.0
OS: CYGWIN_NT-6.1 qwe-PC 2.10.0(0.325/5/3) 2018-02-02 15:16 x86_64
OS: Windows 7 Service Pack 1 [Windows NT 6.1 build 7601] (Win64)
Package: version 1.20.0-2 built 2018-07-30

XWin was started with the following command line:


 
/usr/src/xorg-server-1.20.0-2.src/xorg-server-1.20.0-2.x86_64/src/xserver-cygwin-1.20.0-2/x86_64-pc-cygwin/hw/xwin/XWin
 
 -logverbose 3 -multiwindow 

ddxProcessArgument - Initializing default screens
winInitializeScreenDefaults - primary monitor w 1920 h 1200
winInitializeScreenDefaults - native DPI x 96 y 96
ddxProcessArgument - arg: -logverbose
ddxProcessArgument - arg: -multiwindow
[  8311.718] Could not load crashreporter dll
[  8311.718] OsVendorInit - Creating default screen 0
[  8311.718] winInitializeScreens - 1
[  8311.718] winInitializeScreen - 0
[  8312.015] InitOutput
[  8312.015] winValidateArgs - Returning.
[  8312.015] (II) xorg.conf is not supported
[  8312.015] (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more 
information
[  8312.015] LoadPreferences: /home/qwe/.XWinrc not found
[  8312.015] LoadPreferences: Loading /etc/X11/system.XWinrc
[  8312.015] LoadPreferences: Done parsing the configuration file...
[  8312.015] winGetDisplay: DISPLAY=:0.0
[  8312.015] winDetectSupportedEngines - RemoteSession: no
[  8312.156] winDetectSupportedEngines - DirectDraw4 installed, allowing 
ShadowDDNL
[  8312.156] winDetectSupportedEngines - Returning, supported engines 0005
[  8312.156] winMsgWindowThreadProc - Hello
[  8312.156] winScreenInit - dwWidth: 1920 dwHeight: 1200
[  8312.156] winAllocateScreenPrivates - g_ulServerGeneration: 0 
serverGeneration: 1
[  8312.156] winSetEngine - Multi Window or Rootless => ShadowGDI
[  8312.156] winScreenInit - Using Windows display depth of 32 bits per pixel
[  8312.156] winCreateBoundingWindowWindowed - User w: 1920 h: 1200
[  8312.156] winCreateBoundingWindowWindowed - Current w: 1920 h: 1200
[  8312.156] winGetWorkArea - Primary Monitor WorkArea: 0 0 1170 1920
[  8312.156] winGetWorkArea - Virtual screen is 1920 x 1200
[  8312.156] winGetWorkArea - Virtual screen origin is 0, 0
[  8312.156] winGetWorkArea - Primary screen is 1920 x 1200
[  8312.156] winGetWorkArea - Adjusted WorkArea for multiple monitors: 0 0 1170 
1920
[  8312.156] winAdjustForAutoHide - Original WorkArea: 0 0 1170 1920
[  8312.156] winAdjustForAutoHide - Adjusted WorkArea: 0 0 1170 1920
[  8312.156] winCreateBoundingWindowWindowed - User did not give height and 
width
[  8312.156] winCreateMsgWindow - Created msg window hwnd 0x0x7038e
[  8312.171] winWindowProc - WM_CREATE
[  8312.171] winWindowProc - WM_SIZE
[  8312.171] winCreateBoundingWindowWindowed - CreateWindowEx () returned
[  8312.171] winCreateBoundingWindowWindowed - WindowClient w 1920  h 1200 r 
1920 l 0 b 1200 t 0
[  8312.171] winCreateBoundingWindowWindowed -  Returning
[  8312.171] winQueryScreenDIBFormat - First call masks:   

[  8312.171] winQueryScreenDIBFormat - First call masks:   

[  8312.171] winQueryRGBBitsAndMasks - Masks: 00ff ff00 00ff
[  8312.171] winQueryRGBBitsAndMasks - Bitmap: 1x1 32 bpp 1 planes
[  8312.171] winQueryRGBBitsAndMasks - Compression: 3 (BI_BITFIELDS)
[  8312.171] winAllocateFBShadowGDI - Creating DIB with width: 1920 height: 
1200 depth: 32
[  8312.171] winAllocateFBShadowGDI - Shadow buffer allocated
[  8312.171] winAllocateFBShadowGDI - Dibsection width: 1920 height: 1200 
depth: 32 size image: 9216000
[  8312.171] wi

Attendees list of Airline Passenger Experience Association - APEX Expo 2018

2018-07-30 Thread Rachel Taylo
Hello, 

 

 Would be interested in the "Attendees list of Airline Passenger Experience
Association - APEX Expo 2018? 

Let me know your interest to send you the number of attendees and cost.

 

Awaiting for your reply.

 

Regards,

Rachel Taylo,

Attendees List Consultant.

 

If you do not wish to receive future emails from us, reply as 'leave out'

 

 


--
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: Self-compiled xorg-server 1.20.0 crashes at startup, buffer overflow

2018-07-30 Thread Marco Atzeri

Am 30.07.2018 um 17:33 schrieb tumtum00:

Self-compiled xorg-server 1.20.0 crashes at startup, buffer overflow

Hello all,

after building xorg-server 1.20.0 without errors, the XWin binary crashes at 
startup due to a buffer overflow. XWin 1.20.0 from Cygwin repos works as 
expected.

Setup:
- Freshly installed Win7 x86_64 VM
- Cygwin x86_64
- Dependencies installed as described in 
https://x.cygwin.com/docs/cg/prog-build-prerequisites.html, plus 
xcb-composite-devel
- Applied the following patches to my Cygwin environment, otherwise the build 
would fail:
   
https://github.com/cygwinports/cygport/commit/1072fd872757bd7aa97fa8daf95ed13f70f56291
   
https://github.com/cygwinports/cygport/commit/c4e0f0ec5f9a5a691fd19efe2bda3cdf278baef5
- Downloaded patched xorg-server 1.20.0-2 sources as described in 
https://x.cygwin.com/docs/cg/prog-obtaining-source.html, "Obtaining via Cygwin 
setup"

Build:
   $ cygport --64 xorg-server.cygport prep
   $ cygport --64 xorg-server.cygport compile

XWin binary
   
/usr/src/xorg-server-1.20.0-2.src/xorg-server-1.20.0-2.x86_64/src/xserver-cygwin-1.20.0-2/x86_64-pc-cygwin/hw/xwin/XWin
is then executed.



what about doing also "install package" and properly install the
resulting binary ?



---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft.
https://www.avast.com/antivirus


--
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: Issue running PowerShell code on Windows Machine from Linux machine using Cygwin

2018-07-30 Thread Marco Atzeri

going back on the mailing list.

Am 30.07.2018 um 17:40 schrieb Shekhar Shukla:

Hi Marco,

You are absolutely right. In the second case, I do not see Administrator 
group which is necessary. Why is it behaving so when user id is same in 
both the cases? Is there any workaround to get it working?


I assume is due to Windows security setting.
No idea about workaround, may be some other can help
solving it.


Thanks again.

Regards,
Shekhar

On Mon, Jul 30, 2018 at 5:30 PM, Marco Atzeri  wrote:

Am 30.07.2018 um 13:20 schrieb Shekhar Shukla:

   Hi Team,

I am having issue while establishing a ssh connection from Linux
to Windows
machine using Cygwin. My powershell script works when I run it
from Linux
using ssh connection(Cygwin) to Windows  and manually enter my
passowrd.
But whn I use public key to authenticate my user(making a
password less
connection), it fails. Is it a bug with CYgwin?

...


Thanks in advance.

Regards,
Shekhar


try executing "id" in both scenarios

I guess in the second one you are lacking some
administrative groups

Regards
Marco





---
Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft.
https://www.avast.com/antivirus


--
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: Issue running PowerShell code on Windows Machine from Linux machine using Cygwin

2018-07-30 Thread john doe

On 7/30/2018 1:20 PM, Shekhar Shukla wrote:

  Hi Team,

I am having issue while establishing a ssh connection from Linux to Windows
machine using Cygwin. My powershell script works when I run it from Linux
using ssh connection(Cygwin) to Windows  and manually enter my passowrd.
But whn I use public key to authenticate my user(making a password less
connection), it fails. Is it a bug with CYgwin?

Below is the step by step explantion-


1. Sample
Code
I have put on Windows machine. This machine has Cygwin installed on it

+
:
+++

echo "Hello World!"
import-module ActiveDirectory
get-adcomputer -Filter * |select Name|select -first 10
+


2. When I run
this code
  from Linux machine using Cygwin WITHOUT enabling password-less connection,
It asks for password
of Windows machine and after entering the password it
  execute
s
  like a charm. See below-

+++

shekhar@LinuxBox:~$ ssh shek...@windowsbox.doamin.com 'powershell
"C:/scripts/abc.ps1"'
shek...@windoxbox.domain.com's password:

Hello World!

Name

Server1
Server2
Server3
Server4



3. Now I generate an ssh-key on Linux for user shekhar and copy it on
Windows machine to make a password less connection.

++

shekhar@LinuxBox:~$ ssh-copy-id shek...@windowsbox.doamin.com
shekhar@WindowsBox's password:
Now try logging into the machine, with "ssh 'shek...@windowsbox.domain.com'",
and check in:

   .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.



4. Now I run the same script again. Now it doesn't asks a password makes a
connection with Windows box and display Hello world(first line of code) but
fails on the second line

+++

shekhar@LinuxBox:~$ ssh shek...@windoxbox.domain.com  'powershell
"C:/scripts/abc.ps1"'
Hello World!
WARNING: Error initializing default drive: 'Unable to contact the server.
This
may be because this server does not exist, it is currently down, or it does
not
  have the Active Directory Web Services running.'.
Get-ADComputer : Unable to contact the server. This may be because this
server
does not exist, it is currently down, or it does not have the Active
Directory
Web Services running.
At C:\scripts\abc.ps1:3 char:15
+ get-adcomputer   -Filter * |select Name|select -first 10
 + CategoryInfo  : ResourceUnavailable: (:) [Get-ADComputer],
ADSer
verDownException
 + FullyQualifiedErrorId : Unable to contact the server. This may be
becaus
e this server does not exist, it is currently down, or it does not have
th
   e Active Directory Web Services running.,Microsoft.ActiveDirectory.Managem
  ent.Commands.GetADComputer
++



In ~/.ssh/authorized_keys you could try those options:

NO-PTY,NO-USER-RC ssh

EG: authorized_keys:
NO-PTY,NO-USER-RC ssh ...

https://www.ssh.com/ssh/authorized_keys/openssh

--
John Doe

--
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: Issue running PowerShell code on Windows Machine from Linux machine using Cygwin

2018-07-30 Thread Achim Gratz
Shekhar Shukla writes:
> I am having issue while establishing a ssh connection from Linux to Windows
> machine using Cygwin. My powershell script works when I run it from Linux
> using ssh connection(Cygwin) to Windows  and manually enter my passowrd.
> But whn I use public key to authenticate my user(making a password less
> connection), it fails. Is it a bug with CYgwin?

No, Windows simply does not give you full access to your normal
privileges when you log in remotely without a password.  Specifically,
you won't be able to access anything that is considered non-local, like
external fileshares.

See: https://cygwin.com/cygwin-ug-net/ntsec.html#ntsec-setuid-overview

If you trust the server in question and all its administrators and other
users, you can use "Method 3" as described above.  Don't forget to set
up cygserver if you want to be able to set or change the password with a
non-administrative account.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for KORG EX-800 and Poly-800MkII V0.9:
http://Synth.Stromeko.net/Downloads.html#KorgSDada

--
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: Updated: setup (2.893)

2018-07-30 Thread cyg Simple
Attn Jon Turney,

The update announcement for setup[1] did not make it to the
cygwin@cygwin.com list.

[1] https://cygwin.com/ml/cygwin-announce/2018-07/msg00021.html

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



-mcmodel=large/Custom Compilation Options

2018-07-30 Thread R0b0t1
In a small corner of the internet I found this "bug:"
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46125.

How do I recompile what I need with -mcmodel large? I can build them
all myself, but I hope there is something else that can be done.

Cheers,
R0b0t1

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



Software User Contact

2018-07-30 Thread Karen Johnson
Hi,

 

Are you looking for any of the below software users contact information for
your campaigns or marketing purpose? 

*   ERP- JD Edwards, Infor Baan, SAP, Exact Software, NetSuite,
PeopleSoft, etc. 
*   CRM- Salesforce, MS Dynamics, NetSuite, Siebel, Teradata, Epicor,
Infor, CDC Software, etc. 
*   Engineering Software- Autodesk, Siemens PLM, Adobe, AutoCAD, MAYA,
Revitt, Solidworks, PTC, MADCAD, etc. 
*   Cloud Computing- Amazon, RackSpace, Google APPS, Hyper-V, NetApp,
etc. 
*   Storage application - NetApp, EMC, Citrix, HP, Brocade, DELL, etc. 
*   Security Software- Symantec, McAfee, IBM, Riverbed, Tabberg,
Commvault, Juniper Networks, F5, etc. 
*   Networking- Brocade, Symantec, Avaya, Cisco, Shoretel, etc. 
*   Medical Software- NextGen, AllScripts, EMR, McKesson, Practice
Fusion, eClinical Works, etc. 
*   Accounting Software- Sage, PeachTree, Timberline, MS Dynamics,
NetSuite, Deltek, Lawson, QuickBooks, etc. 
*   Business Intelligence- SAP Business Objects, Microstratergy, Tibco,
Microsoft BI, QlikTech, Information Builders, etc

We provide data across the globe - North America, EMEA, Asia Pacific and
LATAM. We provide the decision Makers contacts like CIO, CTO, CISO, IT VP,
IT Director, IT manager, IT head, etc.

 

Kindly let me know your targeted users and targeted geography, so that I
will provide counts and more information.

 

Looking forward to hear from you.

 

Regards,

Karen Johnson

Demand generation head

 

If you are not the right person to discuss about this please forward this to
the person.

 

To opt out response "Exclude"

 


--
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: A Way To Suppress Certain Kinds Of Spam

2018-07-30 Thread L A Walsh

Michael Crawford wrote:

then somehow determine whether that domain is owned by the trademark
holder.  I'll send you my bill in the mail.

---
You didn't prove it belongs to the TM holder.  In fact, you
did nothing.  The important part is proving the domain is owned by
the trademark holder.  Anyone in the EU can hide that information
making the EU the place to hide your identity, online, while doing
online crimes.

Even if you did trace domain to tm holder, that doesn't prove it 
was not forged or was a legitimate email.





--
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: engauge-digitizer-10.9

2018-07-30 Thread mark mitchell
Version 10.9 of "engauge-digitizer" has been uploaded.

Interactively converts a bitmap graph or map into numbers.

Changes:

* More protection against inconsistent inputs.
* Better grid line default initialization with extremely narrow
coordinate ranges.

  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain.com  cygwin.com

If you need more information on unsubscribing, start reading here:

https://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is
available starting at this URL.

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