Is a demonstration lesson possible for Vodafone?

2022-11-30 Thread Joe Clemmow
Hello My name is Joseph Clemmow and I am a Data Migration manager for Vodafone. We are currently exploring ways of streamlining our Data Migration process and we have considered Cygwin as a potential data reconciliation model. However we are unsure of how to implement it in our current

Suggestion: Add run-parts to Cygwin.

2021-06-29 Thread Joe Smith via Cygwin
/run-parts #!/bin/bash# Name: /usr/bin/run-partsModified by Joe Smith (joeinwap,gmail) # Purpose: Runs jobs sequentially at regular intervals (daily,weekly,monthly)# Concept taken from Debian, copied from RHEL-5, modified for Cygwin. # See end for "How to run cron jobs with elevated

Using /etc/cron.{daily, weekly, monthly} on Cygwin (/usr/bin/run-parts)

2021-06-09 Thread Joe Smith via Cygwin
Please add 'run-parts' to Cygwin. I have been using the attached program (copied from Debian) successfully with Vista, Windows-7, and Windows-10. mintty screen dump #!/bin/bash # Name: /usr/bin/run-parts Modified by Joe Smith (joeinwap,gmail) # Purpose: Runs jobs sequentially

Re: [PATCH 1/2] Treat Windows Store's "app execution aliases" as symbolic links

2021-03-13 Thread Joe Lowe via Cygwin-patches
. This may not be an issue, if most/all relevent store apps function the same when the executable is exec-ed directly vs via the appexec link. Joe L. On 3/13/2021 4:21 PM, Johannes Schindelin wrote: Hi Joe, On Fri, 12 Mar 2021, Joe Lowe wrote: I am skeptical about this patch (part 1

Re: [PATCH 1/2] Treat Windows Store's "app execution aliases" as symbolic links

2021-03-12 Thread Joe Lowe
this function is better provided by updated application code. The patch part 2 seems entirely appropriate. Joe L. On 2021-03-12 07:11, Johannes Schindelin via Cygwin-patches wrote: When the Windows Store version of Python is installed, so-called "app execution aliases" are put into

Update required - LFTP 4.9.2 from 4.9.1

2020-09-04 Thread Joe Bloggs via Cygwin
Change log - https://lftp.yar.ru/news.html -- 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

LFTP 4.9.2 - 2020-08-13 (Cygwin current 4.9.1)

2020-09-04 Thread Joe Bloggs via Cygwin
Can this be updated please. Change log - https://lftp.yar.ru/news.html -- 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

New pty implementation is really slow

2020-03-21 Thread Joe via Cygwin
I'm using cygwin 3.1.4 on Windows 10. The new pseudo terminal stuff seems really slow. For example: $ time seq 1 (output omitted) real0m23.510s user0m1.515s sys 0m4.483s If I minimize the mintty window while seq is running, it gets slightly better: real0m4.562s user

Re: [ANNOUNCEMENT] lftp 4.9.0-2

2020-01-22 Thread Joe Bloggs
This was already fixed on lftp 4.9.1 released by the developer. You should probably just release that version instead of the patched version. https://github.com/lavv17/lftp/commit/5d344937d60380341c20409c11f135afb630d7ee Actual release https://github.com/lavv17/lftp/releases/tag/v4.9.1 On

Re: Error

2017-12-19 Thread Joe Nayo via cygwin
8.12.2017, 12:13 CET, Joe Nayo: > >>  1 [main] opengrads 2340 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer.  Please report this problem to >> the public mailing list cygwin@cygwin.com > > https://cygwin.com/faq.html#faq.using.fixing-find_fast_cwd-warning

Error

2017-12-18 Thread Joe Nayo via cygwin
1 [main] opengrads 2340 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

Re: [PATCH] Compatibility improvement to reparse point handling, v3

2017-06-21 Thread Joe Lowe
atching the dev and patch mail lists for a while, but if some issues pop-up then feel free to contact me directly. Joe L. Some test results. Previous cygwin. joe@dev /cygdrive/c/Volumes $ ls -ladsh * 0 lrwxrwxrwx 1 joe None 51 Jun 21 09:58 file_device_symlink.txt -> /cygdrive/c/Device/Hardd

Re: [PATCH] Compatibility improvement to reparse point handling, v3

2017-06-19 Thread Joe Lowe
On 2017-06-19 04:45, Corinna Vinschen wrote:> Hi Joe, > > As discussed in the previous iteration of this patch, this change > results in nuking DT_UNKNOWN for reparse points we don't handle. Still, > IMHO, if we have reparse points we know nothing about, they should stay > DT

[PATCH] Compatibility improvement to reparse point handling, v3

2017-06-14 Thread Joe Lowe
. Joe L. >From 736979422efb815f4b2906642d522c51d98ba230 Mon Sep 17 00:00:00 2001 From: Joe_Lowe <j...@pismotec.com> Date: Wed, 14 Jun 2017 13:01:28 -0700 Subject: [PATCH] Compatibility improvements to reparse point handling. --- winsup/cygwin/fhandler_disk_fil

Re: [PATCH] Compatibility improvement to reparse point handling, v2

2017-06-13 Thread Joe Lowe
On 2017-06-13 00:57, Corinna Vinschen wrote:> On Jun 12 13:08, Joe Lowe wrote: >> On 2017-06-12 03:27, Corinna Vinschen wrote: >>> On Jun 9 15:44, Joe Lowe wrote: >>>> -else >>>> +else if (res == -1) >>>>{ >>>

[PATCH] readdir() with mount point dentry, return mount point INO

2017-06-13 Thread Joe Lowe
readdir_check_reparse_point to uint8_t, to avoid unnecessarily being implicitly cast to and from a signed int. Renamed a related local variable "attr" to "oattr" that was eclipsing a member variable with the same name. Joe L. diff --git a/winsup/cygwin/fhandler_disk_file

Re: [PATCH] Compatibility improvement to reparse point handling, v2

2017-06-12 Thread Joe Lowe
Corinna, I will work through the code and apply your feedback. A few additional comments below. On 2017-06-12 03:27, Corinna Vinschen wrote: On Jun 9 15:44, Joe Lowe wrote: 2nd pass at reparse point handling patch. [...] static inline int readdir_check_reparse_point (POBJECT_ATTRIBUTES

[PATCH] Compatibility improvement to reparse point handling, v2

2017-06-09 Thread Joe Lowe
2nd pass at reparse point handling patch. Patch is intended to improve cygwin application compatibility with native mount points and native symlinks where target does not begin with "\??\X:" or "\??\UNC" or "\??\Volume{". Such symlinks function with native windows apps, but fail today with

Cygwin emacs -- apparent version config issue with 24.4 to 24.5

2015-04-16 Thread Joe Morris
I just did a new install of Cygwin and its emacs using the windows 64 intaller, and when I ran emacs from the Cygwin command line I got these errors: $ emacs Warning: arch-dependent data dir `/usr/libexec/emacs/24.5/x86_64-unknown-cygwin/': No such file or directory Warning: arch-independent

Notmuch mail indexer - talloc requirement?

2015-03-18 Thread Joe Rochette
Notmuch) and after a long-running ./configure step i get an error on make which is pasted below: [joe@my_pc talloc-2.1.1]$ make WAF_MAKE=1 PATH=buildtools/bin:../../buildtools/bin:$PATH waf build Waf: Entering directory `/cygdrive/c/Users/joe/talloc-2.1.1/bin' [16/18] Linking default/cygpytalloc

The -X option to unzip-6.00 does not work.

2014-09-07 Thread Joe Smith
On Unix, support restoration of 32-bit UID/GID data using the new ux IZUNIX3 extra field introduced with Zip 3.0. The -X option does not work as advertised. Problem: Files extracted with unzip-6.00.12fc20 are owned by root:root even when -X is specified. Diagnosis: The code for -X

Fwd: Python 2.7.5 on Cygwin64: requests installation fails

2013-08-20 Thread Public Joe
://stackoverflow.com/questions/18322718/python-2-7-5-on-cygwin64-requests-installation-fails Any help would be greatly appretiated. Thank you very much, Joe, the public -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com

Fwd: Cygwin 32 and Python 2.7.5: psycopg2 installation error

2013-08-20 Thread Public Joe
/questions/18323128/cygwin-32-and-python-2-7-5-psycopg2-installation-error Any help would be greatly appretiated. Thank you very much, Joe, the public -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com

Using / for cygdrive and cause network shares to become read-only

2011-06-30 Thread Joe Bologna
I've been using Cygwin for a long time. I haven't had reason to reinstall it until recently when I got a new computer. I installed the latest version and discovered the -s option to mount was removed. All I wanted to do is change the cygdrive prefix from /cygdrive to /. I discovered that I

Even more problems setting up ssh server

2011-02-22 Thread Joe
I'm having problems getting the ssh server up and running. I've installed it on 5 other computers without problems, but on this computer, it just doesn't work. Perhaps something I don't know about is running in the background stopping it, but I havn't been able to figure out what. I've

RE: libglade error during cygwin installation

2011-01-30 Thread Joe Crepeau
On Fri, 2011-01-28 at 22:56 +, Joe Crepeau wrote: xmlcatalog -v --noout --add system \ ? http://glade.gnome.org/glade-2.0.dtd; \ ? /usr/share/xml/libglade/glade-2.0.dtd \ ? /etc/xml/catalog add command failed Catalogs cleanup Do you have an /etc

RE: libglade error during cygwin installation

2011-01-28 Thread Joe Crepeau
xmlcatalog -v --noout --add system \ ? http://glade.gnome.org/glade-2.0.dtd; \ ? /usr/share/xml/libglade/glade-2.0.dtd \ ? /etc/xml/catalog add command failed Catalogs cleanup On Thu, Jan 27, 2011 at 06:41:18PM +, Joe Crepeau wrote: I am getting the following error when

RE: libglade error during cygwin installation

2011-01-28 Thread Joe Crepeau
On Fri, Jan 28, 2011 at 10:03:54PM +, Joe Crepeau wrote: On Thu, Jan 27, 2011 at 06:41:18PM +, Joe Crepeau wrote: I am getting the following error when installing the latest version of Cygwin on a Windows 7 machine. 2011/01/21 16:02:23 running: C:\cygwin\bin

libglade error during cygwin installation

2011-01-27 Thread Joe Crepeau
Complete 2011/01/21 16:05:20 Ending cygwin install I could not find a resolution to this problem anywhere.  Any suggestions? Thanks, Joe Joseph Crepeau Computational Physics Group Leader Applied Research Associates, Inc. 4300 San Mateo Blvd. NE Suite A-220

Your Rental Property Listing

2010-11-23 Thread Joe
Where They Are: Social Media integration with Facebook, Twitter, YouTube, etc. Check out this video that explains why JoeOptions: http://www.youtube.com/watch?v=kohBjcuPMhE We look forward to you joining us at JoeOptions! Best Regards, Joe We've sent you this email because we think you'll

Your Rental Property Listing

2010-11-23 Thread Joe
Where They Are: Social Media integration with Facebook, Twitter, YouTube, etc. Check out this video that explains why JoeOptions: http://www.youtube.com/watch?v=kohBjcuPMhE We look forward to you joining us at JoeOptions! Best Regards, Joe We've sent you this email because we think you'll

Re: ncurses problem with mvcur function

2010-05-20 Thread Joe Java
Hello Charles Thank you, the old game now compiles OK. Joe --- On Wed, 5/19/10, Charles Wilson cyg...@cwilson.fastmail.fm wrote: From: Charles Wilson cyg...@cwilson.fastmail.fm Subject: Re: ncurses problem with mvcur function To: Cygwin Mailing List cygwin@cygwin.com Date: Wednesday, May

vista/windows 7 file permissions for multiple users

2010-04-30 Thread Joe
Are the necessary file permissions for multiple users on windows 7 vista documented somewhere? For example, if /var/log/XWin.0.log isn't world writeable, the server will crash with a message saying to look in XWin.0.log for info. :) I figure you need to write to at least /tmp, /var, /home?

startxwin.exe and ssh-agent

2010-02-05 Thread Joe Warren-Meeks
basically want my whole Xserver to run as a child of my ssh-agent so all xterms and other processes will collect the credentials. -- joe. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http

Re: xterm not working

2009-11-30 Thread Joe Java
Thank you! xterm now works again. The solution was: Run the Cygwin setup program, and on the Select Packages page, choose Utils and within there choose termcap and downgrade to version 20050421-1. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

xterm not working

2009-11-29 Thread Joe Java
Gone for Thanksgiving break, return and update cygwin, and now xterm does not show anymore. I have not upgraded to the latest 1.7 (I am waiting for the official release). I read the other messages and nothing seems to work. Does anyone have a SIMPLE solution to this problem.

Redirecting stdin under gdb

2009-11-05 Thread Joe Crepeau
, is there a work-around so that I can use gdb in cygwin? Thanks, Joe -- 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

Redirecting stdin under gdb

2009-10-30 Thread Joe Crepeau
sits there, apparently waiting for input. According to the posting in 1999, the problem is because the cmd arg parser in win32/gdb doesn't look for redirection symbols. If there is no fix, is there a work-around so that I can use gdb in cygwin? Thanks, Joe -- Problem reports: http

Re: BitDefender again

2009-08-28 Thread Joe Smith
Michael Kairys kai...@comcast.net wrote in message news:h73co7$tt...@ger.gmane.org... Thanks for the replies... the suggestion to use a base address in the 0x3500 area (or indeed any of the others they mentioned) is going to horribly frag your heap and bork your maximum allocatable

Re: Question of the necessity of rebaseall

2009-05-26 Thread Joe Smith
Larry Hall (Cygwin) reply-to-list-only...@cygwin.com wrote: Andy Koppe wrote: Remember, the semantics of fork is that BOTH processes (the parent and child) must see the SAME memory, and that includes all shared libraries being mapped at the SAME location. But since Windows doesn't provide a

Re: [1.5][gcc-3.4.4] python-2.5.4 distutils failed to compile c files

2009-05-07 Thread Joe Pham
Dave Korn writes: What about calling distutils.Ccompiler.set_executables() in your script that invokes distutils? I probably could, but I'd have to do that for each and every package that I need to build. -Joe Pham You can take

[1.5][gcc-3.4.4] python-2.5.4 distutils failed to compile c files

2009-05-06 Thread Joe Pham
(os.path.isfile() returned False). One simple work-around is to delete that s-link and copy /bin/gcc-3.exe to /bin/gcc.exe Not sure if there is anything that could/should be done here, maybe just an FYI to those who might run into the same issue. -Joe Pham

Re: [1.5][gcc-3.4.4] python-2.5.4 distutils failed to compile c files

2009-05-06 Thread Joe Pham
Can you just tell windows python to use gcc-3 in distutils instead of gcc, and not have to munge your cygwin installation? Not through any command line parameters. I'd have to change the distutils source. -Joe Pham Click here

Re: Font problem with remote emacs session

2009-02-13 Thread Joe Java
Thank you! Everything works and looks great! -- 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/

Font problem with remote emacs session

2009-02-12 Thread Joe Java
I Have not used X in a while ( a few months). I did a complete update to the latest Cygwin packages. When I logged onto the school system , I tried to open an emacs window and got the following: Warning: Cannot convert string -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* to type FontStruct

Re: binutils 20080523-1: version string breaks python2.5 distutils

2008-05-29 Thread Joe Pham
works for all cases: '(\d+\.\d+(\.(\d+))?([ab](\d+))?)' -Joe Pham You will believe your eyes! Click here for great whale watching packages! http://thirdpartyoffers.netzero.net/TGL2231/fc

binutils 20080523-1: version string breaks python2.5 distutils

2008-05-28 Thread Joe Pham
chance to make this consistent with Linux? Thanks, -Joe Pham Free quote and debt consolidation information. Click Here. http://thirdpartyoffers.netzero.net/TGL2231/fc/Ioyw6ijmNTxLTYd0fTRTABm9QIOabOdb2r3A2EdJqwdaXxxoKO4W4C

diff utility...

2008-03-13 Thread Joe Saunders
I downloaded cygwin to my XP desktop and assumed there would be a diff utility in th shell or utilities.. Did not see it... Then i went online at cygwin to get the diff utility. could not find a pakcage... There has to be one, what am i missing here... Thx -Joe -- Unsubscribe info

File permission hassles on Vista

2007-11-04 Thread Joe Krahn
are apparently independent of Win32 attributes. If Cygwin doesn't have anything like this, I think it would be a good Win32 utility to include (i.e. sort of like regtool). Thanks, Joe Krahn -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http

Re: HEADS UP:Problem with svn under latest snapshot.

2007-08-08 Thread Joe Smith
Thomas Berger [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] It could be a matter of interference with TortoiseSVN. No. It could not. I don't have tortoiseSVN. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

HEADS UP:Problem with svn under latest snapshot.

2007-08-07 Thread Joe Smith
Just in case you were not aware, Something has broken svn in the latest snapshot. (Actually at least the two most recent snapshots have this problem). Here is the error: svn: Can't move '.svn/tmp/entries' to '.svn/entries': Permission denied LS output: $ ls -al .svn total 2 drwxr-xr-x+ 6

unlink()'s not quite POSIX behavior.

2007-07-31 Thread Joe Smith
It appears that currently unlink will not immedately remove a file (that has only one link) if a handle to the file is open, but will flag it for deletion once the file handle closes. This is causing a problem with Python 3000. POSIX says: When the file's link count becomes 0 and no process

Re: unlink()'s not quite POSIX behavior.

2007-07-31 Thread Joe Smith
Joe Smith wrote in message news:[EMAIL PROTECTED] Nevermind. I see that the relavent changes to NT_unlink are just very recent, and the only problem is that the latest cygwin dll does not incldue those changes yet. You can ignore the previous message. -- Unsubscribe info: http

Re: ntfs ObCaseInsensitive cygwin?

2007-07-31 Thread Joe Smith
Corinna Vinschen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Jul 31 11:21, Morgan Read wrote: Hi Folks Lots of refs to the case sensitivity nightmare in archives, but couldn't find any to ntfs' obcaseinsensitive registry option (HKLM\SYSTEM\CurrentControlSet\Control\Session

Re: Eliminating -mno-cygwin from gcc.

2007-02-07 Thread Joe Smith
Christopher Faylor wrote in message news:[EMAIL PROTECTED] [snip] I guess this means that I need to generate a cross-binutils, too. Is a cross-binutils really needed? Which (if any) of the binutils act differently when targeted at MingW32 than when targeted at Cygwin? (I've never worked

Re: Missing Programs

2006-12-23 Thread Joe Smith
Harold Fuchs wrote in message news:[EMAIL PROTECTED] Larry Hall (Cygwin) wrote: [snip] A: Yes. Q: Are you sure? A: Because it reverses the logical flow of conversation. Q: Why is top posting annoying in email? I'll treat myself for Christmas ;-) Thanks, Harold PS I disagree

1.5.22: Man pages show escape codes

2006-11-28 Thread Joe Asdf
everywhere else I'm supposed to; i.e. directory listings and other console application output. If anyone has any ideas or suggestions for fixing this, I'd appreciate it! Attached is the output from cygcheck. Thanks, Joe _ Get free

RE: Patch to mapping up to 128 SCSI Disk Devices

2006-11-27 Thread Loh, Joe
Corinna Vinschen wrote: On Nov 14 11:52, Loh, Joe wrote: [...] We have converted all comments to use C-style /**/ and attached the patch as a file instead. Your copyright assignment has arrived and got signed, so I took the opportunity to apply your patch. Thanks. Looking forward

Re: Patch to mapping up to 128 SCSI Disk Devices

2006-11-14 Thread Loh, Joe
using the stock 1.5.19 cygwin. Hence, we felt it may help others to document the behavior. Our intent is to increase the device mapping with minimal change to existing implementation. We have converted all comments to use C-style /**/ and attached the patch as a file instead. Thanks, Joe

Patch to mapping up to 128 SCSI Disk Devices

2006-11-13 Thread Loh, Joe
This is a modified patch for up to 128 SCSI Disk Devices as discussed in http://cygwin.com/ml/cygwin/2006-11/msg00060.html. As suggested by Eric Blake, we have snail mailed the copyright assignment to Rose Naftaly. ChangeLog for winsup/cygwin: 2006-11-13 Joe Loh joel at pivot3 dot com

bash quoting bug

2006-11-07 Thread Joe Buehler
--version GNU bash, version 3.1.17(9)-release (i686-pc-cygwin) Copyright (C) 2005 Free Software Foundation, Inc. $ The proper output is a character. -- Joe Buehler -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html

Missing DEV_SD1_MAJOR in dtable.cc

2006-11-06 Thread Loh, Joe
, as pointed out by Eric. One other behavior we noticed is that /proc/partition currently shows multiple entries of /dev/sdz if number of volumes exceeds 26. It's a pretty benign behavior and we don't have any recommended patches. Thank you all for your support of Cygwin. Joe Loh

RE: Mapping of \device\harddisk12 and beyond

2006-11-02 Thread Loh, Joe
Really appreaciate the recommendation that Dave Korn suggested. We went ahead and modified the cygwin1.dll for version 1.5.19-4, which is the one we have installed for testing. In the event of checking out our change we found a bug in the current SCSI device handling of major number 65, i.e. any

RE: Mapping of \device\harddisk12 and beyond

2006-11-01 Thread Loh, Joe
like /dev/sda to /dev/sdz, then /dev/sdaa to /dev/sdaz, then /dev/sdba all the way to /dev/sdzz maybe? Thanks, Joe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ

Mapping of \device\harddisk12 and beyond

2006-10-31 Thread Loh, Joe
: Is there anyway within Cygwin that I can mount the other \device\harddisk references beyond the limitation? Thank you in advance for your help. Joe Loh -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http

Re: Cygwin/X and emacs always hangs..

2006-09-13 Thread Joe Bruce
). Joe -- 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/

write() or read() returning ENOENT status

2006-08-22 Thread Loh, Joe
() or read() system calls. Thank you in advance. Joe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

when two packages depend on eachother, it's impossible to uninstall them

2006-08-12 Thread joe trree
(this is just one of many annoyances in the cygwin installer, but it's a really stupid one that i just ran into) when two packages depend on eachother, it's impossible to uninstall them (exmaple: Util/bzip2 and Libs/libbz2) why? both packages are set to Keep when you click Keep, it changes to

Re: cygpath as a key binding

2006-08-12 Thread Joe Tree
convert or thelike, but it doesn't seem very workable) - Joe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: Where is complex.h

2006-07-25 Thread TV JOE
Hi, Would any of you that replied be interested in assisting me with compiling this program. It's a C program written for a Suse Linux distribution. The author maintains the only problem would be resolving the complex.h warnings. TIA.

Where is complex.h

2006-07-24 Thread TV JOE
Hi, I've a C program referencing complex.h. But make can't find it and the only copy I see is in /usr/include/mingw which I don't think is the right version. Advice welcomed. TIA. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

Re: Which list should cygwin development be discussed on ?

2006-07-01 Thread Joe Smith
Christopher Faylor [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Fri, Jun 30, 2006 at 01:48:14AM +0100, Darryl Miles wrote: Is my more technical discussion better put onto the cygwin-patches list ? No. The mailing list descriptions really are accurate. If you don't have a

Re: g++ 4.1?

2006-06-26 Thread Joe Schmoe
Thanks to all that encouragement, I now have not one but two working installations of gcc-4.1.1. As Brian said, the cygwin compiler will configure and make with no problems, except that -mno-cygwin doesn't work. For a no-cygwin compiler, this is what I did -- I'm not saying it's a good idea.

Re: 1.0:Question about Cygwin1.dll crashing with DEP/NX

2006-05-30 Thread Joe Smith
Brian Dessent [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm afraid you are probably not going to find anybody on this list interested in even considering problems with these ancient versions. If you can reproduce the problem you experience with a current Cygwin snapshot then

Re: The $HOME variable; rxvt and .inputrc

2006-05-17 Thread Joe Smith
George wrote in message news:[EMAIL PROTECTED] 1. Does the admonition against setting $HOME as a Windows environmental variable still stand, or was that an old wives' tale? If $HOME is set it windows then it MUST be a windows path, or you can break other (non-cygwin) programs that respect

Re: Last or equiv for Windows login?

2006-05-04 Thread Joe Smith
Bruce Dobrin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Is there a flag for last or who or another program (cygwin or other) that shows me the current and/or previous Windows login user? (Rather than the last cygwin shell login). With a combination of cygwin tools and

Compiling with gettimeofday

2006-04-28 Thread TV JOE
i, I've a program written for SUSE linux. The compile fails at the same place each time while referencing gettimeofday. I compile like this gcc -I/usr/include/mingw -I/usr/include/mingw/sys GoCart_v04.c -lm I compile with and without the -I included dirs and still have the problem. At

Re: sshd and network share permissions

2006-04-06 Thread Joe Hetrick
that I was seeing and if it fit with what I should be seeing when sshd runs as SYSTEM. I wasn't groveling for a canned solution, I was merely following posting rules, and asking a few questions related to what I was seeing in hopes that I could get a confirmation or two. Joe cheers

Re: sshd and network share permissions

2006-04-06 Thread Joe Hetrick
Dave Korn wrote: On 06 April 2006 17:31, Joe Hetrick wrote: Dave Korn wrote: On 06 April 2006 16:01, Joseph Hetrick wrote: I've set cygwin sshd up according to the following (which seems to be what is posted to the list at various intervals). http://pigtail.net/LRP/printsrv

Re: : in filename

2006-03-24 Thread Joe Smith
Brian Dessent [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hiroki Sakagami wrote: What happens in the below commands? The : in filenames seems to be a problem. But I don't understand the rule. The colon is used by NTFS to signify alternate data streams. You can google for

Re: : in filename

2006-03-24 Thread Joe Smith
Joe Smith wrote in message news:[EMAIL PROTECTED] Brian Dessent wrote in message Sorry! -^ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html

Re: gurl (call browser and it an URL)

2006-02-20 Thread Joe Smith
Igor Peshansky wrote: True, except cygstart won't do unconditional 'www*'-'http://www*' translation if a file with that name exists (e.g., try touch www.cygwin.com cygstart www.cygwin.com). Igor Cmd's 'start' command is exactly the same in this respect. I'm betting that the 'run' applet of

1.5.19: Install problem: cannot find cygz.dll

2006-01-24 Thread Joe Outzen
I'm trying to install Cygwin (full install). I downloaded the installer from cygwin.com, and downloaded and installed. The installation runs smoothly until 99% of the way through, when I start getting the following error: xmlcatalog.exe - Unable to Locate Component This application has

Re: 'su' no longer working?

2006-01-05 Thread Joe Smith
'su' used to be an executable that worked correctly from a SYSTEM-owned shell, but now it's a shell script that simply prints a not supported message. Is it possible to resurrect the old su executable (that perhaps prints the same message if run from a non-SYSTEM account)? I know. It has

Re: 'su' no longer working?

2006-01-05 Thread Joe Smith
Eric Blake [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Igor Peshansky on 1/5/2006 3:37 PM: Hi, 'su' used to be an executable that worked correctly from a SYSTEM-owned shell, but now it's a shell script that simply

Re: 'su' no longer working?

2006-01-05 Thread Joe Smith
Reply to my own message: Actually Igor's suggestion of just testing the context switch is far better. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

Re: 'su' no longer working?

2006-01-05 Thread Joe Smith
Brian Dessent [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Joe Smith wrote: It was for this very reason (command-line automated privilege manipulation) that editrights was written and placed in the 'base' Cygwin install so that *-config scripts can use it for creating services

Re: Does ^G work on Windows 9x/Me?

2006-01-04 Thread Joe Smith
So, maybe I will just cause the system to use MessageBox(MB_OK) aka MessageBox(0). MessageBox??? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

Re: Utility to get IP address of the machine

2006-01-04 Thread Joe Smith
David said: Probably useless if you're behind any kind of NAT device. Unless you need the external ip address. Sometimes you need the internal address, but other times you need the external address. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

Re: tar with switches leads to stack dump

2005-12-22 Thread Joe Smith
I still don't see why upstream refuses to update a compressed archive, but at least it didn't abort. Gnu tar will not allow the use of '-r or -u' when a tar file is given on stdin. I assume that compressed archives work using tar as a filter, instead of using potentially huge temporary

RE: Size difference reported by /proc/partitions and lseek(SEEK_END) on block device

2005-12-14 Thread Loh, Joe
This should be fixed now, too, in CVS. Please try the next developers snapshot. We just downloaded cygwin-inst-20051213.tar.bz2 and tried the snapshot. Problem with lseek(SEEK_END) is resolve and the result returned corresponded with the /proc/partitions. Thank you. Joe -- Unsubscribe info

RE: Error reported dd'ing close of end of block device with skip

2005-12-14 Thread Loh, Joe
Thanks, Joe -Original Message- From: Corinna Vinschen [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 4:57 AM To: cygwin@cygwin.com Subject: Re: Error reported dd'ing close of end of block device with skip On Dec 7 19:35, Corinna Vinschen wrote: On Dec 7 11:55, Loh, Joe

Re: Where is patch?

2005-12-14 Thread Joe Smith
Lennart Borgman [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Corinna Vinschen wrote: On Dec 14 19:30, Lennart Borgman wrote: I am having trouble with patch. My Cygwin patch (and my GnuWin32 patch) says it is version 2.5.9. But where is the sources for this? I looked at

RE: Size difference reported by /proc/partitions and lseek(SEEK_END) on block device

2005-12-07 Thread Loh, Joe
Have you tried this with the latest snashot from http://cygwin.com/snapshots ? Corinna We just installed the cygwin-inst-20051207.tar.bz2 snapshot. The output in //proc/partitions is the same as the Cygwin Kernel 1.5.18. However, the lseek(SEEK_END) no longer works. When I rerun the C

RE: Error reported dd'ing close of end of block device with skip

2005-12-07 Thread Loh, Joe
Searching the archive http://cygwin.com/cgi-bin/htsearch?config=htdigwords=dd+eom reveals a thread Bug in dd ?? at EOM which starts here: http://sourceware.org/ml/cygwin/2005-09/msg00878.html Btw, have you tried the latest snapshot from http://cygwin.com/snapshots/ ? Corinna We

RE: Error reported dd'ing close of end of block device with skip

2005-12-07 Thread Loh, Joe
On Dec 7 11:55, Loh, Joe wrote: QUESTION: Is there a way in Cygwin to do a read of a block device using C that does not do a read-ahead? We needed to develop an application that will issue the exact transfer size to the target device as requested. Looking at the strace, it appears

RE: Size difference reported by /proc/partitions and lseek(SEEK_END) on block device

2005-12-07 Thread Loh, Joe
On Dec 7 11:17, Loh, Joe wrote: We just installed the cygwin-inst-20051207.tar.bz2 snapshot. The output in //proc/partitions is the same as the Cygwin Kernel 1.5.18. However, the lseek(SEEK_END) no longer works. When I rerun the C program it gave the following error. I even recompiled

Size difference reported by /proc/partitions and lseek(SEEK_END) on block device

2005-12-06 Thread Loh, Joe
Hello folks, We have created the following test case to illustrate the behavior that we observed. Hopefully someone out there can shed some light into the subject matter.This behavior is observed running CYGWIN_NT-5.2 P3PANDA 1.5.18(0.132/4/2) 2005-07-02 20:30 i686 unknown unknown Cygwin.

Re: Can I get a sigint when the bash window closed with close window's button ?

2005-11-15 Thread Joe Smith
Igor Pechtchanski [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 15 Nov 2005, Konrad Eisele wrote: When th cygwin bash window is closed by clicking on the window's close button the the appliaction gets killed without recieving a sigint or any atexit called. Is there a way

Re: bug report place

2005-11-06 Thread Joe Smith
Carl Karsten [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] report this as a bug http://cs.nyu.edu/~pechtcha/cygwin/setup-2.513-1-alpha.exe Where should bugs be reported? Please post bugs to this list, but be sure to read and follow the instructions found here:

  1   2   3   4   >