bash shell globbing not working anymore

2006-10-04 Thread Andy Telford
Has any experienced this? - "ls" works but "ls *" returns "ls: *: No such file or directory" - same if I just use the shell builtin "echo *" just returns "*" I am up to date with the latest versions of everything. I had to fix up the line endings in my .bash_profile/.bashrc file to follow the

Re: bash shell globbing not working anymore

2006-10-04 Thread Andy Telford
Nope. The directory was not empty, so * should have been expanded by the shell according to the bash "pathname expansion" rules. I included the SHELLOPTS variable in the first email to show that noglob is not set. $ mkdir newdir $ cd newdir $ touch newfile $ ls newfile $ ls * ls: *: No such fil

Re: bash shell globbing not working anymore

2006-10-04 Thread Andy Telford
orking anymore On 04 October 2006 18:08, Andy Telford wrote: > Nope. The directory was not empty, so * should have been expanded by the > shell according to the bash "pathname expansion" rules. I included the > SHELLOPTS variable in the first email to show that noglob is not

Known problems with rsync 2.6.6?

2006-10-16 Thread Andy Pitonyak
Using Windows XP PRO and the latest cygwin and rsync (2.6.6-1), rsync hangs with 100% CPU usage. Simple case, from a bash, I: cd /cygdrive/c/tmp/pics rsync tmp1/ tmp2/ tmp1 contains some JPG files and tmp2 is empty. My parents computers. rsync used to work, but has stopped working. I did a cle

Re: Known problems with rsync 2.6.6? (Solved)

2006-10-16 Thread Andy Pitonyak
Whale VPN CLient interfers. I understand that other VPN clients also prevent rsync from working, even on local drives. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

Re: Known problems with rsync 2.6.6? (Solved)

2006-10-16 Thread Andy Pitonyak
> Andy Pitonyak wrote: >> Whale VPN CLient interfers. I understand that other VPN clients also >> prevent rsync from working, even on local drives. > > > With the Cisco VPN client, I find many ports are blocked. Port 22 is open > however so you may want to investigate u

Re: Known problems with rsync 2.6.6? (Solved)

2006-10-17 Thread Andy Pitonyak
>> In my case, the problem prevents an rsync on drives local to the >> machine. > Perhaps using ssh is still an option? That had not occurred to me to try. Treat the local drive as a remote drive and use ssh... I know how to do that in Linux, but not in cygwin I suppose that I simply need to

fork: Resource temporarily unavailable

2006-10-19 Thread Andy Hall
It seems that somewhere between cygwin 1.5.19-4 and 1.5.21-2 some change was made that causes this error. I have a bash script that is used to create a number of client processes that run in parallel and generate TCP/IP conversations with a remote server being tested This script can configure a

Re: fork: Resource temporarily unavailable

2006-10-20 Thread Andy Hall
The answers to Larry Hall's questions on my original posting are below. Andy Hall wrote: It seems that somewhere between cygwin 1.5.19-4 and 1.5.21-2 some change was made that causes this error. I have a bash script that is used to create a number of client processes that run in paralle

how to compile the .so to allow extern functions

2006-12-15 Thread andy wang
(); int myfunc() { printf("in myfunc.so"); func1(); } $ gcc -o bug1.so -shared bug1.c /cygdrive/c/DOCUME~1/Flyiky/LOCALS~1/Temp/ccBB7v0l.o: bug1.c:(.text+0x13): undefined reference to `_func1' collect2: ld returned 1 exit status Thanks in advance! Regards, Andy -- Unsubscribe

Re: how to compile the .so to allow extern functions

2006-12-16 Thread andy wang
EL-4-Manual/gnu-linker/win32.html UNIX Application Migration Guide http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnucmg/html/UCMGch09.asp Regards, Andy On 12/16/06, Brian Dessent <[EMAIL PROTECTED]> wrote: andy wang wrote: > I want to compile a .so which contains ext

Re: something goes wrong while compiling linux kernel under cygwin

2006-12-16 Thread andy wang
pile, it will compile ok most of time because it already skip the modules which can cause that problem. Good luck Regards, Andy On 12/16/06, Leo Liu <[EMAIL PROTECTED]> wrote: Hi, i'm a newbie to use cygwin under windows. I have known steps of compiling kernel under Linux. For some rea

Re: how to compile the .so to allow extern functions

2006-12-16 Thread andy wang
.dll.a $ gcc -shared -o bug1.so bug1.c -L. -lmain $ gcc -o bug1-main bug1-main.c -ldl $ ./bug1-main.exe in myfunc.so in main.func1() Regards, Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation:

Re: something goes wrong while compiling linux kernel under cygwin

2006-12-17 Thread andy wang
d the process and do not study carefully about the cross-compiler It will be full of pains I think :-) If you read the post carefully, your solution will be crosstool-0.43, and if you try that first, you don't even need to try "-o managed" option on cygwin! Good luck for the kernel

Re: something goes wrong while compiling linux kernel under cygwin

2006-12-18 Thread andy wang
to everyone who loves cygwin and linux. Regards, Andy -- 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/

how to use DNS or libc/minires.c in cygwin

2006-12-19 Thread andy wang
I need to install minires package instead? Thanks in advanced! Regards, Andy -- 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: how to use DNS or libc/minires.c in cygwin

2006-12-20 Thread andy wang
last question: if the minres support DNS SRV ? or I just select the wrong server(which I will find anothter server which provide this record to test) Thanks again Regards, Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html

Re: how to use DNS or libc/minires.c in cygwin

2006-12-20 Thread andy wang
1 10:32:03 2006 ;; MSG SIZE rcvd: 128 It seems that the orginal site "_rvp._tcp.lucent.com" has no SRV record. Cheers, Andy -- 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: how to compile the .so to allow extern functions

2006-12-20 Thread andy wang
n't work ? gcc -Wl,--export-dynamic -o bug1-main bug1-main.c -ldl Regards, Andy -- 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/

Is it possible to directly call a function in a dlopen library

2006-12-21 Thread andy wang
nd mystery procedure. myfunc2(); //directly call or using dlsym() } Best Regards, Andy -- 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: Is it possible to directly call a function in a dlopen library

2006-12-22 Thread andy wang
want to directly call myfunc1 without using dlsym(), is that possible? I was just wondering that I just dlopen module1 and module2, then directly call the function without dlsym(). I know that it is not a strictly cygwin-related question :-) Regards, Andy -- Unsubscribe info: http://cygwin

Re: Is it possible to directly call a function in a dlopen library

2006-12-22 Thread andy wang
(without dlsym, just func1( ... ) which is defined in module1.so). I am very confused :-(. Is it because it used RTLD_GLOBAL? * RTLD_GLOBAL - the external symbols defined in the library will be made *available to subsequently loaded libraries. Regards, Andy -- Unsubscribe info

Re: Is it possible to directly call a function in a dlopen library

2006-12-23 Thread andy wang
the future. That is the limitation of the Technics but it will be very fun to do that. Thanks again and Merry Xmas! Regards, Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com

how to debug with the crash especially with the corrupt stack in multi-thread environment using gdb.

2006-12-24 Thread andy wang
Hi, All: now I get a new question: how to debug with the crash, especially with the corrupt stack in multi-thread environment using gdb. I found a related post using "info reg, watch 0x230" such low level command to trace a crash. http://www.cygwin.com/ml/cygwin/2004-02/msg00921.html My que

Re: how to debug with the crash especially with the corrupt stack in multi-thread environment using gdb.

2006-12-25 Thread andy wang
Thanks .Larry! If the bug is not in the cygwin1.dll but an application and with stack corrupted, how can I using the low level debug technics to find the reason. Regards, Andy Download a snapshot with symbols so you get better stack info: <http://cygwin.com/snapshots/> Either that, or

Re: "Command not found" error on gcc & v

2006-12-25 Thread andy wang
;Skip" to "Keep" and the seond column will display the version number. Have fun! Regards, Andy On 12/25/06, CHIAPOH TAI <[EMAIL PROTECTED]> wrote: I downloaded and installed "Cygwin DLL 1-5-23-2" yesterday onto my PC running Windows 2000 Professional. When I tri

select failed: Interrupted system call

2006-12-25 Thread andy wang
Hi, All: What's the reason can cause interrupted system call. the same program will not be interrupted running at linux. I know a singal can, Is there anything else can? Is there possible that pthread_cond_signal will do the same thing too? Regards, Andy -- Unsubscribe info:

Re: email and gmail

2007-01-16 Thread andy wang
Hi, Jeremy, Or on another way, just get rid of SMTP+TLS stuff and directly use Google API to access your gmail. Unless you need your own smtp server to talk with gmail server.. Regards, Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http

mp3 tag editor for cygwin?

2007-02-01 Thread Andy Kriger
Can someone recommend a good command-line tool for editing mp3 tags? I need to edit a large amount of tags but the editing is a regular operation and could be easily scripted if I had a good command-line tool. thx Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem

cygwin and svn on Windows Vista

2007-02-21 Thread Andy Wu
When I try to do a checkout or export from a svn repository, I get the following error message: svn checkout svn+ssh://[path]/[to]/[repository] 11 [main] svn 1472 child_copy: linked dll data write copy failed, 0x317000..0x3170B0, done 0, windows pid 3628, Win32 error 487 svn: Can't create tunne

Behavior of static variable in Template in cygwin dynamic library (dll)

2007-04-15 Thread andy wang
Hi, All, Recently I met the problem that I have seen the similar problem reported before in this forum " cygwin, g++, templates, and DLLs" http://cygwin.com/ml/cygwin/2006-04/msg00480.html (1) you have a DLL whose source code includes a template class. (2) that template class has a static member

completely fresh reinstall of cygwin?

2007-10-01 Thread Andy Foster
I originally installed cygwin on a network drive (p:\cygwin). Due to various intermittent network problems I wanted to move the install it to my local c:\ (e.g. c:\cygwin) so that it is no longer network dependent. Unfortunately when I tried to put a new install into c:\cygwin, the /usr/bin and /

Some programs won't run, no error messages

2007-11-08 Thread Andy Lager
Dear all, I have an issue with cygwin on my borrowed Windows XP /SP2 laptop. Some program simply won't run, such as latex and emacs, and no error message is displayed. Other programs, for instance xclock and pico, work fine. I've enclosed a commented console printout. I normally use cygwin/X,

Re: [ANNOUNCEMENT] Updated: unison2.13, unison2.17, unison2.27

2007-11-14 Thread Andy Moreton
On Wed, 14 Nov 2007 17:20:33 GMT, Andrew Schulman wrote: > New versions of the unison2.13, unison2.17, and unison2.27 packages are > available in the Cygwin distribution. The /etc/postinstall/unison... installer scripts assume that alternatives is available on the path. On my system /usr/sbin

Re: [ANNOUNCEMENT] Updated: unison2.13, unison2.17, unison2.27

2007-11-15 Thread Andy Moreton
On Thu, 15 Nov 2007 12:01:29 GMT, Andrew E. Schulman wrote: > Changes in these releases: > - Fixed two bugs in the postinstall scripts. One of them caused > installation to fail in some cases. Thanks to Andy Moreton for pointing > these out. Thanks for updating this, but there s

Re: [ANNOUNCEMENT] Updated: unison2.13, unison2.17, unison2.27

2007-11-19 Thread Andy Moreton
On Fri, 16 Nov 2007 19:20:30 GMT, Andrew Schulman wrote: > I'm not sure. At this point I recommend that you remove and reinstall all of > the unison alternatives on your host, as follows: > > rm /var/lib/alternatives/unison > for f in /etc/postinstall/unison* ; do $f ; done > > and see if that

screwed Registry, versions, file format, keyboard, gs

2008-03-08 Thread Andy Heath
9(0.150/4/2) 2006-01-20 13:28 i686 Cygwin CYGWIN_NT-5.1 pelican 1.5.25(0.156/4/2) 2007-12-14 19:21 i686 Cygwin Please help. andy -- 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/

Cygwin for Windows 2000

2013-11-11 Thread Stonham, Andy
Hi I see that from release 1.7.19 Windows 2000 is no longer supported. Is there anywhere I can download release 1.7.17 from, as I still have Winodws 2000 servers I need to put Cygwin on in order to monitor them with Oracle products Regards Andy -- Problem reports: http://cygwin.com

RE: Little cygpath improvement request

2014-02-16 Thread Andy Hall
> > On Sun, Feb 16, 2014 at 12:30 PM, Buchbinder, Barry (NIH/NIAID) [E] wrote > > if [ ! -z "$2" ] ; then NATIVE="$(cygpath -ml "$2")" ; fi > > That might better be written as this > > [ "$2" ] && NATIVE=$(cygpath -ml "$2") > > You do not need the extra quotes when setting a variable in thi

RE: Testers needed: New passwd/group handling in Cygwin

2014-03-03 Thread Andy Hall
> On Mar 2 14:20, Frank Fesevur wrote: > > 2014-02-28 22:08 GMT+01:00 Corinna Vinschen: > > > That's not really a problem but a case of "it is as it is". To get the > > > user and group info, Cygwin has to contact the DC and/or GC and then > > > runs into a timeout. Right now, the LDAP timeout

1.7.29: Incorrect output from the "file" command

2014-04-30 Thread Andy Leung
In the 1.7.29 version of cygwin, the "file" command (5.18) outputs the following:   PNG image data72 72 8-bit/color RGBA, non-interlaced While in previous versions, the "file" command actually outputs for the same file:   PNG image data, 72 x 72, 8-bit/color RGBA, non-interlaced $ file --

Re: Unset TMP/TEMP in profile? (was Re: [ANNOUNCEMENT] [1.7] Updated: cygwin-1.7.0-67)

2009-12-01 Thread Andy Koppe
ory can have > # unexpected consequences. > unset TMP > unset TEMP > > # Alternatively, set them to the Cygwin temporary directory > # export TMP=/tmp > # export TEMP=/tmp > > # Or use TMPDIR instead > # export TMPDIR=/tmp If the ability to get ba

Re: how to get the windows PATH env in cygwin

2009-12-01 Thread Andy Koppe
s not Cygwin's fault that Windows executables are sprinkled all over the filesystem. Cmd.exe also only finds stuff that's in the PATH. > and wrote a script to add all directories with > *.exe files to the $PATH. I bet that does wonders for performance. Andy

Re: [1.7] git-difftool paths unusable by win32 kdiff3

2009-12-01 Thread Andy Koppe
_DIR or > anything similar exists. Have a look at the cygpath utility. Andy -- 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: odd segfault with my c program using cygwin 1.7

2009-12-01 Thread Andy Koppe
le of Programming: It's Always Your Fault http://www.codinghorror.com/blog/archives/001079.html ;) Andy -- 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: odd segfault with my c program using cygwin 1.7

2009-12-01 Thread Andy Koppe
2009/12/2 Dave Korn: > Andy Koppe wrote: >> 2009/12/2 jeffunit: >>> My program ran fine under cygwin 1.5 as well as many versions of linux >>> including >>> mandriva 2009, mandriva 2009.1 and mandriva 2010.0 >>> >>> When compiled with >>

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Andy Koppe
nglish users should have that in Cygwin if > their system language is defined differently? See the continuation of the thread Corinna linked to. LANG should only be set to C.UTF-8 if it isn't set already. Andy -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: Why does exiting bash window kill off Gvim? (Windows version, but X-would be same question)

2009-12-04 Thread Andy Koppe
will have attached to bash's console. When a console is closed, all processes attached to it are terminated. I think that's a bug, because gvim has no need for a console and therefore should be built with -Wl,subsystem,windows. Andy -- Problem reports: http://cygwin.com/problems.h

Re: Why does exiting bash window kill off Gvim? (Windows version, but X-would be same question)

2009-12-04 Thread Andy Koppe
2009/12/4 Andy Koppe: > 2009/12/3 Linda Walsh: >> In bash I start a copy of gvim.exe (64-bit windows version) in background. >> I disown the job in bash so bash no longer manages the job -- it should be >> a free and clear process (unaffected by bash exiting). >> >>

Re: Why does exiting bash window kill off Gvim? (Windows version, but X-would be same question)

2009-12-08 Thread Andy Koppe
Cygwin sends explicit SIGHUPs to other members of the > console process group when it receives a CTRL_CLOSE_EVENT.  setsid should > fix that. > > You shouldn't need the '&' in the above scenario.  Did that actually make > a difference? I hadn't even tried w

Re: UTF-8 in Cygwin console on 1.7

2009-12-08 Thread Andy Koppe
ing but the default "Raster Font". Andy -- 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: Unable to install MingW & gcc C & C++ libraries

2009-12-08 Thread Andy Koppe
2009/12/8 Chip Panarchy: > I'm unable to install MinGW and GCC libraries. > > What other information do you need in order to troubleshoot further? Erm, describing how you tried to install them and how it went wrong would be a start. Also: http://cygwin.com/problems.html Andy -- P

Re: UTF-8 in Cygwin console on 1.7

2009-12-08 Thread Andy Koppe
fix is attached. It also changes the handling of SI (0xF) in the same way. I also noticed that the code for handling CAN (0x18) under 'case ERR:' is unreachable, because CAN is classified as 'NOR' in the base_chars table. Perhaps a separate 'CAN' class would be

Re: UTF-8 in Cygwin console on 1.7

2009-12-08 Thread Andy Koppe
that the patch removes the (misnamed) IGN case altogether. Andy nul.patch Description: Binary data -- 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: Problems with Pine

2009-12-08 Thread Andy Koppe
hopefully you'll be fine. Looks like the pine package is missing a dependency there. (And in any case, it ought to be using terminfo instead of the obsolete termcap.) Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

Re: [REQ] Please package SendMail for Cygwin

2009-12-08 Thread Andy Koppe
2009/12/8 Chip Panarchy: > As I'm still having compilation problems, could someone else please > create a SendMail package for Cygwin? While waiting for that to happen, have a look at exim, or – in case all you actually need is forwarding to a remote server – ssmtp. Andy -- Prob

Re: `cygwinpath -D' could not display the Chinese character

2009-12-09 Thread Andy Koppe
t instead? Do Chinese characters still work correctly in other programs? Finally, please attach (not include) the output of 'cygcheck -svr' as described at http://cygwin.com/problems.html. Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http:

Re: Problems with Pine

2009-12-09 Thread Andy Koppe
2009/12/9 Corinna Vinschen: > On Dec  9 06:21, Andy Koppe wrote: >> 2009/12/9 Angelo Graziosi: >> > It seems that some recent updates in cygwin-1.7 has broken Pine from >> > MinTTY. >> > Now, trying to start from MinTTY: >> > >> > $ pi

Re: Problems with Pine

2009-12-09 Thread Andy Koppe
of places. Setting TERM should normally be left to the terminal. Andy -- 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: UTF-8 in Cygwin console on 1.7

2009-12-09 Thread Andy Koppe
on though. Do only certain control chars (if any) appear in doublebyte encodings? > Maybe after clarifying this, the whole snipplet should be cleaned up a > little bit. Sounds like a good addition to your console patch. Andy -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: where is my "/usr/dict/words" or "/usr/share/dict/words on cygwin? (1.7)

2009-12-11 Thread Andy Koppe
-one has volunteered to package it? Certainly I can't find it in the package list, either on 1.5 or 1.7. Perhaps you'd previously copied it manually from elsewhere? Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentat

overwriting an in-use executable

2009-12-13 Thread Andy Koppe
cp and mv behave differently when trying to overwrite an in-use executable: $ cp mintty.exe /bin cp: cannot create regular file `/bin/mintty.exe': Device or resource busy $ mv mintty.exe /bin [works fine] That's on 1.7. On 1.5, both cp and mv fail. Is that as expected? Andy

Re: Looking for the 'stdout' of a Windows application

2009-12-13 Thread Andy Koppe
er for your program, e.g.: $ conin cleartool More info at http://groups.google.com/group/mintty-discuss/browse_thread/thread/1f9cf480117b8a0b Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.

Re: overwriting an in-use executable

2009-12-13 Thread Andy Koppe
but the cygwin 1.7 behavior is more like > Linux and traditional unix semantics And very useful it is, but I was wondering why it works with 'mv' but not 'cp'? Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/

Re: Looking for the 'stdout' of a Windows application

2009-12-13 Thread Andy Koppe
en console. Speaking of which, any chance of making the hidden console stuff available through an official interface, e.g. cyg_alloc_hidden_console()? Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://c

Re: overwriting an in-use executable

2009-12-13 Thread Andy Koppe
y and file data. > The OS can keep the old data (inode) until the exe terminates. That makes plenty of sense. Thanks, Andy -- 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: Looking for the 'stdout' of a Windows application

2009-12-13 Thread Andy Koppe
obviously misdiagnosed the situation, since you'd said the problem was that output didn't appear. That probably means that cleartool is using console-specific output functions. 'conin' does not address that. Are you getting no output from cleartool at all or is it just

ttyfier (was: Re: Looking for the 'stdout' of a Windows application)

2009-12-13 Thread Andy Koppe
d to the same console. But the DLL injection makes me wonder: is it possible to override existing functions such as WriteConsole or ReadConsole? Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cyg

Re: Cygwin 1.7: Empty/white-space output when display Chinese characters in GBK charset encoding?

2009-12-14 Thread Andy Koppe
up, that's four grey blocks in the brackets, representing invalid UTF-8 bytes.) Same both with the default raster font and with Lucida Console. With the default raster font, the output is limited to your console codepage, which may not have that replacement character, so try it with a different f

Re: UTF-related question

2009-12-15 Thread Andy Koppe
acters. I don't know what to do about it, but googling "groff minus" or "man page hyphen" shows the problem exists elsewhere too. Andy -- 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: can not enter password for SSH when running in another terminal (RXVT)

2009-12-15 Thread Andy Koppe
enter in any of them... > > yes... running cygwin SSH from the openssh package... Please double-check that using 'which ssh'. Picking up a native ssh seems the most likely explanation for what you're seeing. Andy -- Problem reports: http://cygwin.com/problems.

Re: rsync - convert illegal characters in paths

2009-12-15 Thread Andy Koppe
s more likely to be able to help you. Andy -- 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: rsync - convert illegal characters in paths

2009-12-16 Thread Andy Koppe
is any other software that isn't shipped with the Cygwin distro.) Andy -- 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

java headers in gcc4-g++

2009-12-16 Thread Andy Koppe
The gcc4-g++ contains about 4000 Java-related headers under /usr/lib/gcc/i686-pc-cygwin/4.3.4/include/c++. Is that as intended? Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html

Re: /de/conout (was: Looking for the 'stdout' of a Windows application)

2009-12-18 Thread Andy Koppe
all on that will fail. Again, no output. There's nothing you can do about this apart from running cleartool in an actual console or a console wrapper such as ttyfier (if it worked) or http://sourceforge.net/projects/console/. Andy -- Problem reports: http://cygwin.com/problem

Re: mintty question ("file name too long")

2009-12-20 Thread Andy Koppe
/bin directory isn't added to the path. To ensure that bash is invoked as a login shell, mintty needs to be invoked with a single dash ('-') as parameter, i.e. the shortcut target needs to be something like: "C:\cygwin\bin\mintty.exe -". Andy -- Problem reports: htt

Re: 1.7: mintty 5.5.1 refuses to take hippos seriously ;-(

2009-12-22 Thread Andy Koppe
m an existing mintty session and see whether it reports an error? Andy -- 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: 1.7: mintty 5.5.1 refuses to take hippos seriously ;-(

2009-12-22 Thread Andy Koppe
sewhere? Also, did the shortcut work with mintty-0.5.4? (0.5.5 uses a different Windows function to load the icon, but it's not immediately obvious why that might upset the hippo.) Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Doc

[ANNOUNCEMENT] Updated: mintty-0.5.5-1

2009-12-22 Thread Andy Koppe
Mintty is a terminal emulator for Cygwin with a native Windows user interface and minimalist design. Among its features are Unicode support and a graphical options dialog. Its terminal emulation is largely compatible with xterm, but it does not require an X server. Mintty is based on code from PuTT

Re: 1.7: mintty 5.5.1 refuses to take hippos seriously ;-(

2009-12-23 Thread Andy Koppe
Hippo hippo hurray! > Note to everyone, including Andy, the ICO file worked until Mintty v0.5.4. > And, all my other ICO files seem to work with Mintty v0.5.5, including an > earlier one, I had gerri-rigged. Strange. I wonder what's different about the hippo. I might have a l

Re: 1.7.1: Mintty/bash window start: -bash: regtool: command not found

2009-12-23 Thread Andy Koppe
ygwin processes. But it doesn't seem to make a difference to the outcome anyway: regtool and also mount and ps aren't installed. It can be fixed by reinstalling the cygwin package again, this time without any Cygwin processes running. Andy -- Problem reports: http://cygwin.com/problem

Re: HEADSUP: Check mirror carefully when updating your 1.7 installation

2009-12-23 Thread Andy Koppe
the tu-dresden mirror, but not on another a few hours later that was set to www.mirrorservice.org. The latter looked like it was going to downgrade to 1.5 in the 'partial' package view. I didn't press Next to try. Andy -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: HEADSUP: Check mirror carefully when updating your 1.7 installation

2009-12-23 Thread Andy Koppe
2009/12/23 Andy Koppe: > 2009/12/23 Christopher Faylor: >> On Wed, Dec 23, 2009 at 12:37:31PM +0100, Corinna Vinschen wrote: >>>Hi, >>> >>>I just found an unfortunate side-effect of the move of the Cygwin 1.7 >>>release area.  If you use the new setup.e

Re: How to install Legacy from scratch?

2009-12-23 Thread Andy Koppe
2009/12/24 Fergus: > Thanks for great new version. > > 1.7 uses setup.ini, draws from release/, uses setup.exe v.2.673. > 1.5 uses setup-legacy.ini, draws from release-legacy/, uses setup.exe > v.2.673 (i.e. the same version as 1.7). No, 1.5 you uses http://www.cygwin.com/setup-l

Re: A question about setup.exe

2009-12-23 Thread Andy Koppe
which packages are going to be upgraded by switching to the "Partial" view on setup.exe's package selection screen. Andy -- 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: Problems with SSHD service partially resolved (Other problem not resolved.)

2009-12-24 Thread Andy Koppe
tall. Much faster than Explorer as well. Andy -- 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: Problem with RightAlt key in mintty

2009-12-24 Thread Andy Koppe
n the Keyboard page. I don't yet know why that affects right Alt on US keyboards. Andy -- 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: BIG Issue with 1.7 install.... multiple utils missing: mount, cygcheck, mkpasswd, etc

2009-12-24 Thread Andy Koppe
sage complaining about a Cygwin process still running during the install? There does appear to be an issue with setup not resuming correctly after that. To fix this, do a reinstall of the 'cygwin' package, after first making sure that no Cygewin processes are running anymore, inc

Re: Problem with RightAlt key in mintty

2009-12-24 Thread Andy Koppe
2009/12/24 Andy Koppe: > 2009/12/24 Ken Brown: >> In the latest mintty (0.5.5-1), RightAlt plus f (or b) doesn't move the >> cursor one word forward (or backward) when editing the command line. The >> LeftAlt key still works as expected. > > Confirmed. As a workar

Re: can some one please help me fix compiling errors related to winsock and sys/types and fd_set...etc

2009-12-24 Thread Andy Koppe
;t want Cygwin, you want MinGW, a separate project > with different goals.  Look it up. Cygwin ships with MinGW as part of the gcc (not gcc-4) package. To use it, you need to invoke gcc-3 with the -mno-cygwin option. Andy -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: need workaround for backspace change in 1.7

2009-12-24 Thread Andy Koppe
t definitely require a console, you might prefer one of those. Andy -- 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: putty isn't displaying correctly with 1.7

2009-12-26 Thread Andy Koppe
#x27;ve got a mismatch between Cygwin's character set and PuTTY's. Cygwin's default is UTF-8, whereas PuTTY's is ISO-8859-1. Change it under Window/Translation in PuTTY's options. (Or use mintty, which is a PuTTY derivative tailored for Cygwin, including 1.7's loc

Re: need workaround for backspace change in 1.7

2009-12-26 Thread Andy Koppe
2009/12/25 Andy Koppe: > 2009/12/25 Ric Anderson: >> For a  variety of reasons, I need a way to switch the character sent by the >> Console Window Backspace key from ASCII \177 to ASCII \008 (that is, make >> the backspace key send the ASCII backspace character like it d

Re: run2.exe segfaults when GDI and X11 elements are present

2009-12-26 Thread Andy Koppe
but the window is > not visible. I'm not sure why. Is it trying to hide mintty's console window, but ending up hiding the actual mintty window because mintty is a GUI subsystem app and hence doesn't have a console? Andy -- Problem reports: http://cygwin.com/problems.html

Re: New 1.7 release setup does not run on WinNT

2009-12-27 Thread Andy Koppe
t; setup.ini which no longer matches the version. > > Any suggestions? Upgrade to Windows 2000. Sorry, couldn't help myself. Presumably one or more Windows API calls not available on NT have crept in. Here's one suspect: GetLongPathName (in main.cc). Andy -- Problem reports:

Re: New 1.7 release setup does not run on WinNT

2009-12-27 Thread Andy Koppe
2009/12/27 Jerry DeLisle: > I am going to try a completely fresh install.  I have nothing to lose. No point in that. I'm afraid you'll need to wait for a setup.exe fix. Andy -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/

Re: No go after update to 1.7.1

2009-12-27 Thread Andy Koppe
ls: > > libintl8-0.17-11 > libiconv2-1.13.1-1 > libgcc1-4.3.4-3 > libreadline7-6.0.3-2 > libncurses9-5.7-16 > > All other listed DLLs are obviously native Windows DLLs. Except for cygwin1.dll of course. Try reinstalling the cygwin package itself as well. Andy -- Problem rep

Re: rsync no longer preserves extended ASCII characters after 1.7 upgrade

2009-12-27 Thread Andy Koppe
f your Linux system. Yes, that's one way. Specifying e.g. 'LC_CTYPE=en_US rsync ...' (i.e. a language without an explicit character set) will give you the ANSI codepage. But I think the --iconv option is the better way. Assuming you want to stick with ISO-8859-1 on the Linux side, &#

Re: gcc4[1.7] printf treats differently a string constant and a character array

2009-12-28 Thread Andy Koppe
> >  * another line ** > > 62 -61 44 > >  This letter has an accent --> * another line ** > >  - END -- > > As you can see the output of printf(string_constant) is what > I expected. The ouput of printf(char_array) is trucated at the non-ASCII

Re: gcc4[1.7] printf treats differently a string constant and a character array

2009-12-28 Thread Andy Koppe
2009/12/28 Andy Koppe: > 2009/12/28 Rodrigo Medina: >> Hi, >> I am moving from cygwin-1.5 and gcc3.4 to cygwin1.7 and gcc4. >> Some simple programs of mine fail. >> >> I am using LC_ALL=es_VE.ISO-8859-15. >> >> I have reduced the problem to this exam

<    1   2   3   4   5   6   7   8   9   10   >