Re: Making the command console stay on top

2005-11-15 Thread Charles Wilson

Reid Thompson wrote:

Terry Dabbs wrote:


I have an application written and compiled using gcc and ncurses (for
the colors), in the cygwin environment. This application gets
information from a database, and displays it to an operator running a
machine telling them what program to input (among other things).

The problem is that when they go to enter the program name, the console
window immediately falls behind that of the application they are
entering the data into, and they can't read it.

I'm using a shortcut to start this, and the level of display of the
window is not one of the options. Does anyone (that will answer) know a
way to start this window with the attributes needed so it will not be
covered when another application is touched by the mouse?


I suggest downloading the source to the 'run' package, and modifying 
that code to set the flag you want.  Look in run.c, start_child() function.


Then, you can use your modified 'run.exe' program to launch 'rxvt.exe -e 
bash' (but not cmd.exe) in your desired mode.


--
Chuck

--
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: autoconf AC_CONFIG_FILES Macro Issues

2005-11-15 Thread Charles Wilson

Larry Adams (The Cacti Group) wrote:

I have an issue with both the autoconf AC_CONFIG_FILES and AC_CONFIG_COMMANDS 
MACROS in the current 2.59 version of autoconf.  When compiling 
the ./configure shell script, the use of these macros prepents each command 
with several white spaces causing the use of continuation characters within 
the resulting ac_config_files and ac_config_commands to fail during subsequent 
execution of the configure script.


In the case of the AC_CONFIG_FILES MACRO, there are over 300 space characters 
prepended on the output line prior to the command being issued.


My question is, how do I get this logged as a bug?


This is not a cygwin-specific behavior.  You should report this as a big 
to the   bug dash autoconf at gnu dot org   mailing list.


--
Chuck


--
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: Making the command console stay on top

2005-11-15 Thread Reid Thompson

Terry Dabbs wrote:


I have an application written and compiled using gcc and ncurses (for
the colors), in the cygwin environment. This application gets
information from a database, and displays it to an operator running a
machine telling them what program to input (among other things).

The problem is that when they go to enter the program name, the console
window immediately falls behind that of the application they are
entering the data into, and they can't read it.

I'm using a shortcut to start this, and the level of display of the
window is not one of the options. Does anyone (that will answer) know a
way to start this window with the attributes needed so it will not be
covered when another application is touched by the mouse?

Thanks,

Terry Dabbs

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

 

are you displaying the ncurses app in a standard cygwin terminal window, 
a native windows rxvt window, or an X windows window?


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



CDDB and DiscID for Python on cygwin

2005-11-15 Thread Jeffrey Barish
I have been trying again to get CDDB and DiscID to work on cygwin.  I made
it farther than I did last time I tried: I was able to get cdrommodule.c (a
C extension module to the Python modules) to compile this time (problems
with include files).  My program now runs, but it gags when DiscID tries to
read the toc header (cdrom.toc_header(device)).  It looks as if the problem
is related to an ioctl:

ioctl(cdrom_fd, CDDB_READ_TOC_HEADER_FLAG, &hdr)

I am accessing the cdrom as /dev/scd0.  The open call completes
successfully.  Is there a known incompatibility between ioctl and cygwin?
I'm new to cygwin, so I don't know what else to try now.
-- 
Jeffrey Barish


--
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: Simple cygwin script doesn't work with Windows schedular/Command prompt

2005-11-15 Thread Brian Dessent
"Pandey, Sunil K" wrote:

> However when I try to launch the same script with windows scheduler via
> following command line it doesn't work.

That is because if you type "/tmp/test.csh" at the prompt, bash will ask
the system to execute the script and the #!/bin/csh line will be
honored.  It will also do this if you run it as "bash -c /tmp/test.csh",
since that is by definition what the -c flag means.

But if you just run "bash test.csh" (which is what you are doing in you
cronjob) then bash will read the file itself and try to execute each
line as if it were a command.  This will also happen if you type "source
test.csh" or ". test.csh".  And because you are using csh syntax, not
bourne shell syntax, you get unexpected results.

So what this all means is that if you want /bin/csh to execute your
script you need to invoke it as either "bash -c /tmp/test.csh" or "csh
/tmp/test.csh".

None of this has anything to do with Cygwin.  You will find the exact
same behavior on any *nix.

Brian

--
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: Simple cygwin script doesn't work with Windows schedular/Command prompt

2005-11-15 Thread Peter Rehley


On Nov 15, 2005, at 5:58 PM, Pandey, Sunil K wrote:


I have a very simple shell script say test.csh

$cat test.csh
#!/bin/csh
set x = "Some name"
echo $x > /tmp/xyz

When I ran this script in cygwin shell it works fine.

$cat /tmp/xyz
Some Name

However when I try to launch the same script with windows scheduler  
via

following command line it doesn't work.

Scheduler command line

C:\cygwin\bin\bash.exe -l -e /tmp/test.csh

Try using csh instead of bash



I also tried above command on Windows command prompt still doesn't  
work.


It creates a blank xyz file. Most probably set command is not working.
Not sure how to fix this script. Any help/hack will be much-much
appreciated.

Thanks.
Sunil

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





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



Simple cygwin script doesn't work with Windows schedular/Command prompt

2005-11-15 Thread Pandey, Sunil K
I have a very simple shell script say test.csh

$cat test.csh
#!/bin/csh
set x = "Some name"
echo $x > /tmp/xyz

When I ran this script in cygwin shell it works fine. 

$cat /tmp/xyz
Some Name

However when I try to launch the same script with windows scheduler via
following command line it doesn't work.

Scheduler command line

C:\cygwin\bin\bash.exe -l -e /tmp/test.csh

I also tried above command on Windows command prompt still doesn't work.

It creates a blank xyz file. Most probably set command is not working.
Not sure how to fix this script. Any help/hack will be much-much
appreciated.

Thanks.
Sunil

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



autoconf AC_CONFIG_FILES Macro Issues

2005-11-15 Thread The Cacti Group
Hi,

I have an issue with both the autoconf AC_CONFIG_FILES and AC_CONFIG_COMMANDS 
MACROS in the current 2.59 version of autoconf.  When compiling 
the ./configure shell script, the use of these macros prepents each command 
with several white spaces causing the use of continuation characters within 
the resulting ac_config_files and ac_config_commands to fail during subsequent 
execution of the configure script.

In the case of the AC_CONFIG_FILES MACRO, there are over 300 space characters 
prepended on the output line prior to the command being issued.

My question is, how do I get this logged as a bug?

Larry Adams
The Cacti Group 


--
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: [ANNOUNCEMENT] Updated: apr(-util) 0.9.7-1

2005-11-15 Thread Christopher Faylor
On Tue, Nov 15, 2005 at 04:02:45PM -0800, Yitzchak Scott-Thoennes wrote:
>On Tue, Nov 15, 2005 at 03:51:10PM -0500, Christopher Faylor wrote:
>> On Tue, Nov 15, 2005 at 07:37:53PM +, zzapper wrote:
>> >On Mon, 14 Nov 2005 21:01:43 +,  wrote:
>> >>zzapper wrote:
>> >>> On Sun, 13 Nov 2005 16:16:58 +,  wrote:
>> APR and APR-util, portability and miscellaneous utility libraries,
>> have been updated in the Cygwin net distribution to version 0.9.7-1.
>> >>> 
>> >>> Gosh this was hard to Google
>> >>> 
>> >>> I think it's
>> >>> 
>> >>> sdesc: "Additional utility library for use with the Apache Portable 
>> >>> Runtime
>> >>> (development/documentation package)"
>> >>> ldesc: "The mission of the Apache Portable Runtime (APR) project is to 
>> >>> create 
>> >>> and maintain software libraries that provide a predictable and 
>> >>> consistent 
>> >>> interface to underlying platform-specific implementations.
>> >>
>> >>
>> >>I have no idea what you are trying to say, zzapper.
>> >
>> >I was just trying to find some doc on APR, as I didn't even know what it 
>> >was.
>> 
>> Please don't bother the mailing list with your lack of knowledge about
>> things like this.
>
>To clarify:
>
>zzapper has often responded to announcements that don't describe the
>package with a short description s/he has found by searching.

often == very sporadically.

>Are you asking that s/he no longer do this?  Or not do it when the only
>description s/he finds is from the setup hint?  Or other?

Do you think it makes any sense to send ambiguous observations to the
mailing list which confuse the package maintainer (and me for that
matter)?  Is it really important that we know that "I didn't even know
what it was"?

If zzapper can't respond to an announcement in such a way that the intent
is clear, then I would prefer that no responses should be sent at all.

cgf

--
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: [ANNOUNCEMENT] Updated: apr(-util) 0.9.7-1

2005-11-15 Thread Yitzchak Scott-Thoennes
On Tue, Nov 15, 2005 at 03:51:10PM -0500, Christopher Faylor wrote:
> On Tue, Nov 15, 2005 at 07:37:53PM +, zzapper wrote:
> >On Mon, 14 Nov 2005 21:01:43 +,  wrote:
> >>zzapper wrote:
> >>> On Sun, 13 Nov 2005 16:16:58 +,  wrote:
> APR and APR-util, portability and miscellaneous utility libraries,
> have been updated in the Cygwin net distribution to version 0.9.7-1.
> >>> 
> >>> Gosh this was hard to Google
> >>> 
> >>> I think it's
> >>> 
> >>> sdesc: "Additional utility library for use with the Apache Portable 
> >>> Runtime
> >>> (development/documentation package)"
> >>> ldesc: "The mission of the Apache Portable Runtime (APR) project is to 
> >>> create 
> >>> and maintain software libraries that provide a predictable and consistent 
> >>> interface to underlying platform-specific implementations.
> >>
> >>
> >>I have no idea what you are trying to say, zzapper.
> >
> >I was just trying to find some doc on APR, as I didn't even know what it was.
> 
> Please don't bother the mailing list with your lack of knowledge about
> things like this.

To clarify:

zzapper has often responded to announcements that don't describe the
package with a short description s/he has found by searching.

Are you asking that s/he no longer do this?
Or not do it when the only description s/he finds is from the setup hint?
Or other?

--
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: Making the command console stay on top

2005-11-15 Thread Alan Dobkin
There are probably better, or more Cygwin-specific ways to do this, but
these (and many others) came up in a quick Google search:

http://www.actualtools.com/titlebuttons/stay_on_top_windows.shtml

http://www.absoluteway.com/tweakwindow/stay_window_always_on_top.htm

http://www.soft32.com/download_9217.html

http://www.shelltoys.com/minimize_tray/

Alan

On 11/15/2005 5:03 PM, Terry Dabbs wrote:
> I have an application written and compiled using gcc and ncurses (for
> the colors), in the cygwin environment. This application gets
> information from a database, and displays it to an operator running a
> machine telling them what program to input (among other things).
>
> The problem is that when they go to enter the program name, the console
> window immediately falls behind that of the application they are
> entering the data into, and they can't read it.
>
> I'm using a shortcut to start this, and the level of display of the
> window is not one of the options. Does anyone (that will answer) know a
> way to start this window with the attributes needed so it will not be
> covered when another application is touched by the mouse?
>
> Thanks,
>
> Terry Dabbs

--
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: Can I get a sigint when the bash window closed with close window's button?

2005-11-15 Thread Igor Pechtchanski
On Tue, 15 Nov 2005, Joe Smith wrote:

> "Igor Pechtchanski" <[EMAIL PROTECTED]> wrote in message news:[EMAIL 
> PROTECTED]

.  Thanks.

> > 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 to be able to run
> > > cleanup code when the application is about to be killed?
> >
> > According to exceptions.cc, a SIGHUP will be sent to bash in this
> > case. Are you handling the right signal?
> >
> > BTW, the atexit() callback also should be called -- do you have a
> > simple testcase to reproduce the problem?
> > Igor
>
> I know nothing about signals, but this program when run inside bash does
> not seem to run callback() *ever*.
> ^c does not run it. Closing the bash window does not run it. But if you
> remove the loop then it *is* run.
>
> #include 
> void callback()
> {
>  FILE *current;
>
>  current=fopen("test.txt","a");
>  fprintf(current,"atexit");
> }
>
> int main()
> {
>  atexit(*callback);
>  while(1)
>  {};
> }

IIRC, the atexit callback is not supposed to be invoked from a default
signal handler.  In fact, Cygwin defines a signal_exit specifically to
avoid invoking it.  If you change the above to terminate on something
other than a signal (e.g., a condition in the loop), your callback will be
invoked.  Adding a signal handler that calls exit() should also cause the
callback to be invoked.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
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: 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 to be able to run cleanup code when the
application is about to be killed?


According to exceptions.cc, a SIGHUP will be sent to bash in this case.
Are you handling the right signal?

BTW, the atexit() callback also should be called -- do you have a simple
testcase to reproduce the problem?
Igor


I know nothing about signals, but this program when run inside bash does not 
seem to run callback() *ever*.
^c does not run it. Closing the bash window does not run it. But if you 
remove the loop then it *is* run.


#include 
void callback()
{
 FILE *current;

current=fopen("test.txt","a");
fprintf(current,"atexit");
}

int main()
{
 atexit(*callback);
 while(1)
 {};
} 




--
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: bash shell not responding

2005-11-15 Thread René Berber
Alexander wrote:

> curiously, it actually worked once a
> little while ago, i was able to execute commands and everything, and
> now is back to not responding, it just opens a blank command prompt
> window, the $ prompt doesn't appear, and it's unresponsive.
> 
> What I mean by the batch file is the shortcut in the root directory
> or the Start menu that opens the program.  it does appear in task
>  manager, and reports to be running fine. now i think
> it's a problem with my security, as my security programs keep
> prompting me as to whether i want to let certain
> scripts run when i start the program, even though i told them to ignore
> cygwin and all files in that area.

Certain scripts?  That is odd, the only thing bash looks at is /etc/profile and
the ~/.bashrc and related files, but they are not scripts.

What "security programs" do you mean?

> also, when i open it from command
> prompt, a green text marker appears that moves around with the mouse,
> and typing no longer works.

Never seen that.  By "open" you mean execute the bat file or execute bash?
-- 
René Berber


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



Making the command console stay on top

2005-11-15 Thread Terry Dabbs

I have an application written and compiled using gcc and ncurses (for
the colors), in the cygwin environment. This application gets
information from a database, and displays it to an operator running a
machine telling them what program to input (among other things).

The problem is that when they go to enter the program name, the console
window immediately falls behind that of the application they are
entering the data into, and they can't read it.

I'm using a shortcut to start this, and the level of display of the
window is not one of the options. Does anyone (that will answer) know a
way to start this window with the attributes needed so it will not be
covered when another application is touched by the mouse?

Thanks,

Terry Dabbs

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



[ANNOUNCEMENT] Updated: lynx-2.8.5-4

2005-11-15 Thread Corinna Vinschen
I've updated the version of lynx to 2.8.5-4.

This updates Lynx to the official 2.8.5.rel5 patchlevel.  This release
contains the following security related patches:

* modify LYLoadCGI() to prompt user, displaying the command that would
  be executed, to confirm that it should be.  This makes it easier to
  notice when a local program would be run by activating a lynxcgi link.
  This is not done in advanced mode, since the URL is already visible in
  the status line (report by vade79, comments by Greg MacManus) -TD

* eliminate fixed-size buffers in HTrjis() and related functions to
  avoid potential buffer overflow in nntp pages (report by Ulf
  Harnhammar, CAN-2005-3120) -TD


To update your installation, click on the "Install Cygwin now" link on
the http://cygwin.com/ web page.  This downloads setup.exe to your
system.  Then, run setup and answer all of the questions.

If you have general questions or comments, please send them to the
Cygwin mailing list at: "cygwin at cygwin dot com".  I would appreciate
it if you would use this mailing list rather than emailing me directly.

  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

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

[EMAIL PROTECTED]

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

http://sources.redhat.com/lists.html#unsubscribe-simple

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

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  cygwin AT cygwin DOT com
Red Hat, Inc.

--
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: bash shell not responding

2005-11-15 Thread Alexander
curiously, it actually worked once a
little while ago, i was able to execute commands and everything, and
now is back to not responding, it just opens a blank command prompt
window, the $ prompt doesn't appear, and it's unresponsive.

What I mean by the batch file is the shortcut in the root directory
or the Start menu that opens the program.  it does appear in task
 manager, and reports to be running fine. now i think
it's a problem with my security, as my security programs keep
prompting me as to whether i want to let certain
scripts run when i start the program, even though i told them to ignore
cygwin and all files in that area. also, when i open it from command
prompt, a green text marker appears that moves around with the mouse,
and typing no longer works.






--
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: [ANNOUNCEMENT] Updated: apr(-util) 0.9.7-1

2005-11-15 Thread Christopher Faylor
On Tue, Nov 15, 2005 at 07:37:53PM +, zzapper wrote:
>On Mon, 14 Nov 2005 21:01:43 +,  wrote:
>>zzapper wrote:
>>> On Sun, 13 Nov 2005 16:16:58 +,  wrote:
APR and APR-util, portability and miscellaneous utility libraries,
have been updated in the Cygwin net distribution to version 0.9.7-1.
>>> 
>>> Gosh this was hard to Google
>>> 
>>> I think it's
>>> 
>>> sdesc: "Additional utility library for use with the Apache Portable Runtime
>>> (development/documentation package)"
>>> ldesc: "The mission of the Apache Portable Runtime (APR) project is to 
>>> create 
>>> and maintain software libraries that provide a predictable and consistent 
>>> interface to underlying platform-specific implementations.
>>
>>
>>I have no idea what you are trying to say, zzapper.
>
>I was just trying to find some doc on APR, as I didn't even know what it was.

Please don't bother the mailing list with your lack of knowledge about
things like this.

FWIW, http://cygwin.com/packages/ displays the sdesc of the package.

cgf

--
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: bash shell not responding

2005-11-15 Thread René Berber
Alexander wrote:

> alright... i admit it, i'm a hopeless newbie, but this is really frustrating
> me... I've succesfully installed cygwin and the supporting files, but when I 
> try
> to open the batch file, it opens a single cmd-like window that doesn't respond
> to anything. is it possible that it's responding poorly to my hardware (i 
> have a
> laptop)? 

No, unless the laptop is an Apple laptop ;-)

OK, seriously now, do you see bash running in Task Manager's processes?

Does the contents of cygwin.bat look correct?  What happens if you open a
Windows Command Prompt and do what the batch file does?
-- 
René Berber


--
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: bash shell not responding

2005-11-15 Thread Wayne Willcox
What do you mean by open a batch file?  You trying to edit it and if so what
editor are you using?  Your steps for reproducing the problem would be helpful.

On Tue, Nov 15, 2005 at 06:34:54PM +, Alexander wrote:
> alright... i admit it, i'm a hopeless newbie, but this is really frustrating
> me... I've succesfully installed cygwin and the supporting files, but when I 
> try
> to open the batch file, it opens a single cmd-like window that doesn't respond
> to anything. is it possible that it's responding poorly to my hardware (i 
> have a
> laptop)? 
> 
> 
> --
> 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/

-- 
Slowly and surely the unix crept up on the Nintendo user ...
Wayne Willcox  I will not eat green eggs and ham
[EMAIL PROTECTED] I will not eat them Sam I Am!!
A wise person makes his own decisions, a weak one obeys public opinion.
-- Chinese proverb

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



Fixed: Capital/upper case B doesn't register in either cygwin bash prompt, rxvt bash prompt, or ssh client bash prompt

2005-11-15 Thread jboehmler
Igor,

Thank you very much for your help.  The answers were "yes" up to the "bind" 
command.  The "bind" didn't show anything but there was a single "B" on a line 
of its own in .inputrc.  Removing it fixed the problem.  It must have been the 
result of a fat finger when I attempted to do something else.  Thank you again.

John


> On Tue, 15 Nov 2005, jboehmler wrote:
> 
> > Searching the web and the lists, including the cygwin mailing lists, on
> > anything with just a "B" element is very difficult but I've tried.
> > When I try to type a capital B in any form of cygwin terminal, it
> > doesn't register.  A lower case one does.  First, it doesn't show up.
> > Second, if I type "return" after typing "B", the prompt just comes back
> > with no error.  When typing any other capital letter, the letter is
> > visible and typing "return" after it causes a
> > [EMAIL PROTECTED]:~$ C
> > bash: C: command not found
> > [EMAIL PROTECTED]:~$ b
> > bash: b: command not found
> >  error.
> >
> > All other letters, numbers and characters, shifted and un-shifted seem
> > to work.  I've had this problem across several versions of cygwin.  It
> > also occurs regardless of which method I use to access cygwin, bash,
> > rxvt, or ssh.  I have not tried it with X11 since I don't have it.
> >
> > Any help or search suggestions would be appreciated.  Thank you.
> 
> First thing to rule out is Windows-level problems -- I assume if you run
> "cat" from bash, you can type in 'B', right?  Then let's work on bash:
> Can you paste a 'B' into bash?  Does 'B' show up if you type 'Ctrl-V B'?
> Does 'bind -p | grep "B"' show anything for 'B'?
> 
> Check your .inputrc for any bindings for "B"; then .bashrc and
> /etc/profile, for any "bind" commands.
> 
> HTH,
>   Igor
> -- 
>   http://cs.nyu.edu/~pechtcha/
>   |\  _,,,---,,_  [EMAIL PROTECTED]
> ZZZzz /,`.-'`'-.  ;-;;,_  [EMAIL PROTECTED]
>  |,4-  ) )-,_. ,\ (  `'-' Igor Pechtchanski, Ph.D.
> '---''(_/--'  `-'\_) fL   a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!
> 
> If there's any real truth it's that the entire multidimensional infinity
> of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
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: [ANNOUNCEMENT] Updated: apr(-util) 0.9.7-1

2005-11-15 Thread zzapper
On Mon, 14 Nov 2005 21:01:43 +,  wrote:

>zzapper wrote:
>> On Sun, 13 Nov 2005 16:16:58 +,  wrote:
>> 
>> 
>>>APR and APR-util, portability and miscellaneous utility libraries,
>>>have been updated in the Cygwin net distribution to version 0.9.7-1.
>>>
>> 
>> Gosh this was hard to Google
>> 
>> I think it's
>> 
>> sdesc: "Additional utility library for use with the Apache Portable Runtime
>> (development/documentation package)"
>> ldesc: "The mission of the Apache Portable Runtime (APR) project is to 
>> create 
>> and maintain software libraries that provide a predictable and consistent 
>> interface to underlying platform-specific implementations.
>
>
>I have no idea what you are trying to say, zzapper.
>
>
Max,
I was just trying to find some doc on APR, as I didn't even know what it was.

-- 
zzapper
Success for Techies and Vim,Zsh tips
http://SuccessTheory.com/


--
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: Can I get a sigint when the bash window closed with close window's button ?

2005-11-15 Thread Igor Pechtchanski
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 to be able to run cleanup code when the
> application is about to be killed?

According to exceptions.cc, a SIGHUP will be sent to bash in this case.
Are you handling the right signal?

BTW, the atexit() callback also should be called -- do you have a simple
testcase to reproduce the problem?
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
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: Capital/upper case B doesn't register in either cygwin bash prompt, rxvt bash prompt, or ssh client bash prompt

2005-11-15 Thread Igor Pechtchanski
On Tue, 15 Nov 2005, jboehmler wrote:

> Searching the web and the lists, including the cygwin mailing lists, on
> anything with just a "B" element is very difficult but I've tried.
> When I try to type a capital B in any form of cygwin terminal, it
> doesn't register.  A lower case one does.  First, it doesn't show up.
> Second, if I type "return" after typing "B", the prompt just comes back
> with no error.  When typing any other capital letter, the letter is
> visible and typing "return" after it causes a
> [EMAIL PROTECTED]:~$ C
> bash: C: command not found
> [EMAIL PROTECTED]:~$ b
> bash: b: command not found
>  error.
>
> All other letters, numbers and characters, shifted and un-shifted seem
> to work.  I've had this problem across several versions of cygwin.  It
> also occurs regardless of which method I use to access cygwin, bash,
> rxvt, or ssh.  I have not tried it with X11 since I don't have it.
>
> Any help or search suggestions would be appreciated.  Thank you.

First thing to rule out is Windows-level problems -- I assume if you run
"cat" from bash, you can type in 'B', right?  Then let's work on bash:
Can you paste a 'B' into bash?  Does 'B' show up if you type 'Ctrl-V B'?
Does 'bind -p | grep "B"' show anything for 'B'?

Check your .inputrc for any bindings for "B"; then .bashrc and
/etc/profile, for any "bind" commands.

HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

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



bash shell not responding

2005-11-15 Thread Alexander
alright... i admit it, i'm a hopeless newbie, but this is really frustrating
me... I've succesfully installed cygwin and the supporting files, but when I try
to open the batch file, it opens a single cmd-like window that doesn't respond
to anything. is it possible that it's responding poorly to my hardware (i have a
laptop)? 


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



Capital/upper case B doesn't register in either cygwin bash prompt, rxvt bash prompt, or ssh client bash prompt

2005-11-15 Thread jboehmler
Searching the web and the lists, including the cygwin mailing lists, on 
anything with just a "B" element is very difficult but I've tried.  When I try 
to type a  capital B in any form of cygwin terminal, it doesn't register.  A 
lower case one does.  First, it doesn't show up.  Second, if I type "return" 
after typing "B", the prompt just comes back with no error.  When typing any 
other capital letter, the letter is visible and typing "return" after it causes 
a
[EMAIL PROTECTED]:~$ C
bash: C: command not found
[EMAIL PROTECTED]:~$ b
bash: b: command not found
 error.

All other letters, numbers and characters, shifted and un-shifted seem to work. 
 I've had this problem across several versions of cygwin.  It also occurs 
regardless of which method I use to access cygwin, bash, rxvt, or ssh.  I have 
not tried it with X11 since I don't have it.

Any help or search suggestions would be appreciated.  Thank you.


cygcheck.out
Description: Binary data
--
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/

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

2005-11-15 Thread Konrad Eisele

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 to be able to run cleanup code when
the application is about to be killed?


--
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: Files missing after installation

2005-11-15 Thread Igor Pechtchanski
On Tue, 15 Nov 2005, robertchung3 wrote:

.  Thanks.

> I am simply trying to install Cygwin on my new OQO (with Windows XP SP2)
> and it is not completing installation correctly.  I've searched Mailing
> List Archive and FAQ but still have not found answer.
>
> Below is summary of what I did:
> (1) Downloaded latest setup.exe
>
> (2) Ran setup with "Download Without Installing"
>
> (3) Ran setup with "Install from Local Directory"
>
> (4) setup hung forever while running "xinetd" post installation script.
> I found out that xinetd post-installation log kept growing to almost
> 2GB.  So I killed "bash" process that was running xinetd
> post-installation script.
>
> (5) setup still hung going nowhere for hours.  So I ended up clicking
> "Cancel" button in setup window.
>
> (6) Ran setup again and finished installation successfully.
>
> (7) I found out simple things such as /bin/ls, /bin/cat, /bin/cp,
> /bin/echo, etc. are not installed.  So I ended up running setup yet
> again.  I tried everything . . .  "Install", "Reinstall" . . .  But
> simple things such as /bin/ls, /bin/cat, /bin/cp, /bin/echo, etc., are
> still missing after successful installation.
>
> (8) I completely removed Cygwin from my OQO.  I ran setup with
> "Uninstall".  I deleted c:\cygwin and deleted all Cygwin related
> registry entries in Windows registry.
>
> (8) I tried running setup again.  But no matter what I do, simple things
> such as /bin/ls, /bin/cat, /bin/cp, /bin/echo, etc. are still missing.
> setup with "Install", "Reinstall", whatever . . .  Nothing is installing
> /bin/ls, /bin/cat, /bin/cp, /bin/echo, etc., even though setup says
> installation is completed.
>
> What should I do?  Please help.

First and foremost, look at

> Problem reports:   http://cygwin.com/problems.html

and provide enough information for us to help you.

It would also be nice to know what was at the end of the xinetd
postinstall log (the one that was 2G), what was in setup.log, and what was
in setup.log.full from that setup run.
HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA

--
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: Xerces-C package

2005-11-15 Thread Eric Blake
> Am wondering if there's somebody actively maintaining the packaging of
> Xerces for Cygwin, and if so when v2.7.0 might be available?

According to http://cygwin.com/ml/cygwin-apps/2005-10/msg00246.html,
no one is maintaining xerces.  It is a candidate for removal unless
someone (perhaps you?) steps up to volunteer to maintain it.

--
Eric Blake



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



Xerces-C package

2005-11-15 Thread Brian Hassink
The latest Xerces is v2.7.0 (released September 2005), while Cygwin
setup is only up to v2.5.0-1 (released February 2004).

Am wondering if there's somebody actively maintaining the packaging of
Xerces for Cygwin, and if so when v2.7.0 might be available?

Thanks,
Brian



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



Files missing after installation

2005-11-15 Thread robertchung3
I am simply trying to install Cygwin on my new OQO (with Windows XP SP2) and it 
is not completing installation correctly.  I've searched Mailing List Archive 
and FAQ but still have not found answer.

Below is summary of what I did:
(1) Downloaded latest setup.exe
(2) Ran setup with "Download Without Installing"
(3) Ran setup with "Install from Local Directory"
(4) setup hung forever while running "xinetd" post installation script.  I 
found out that xinetd post-installation log kept growing to almost 2GB.  So I 
killed "bash" process that was running xinetd post-installation script.
(5) setup still hung going nowhere for hours.  So I ended up clicking "Cancel" 
button in setup window.
(6) Ran setup again and finished installation successfully.
(7) I found out simple things such as /bin/ls, /bin/cat, /bin/cp, /bin/echo, 
etc. are not installed.  So I ended up running setup yet again.  I tried 
everything . . .  "Install", "Reinstall" . . .   But simple things such as 
/bin/ls, /bin/cat, /bin/cp, /bin/echo, etc., are still missing after successful 
installation.
(8) I completely removed Cygwin from my OQO.  I ran setup with "Uninstall".  I 
deleted c:\cygwin and deleted all Cygwin related registry entries in Windows 
registry.
(8) I tried running setup again.  But no matter what I do, simple things such 
as /bin/ls, /bin/cat, /bin/cp, /bin/echo, etc. are still missing.  setup with 
"Install", "Reinstall", whatever . . .  Nothing is installing /bin/ls, 
/bin/cat, /bin/cp, /bin/echo, etc., even though setup says installation is 
completed.

What should I do?  Please help.








--
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: Hang with 20051018 (3rd version) snapshot while building OOo

2005-11-15 Thread Volker Quetschke

(snip)

It's still hanging in a multimedia timer call, which is "interesting".

The latest snapshot comments out the part of the code which sets the
timer resolution, on the off chance that setting it to 1ms is what is
causing the problem.

It's a long shot but please try out the latest snapshot.


Testing will happen soon ...


Took a little longer, not to reproduce but to send, this time:
  


Have you ever mentioned what kind of system this is, btw?  Is it hyperthreaded,
SMP, what clock speed, how much memory...?


It is a system with 1.8GHz, no hyperthreading, no smp, 512Mb.

The only abnormal thing we could find is that it is running in
a Terminal Service session.

On *that* system it is pretty easy to reproduce the hang. It hangs
when you move another window over the one that is currently building
OOo. The "build window" is a cygwin bash prompt started with cygwin.bat.

I just asked in the OOo development ml who else can reproduce the problem.


Volker

--
PGP/GPG key  (ID: 0x9F8A785D)  available  from  wwwkeys.de.pgp.net
key-fingerprint 550D F17E B082 A3E9 F913  9E53 3D35 C9BA 9F8A 785D


signature.asc
Description: OpenPGP digital signature


Re: Singular-base 3.0.1-1 MD5 error

2005-11-15 Thread Mark Bohlman

J. Daniel Ashton wrote:

Oliver Wienand wrote:



Singular-base 3.0.1-1 gets an MD5 error on my system.  I've deleted and
re-downloaded it several times and blown away the setup.ini file, but
the MD5 error persists.


I tried on different system and it work everywhere. I only had
problems finding a mirror already hosting the 3.0.1 version. So I only
tried this one:

  ftp://sourceware.mirrors.tds.net

Which mirror did you use?



Hello.  Thank you for writing back!

I used mirrors.rcn.net, both FTP and HTTP.  This one seems quite fast
and typically has the newest setup.ini.  I also tried a couple of
others, but I don't remember which at the moment.

I just tried it from ftp://sourceware.mirrors.tds.net and did not get
the error.  So RCN.net apparently has a bad copy.

Thanks for your help.

Kind regards,

Daniel




As noted in an email from cgf, and from my own experience last night with rcn, it would seem 
that they have a problem on that mirror, which is normally very reliable.

-- Mark


--
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: Singular-base 3.0.1-1 MD5 error

2005-11-15 Thread J. Daniel Ashton
Oliver Wienand wrote:

>> Singular-base 3.0.1-1 gets an MD5 error on my system.  I've deleted and
>> re-downloaded it several times and blown away the setup.ini file, but
>> the MD5 error persists.
>
> I tried on different system and it work everywhere. I only had
> problems finding a mirror already hosting the 3.0.1 version. So I only
> tried this one:
>
>ftp://sourceware.mirrors.tds.net
>
> Which mirror did you use?

Hello.  Thank you for writing back!

I used mirrors.rcn.net, both FTP and HTTP.  This one seems quite fast
and typically has the newest setup.ini.  I also tried a couple of
others, but I don't remember which at the moment.

I just tried it from ftp://sourceware.mirrors.tds.net and did not get
the error.  So RCN.net apparently has a bad copy.

Thanks for your help.

Kind regards,

Daniel


-- 
Daniel Ashton  PGP key available http://Daniel.AshtonFam.org
mailto:[EMAIL PROTECTED] http://ChamberMusicWeekend.org
mailto:[EMAIL PROTECTED]  ICQ# 9445142  http://ZephyrBrass.com


--
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: Windows mysql CLI and Cygwin terminals

2005-11-15 Thread Rodrigo Amestica

Hi,

the link at the end describe very well the problem I'm
having. I just want to add some info and verify that
the status is still negative (not doable).

The shell commands I'm trying out without success are mysql and 
mysqlshow with option '-p'.


I have modified cygwin.bat by removing tty from the
CYGWIN setting. In this way the shell running under
this "Windows window" does indeed work okay (mysqlshow).
If I start an xterm from this shell and call msqlshow
from that xterm then I have seen that the password is
actually requested in the window from where the xterm
was launched. By entering the right password in that
window then I will see the expected mysqlshow output
in the xterm window!

When tty is used then mysqlshow does not actually
hang.  It goes into doing something that takes 99% of
cpu time, as reported by the windows task manager.

thanks,
 Rodrigo

http://www.cygwin.com/ml/cygwin/2005-03/msg00359.html

--
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: Singular-base 3.0.1-1 MD5 error

2005-11-15 Thread Oliver Wienand

Singular-base 3.0.1-1 gets an MD5 error on my system.  I've deleted and
re-downloaded it several times and blown away the setup.ini file, but
the MD5 error persists.


I tried on different system and it work everywhere. I only had problems 
finding a mirror already hosting the 3.0.1 version. So I only tried this 
one:


   ftp://sourceware.mirrors.tds.net

Which mirror did you use?

Oliver

--
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: Singular-base 3.0.1-1 MD5 error

2005-11-15 Thread fergus
>> Singular-base 3.0.1-1 gets an MD5 error on my system.
>> I've deleted and re-downloaded it several times
>> and blown away the setup.ini file, but the MD5 error persists.

Sorry, haven't a blind clue what you mean by "blown away" and cannot
think of an interpretation where this destructive act would help.
Try a different mirror as implied by cgf's earlier post, this day.
I did, and it worked.

Fergus 


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



Singular-base 3.0.1-1 MD5 error

2005-11-15 Thread J. Daniel Ashton

Singular-base 3.0.1-1 gets an MD5 error on my system.  I've deleted and
re-downloaded it several times and blown away the setup.ini file, but
the MD5 error persists.

Regards,

Daniel

-- 
Daniel Ashton  PGP key available http://Daniel.AshtonFam.org
mailto:[EMAIL PROTECTED] http://ChamberMusicWeekend.org
mailto:[EMAIL PROTECTED]  ICQ# 9445142  http://ZephyrBrass.com


--
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: SSHD problem

2005-11-15 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

According to Jacek Trzcinski on 11/15/2005 12:29 AM:
> Thanks . It turned out that I had cygwin1.dll in AVR gcc compiler and it
> caused errors.

Just as we had predicted.

> It is a little bit strange because LoadLibrary function (
> I assume Cygwin executable call that function to load Cygwin1.dll )
> should first take dll from pointed path or directory where executable
> started. Searching in "path" environment should be carried in the end.

Blame Windows - this is Microsoft's default behavior, over which cygwin
has no control.  When loading an .exe that depends on a .dll at inception,
Windows rules are obeyed (in which the directory of the .exe is prepended
to the PATH, and where a modal popup box appears if the dependency cannot
be satisfied).  Hence our warning that you should never have more than one
cygwin1.dll on your path, since most cygwin .exe's have a hard-coded
dependency on cygwin1.dll.

- --
Life is short - so eat dessert first!

Eric Blake [EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDed2f84KuGfSFAYARAu6mAJ4xnN8G4nTB0Crbh0uG5GVX53t+AwCeJqYI
IqFJI6tfD+4VB+f2hXR9BRg=
=9yhk
-END PGP SIGNATURE-

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



[ANNOUNCEMENT] [ANNOUNCEMENT] Updated: singular-*-3.0.1-1

2005-11-15 Thread Oliver Wienand

singular-base-3.0.1-1 is now available on Cygwin mirrors.
singular-share-3.0.1-1 is now available on Cygwin mirrors.
singular-help-3.0.1-1 is now available on Cygwin mirrors.
singular-icons-3.0.1-1 is now available on Cygwin mirrors.

Changes
===

This is mainly a bug fix release, but it contains also some
new features:

- new library: absfact.lib
- new procedures in primdec.lib: absPrimdecGTZ
- new procedures in standard.lib: weightKB
- build process improved: new make target install_all
- improved version of slimgb, incorporated into groebner

and some internal improvements:
- NTL upgraded to version 5.4
- arithmetic in Z/pZ for architecture x84_64 improved
   (by 25 % in some examples)

To update your installation, click on the "Install Cygwin now" link on 
the http://cygwin.com/ web page.  This downloads setup.exe to your 
system. Then, run setup and answer all of the questions.


If you have questions or comments, please send them to the Cygwin
mailing list at:  cygwin@cygwin.com .  I would appreciate
if you would use this mailing list rather than emailing me directly.
This includes ideas and comments about the setup utility or Cygwin
in general.

If you want to make a point or ask a question the Cygwin mailing list is
the appropriate place.

 *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

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

[EMAIL PROTECTED]



signature.asc
Description: PGP signature
--
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/