Cygwin triggers integrity scrubbing on ReFS filesystems, making searching files impossible on large datasets

2022-10-11 Thread Matt D.
I formatted a drive today, with ReFS on a Storage Pool mirror with integrity streams enabled, before copying data over from a backup. The data included several million files, which I search often with tools like find and grep. After the copy was finished, I tried doing a simple find: time find .

Re: Native symbolic link behavior is broken and makes backups using Cygwin command line tools impossible

2021-01-13 Thread Matt D. via Cygwin
On Tue, Jan 12, 2021 at 5:20 PM Andrey Repin wrote: > > Again, the properties are read BY SYSTEM at the moment the link is created. > In other words, Windows is unable to create a link to nonexistent > (unreachable) target (not directly, at least). This is false. Links can be created arbitrarily

Re: Native symbolic link behavior is broken and makes backups using Cygwin command line tools impossible

2021-01-12 Thread Matt D. via Cygwin
Operations like cp and rsync etc. should still work. The type of symbolic link to be created can be read from the file attributes of the one being copied. On Mon, Jan 4, 2021 at 10:46 AM Jeffrey Altman via Cygwin wrote: > > On 1/4/2021 10:27 AM, Matt D. via Cygwin (cygwin@cygwin.com)

Re: Native symbolic link behavior is broken and makes backups using Cygwin command line tools impossible

2021-01-04 Thread Matt D. via Cygwin
bolic links. It does not have a problem creating links to any target with the default Cygwin (non-Windows) symbolic links. On Mon, Jan 4, 2021 at 7:30 AM Eliot Moss wrote: > > On 1/4/2021 5:36 AM, Matt D. via Cygwin wrote: > > Did you try any of my test cases? This can't and doesn't work

Re: Native symbolic link behavior is broken and makes backups using Cygwin command line tools impossible

2021-01-04 Thread Matt D. via Cygwin
r_a/a' -> 'folder_b/a' cp: cannot create symbolic link 'folder_b/a': No such file or directory $ cp -Pv folder_a/a folder_b/ 'folder_a/a' -> 'folder_b/a' cp: cannot create symbolic link 'folder_b/a': No such file or directory On Sun, Jan 3, 2021 at 12:00 AM Brian Inglis wrote: > > On 2021-01-0

Native symbolic link behavior is broken and makes backups using Cygwin command line tools impossible

2021-01-02 Thread Matt D. via Cygwin
I have a folder with a lot of native Windows symbolic links. I want to copy this folder. I cannot rsync or cp this folder due to Cygwin being unable to create symbolic links without also wanting to verify the link target. This can be demonstrated: $ ln -s a b ln: failed to create symbolic link

How to ensure that /bin takes priority over System32 with "bash -c"?

2020-10-31 Thread Matt D. via Cygwin
I have Cygwin's /bin directory configured to be available on my login environment PATH by default. This behavior is inherited when I run a bash login shell: $ where sort C:\cygwin\bin\sort.exe C:\Windows\System32\sort.exe But if I run the following script from a Windows command prompt: C:\>

Re: Error: "-gThe system cannot find the file specified." When bash script containing "cut" is run from cmd

2020-10-31 Thread Matt D. via Cygwin
Please ignore this. There was an error in my test case. -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple

Error: "-gThe system cannot find the file specified." When bash script containing "cut" is run from cmd

2020-10-31 Thread Matt D. via Cygwin
Simple Bash script: > #!/bin/bash > > cut Save as "testme.sh" in C:\ or elsewhere. Open a Windows command prompt and type: > cmd /c bash -c /c/testme.sh I get the following error: > -gThe system cannot find the file specified. This only seems to trigger when bash is running as a child

Re: Copying of symbolic links not working as expected

2019-04-21 Thread Matt D.
Note that this creates a chicken-and-the-egg problem when copying paths which contain symbolic links which will be but are not yet valid at the time of copying. For example, copying a very large and complex tree with many lots of links will result in a broken copy. I'm trying to copy a

Copying of symbolic links not working as expected

2019-04-21 Thread Matt D.
I'm experiencing a discrepancy between Linux cp and Cygwin cp when copying native symbolic links: Test/ FolderA/ 123/ 456/ -> 123/ On Linux I can: > cp -r FolderA/ FolderB/ > ls -l FolderB/ total 0 drwxrwxr-x. 2 account group 45 Apr 21 05:47 123 lrwxrwxrwx. 1 account group 4

Can't create symbolic links in child directories

2019-03-31 Thread Matt D.
This works: > touch a > ln -s a b This no longer works: > touch a > mkdir b > ln -s a b/c Error: ln: failed to create symbolic link 'b/c': No such file or directory My CYGWIN environment is also configured using "winsymlinks:nativestrict". I am running the following version (updated

Cannot use screen when Cygwin is installed on a FAT32 filesystem / chmod does not work on FAT32 directories

2018-09-30 Thread Matt D.
I'm trying to use Cygwin on a Windows machine with the latest release. The system in question must run from a filesystem formatted with FAT32 and therefore inherits the 'noacl' field according to the documentation. After a clean install and running Cygwin.bat, I am greeted with the following

libglut is missing library for MinGW static linking

2018-09-27 Thread Matt D.
on providing static libraries for MinGW but this is a very good candidate as it already has all of the necessary declarations defined. Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Uns

What is the purpose of libglut32?

2018-09-27 Thread Matt D.
ould NEVER be called > directly. To avoid the atexit workaround, #define > GLUT_DISABLE_ATEXIT_HACK. This library is NOT the same as libgut, which seems to be the appropriate way to include glut, even when compiling for MinGW. Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ:

Broken junctions and symlinks halt recursive cp and rsync operations?

2017-11-16 Thread Matt D.
er=3.1.2] Is there a way to recover from this? It breaks copy operations of directories which contain broken symlinks where I would expect the broken link to be copied as-is. Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ D

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-08 Thread Matt D.
On 11/4/2017 1:38 PM, Matt D. wrote: On 11/4/2017 1:15 PM, Matt D. wrote: > On 11/4/2017 11:43 AM, Achim Gratz wrote: >> That's the correct thing to do, even though you made this unnecessarily >> hard for yourself by mounting your home directory with "noacl". >

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
On 11/4/2017 1:15 PM, Matt D. wrote: > On 11/4/2017 11:43 AM, Achim Gratz wrote: >> That's the correct thing to do, even though you made this unnecessarily >> hard for yourself by mounting your home directory with "noacl". > > It's not perfect but I

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
her "noacl". Ssh's readconf.c is using fstat(). If these results are more accurate with "noacl" defined then why always say "-rw-r--r--" when more information is available? Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
d to alter other groups: icacls config /inheritance:d Effectively regarded as "group": icacls config /remove:g "Authenticated Users" icacls config /remove:g "Users" Regarded as "other": icacls config /remove:g "Everyone" Add the current user a

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
On 11/4/2017 9:31 AM, Matt D. wrote: On 11/4/2017 7:47 AM, Matt D. wrote: On 11/4/2017 7:37 AM, Corinna Vinschen wrote: On Nov 4 05:47, Matt D. wrote: I mount with "noacl" as I don't need ACLs for my purposes and prefer to leave everything up to Windows permissions. T

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
On 11/4/2017 7:47 AM, Matt D. wrote: On 11/4/2017 7:37 AM, Corinna Vinschen wrote: On Nov 4 05:47, Matt D. wrote: I mount with "noacl" as I don't need ACLs for my purposes and prefer to leave everything up to Windows permissions. The problem with this is that ssh insists that ~/.

Re: Workflow for producing patches with cygport?

2017-11-04 Thread Matt D.
Thank you. There is no documentation for this from 'cygport --help' or 'man cygport'. Is this an oversight? Matt D. On 11/4/2017 9:04 AM, Jon Turney wrote: On 04/11/2017 10:45, Matt D. wrote: I've gotten this far: download cygport download package src cd /usr/src/package

Building OpenSSH fails when '--with-kerberos5' in the default configuration

2017-11-04 Thread Matt D.
I missing something? Matt D. -- 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: Building the Open SSH package from source

2017-11-04 Thread Matt D.
_message(code) ^ make[1]: *** [Makefile:26: port-aix.o] Error 1 make[1]: Leaving directory '/usr/src/openssh-7.6p1-1.src/openssh-7.6p1-1.i686/build/openbsd-compat' make: *** [Makefile:156: openbsd-compat/libopenbsd-compat.a] Error 2 *** ERROR: make failed Matt D. -- Problem reports: http://c

Re: No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
On 11/4/2017 7:37 AM, Corinna Vinschen wrote: On Nov 4 05:47, Matt D. wrote: I mount with "noacl" as I don't need ACLs for my purposes and prefer to leave everything up to Windows permissions. The problem with this is that ssh insists that ~/.ssh/config be less permissive. But

Workflow for producing patches with cygport?

2017-11-04 Thread Matt D.
I've gotten this far: download cygport download package src cd /usr/src/package* cygport package.cygport prep I can now edit the source, compile, etc. But what is the workflow for producing a patch file of my changes? Matt D. -- Problem reports: http://cygwin.com

No way to use ssh ~/.ssh/config with "noacl" option

2017-11-04 Thread Matt D.
equest ssh to ignore this requirement when "noacl" present on the mounted volume? Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin

xinit is ignoring -displayfd option

2017-09-05 Thread Matt D.
is the output of xinit: https://pastebin.com/raw/HJB9WGk7 Matt D. -- 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

Settings from lang.sh causing garbled output in dialog when run from cmd.exe

2017-04-06 Thread Matt D.
a/7akZQ If I remove this line from /etc/profile.d/lang.sh: test -z "${_LC_ALL_SET_:-${LC_CTYPE:-$LANG}}" && export LANG=$(/usr/bin/locale -uU) Then the problem goes away. Why am I getting garbled output with this line present? Matt D. -- Problem reports:

How to get GNU Parallel working with Cygwin

2017-03-16 Thread Matt D.
I noticed today that we don't have this package. I tried building it from source with a './configure && make && make install'. But when I run "sem" I get the following output: 1 [main] perl 7712 child_info_fork::abort: address space needed by 'Util.dll' (0x1E) is already occupied 1 [main]

Re: XWin no longer working for me with -nolisten tcp?

2017-02-17 Thread Matt D.
denied xterm: Xt error: Can't open display: localhost:10.0 I tried purging /tmp on Cygwin but to no avail. Note that the server I am connecting to has not been rebooted in months and nothing has changed there. Matt D. On 2/17/2017 2:20 PM, Matt D. wrote: I just recently formatted

XWin no longer working for me with -nolisten tcp?

2017-02-17 Thread Matt D.
ete opposite workaround to what I had to use three years ago: https://cygwin.com/ml/cygwin-xfree/2014-07/msg00017.html Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info:

Cannot access volumes mounted with 'mklink /d' which point to a volume UUID

2017-02-15 Thread Matt D.
be great if Cygwin would support it. Matt D. -- 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: -displayfd outputting some garbage?

2017-02-07 Thread Matt D.
This is causing issues where I try to perform: echo $(cat .display) Which results in: bash: warning: command substitution: ignored null byte in input 0 Matt D. On 2/7/2017 7:46 PM, Matt D. wrote: I have an xinit script which outputs the display id to a file with the following option

-displayfd outputting some garbage?

2017-02-07 Thread Matt D.
I have an xinit script which outputs the display id to a file with the following option: xinit .. -displayfd 3 3>$HOME/.display This outputs correctly '0' but appends 0x00 and 0x0A. Why is it outputting a null byte and this 0x0A? Matt D. -- Unsubscribe info: http://cygwin.com

Re: Bash declare built-in regression loses array quotations

2017-01-13 Thread Matt D.
My scripts have been updated to account for breaking changes in Bash 4.4 and I have updated all of my Cygwin packages back to the latest version. I am no longer receiving any assertions. Was I wrong to assume that I could selectively roll back Bash to 4.3 as I did? Matt D. On 1/13/2017 3

Re: Bash declare built-in regression loses array quotations

2017-01-13 Thread Matt D.
n.jar" This bug is SEVERE and I can no longer perform any builds with these assertions. The Cygwin installer does not appear to provide a working version for me to roll back to. Please advise. I cannot get any work done with in this state. Matt D. On 1/13/2017 3:00 PM, Matt D. wrote: I up

Bash declare built-in regression loses array quotations

2017-01-13 Thread Matt D.
s always been the expected output when running this command on Cygwin and Linux. I run CentOS which does not track the latest Bash release and I don't know the procedure to check whether this is an upstream regression or not. I have rolled back to Bash 4.3.48-8 which has restored the previous

Segfault when running tests for SDL 1.2.15

2016-01-05 Thread Matt D.
environment: CYGWIN_NT-10.0-WOW 2.3.1(0.291/5/3) 2015-11-14 12:42 i686 Cygwin Winows 10 x64, AMD FX-8370, GeForce 970 Thanks, Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html

No support for ACLs on network shares?

2015-11-23 Thread Matt D.
handle ACLs when accessing network devices where SIDs are not present in these files. Running passwd/mkgroup after the share is on the keychain does not provide additional SIDs. Is there no support for ACLs across network shares at all? Matt D. -- Problem reports: http://cygwin.com

Re: No support for ACLs on network shares?

2015-11-23 Thread Matt D.
Cygwin isn't aware of this SID since it's the user I log in as to the remove server and isn't a local SID. Using noacl is a valid workaround but I would prefer an ACL-supported solution if possible. Matt D. On 11/23/2015 3:08 AM, Andrey Repin wrote: Greetings, Matt D.! I noticed today that

Re: Cygwin gjar core dumps whereas Oracle jar does not

2015-11-23 Thread Matt D.
I'm not sure if this got lost, ignored, or wasn't forwarded appropriately, but I'm still getting this core dump: https://sourceware.org/ml/cygwin/2015-10/msg00257.html Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq

Calling cygpath from find exec?

2015-11-23 Thread Matt D.
Is there a reason why these produce different results? find . -exec cygpath -wa {} \; find . -exec echo $(cygpath -wa {}) \; I have to do this which is much slower: find . -exec bash -c 'echo $(cygpath -wa {})' \; Or this: find . | while read a; do echo $(cygpath -wa $a); done Matt D

Re: gawk: Bad File Descriptor error with concurrent readonly access to a network file

2015-10-27 Thread Matt D.
ror that I get. Matt D. On 10/27/2015 5:52 AM, Corinna Vinschen wrote: On Sep 25 16:31, Vermessung AVT - Wolfgang Rieger wrote: 1) Concurrent read access to the setup files was possible and worked fine with local files (24 hrs testing with millions of file accesses in 4 parallel jobs). 2) How

Cygwin gjar core dumps whereas Oracle jar does not

2015-10-17 Thread Matt D.
Illegal instruction (core dumped) Test on Oracle JDK jar: $jar -uf test.jar -C test icons (works fine) Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http

gcc-java-4.9.2-3 has the wrong libgcj dependency

2015-10-17 Thread Matt D.
Latest release of setup-x86.exe downloaded today. gcc-java-4.9.2-3 has the wrong libgcj dependency. It erroneously depends on libgcj16-5.2.0-1 instead of libgcj15-4.9.3-1 and will complain that it can't find cyggcj-15.dll if I try to run gjar. Matt D. -- Problem reports: http

XWin cursor huge on one computer but normal on another

2014-08-03 Thread Matt D.
size. Has anyone experienced this before? Thanks, Matt D. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/

Re: xinit hangs on XWin infinite loop when using -displayfd

2014-07-28 Thread Matt D.
for? Sharing a local X session with someone else? Logging onto an existing X session at work from home? I've only ever used X locally or through ssh forwarding. Matt D. On 7/28/2014 8:34 AM, Jon TURNEY wrote: Thanks for reporting this problem. On 21/07/2014 18:30, Matt D. wrote: I found

Caveats for removing /cygdrive prefix?

2014-07-22 Thread Matt D.
., appears in the Cygwin root folder and the inability to enumerate drive with ls /cygdrive. Are there any other caveats to consider? Also, it would be nice if doing a directory list on /cygdrive was a hard-coded operation, to preserve this functionality. Matt D. -- Problem reports: http

Re: xinit hangs on XWin infinite loop when using -displayfd

2014-07-21 Thread Matt D.
a tick. Also on the VM, if I run the following: $ xinit -- -displayfd Then the display will open. So it seems to be an issue with whatever code is dealing with the file descriptors. Matt D. On 7/20/2014 9:06 PM, Matt D. wrote: The operating system is Windows XP Professional. It is a CLEAN

Re: xinit hangs on XWin infinite loop when using -displayfd

2014-07-21 Thread Matt D.
) [ 58128.390] (EE) Server terminated with error (1). Closing log file. Matt D. On 7/21/2014 11:49 AM, Matt D. wrote: Still hangs with the latest 1.15.1-4 release. On my main machine, I get the following output: $ xinit -- -displayfd 1 read display number ':0' from X server 0 On the VM it just

Re: [ANNOUNCEMENT] Updated: Cygwin 1.7.31-1

2014-07-21 Thread Matt D.
Cannot replicate on Windows XP SP3 with latest Cygwin DLL by launching Cygwin's ftp from Windows command prompt or from a bash prompt. Everything connects fine. Matt D. On 7/21/2014 10:52 AM, D. Boland wrote: Hi Warren, Warren Young wrote: On 7/21/2014 06:19, D. Boland wrote

xinit hangs on XWin infinite loop when using -displayfd

2014-07-20 Thread Matt D.
an error. Unless something stands out here, I can provide the VMware image for testing (how convenient). Matt D. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ

Re: using make without cygwin terminal

2014-07-10 Thread Matt D.
environment will need to be setup for both the compiler (cl.exe) and the linker (link.exe). See here: http://msdn.microsoft.com/en-us/library/aa236630(v=vs.60).aspx http://msdn.microsoft.com/en-us/library/aa270757(v=vs.60).aspx Matt D. On 7/10/2014 6:14 PM, Robert Pendell wrote: On Thu, Jul 10

Re: Wine creating windows offscreen when multiwindow is used?

2014-07-09 Thread Matt D.
finally see the window!). Thanks so much for your help. :) Matt D. On 7/9/2014 12:10 PM, Jon TURNEY wrote: On 06/07/2014 17:27, Jon TURNEY wrote: There is some code in XWin which attempts to ensure that the window is placed somewhere visible, but that assumes that the Window virtual desktop

Re: Automatic X server startup

2014-07-03 Thread Matt D.
it more closely coupled to Cygwin. Matt D. On 6/2/2014 9:57 AM, Jon TURNEY wrote: On 28/05/2014 13:57, Pavel Fedin wrote: I believe this is arranged using launchd on OS X, which listens on the socket the X server will use, and starts the X server when something connects. Unfortunately

Copy/paste broken from X to Windows

2013-10-21 Thread Matt D.
Copy/paste seems to be broken when attempting to copy a large block of text from X to Windows. See the attachment for an example. Copying the text from Windows to X seems fine but the reverse causes the mouse cursor to spin and then a blank string to paste. Matt D. ACT III SCENE I. A public

Re: Copy/paste broken from X to Windows

2013-10-21 Thread Matt D.
Larry, This is the cygwin-xfree list? Matt D. On 10/21/2013 1:05 PM, Larry Hall (Cygwin-X) wrote: On 10/21/2013 12:45 AM, Matt D. wrote: Copy/paste seems to be broken when attempting to copy a large block of text from X to Windows. See the attachment for an example. Copying the text from

Re: Question on x3270 under 64bit cygwin/X

2013-10-08 Thread Matt D.
be more appropriate for the main cygwin mailing list, as your question isn't directly related to cygwin/x. Matt D. On 10/8/2013 4:36 PM, Tony Thigpen wrote: I currently use x3270 as packaged with the 32 bit cygwin on several Win-XP computers. We are now migrating those computers to Win-7 boxes

Re: Clipboard periodically breaks

2013-09-26 Thread Matt D.
programming but I'm assuming here that it would be possible for xclip to read from a particular process's own environment (rather than xclip's own) while processing a clipboard event to do this. What do you think? Matt D. On 9/26/2013 11:37 AM, Jon TURNEY wrote: In-Reply-To: 51c44820.4010

Re: Run bash script in cmd with cygwin

2013-09-24 Thread Matt D.
Try adding this to your script: cd /cygdrive/d/path/to/dir;`for file.. Matt D. On 9/24/2013 5:43 PM, Ulrich Pogson wrote: Hello I would like to run this script `for file in `find . -name *.po` ; do msgfmt -o ${file/.po/.mo} $file ; done` in windows cmd. The script need to run in a different

Re: Cygwin and lz/lza running out of memory?

2013-09-23 Thread Matt D.
The link sounded promising but no matter how high I set it (tried up to 8192), I get the same error, even when bringing down the compression ratio a bit. I attempted to increase the cygwin heap on both /usr/lib/p7zip/7z.exe and 7za.exe. Matt D. On 9/22/2013 10:25 PM, Larry Hall (Cygwin

Cygwin and lz/lza running out of memory?

2013-09-22 Thread Matt D.
to be how much available memory I have but rather q question of why the process can't seem to allocate it. Any advice? Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe

Clipboard periodically breaks

2013-09-21 Thread Matt D.
and reconnect. Is this a known problem? I am using the Cygwin x32 with the latest packages. Matt D. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http

Re: Clipboard periodically breaks

2013-09-21 Thread Matt D.
is being made.. ?? Download the video here in Xvid format: http://codespunk.com/files/upload/cygwinx_clipboard_breaking_xvid.avi Matt D. On 9/21/2013 10:38 PM, Matt D. wrote: I often keep gedit sessions open on remote servers for maintaining various scripts. The problem I've encountered

Makefile for emacs throws an error when username contains spaces

2013-08-19 Thread Matt D.
I experienced the following error while running make install for cygwin emacs: chown: invalid user: `Matthew' I corrected the problem by encapsulating the following variables in quotes within Makefile and Makefile.in: $${USERNAME} $${USER} $${installuser} Matt D. -- Problem reports

cygwin emacs 24.3 fci bug

2013-08-19 Thread Matt D.
-Indicator/issues/31 Supposedly this has already been fixed in the emacs trunk, although I did not test this case. Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info

Using cygpath with backticks

2013-06-22 Thread Matt D.
Maybe I've just had a long week but I can't seem to get this to work: alias pathw='echo `cygpath -w $@`' pathw /cygdrive/g/ I also tried: alias pathw='echo $(cygpath -w $@)' cygpath just yells at me that I'm doing something wrong. -- Problem reports: http://cygwin.com/problems.html

Re: Using cygpath with backticks

2013-06-22 Thread Matt D.
DeFaria wrote: On 06/22/2013 08:39 AM, Matt D. wrote: Maybe I've just had a long week but I can't seem to get this to work: alias pathw='echo `cygpath -w $@`' pathw /cygdrive/g/ I also tried: alias pathw='echo $(cygpath -w $@)' cygpath just yells at me that I'm doing something wrong. Try

Re: Bug with Cygwin's 'quilt' is actually in 'patch'

2013-06-21 Thread Matt D.
Thank you. I took the time to make certain that I couldn't find any other lingering problems. The update to 2.7.1 corrects the test case I submitted previously. Thanks! :) On 6/21/2013 8:11 AM, Corinna Vinschen wrote: On Jun 20 09:46, Corinna Vinschen wrote: On Jun 19 23:31, Matt D. wrote

Re: Bug with Cygwin's 'quilt' is actually in 'patch'

2013-06-20 Thread Matt D.
a bug. On 6/20/2013 1:47 AM, Christopher Faylor wrote: On Wed, Jun 19, 2013 at 11:31:48PM -0400, Matt D. wrote: I've been looking further into this and it appears as though the problem is in 'patch' not 'quilt'. quilt is actually a collection of bash scripts and calls patch to do the actual patching

Re: magic failure

2013-06-19 Thread Matt D.
I believe the correct syntax is: $ ls -ld /usr/bin/gcc-* On 6/19/2013 9:01 AM, Nellis, Kenneth wrote: Surprised that this didn't work: $ ls -ld /usr/bin/gcc-? ls: cannot access /usr/bin/gcc-?: No such file or directory $ while the following did: $ ls -ld /usr/bin/gcc-?.exe

Re: Bug with Cygwin's 'quilt' is actually in 'patch'

2013-06-19 Thread Matt D.
. To summarize, the patch to Imakefile (CRLF) will apply if it is converted to LF line endings. Using the '--binary' switch seems to be a workaround for this issue. On 6/18/2013 1:36 AM, Matt D. wrote: Built the latest source 0.60 (same version as Cygwin) from http://freecode.com/projects/quilt

Bug with Cygwin's 'quilt'

2013-06-17 Thread Matt D.
There seems to be a problem with Cygwin's quilt. This simple example simply alters a #define from 'MESAGL' to 'NX_MESAGL'. That's it. New quilt created, ok. New patch, ok. Edit file, ok. Refresh (create patch), ok. Rollback changes, ok. Reapply patch.. error: quilt push Applying patch

Bug with Cygwin's 'quilt'

2013-06-17 Thread Matt D.
The last e-mail I supplied to the mailing list was missing the link to the example. See this one for the link. --- There seems to be a problem with Cygwin's quilt. This simple example simply alters a #define from 'MESAGL' to 'NX_MESAGL'. That's it. New quilt created, ok. New patch, ok. Edit

Re: Bug with Cygwin's 'quilt'

2013-06-17 Thread Matt D.
.dll snapshot; same problem. On 6/18/2013 1:09 AM, Matt D. wrote: The last e-mail I supplied to the mailing list was missing the link to the example. See this one for the link. --- There seems to be a problem with Cygwin's quilt. This simple example simply alters a #define from 'MESAGL

Re: Re: Make error when compiling xserver-cygwin-1.14.1-1

2013-06-16 Thread Matt D.
It seemed I had everything but flex. I downloaded that and double-checked all of the dependencies. Everything compiles now but I'm getting a linking error. I am using a CLEAN install of cygwin with the following packages: setup -P

Re: Cygwin/X crashes when combined with ssh/nx tunneling and -multiwindow

2013-06-16 Thread Matt D.
/eclipse-4_2-nx_2.png On 2:59 PM, Jon TURNEY wrote: On 15/06/2013 13:06, Matt D. wrote: Caught signal 11 (Segmentation fault). Server aborting So far I've only been able to duplicate this when tunneling Eclipse. I tried writing a simple java program that creates a JFrame window but could

Make error when compiling xserver-cygwin-1.14.1-1

2013-06-15 Thread Matt D.
Can anyone advise me on how to proceed? I've managed to install all of the necessary dependencies but I'm getting an error from make while compiling xserver-cygwin. I've deleted the source directory and redone the autoconf, configure, and make twice now without success. Here is the error:

Re: Make error when compiling xserver-cygwin-1.14.1-1

2013-06-15 Thread Matt D.
The error appears to be here: /bin/sh ../../ylwrap winprefslex.l .c winprefslex.c 'winprefslex.c' is not created but ylwrap is not returning an error. This is unfamiliar territory for me but I'll see what I can do. Off the top of your head, is there a way to slim this down to remove ylwrap?

Long delay when using undo/redo in eclipse with Cygwin/X

2013-06-12 Thread Matt D.
I'm not sure if this is the appropriate place to direct this question. Although the only case where I experience this is in eclipse, it only occurs when connecting to a remote X server. When using ctrl-z (undo) and ctrl-shift-z (redo) in eclipse there is a significant delay in the X session

Re: pty issue causes 'screen' to hang when run from mintty as detached

2013-06-12 Thread Matt D.
If you read the response from the mintty author in the support ticket linked in the original post you'll see: There've been various issues with pseudo terminal (pty) layer in the Cygwin 1.7.19 release, which apparently haven't been fully addressed in 1.7.20. Mintty is based on that pty layer,

Font rendering is different when using -multiwindow

2013-06-11 Thread Matt D.
When running applications with a full-screen or -rootless X session, fonts look fine. But when running the same application using the -multiwindow switch, fonts are rendered oddly and are difficult to read. Here are some examples: Correct (full screen or rootless):

Re: Font rendering is different when using -multiwindow

2013-06-11 Thread Matt D.
tied to a particular toolkit (Qt, gtk, etc. )? I don't have any good candidates to test this with, as I'm only familiar with gtk applications. Attached are the results from xdpyinfo. On 6/11/2013 2:03 PM, Jon TURNEY wrote: On 11/06/2013 08:14, Matt D. wrote: When running applications

Re: Font rendering is different when using -multiwindow

2013-06-11 Thread Matt D.
of the various options available through the -engine parameter, such as '-engine 1' but with no change. On 6/11/2013 4:08 PM, Matt D. wrote: To add some additional information, I am having the font rendering issue when connecting my X session to a remote CentOS 6.4 machine. I cannot duplicate the issue

pty issue causes 'screen' to hang when run from mintty as detached

2013-06-10 Thread Matt D.
See here for additional information and reproducible steps in the mintty support ticket: https://code.google.com/p/mintty/issues/detail?id=390 I can reproduce this using cygwin 1.7.20, 1.7.19, 1.7.18, 1.7.15, and 1.7.7. Screen does NOT hang when is is created by calling the first command

Using 'test' fails when referencing home '~' from bash loop

2013-06-10 Thread Matt D.
The following never exits the loop: until test -f ~/file.txt; do sleep 1 echo sleep; done; echo done The following does: until test -f /cygdrive/d/cygwin-home/file.txt; do sleep 1 echo sleep; done; echo done HOME is set and confirmed: echo $HOME /cygdrive/d/cygwin-home -- Problem

make hangs when compiling twf-0.4

2013-06-10 Thread Matt D.
Attempting to compile twf: http://gtk-apps.org/content/show.php/?content=83361 Configures fine. Then on make it hangs on what appears to be the linking stage: /bin/sh ../libtool --tag=CC --mode=link gcc -rdynamic -g -O2-o twf.exe main.o themes.o -lglade-2.0 -lgtk-x11-2.0 -lxml2