Re: setup.exe sizes openldap-2-2-15

2004-10-31 Thread Max Bowsher
Gary R. Van Sickle wrote:
[snip]
An argument for demand-downloaded .mo files, then?
An argument for simply adding the translations to res.rc as
localized STRINGTABLES.
   
  MESSAGETABLES
Then you can use FormatMessage() and things are much less brain-bamaging.
But then you need some extra software to compile the messagetables.
Unless binutils has grown support for this recently, we can't use 
messagetables.

Max.


Re: setup.exe sizes openldap-2-2-15

2004-10-31 Thread Reini Urban
Max Bowsher schrieb:
Gary R. Van Sickle wrote:
An argument for demand-downloaded .mo files, then?
An argument for simply adding the translations to res.rc as
localized STRINGTABLES.
   
  MESSAGETABLES
Then you can use FormatMessage() and things are much less brain-bamaging.

But then you need some extra software to compile the messagetables.
Unless binutils has grown support for this recently, we can't use 
messagetables.
windres cannot compile them?
The man or info page doesn't say that certain ressourcetypes are 
unsupported. But I haven't tried that yet.
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/


Re: Minimal replacement for Exceed

2004-10-31 Thread Boaz Harrosh
[EMAIL PROTECTED] wrote:
I want to find a replacement for Hummingbird Exceed.  I know that Cygwin includes an X 
server, but I'm not interested in all of Cygwin.  What would be the minimum I'd need 
to install to be able to run Cygwin/X?  In case it matters, I'd like to run the X 
server with the -multiwindow and -clipboard parameters.
Thanks!
Amanda
 

Dear Amanda !
I have packed a Wise-Installer with a some-what minimal installation. It 
uses the windows fonts and this way saves 14M of fonts. It does include 
a full bash + utils and SSH so it is not as minimal as it can be. The 
Install.exe is about 12M.

I can send you the .exe but you will find that it has some specialized 
stuff  for the purpose it was made. (automatic connection to a Linux 
application server). I can also send you the files listing, and the wise 
script, so you can pack your own.

Free Life
Boaz


Re: ¤T¥þ¤T©ö »´»´ÃPÃP¥H 2.8¢H ¾ã¦X©Ò¦³¦W¤Uªº­t¶Å

2004-10-31 Thread Bobby McNulty
 wrote:
* http://www.vip580.com/edm249/*
index.htm
 ../noedm.htm
Stop sending junk here.
This is junk.


src/winsup/utils ChangeLog cygcheck.cc

2004-10-31 Thread bavag
CVSROOT:/cvs/src
Module name:src
Changes by: [EMAIL PROTECTED]   2004-10-31 18:46:32

Modified files:
winsup/utils   : ChangeLog cygcheck.cc 

Log message:
* cygcheck.cc (get_dword): Fix errormessage.
(cygwin_info): Ditto.
(track_down): Ditto.
(check_keys): Ditto.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/utils/ChangeLog.diff?cvsroot=srcr1=1.288r2=1.289
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/utils/cygcheck.cc.diff?cvsroot=srcr1=1.58r2=1.59



Re: [Patch] unlink

2004-10-31 Thread Reini Urban
Pierre A. Humblet schrieb:
It works on normal files. I haven't tested with the
special names because I forgot how to create them !
Feedback welcome.
works fine on w2k.
attached is a test to create such files.
unlink works fine on these.
didn't test with wchar and unicode files yet, just char.
but coreutils/findutils don't work with unicode files anyway.
(just testing findutils-4.1.20)
On reflection, however, wouldn't it be a little easier just to prepend
the path being deleted with a: \\.\ so that rm nul would eventually
translate to DeleteFile(\\.\c:\foo\null) (I'm not using true C
backslash quoting here)?  I don't know if that would work on Windows 9x,
though.
// c++ -I../src/winsup/cygwin -o testcreate testcreate.cc -lntdll 
#include winsup.h
#include stdio.h
#include ntdef.h
#include ntdll.h

//#define NTCREATE
#undef NTCREATE

NTSTATUS 
  NtCreateDirectoryObject(
OUT PHANDLE  DirectoryHandle,
IN ACCESS_MASK  DesiredAccess,
IN POBJECT_ATTRIBUTES  ObjectAttributes
);

#ifndef NTCREATE
static HANDLE
create (char *path)
{
  HANDLE hFile; 
  char pwd[CYG_MAX_PATH], dev[CYG_MAX_PATH];
  int len;

  //create (.\\c:\\con);
  if (len = GetCurrentDirectoryA (CYG_MAX_PATH, pwd)) {
strcpy(dev, .\\);
strcat(dev, pwd);
strcat(dev, \\);
strcat(dev, path);
  }
  hFile = CreateFile(dev, // file to create
 GENERIC_WRITE,  // open for writing
 0,  // do not share
 NULL,   // default security
 CREATE_ALWAYS,  // overwrite existing
 FILE_ATTRIBUTE_NORMAL | // normal file
 FILE_FLAG_OVERLAPPED,   // asynchronous I/O
 NULL);  // no attr. template
  if (hFile == INVALID_HANDLE_VALUE) return 0;
  printf(%s created\n, path);
  CloseHandle(hFile);
  return hFile;
}

#else
static HANDLE
nt_create (WCHAR *wpath)
{
  WCHAR pwd[2*CYG_MAX_PATH];
  UNICODE_STRING upath = {0, sizeof (wpath), wpath};
  //UNICODE_STRING cpath = {0, 2, L.};

  int len;
  HANDLE x, root = NULL;
  OBJECT_ATTRIBUTES attr;
  IO_STATUS_BLOCK io;
  NTSTATUS status;
  
  if (len = GetCurrentDirectoryW (2*CYG_MAX_PATH, pwd)) {
UNICODE_STRING upwd = {0, sizeof (pwd), pwd};
InitializeObjectAttributes (attr, upwd, OBJ_CASE_INSENSITIVE, NULL, NULL);
NtOpenFile(root, STANDARD_RIGHTS_ALL, attr, io, 0, 0);
  }
  InitializeObjectAttributes (attr, upath, OBJ_CASE_INSENSITIVE, root, NULL);
  // 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/devnotes/winprog/ntcreatefile.asp
  status = NtCreateFile (x, STANDARD_RIGHTS_ALL, attr, io, NULL, 
FILE_ATTRIBUTE_NORMAL, 
 FILE_SHARE_READ, FILE_OPEN, FILE_DELETE_ON_CLOSE, NULL, 0);
  if (!NT_SUCCESS (status))
{
  printf(error creating %ls\n, wpath);
  return 0;
}
  else {
CloseHandle(x);
return x;
  }
}
#endif

int main(int argc, char** argv)
{
#ifndef NTCREATE
  create (con);
  create (com);
  create (nul);
  create (aux);
  create (prn);
  create (lpt1);
  create (...);
#else
  nt_create (Lcon);
  nt_create (Lnul);
  nt_create (Laux);
  nt_create (Lprn);
  nt_create (Llpt1);
  nt_create (L...);
#endif
  return(0);
}


Re: [Patch] unlink

2004-10-31 Thread Pierre A. Humblet
At 11:36 PM 10/30/2004 -0400, Christopher Faylor wrote:
On Sat, Oct 30, 2004 at 10:30:54PM -0400, Pierre A. Humblet wrote:
At 01:39 PM 10/30/2004 -0400, you wrote:
On Fri, Oct 29, 2004 at 06:01:51PM -0400, Pierre A. Humblet wrote:
Here is a patch that should allow unlink() to handle
nul etc.. on local disks.

It's a cut and paste of Corinna's open on NT and the
existing CreateFile.
 
It works on normal files. I haven't tested with the
special names because I forgot how to create them !
Feedback welcome.

X This should NOT be applied in 1.5.12 XX

Pierre

2004-10-29  Pierre Humblet [EMAIL PROTECTED]

* syscalls.cc (nt_delete): New function.
(unlink): Call nt_delete instead of CreateFile and remove
unreachable code.

Corinna suggested something similar to me a couple of months ago but I
wanted to wait for things to settle down somewhat after the original
use of NtCreateFile.

On reflection, however, wouldn't it be a little easier just to prepend
the path being deleted with a: \\.\ so that rm nul would eventually
translate to DeleteFile(\\.\c:\foo\null) (I'm not using true C
backslash quoting here)?  I don't know if that would work on Windows 9x,
though.

That would work on NT, but then one would need to check if the input
path didn't already have the form //./xx, worry about exceeding max 
pathlength, etc...

Other than being able to delete special filenames is there any other
benefit to using NtCreateFile to delete files?

I can only think of speed. But I don't see a downside either, given that
we use it in open().

If path length was an issue we could use '//?/' instead since the length
restriction is a lot larger there.  So, it would be something like:

  char *path;
  char newpath[strlen (win32_name) + 4] = ?\;
  if  (win32_name[0] != '\\')
  path = strcat (newpath, win32_name);
  else
  path = win32_name;

and then you'd use path throughout from then on.

Have you tried it? According to MSDN you need to use the Unicode version
if you do that.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/createfile.asp
In the ANSI version of this function, the name is limited to MAX_PATH 
characters. To extend this limit to 32,767 wide characters, call the Unicode 
version of the function and prepend \\?\ to the path

Pierre



Re: [Patch] cygcheck: Don't use keyeprint if GetLastError is irrelevant.

2004-10-31 Thread Bas van Gompel
Op Sat, 30 Oct 2004 19:42:16 -0400 schreef Christopher Faylor
in [EMAIL PROTECTED]:
:  On Sat, Oct 30, 2004 at 11:32:27PM +0200, Bas van Gompel wrote:
:  2004-10-28  Bas van Gompel  [EMAIL PROTECTED]
: 
:  * cygcheck.cc (get_dword): Fix errormessage.
:  (cygwin_info): Ditto.
:  (track_down): Ditto.
:  (check_keys): Ditto.
:
:   Go ahead and check these in.

Done, thanks.


L8r,

Buzz.
-- 
  ) |  | ---/ ---/  Yes, this | This message consists of true | I do not
--  |  |   //   really is |   and false bits entirely.| mail for
  ) |  |  //a 72 by 4 +---+ any1 but
--  \--| /--- /---  .sigfile. |   |perl -pe s.u(z)\1.as.| me. 4^re


Re: [Patch] unlink

2004-10-31 Thread Christopher Faylor
On Sun, Oct 31, 2004 at 10:14:48AM -0500, Pierre A. Humblet wrote:
At 11:36 PM 10/30/2004 -0400, Christopher Faylor wrote:
On Sat, Oct 30, 2004 at 10:30:54PM -0400, Pierre A. Humblet wrote:
At 01:39 PM 10/30/2004 -0400, you wrote:
On Fri, Oct 29, 2004 at 06:01:51PM -0400, Pierre A. Humblet wrote:
Here is a patch that should allow unlink() to handle
nul etc.. on local disks.

It's a cut and paste of Corinna's open on NT and the
existing CreateFile.
 
It works on normal files. I haven't tested with the
special names because I forgot how to create them !
Feedback welcome.

X This should NOT be applied in 1.5.12 XX

Pierre

2004-10-29  Pierre Humblet [EMAIL PROTECTED]

   * syscalls.cc (nt_delete): New function.
   (unlink): Call nt_delete instead of CreateFile and remove
   unreachable code.

Corinna suggested something similar to me a couple of months ago but I
wanted to wait for things to settle down somewhat after the original
use of NtCreateFile.

On reflection, however, wouldn't it be a little easier just to prepend
the path being deleted with a: \\.\ so that rm nul would eventually
translate to DeleteFile(\\.\c:\foo\null) (I'm not using true C
backslash quoting here)?  I don't know if that would work on Windows 9x,
though.

That would work on NT, but then one would need to check if the input
path didn't already have the form //./xx, worry about exceeding max 
pathlength, etc...

Other than being able to delete special filenames is there any other
benefit to using NtCreateFile to delete files?

I can only think of speed. But I don't see a downside either, given that
we use it in open().

If path length was an issue we could use '//?/' instead since the length
restriction is a lot larger there.  So, it would be something like:

  char *path;
  char newpath[strlen (win32_name) + 4] = ?\;
  if  (win32_name[0] != '\\')
  path = strcat (newpath, win32_name);
  else
  path = win32_name;

and then you'd use path throughout from then on.

Have you tried it? According to MSDN you need to use the Unicode version
if you do that.

Yes.  I created and deleted a file using '//?/d:/nul' from the command line.

cgf


Re: [Patch] unlink

2004-10-31 Thread Pierre A. Humblet
At 06:47 PM 10/31/2004 -0500, you wrote:
On Sun, Oct 31, 2004 at 10:14:48AM -0500, Pierre A. Humblet wrote:
At 11:36 PM 10/30/2004 -0400, Christopher Faylor wrote:
On Sat, Oct 30, 2004 at 10:30:54PM -0400, Pierre A. Humblet wrote:
At 01:39 PM 10/30/2004 -0400, you wrote:
On Fri, Oct 29, 2004 at 06:01:51PM -0400, Pierre A. Humblet wrote:
Here is a patch that should allow unlink() to handle
nul etc.. on local disks.

It's a cut and paste of Corinna's open on NT and the
existing CreateFile.
 
It works on normal files. I haven't tested with the
special names because I forgot how to create them !
Feedback welcome.

X This should NOT be applied in 1.5.12 XX

Pierre

2004-10-29  Pierre Humblet [EMAIL PROTECTED]

  * syscalls.cc (nt_delete): New function.
  (unlink): Call nt_delete instead of CreateFile and remove
  unreachable code.

Corinna suggested something similar to me a couple of months ago but I
wanted to wait for things to settle down somewhat after the original
use of NtCreateFile.

On reflection, however, wouldn't it be a little easier just to prepend
the path being deleted with a: \\.\ so that rm nul would eventually
translate to DeleteFile(\\.\c:\foo\null) (I'm not using true C
backslash quoting here)?  I don't know if that would work on Windows 9x,
though.

That would work on NT, but then one would need to check if the input
path didn't already have the form //./xx, worry about exceeding max 
pathlength, etc...

Other than being able to delete special filenames is there any other
benefit to using NtCreateFile to delete files?

I can only think of speed. But I don't see a downside either, given that
we use it in open().

If path length was an issue we could use '//?/' instead since the length
restriction is a lot larger there.  So, it would be something like:

  char *path;
  char newpath[strlen (win32_name) + 4] = ?\;
  if  (win32_name[0] != '\\')
  path = strcat (newpath, win32_name);
  else
  path = win32_name;

and then you'd use path throughout from then on.

Have you tried it? According to MSDN you need to use the Unicode version
if you do that.

Yes.  I created and deleted a file using '//?/d:/nul' from the command line.

It's interesting that //?/ also works as an escape with the ascii version.
But on re-reading MSDN, the unicode version should only be needed when
the pathlength exceeds 260 chars.
BTW, don't try that on WinME. I ended up having to power the PC down.

Pierre



Re: CPAN module in Cygwin

2004-10-31 Thread Reini Urban
Elvin Peterson schrieb:
Hello,
   The CPAN command:
perl -MCPAN -e shell 

fails with:
Cannot open /usr/lib/perl5/5.8.5/CPAN/Config.pm at
/usr/lib/perl5/5.8.5/CPAN.pm line 1219
It looks like it is trying to write to a file owned by
Administrator.  Is there a workaround to install
modules as a user?
root ownersip is okay. but it must be readable.
user-specific CPAN configs are stored in ~/.cpan/CPAN/MyConfig.pm
chmod +r /usr/lib/perl5/5.8.5/CPAN/Config.pm
chmod -R +rw /usr/lib/perl5/site_perl/5.8.5
chmod -R +rw ~/.cpan
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
--
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/


virus in cygwin-cvs mail archive

2004-10-31 Thread Gerrit P. Haase
Hello Christopher,
there is a W32/[EMAIL PROTECTED] virus attachment in the
cygwin-cvs archives in an attachment file named Document.zip:
/var/ftp/pub/cygwin/mail-archives/cygwin-cvs-2004-q2.bz2
Gerrit
--
=^..^=
--
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/


Problem using cygwin autoconf

2004-10-31 Thread Brad Bell
My name is Brad Bell, see
http://www.seanet.com/~bradbell
for a description of me.

On the web page
http://www.catb.org/~esr/faqs/smart-questions.html#forum
the suggestion is made to carefully chose who to send questions to.
I am sending you this question because your e-mail address
was listed in the web page
http://www.cygwin.com/ml/cygwin/2004-09/msg00823.html

Recently (today) I installed the current version of Cygwin from
mirrors.kernel.org
Now I am having trouble using the autoconf and automake tools under cygwin.
To be specific, In response to the command
autoconf
I get the error message
Can't locate object method path via package Request at
/usr/autotool/devel/share/autoconf/Autom4te/C4che.pm
line 69, GEN1 line 214.
I get a similar error message in response to the aclocal and autoheader 
commands.

Do you have any suggestions as to how I should proceed to resolve this 
problem ?


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



Data Posting Work Available!

2004-10-31 Thread datapostingwork

Hello!
Recently  launched!   Fastest   income  generating 
program.   Get US$25 every  5  minutes (Rs. 300 in 
India). Don't  do it if your income is sufficient.
Don't  do  it if you have never free hours to earn 
extra  thousands.  Easiest  world  wide  job!   No 
previous experience required!

Want to know how?  Just send an email to: 
[EMAIL PROTECTED]
with  the  subject line Data Posting Info! and I 
will make sure you get all the details. 
Please include the following:
- First name
- Last name
- Email address (if different from above)
- Country

Talk to you soon,

Saroj Dhongadi

Unsubscribe:   Send a blank email with subject
Remove to: [EMAIL PROTECTED] 

Note: 
1) Don't press reply, your email will never be 
seen by this email address.
2) If  you are  not interested, forward this email 
to needy serious job seekers who want to earn part 
time income or hundreds per day. They will always 
remember you just for forwarding this email. 

Thank you.

Saroj Dhongadi
Authorised Dealer

--
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: Problem using cygwin autoconf

2004-10-31 Thread Gerrit P. Haase
Hi Brad,
I have forwared this message to the main cygwin mailing list. Since I 
have no problems using autoconf and I'm not the autoconf maintainer, I 
cannot help you much here.  One note, there was no update of autoconf 
since several months and I cannot see why a package that is stable like 
autoconf and causes few bug reports should be a problem.

Maybe there is a problem with your cygwin perl installation?
Gerrit
Brad Bell wrote:
My name is Brad Bell, see
   http://www.seanet.com/~bradbell
for a description of me.
On the web page
   http://www.catb.org/~esr/faqs/smart-questions.html#forum
the suggestion is made to carefully chose who to send questions to.
I am sending you this question because your e-mail address
was listed in the web page
   http://www.cygwin.com/ml/cygwin/2004-09/msg00823.html
Recently (today) I installed the current version of Cygwin from
   mirrors.kernel.org
Now I am having trouble using the autoconf and automake tools under cygwin.
To be specific, In response to the command
   autoconf
I get the error message
   Can't locate object method path via package Request at
   /usr/autotool/devel/share/autoconf/Autom4te/C4che.pm
   line 69, GEN1 line 214.
I get a similar error message in response to the aclocal and autoheader 
commands.

Do you have any suggestions as to how I should proceed to resolve this 
problem ?

!DSPAM:41848aa28561376214758!

--
=^..^=
--
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: BUG: Cygwin implementation of Debian package tools

2004-10-31 Thread Gerrit P. Haase
Reini Urban wrote:
It happens i.e. often for me when using the generic-build-script, if 
invoking with install or reconf which does rm -rf .build / .inst and
having an explorer shell open in one of the (sub)directories to be
removed from the script - it seems to hang and it is always rm.
Using the above 'rm -rf .build / .inst' verbatim is not recommended;)
This was not correct, I meant:
rm -rf .build/*
or
rm -rf .inst/*
$ time rm -r findutils-4.1.7-4
rm: Entfernen von Verzeichnis findutils-4.1.7-4/find nicht moglich: 
Device or resource busy

real0m0.099s
user0m0.030s
sys 0m0.031s
# high cpu for a short amount of time is not really annoying.
I'm getting these kind of 'build script hangs on trying to do rm -rf'
quite often, so it seems to be not that simple.  Another issue with this
is that you also cannot remove empty directories with explorer in these
cases, IIRC it is usually my editor (Windows Textpad) which I used to
open a file in some subdirectory and has the working path set to this
directory, it also happens often that even after closing the editor
doesn't free this handle so it is still not possible to remove the
directory with rm or explorer, probably a bug in my favorite editor.
Gerrit
--
=^..^=
--
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: bug in perldoc (escape characters in output)

2004-10-31 Thread Gerrit P. Haase
Elvin Peterson wrote:
Hello,
The perl documentation viewed using the perldoc
commands has escape characters inserted into it.  The
same pages view with the man command are OK.  I think
this is cygwin specific, so I am posting it here.
Not really a problem with perldoc, try:
export LESS=R
Gerrit
--
=^..^=
--
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: ZoneAlarm hates email-2.3.0-2

2004-10-31 Thread Gerrit P. Haase
Keith Starsmeare wrote:
I've been using the new email package to upload my
digital photos to my yahoo email account (what else
can you do with a 2GB limit?), but it's really slow.
Looking in the task manager I see that when I'm using
email (email -s description -b -a filename.jpg
[EMAIL PROTECTED]) the vsmon process takes my CPU usage
upto 100%. vsmon is the firewall process for
ZoneAlarm.
Strange. When I email the photo's using outlook
express it doesn't behave like that.
I've tweaked every setting I can think of in ZonaAlarm
to  try to improve the performance (like adding my
SMTP server as a trusted host and lowering my
security) but I've not managed to alter the behaviour
at all.
Has anyone experienced similar problems?
I tried several times to use ZA without much success, it always ended
with uninstalling it.  Finally I used Sygate's personal firewall
which is free too and much more like I expect such a software to be.
Can anyone hazard a guess as to what ZoneAlarm's
problem is?
Any help would be greatly appreciated.

--
=^..^=
--
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: diff can be slow

2004-10-31 Thread Bobby McNulty
I have had the same problem with Cygwin and gcc.
Compiling on a Pentium too 8 hours.
Go to work and come back, and its still compiling.
Slow computer.
On my 1.2 celeron, compiling takes an hour or two for GCC, less than 20
minutes for the cygwin.dll



--
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: Cygwin finally croaked

2004-10-31 Thread Hannu E K Nevalainen
[EMAIL PROTECTED] wrote:
 Larry Hall schrieb:
 At 04:05 PM 10/29/2004, you wrote:
 Larry Hall [EMAIL PROTECTED] wrote in message

 http://cygwin.com/acronyms/#PCYMTNQREAIYR
 Someone should bug gmane about this.

 Not their fault. It's not the http interface post.gmane.org. This
 correctly replaces @ by at He posted it with Outlook Express
 5.50.4807.1700 via the gmane nntp interface.

I've found this one to be useful, though not perfect (see first line above,
*'es added manually) using Outlook:
 http://home.in.tum.de/~jain/software/outlook-quotefix/

The same persone provides this - for O-Express:
 http://home.in.tum.de/~jain/software/oe-quotefix/


/Hannu E K Nevalainen, B.Sc. EE Microcomputer systems--72--

** mailing list preference; please keep replies on list **

-- printf(LocalTime: UTC+%02d\n,(DST)? 2:1); --
--END OF MESSAGE--


--
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: What is aux???!

2004-10-31 Thread Hannu E K Nevalainen
[EMAIL PROTECTED] wrote:
 Christopher Faylor wrote:
 
 On Fri, Oct 29, 2004 at 03:52:35PM -0400, Igor Pechtchanski wrote:
 
 
 On Fri, 29 Oct 2004, Colin JN Breame wrote:
 
 
 
 Try this:
 
 $ mkdir aux
 mkdir: `aux' exists but is not a directory
 
 $ cat aux
 (hangs)
 
 $ ./aux
 
 
 ^^^
 Given the subject, I especially like this one... :-)
 
 
 
 It seems like this aux has gored a number of people on the cygwin
 list over the years... 
 
 cgf
 
 
 This doesn't seem to work either:
 
 $ gcc aux
 
 D
 
 -- Colin

-- other connected machine --

$ cat EOF /dev/ttyS0
#include stdio.h
int main() {
  printf(Hello, from the other World\n);
  return 0;
}
EOF

Interstellar(Loose ends, Uhm?!) communication ;-)

(http://www-ssg.sr.unh.edu/tof/Outreach/Interstellar/?Interdepth.html)


/Hannu E K Nevalainen, B.Sc. EE Microcomputer systems--72--

** mailing list preference; please keep replies on list **

-- printf(LocalTime: UTC+%02d\n,(DST)? 2:1); --
--END OF MESSAGE--

--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Max Bowsher
Gerrit P. Haase wrote:
Hi,
I just wanted to know if it is possible and if it is running and the
answer is: *yes*.  I have Apache2 compiled with a shared core and shared
modules, I offer a full patch  and script so you can do the same with
just running the buildscript against the patched sources.  Since it is
time consuming as nothing else to build packages like this one, so I'm
looking for someone else to maintain it.
There is still some work to do, i.e. figure out what to change in the
/usr/sbin/apxs script to use it e.g. to build PHP or other modules.
Anyway, finally I have a package ready and the webserver seems to run,
CGI was also working, at least at my XP notebook where I tested it,
though CGI doesn't work for me if the file_cache module is loaded.
See also the httpd.README in usr/doc/Cygwin for some infos.
Binaries package:
http://194.95.224.180/apache2/httpd-2.0.52-1.tar.bz2
Patchfile:
http://194.95.224.180/apache2/httpd-2.0.52-1.patch.bz2
Buildscript:
http://194.95.224.180/apache2/httpd-2.0.52-1.sh
Original sources are available at: http://httpd.apache.org/

It's a little rude to release (even unofficially) a package that clobbers 
official files - i.e. my apr and apr-util packages. I see that you have 
mentioned it briefly in the README, but that's fairly easy to overlook.

Really, you should be linking apache against my apr/apr-util packages, and 
pinging me for an update if they are not recent enough.

Anyone attempting this should check:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29740
And hopefully bug the httpd developers into applying my patch.
Max.
--
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/


getmntent extended

2004-10-31 Thread Reini Urban
Is it possible to let getmntent() i.e. fillout_mntent()
return something more appropriate?
or would this break existing apps?
getmntent() currently returns either system or user (user or system 
mounts), which are kinda strange fstype names.

I expected them to return something like msdos, pc, fat, vfat 
or ntfs. Those are currently supported by current findutils on mounted 
dos drives in unix systems.
Maybe also an indiciator for subst'ed drives: subst and remote shares, 
but this has no equivalent at unix.

Apps using this are to my knowledge only
df -t type, and find -fstype type
I could change that in coreutils and findutils, as findutils also adds 
some logic for certain esoteric platforms, but I thought asking for it 
upstream costs nothing.

usage:
  updatedb could skip subst'ed drives.
  df could display only ntfs drives.
  find could skip remote shares.
test:
export LC_ALL=C; find / -type d -maxdepth 1 -printf %p(%F)\n
/(system)
/bin(system)
/cygdrive(unknown)
/dev(system)
/etc(system)
/home(system)
/lib(system)
/proc(unknown)
/RECYCLER(system)
/sbin(system)
/tmp(system)
/usr(system)
/var(system)
export LC_ALL=C; find /cygdrive/ -type d -maxdepth 1 -printf %p(%F)\n
/cygdrive/(unknown)
/cygdrive/c(system)
/cygdrive/d(system)
/cygdrive/e(system)
/cygdrive/f(system)
/cygdrive/h(system)
/cygdrive/i(user)   remote pc
/cygdrive/k(user)   remote pc
/cygdrive/m(system) subst
/cygdrive/n(system)  --
/cygdrive/o(user)   remote pc
/cygdrive/p(system) subst
/cygdrive/q(system)  --
/cygdrive/r(system)  --
/cygdrive/s(system)  --
/cygdrive/u(system)  --
/cygdrive/v(system)  --
/cygdrive/w(system)  --
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
--
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/


pthread_atfork

2004-10-31 Thread Bruno Paulet


Hi all,

I apologize for this basic question, but I have an error message
(pthread_atfork no found in cygwin1.dll) when I try to start a cygwin NT
service (cygrunsrv -S sshd) - Service installation seems to be ok.

Does somebody know what's wrong ?

Thanks in advance.


--
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: ssh expect on Cygwin

2004-10-31 Thread D N
Since passwordless authentication is broken on many cygwin systems I use, I 
end
up using the following expect script (more frequently that I would like).
Are you sure you cant just fix the passwordless login?
I have cyg on 5 different systems - works like a charm! I use keychain to 
manage the keys.

_
Express yourself instantly with MSN Messenger! Download today - it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

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


IOC of UNESCO: survey on the IODE programme

2004-10-31 Thread Peter Pissierssens
If you are not involved in marine sciences/oceanography then please send a
blank message to [EMAIL PROTECTED] 

Dear colleague,

The International Oceanographic Data and Information Exchange (IODE)
programme (http://www.iode.org) of the Intergovernmental Oceanographic
Commission of UNESCO (IOC) was established in 1961 to enhance marine research,
exploitation and development by facilitating the exchange of oceanographic data
and information between participating Member States and by meeting the needs of
users for data and information products.

The IOC is now undertaking a review of the IODE programme so we can ensure
that IODE effectively and efficiently addresses the needs of the ocean
science and observation community.
We believe that the best way to find out how we can better serve your needs
is by asking you, a marine expert, directly.  We therefore designed a short
web-based survey. The survey can be found on the following URL:
http://www.surveymonkey.com/s.asp?u=71514696388

Filling this survey will take only 5 minutes. It is subdivided in 5 pages
and has a total of 35 questions, most of which are answerable by picking from
a list of options. 

We thank you in advance for your cooperation. For any information on IODE
or on this survey please contact Peter Pissierssens, Head Ocean Services IOC
at [EMAIL PROTECTED] or [EMAIL PROTECTED] or find out more about
the IODE review on http://ioc3.unesco.org/iode/categories.php?category_no=86

Please note that your email address will NOT be used for any non-official
purpose unrelated to IOC. However if you do not wish to receive any other
messages from IOC then please send  blank message to [EMAIL PROTECTED] and we
will remove your address from our records.

Peter Pissierssens
Head, Ocean Services Section
Intergovernmental Oceanographic Commission of UNESCO
1 rue Miollis
75732 Paris Cedex 15
FRANCE
Tel: +33 1 45 68 40 46


--
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: bug in perldoc (escape characters in output)

2004-10-31 Thread Elvin Peterson

--- Gerrit P. Haase [EMAIL PROTECTED] wrote:

 Elvin Peterson wrote:
 
  Hello,
  The perl documentation viewed using the
 perldoc
  commands has escape characters inserted into it. 
 The
  same pages view with the man command are OK.  I
 think
  this is cygwin specific, so I am posting it here.
 
 Not really a problem with perldoc, try:
 export LESS=R
 

The same effect can be achieved with perldoc -t. 
However, the color highlights are gone, so fixing this
might be worthwhile.

Thanks for the reply.

 Gerrit
 -- 
 =^..^=
 
 --
 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/
 
 




__
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo 

--
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: bug in perldoc (escape characters in output)

2004-10-31 Thread Elvin Peterson
--- Yaakov Selkowitz
[EMAIL PROTECTED] wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Elvin Peterson wrote:
 | Hello,
 | The perl documentation viewed using the
 perldoc
 | commands has escape characters inserted into it. 
 The
 | same pages view with the man command are OK.  I
 think
 | this is cygwin specific, so I am posting it here.
 | Thanks.
 
 Quoting /usr/share/doc/Cygwin/perl-5.8.5.README:
 
 ***NOTE: you may want to set LESS=-R for less output
 in your global
 ~ Cygwin environment because the escape
 characters are not
 ~ expanded without this setting.
 

OK, thanks for all who replied--so perldoc doesn't
have the color highlighting to begin with.  So it
would seem that man is a better command for reading
perl documentation.  My apologies for not reading the
README file for perl.

 
 Yaakov
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (Cygwin)
 Comment: Using GnuPG with Thunderbird -
 http://enigmail.mozdev.org
 

iD8DBQFBhE3XpiWmPGlmQSMRAu1nAKCIZ54U7OlOj00ktArba4Ot+zYn5QCgv9FH
 t65+hfLgCB8RvNhnZCnaD9M=
 =LlHs
 -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/
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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: Need an older gcc version on my cygwin due to poor performance on gcc-3.x series.

2004-10-31 Thread Danny Smith
Gerrit wrote:

 Ole Jacob Hagen wrote:

 Hi,
 
 I've compiled Octave-2.1.60 with gcc-3.3.3 successfully, but the
 performance is pretty bad with gcc-3.3.3. 
 The performance should of Octave is much better, when compiling it
 with gcc-3.2.x instead.

 It would make more sense to identify the problem and do s.th.
 about it to resolve this issue then.

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14563

Danny 


--
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: bug in perldoc (escape characters in output)

2004-10-31 Thread Gerrit P. Haase
Elvin Peterson wrote:
Hello,
   The perl documentation viewed using the
perldoc commands has escape characters inserted into it. 
The same pages view with the man command are OK.  I 
 think this is cygwin specific, so I am posting it here.
Not really a problem with perldoc, try:
export LESS=R

The same effect can be achieved with perldoc -t. 
This is textmode only, yep.
However, the color highlights are gone, so fixing this
might be worthwhile.
You get highlightingsd when you set LESS=R in your environment.
So what to fix?  It is a feature, not a bug.
Gerrit
--
=^..^=
--
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: CPAN module in Cygwin

2004-10-31 Thread Elvin Peterson

--- Reini Urban [EMAIL PROTECTED] wrote:

 Elvin Peterson schrieb:
  Hello,
 The CPAN command:
  
  perl -MCPAN -e shell 
  
  fails with:
  Cannot open /usr/lib/perl5/5.8.5/CPAN/Config.pm
 at
  /usr/lib/perl5/5.8.5/CPAN.pm line 1219
  
  It looks like it is trying to write to a file
 owned by
  Administrator.  Is there a workaround to install
  modules as a user?
 
 root ownersip is okay. but it must be readable.
 user-specific CPAN configs are stored in
 ~/.cpan/CPAN/MyConfig.pm

I have read access for the file (as I do for all the
files in /usr/bin).  I don't have a $HOME/.cpan (the
script didn't get that far).

Thanks for the reply.




__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

--
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: CPAN module in Cygwin

2004-10-31 Thread Yitzchak Scott-Thoennes
On Sat, Oct 30, 2004 at 01:14:08PM -0700, Elvin Peterson [EMAIL PROTECTED] wrote:
 Hello,
The CPAN command:
 
 perl -MCPAN -e shell 
 
 fails with:
 
 Cannot open /usr/lib/perl5/5.8.5/CPAN/Config.pm at
 /usr/lib/perl5/5.8.5/CPAN.pm line 1219
 
 CPAN::Config::_configpmtest('/usr/lib/perl5/5.8.5/CPAN',
 '/usr/lib/perl5/5.8.5/CPAN/Config.pm') called at
 /usr/lib/perl5/5.8.5/CPAN.pm line 1253
   CPAN::Config::load('CPAN::Config') called at
 /usr/lib/perl5/5.8.5/CPAN.pm line 92
   CPAN::shell() called at -e line 1
 
 It looks like it is trying to write to a file owned by
 Administrator.  Is there a workaround to install
 modules as a user?

After a *very* quick look at CPAN.pm, it looks like your
CPAN/Config.pm is incomplete, so it tries to rebuild it, but trips up
because it is not expecting the Config.pm file to not be writable when
the CPAN/ directory is writable.

This is IMO a CPAN bug.

You can find out what's missing by:

perl -MCPAN::Config -MCPAN -wle'print for CPAN::Config-missing_config_data'

As a workaround, you may just want to copy it to ~/.cpan/CPAN/Config.pm and use

perl -Mlib=$HOME/.cpan -MCPAN -eshell

--
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: Need an older gcc version on my cygwin due to poor performance on gcc-3.x series.

2004-10-31 Thread Gerrit P. Haase
Danny Smith wrote:
Gerrit wrote:

Ole Jacob Hagen wrote:

Hi,
I've compiled Octave-2.1.60 with gcc-3.3.3 successfully, but the
performance is pretty bad with gcc-3.3.3. 
The performance should of Octave is much better, when compiling it
with gcc-3.2.x instead.

It would make more sense to identify the problem and do s.th.
about it to resolve this issue then.

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14563
Wow, this is an interesting story about exception handling.
What I'm asking myself now:
Should we try again to use dwarf2 exceptions?
Should we try to find the reason why SjLj exceptions are slower on
Cygwin than for the rest of the world?
Gerrit
--
=^..^=
--
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: pthread_atfork

2004-10-31 Thread Larry Hall
At 12:00 PM 10/31/2004, you wrote:


Hi all,

I apologize for this basic question, but I have an error message
(pthread_atfork no found in cygwin1.dll) when I try to start a cygwin NT
service (cygrunsrv -S sshd) - Service installation seems to be ok.

Does somebody know what's wrong ?

My WAG is that you have more than one cygwin1.dll on your system or you
have not rebooted when requested after updating your cygwin environment
(probably the latter if you were running Cygwin services when you updated).
But if that doesn't help, then see:

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


That provides guidelines for reporting problems to this list.


--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
838 Washington Street   (508) 893-9889 - FAX
Holliston, MA 01746 


--
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: CPAN module in Cygwin

2004-10-31 Thread Elvin Peterson
--- Yitzchak Scott-Thoennes [EMAIL PROTECTED] wrote:

 On Sat, Oct 30, 2004 at 01:14:08PM -0700, Elvin
 Peterson [EMAIL PROTECTED] wrote:
  Hello,
 The CPAN command:
  
  perl -MCPAN -e shell 
  
  fails with:
  
  Cannot open /usr/lib/perl5/5.8.5/CPAN/Config.pm
 at
  /usr/lib/perl5/5.8.5/CPAN.pm line 1219
  
 

CPAN::Config::_configpmtest('/usr/lib/perl5/5.8.5/CPAN',
  '/usr/lib/perl5/5.8.5/CPAN/Config.pm') called at
  /usr/lib/perl5/5.8.5/CPAN.pm line 1253
  CPAN::Config::load('CPAN::Config') called at
  /usr/lib/perl5/5.8.5/CPAN.pm line 92
  CPAN::shell() called at -e line 1
  
  It looks like it is trying to write to a file
 owned by
  Administrator.  Is there a workaround to install
  modules as a user?
 
 After a *very* quick look at CPAN.pm, it looks like
 your
 CPAN/Config.pm is incomplete, so it tries to rebuild
 it, but trips up
 because it is not expecting the Config.pm file to
 not be writable when
 the CPAN/ directory is writable.
 
 This is IMO a CPAN bug.
 
 You can find out what's missing by:
 
 perl -MCPAN::Config -MCPAN -wle'print for
 CPAN::Config-missing_config_data'
 
 As a workaround, you may just want to copy it to
 ~/.cpan/CPAN/Config.pm and use
 
 perl -Mlib=$HOME/.cpan -MCPAN -eshell

I've done that and it started up fine!  Thanks for the
help.




__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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-installing cygwin...

2004-10-31 Thread Hannu E K Nevalainen
A heads up:
(Re)installing seems to be somewhat problematic currently.

I have had cygwin installed at C:\Program\Cygwin\ since I first installed
it. Now I came to the point where I wished to move it to E:\Cygwin\ - just
for convinience. (C: will be populated with other things)

So, I gladly assumed that the local package dir would be useful here...
let's reinstall from there. BUT; That was a NO GO path as it seems right
now. I've spent a couple of hours fiddling with different ways of installing
cygwin from there.
 The last thing I tried a few minutes ago was to RE-download the base files
and install them... well, I had to restart setup once to accomplish this.
It seems as I have succeeded with a base install now though.

I'll be checking this further as time permits. This might not happen before
next weekend though...

I kept a shorthand note-log of what happened and what I did...
attached it, just as setup.log.full (.bz2 as it was 100K)


/Hannu E K Nevalainen, B.Sc. EE Microcomputer systems--72--

** mailing list preference; please keep replies on list **

-- printf(LocalTime: UTC+%02d\n,(DST)? 2:1); --
--END OF MESSAGE--


setup.log.full.bz2
Description: Binary data
bash:

$ umount -A
close the rxvt window with the x-shaped button at top right corner of most Windows 
windows
--

 Move
C:\Program\Cygwin\
 to
C:\Cygwin-OLD\
 to make it disappear for any forthcoming Cygwin tasks.

-- setup.exe 2.427 --
started from a windows shortcut with
setup.exe --no-md5 in Program/cmd line:

---
Cygwin Setup: SETUP.EXE - Application Error
---
The instruction at 0x00485fbd referenced memory at 0x. The memory could 
not be written.

Click on OK to terminate the program
Click on CANCEL to debug the program
---
OK   Cancel   
---

-- setup.log.full --
2004/10/31 20:45:24 Starting cygwin install, version 2.427
2004/10/31 20:45:24 Current Directory: G:\
2004/10/31 20:45:24 Changing gid to Users
2004/10/31 20:45:24 Could not open service McShield for query, start and stop. McAfee 
may not be installed, or we don't have access.
2004/10/31 20:45:28 Ending cygwin install

-- setup.log --
2004/10/31 20:45:24 Starting cygwin install, version 2.427
2004/10/31 20:45:24 Current Directory: G:\
2004/10/31 20:45:24 Changing gid to Users
2004/10/31 20:45:24 Could not open service McShield for query, start and stop. McAfee 
may not be installed, or we don't have access.
2004/10/31 20:45:28 Ending cygwin install


-- SECOND TRY --
Removed ALL registry entries related to cygwin

started from a windows shortcut with
setup.exe --no-md5 in Program/cmd line:
--
Install from local directory
Root dir++: E:\cygwin, all users, unix
Local package dir: G:\
 same as used for C:\Cygwin-OLD\ previously, unchanged since then
Parsing ini file...
--
---
Cygwin Setup: SETUP.EXE - Application Error
---
The instruction at 0x00485fbd referenced memory at 0x. The memory could 
not be written.

Click on OK to terminate the program
Click on CANCEL to debug the program
---
OK   Cancel   
---
--
NOTE: setup 2.427 is the one currently on the webpage...

--
Peeking at http://cygwin.com/setup-snapshots/
reveals setup 2.431...
--
Started from windows as is, no shortcut, no nothing.
---
Cygwin Setup: setup-NEW.exe - Application Error
---
The instruction at 0x0047d577 referenced memory at 0x. The memory could 
not be written.

Click on OK to terminate the program
Click on CANCEL to debug the program
---
OK   Cancel   
---

Now then... 
Using Install from internet instead (from http://mirrrors.rcn.net/ as many initiated 
ppl seem to use it)

- Default -
Downloading...
99%: _update-info-dir00230-1.tar.bz2

---
Cygwin Setup
---
Download Incomplete.  Try again?
---
Yes   No   
---
NO -
---
Cygwin Setup
---
Fatal Error: Uncaught Exception
Thread: install
Type: St16invalid_argument
Message: URL Scheme not registered!
---
OK   
---
-- var.log
2004/10/31 20:43:11 Starting cygwin install, version 2.427
2004/10/31 20:43:11 Current Directory: G:\
2004/10/31 20:43:11 Changing gid to Users
2004/10/31 20:43:11 Could not open service McShield for query, start and stop. McAfee 
may not be installed, or we don't have access.
2004/10/31 20:43:13 Ending cygwin install
2004/10/31 20:45:24 Starting cygwin install, version 2.427
2004/10/31 20:45:24 Current Directory: G:\
2004/10/31 20:45:24 Changing gid to Users
2004/10/31 20:45:24 Could not open service McShield for query, start and stop. McAfee 
may not be installed, or we don't have access.
2004/10/31 20:45:28 

Re: bug in perldoc (escape characters in output)

2004-10-31 Thread Brian Dessent
Elvin Peterson wrote:

 I don't get any color highlighting when I use LESS=R,
 but as I said in another post, perldoc didn't have
 highlighting to begin with.  Does anyone here get
 color in the terminal for, say, perldoc CPAN?  As it
 is, I am using man for everything except perldoc -f.

perldoc works fine, has full highlighting/bolding support but you have
to configure less to show the escape codes.  Try export LESS=-R.  Not
just R.  There is a minus in front of it.  Just like it says in the
README.

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: bug in perldoc (escape characters in output)

2004-10-31 Thread Gerrit P. Haase
Brian Dessent wrote:
Elvin Peterson wrote:

I don't get any color highlighting when I use LESS=R,
but as I said in another post, perldoc didn't have
highlighting to begin with.  Does anyone here get
color in the terminal for, say, perldoc CPAN?  As it
is, I am using man for everything except perldoc -f.

perldoc works fine, has full highlighting/bolding support but you have
to configure less to show the escape codes.  Try export LESS=-R.  Not
just R.  There is a minus in front of it.  Just like it says in the
README.
I see no difference in using LESS=R instead of LESS=-R, works fine anyway.
Gerrit
--
=^..^=
--
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: CPAN module in Cygwin

2004-10-31 Thread Yitzchak Scott-Thoennes


On Sun, Oct 31, 2004 at 12:05:38PM -0800, Yitzchak Scott-Thoennes wrote:
 On Sat, Oct 30, 2004 at 01:14:08PM -0700, Elvin Peterson wrote:

Sorry for originally not removing email address on the above line.

  Hello,
 The CPAN command:
  
  perl -MCPAN -e shell 
  
  fails with:
  
  Cannot open /usr/lib/perl5/5.8.5/CPAN/Config.pm at
  /usr/lib/perl5/5.8.5/CPAN.pm line 1219
  
  CPAN::Config::_configpmtest('/usr/lib/perl5/5.8.5/CPAN',
  '/usr/lib/perl5/5.8.5/CPAN/Config.pm') called at
  /usr/lib/perl5/5.8.5/CPAN.pm line 1253
  CPAN::Config::load('CPAN::Config') called at
  /usr/lib/perl5/5.8.5/CPAN.pm line 92
  CPAN::shell() called at -e line 1
  
  It looks like it is trying to write to a file owned by
  Administrator.  Is there a workaround to install
  modules as a user?
 
 After a *very* quick look at CPAN.pm, it looks like your
 CPAN/Config.pm is incomplete, so it tries to rebuild it, but trips up
 because it is not expecting the Config.pm file to not be writable when
 the CPAN/ directory is writable.
 
 This is IMO a CPAN bug.

It's more complicated than that; I wasn't able to duplicate this with a
writable CPAN dir and a non-writable CPAN/Config.pm.  If the CPAN dir
is writable, CPAN.pm will unlink CPAN/Config.pm.bak, rename CPAN/Config.pm
to CPAN/Config.pm.bak, and try to create a new CPAN/Config.pm.  I am
unable to envision how you could have permissions set so that this wouldn't
succeed.
 
 You can find out what's missing by:
 
 perl -MCPAN::Config -MCPAN -wle'print for CPAN::Config-missing_config_data'

Ouf of curiousity, what was missing?  Was the CPAN/Config.pm just the
original 3 byte stub?

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

2004-10-31 Thread Bruno Paulet

I have solved the problem - just add : -e PATH=/bin:$PATH at service
installation (ssh-host-config).

Thanks

- Original Message - 
From: Larry Hall [EMAIL PROTECTED]
To: Bruno Paulet [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Sunday, October 31, 2004 9:42 PM
Subject: Re: pthread_atfork


 At 12:00 PM 10/31/2004, you wrote:


 Hi all,
 
 I apologize for this basic question, but I have an error message
 (pthread_atfork no found in cygwin1.dll) when I try to start a cygwin NT
 service (cygrunsrv -S sshd) - Service installation seems to be ok.
 
 Does somebody know what's wrong ?

 My WAG is that you have more than one cygwin1.dll on your system or you
 have not rebooted when requested after updating your cygwin environment
 (probably the latter if you were running Cygwin services when you
updated).
 But if that doesn't help, then see:

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


 That provides guidelines for reporting problems to this list.


 --
 Larry Hall  http://www.rfk.com
 RFK Partners, Inc.  (508) 893-9779 - RFK Office
 838 Washington Street   (508) 893-9889 - FAX
 Holliston, MA 01746





--
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: Shiny Icon

2004-10-31 Thread Tim Hubberstey
--- Buchbinder, Barry (NIH/NIAID) wrote:

 At Thursday, October 28, 2004 3:58 PM, Max Bowsher wrote:
  Nick wrote:
  Hey all. I made this shiny 32-bit 48x48 icon for Win XP, which
  you're free to use if you like that kind of thing. I just found
 that
  with the rest of my desktop being high-colour with drop shadows,
  that the Cygwin icon looked a bit plain. Have fun.
  
  http://sodawaterrhubarb.nickhowes.co.uk/cygwin.ico
  
  Anyone got any opinions on adopting this in setup.exe and
 base-files ?
  
  Max.
 
 I'm happy with the current one as the default.  But one could always
 package
 it with base-files or make it available as a special download so
 people use
 it if it they prefer it.
 
 - Barry

I agree with Barry; make it an option. The icon doesn't display
properly if you're running with 16-bit color (it shows as mostly black)
so I think it is inappropriate to use it as the default.




__
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
http://promotions.yahoo.com/new_mail

--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Max Bowsher wrote:
Really, you should be linking apache against my apr/apr-util packages, 
and pinging me for an update if they are not recent enough.
Looking at cygwin.com/packages I see no DLL at all in the APR or APU
packages:
apr: The Apache Portable Runtime (development/documentation 
package) (installed binaries and support files)

Tue Jun  8 18:00:20 2004  0 usr/
Tue Jun  8 18:00:22 2004  0 usr/bin/
Tue Jun  8 18:00:21 2004   8860 usr/bin/apr-config
Tue Jun  8 18:00:18 2004  0 usr/include/
Tue Jun  8 17:58:29 2004  12034 usr/include/apr.h
...
apr-util: Additional utility library for use with the Apache 
Portable Runtime (development/documentation package) (installed binaries 
and support files)

Tue Jun  8 18:03:16 2004  0 usr/
Tue Jun  8 18:03:17 2004  0 usr/bin/
Tue Jun  8 18:03:16 2004   6136 usr/bin/apu-config
Tue Jun  8 18:03:14 2004  0 usr/include/
Fri Feb 13 09:52:42 2004   4867 usr/include/apr_anylock.h
...
Gerrit
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Gerrit P. Haase wrote:
 There is still some work to do, i.e. figure out what to change in the
 /usr/sbin/apxs script to use it e.g. to build PHP or other modules.

 Anyway, finally I have a package ready and the webserver seems to run,
 CGI was also working, at least at my XP notebook where I tested it,
 though CGI doesn't work for me if the file_cache module is loaded.

 See also the httpd.README in usr/doc/Cygwin for some infos.
From the README:
BEWARE
==
Libraries from the apr and apr-util packages will be overwritten if you
extract this package from the root.  It may work with the apr and the
apr-util packages available via the netrelease, I have not tested this,
...
To avoid problems with already installed apr and apr-utils packages the
tarball was repackaged:  the binary package, webserver parts and apr 
apr-util are separated as well as the devel stuff (libhttpd import
library and all the headers) in httpd-devel:
Webserver (including docs):
http://194.95.224.180/apache2/httpd-2.0.52-1.tar.bz2
Runtime (should not be needed if you have apr  apr-util already
installed):
http://194.95.224.180/apache2/apr-2.0.52-1.tar.bz2
http://194.95.224.180/apache2/apr-util-2.0.52-1.tar.bz2
Devel stuff (not needed to run the webserver):
http://194.95.224.180/apache2/httpd-devel-2.0.52-1.tar.bz2
Patchfile:
http://194.95.224.180/apache2/httpd-2.0.52-1.patch.bz2
Buildscript:
http://194.95.224.180/apache2/httpd-2.0.52-1.sh
Original sources are available at: http://httpd.apache.org/
Have it running now at my home box:
http://194.95.224.180/server-info/
http://194.95.224.180/server-status/
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Gerrit P. Haase wrote:
Max Bowsher wrote:
Really, you should be linking apache against my apr/apr-util packages, 
and pinging me for an update if they are not recent enough.

Looking at cygwin.com/packages I see no DLL at all in the APR or APU
packages:
Oops, there are also libapr* packages containing just the DLL, sorry for 
the noise.

Gerrit
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Max Bowsher
Gerrit P. Haase wrote:
Max Bowsher wrote:
Really, you should be linking apache against my apr/apr-util packages,
and pinging me for an update if they are not recent enough.
Looking at cygwin.com/packages I see no DLL at all in the APR or APU
packages:
Well, of course you don't. That's what libapr0 / libaprutil0 are for.
Max.
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Max Bowsher
Gerrit P. Haase wrote:
Gerrit P. Haase wrote:
There is still some work to do, i.e. figure out what to change in the
/usr/sbin/apxs script to use it e.g. to build PHP or other modules.
Anyway, finally I have a package ready and the webserver seems to run,
CGI was also working, at least at my XP notebook where I tested it,
though CGI doesn't work for me if the file_cache module is loaded.
See also the httpd.README in usr/doc/Cygwin for some infos.
From the README:
BEWARE
==
Libraries from the apr and apr-util packages will be overwritten if you
extract this package from the root.  It may work with the apr and the
apr-util packages available via the netrelease, I have not tested this,
...
To avoid problems with already installed apr and apr-utils packages the
tarball was repackaged:  the binary package, webserver parts and apr 
apr-util are separated as well as the devel stuff (libhttpd import
library and all the headers) in httpd-devel:
Webserver (including docs):
http://194.95.224.180/apache2/httpd-2.0.52-1.tar.bz2
Runtime (should not be needed if you have apr  apr-util already
installed):
I'm not really sure about that. The current apr(util) are probably too old 
for such a new apache. I'll update soon (ETA 1-2 days).

http://194.95.224.180/apache2/apr-2.0.52-1.tar.bz2
http://194.95.224.180/apache2/apr-util-2.0.52-1.tar.bz2
*Please* don't use that version number.
Call it apr-0.9.5_2.0.52-0gph or something
2.x is numerically higher than any apr release existing now, or in the 
medium-term future.

Devel stuff (not needed to run the webserver):
http://194.95.224.180/apache2/httpd-devel-2.0.52-1.tar.bz2
Patchfile:
http://194.95.224.180/apache2/httpd-2.0.52-1.patch.bz2
Buildscript:
http://194.95.224.180/apache2/httpd-2.0.52-1.sh
Original sources are available at: http://httpd.apache.org/
Have it running now at my home box:
Either the server is drastically overloaded, or those binaries aren't 
working so well after all. I tried to download the binary package, and it 
consistently fed only an 8K chunk before terminating the connection.

Max.
--
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: Shiny Icon

2004-10-31 Thread Max Bowsher
Tim Hubberstey wrote:
--- Buchbinder, Barry (NIH/NIAID) wrote:
At Thursday, October 28, 2004 3:58 PM, Max Bowsher wrote:
Nick wrote:
Hey all. I made this shiny 32-bit 48x48 icon for Win XP, which
you're free to use if you like that kind of thing. I just found that
with the rest of my desktop being high-colour with drop shadows,
that the Cygwin icon looked a bit plain. Have fun.
http://sodawaterrhubarb.nickhowes.co.uk/cygwin.ico
Anyone got any opinions on adopting this in setup.exe and base-files ?
Max.
I'm happy with the current one as the default.  But one could always
package
it with base-files or make it available as a special download so
people use
it if it they prefer it.
- Barry
I agree with Barry; make it an option. The icon doesn't display
properly if you're running with 16-bit color (it shows as mostly black)
so I think it is inappropriate to use it as the default.
Ah, ok.
Lacking any graphic design skills or any suitable icon editing programs, 
I'll leave well alone.

If anyone wants to make an icon file including suitable formats for both 
high and low sizes and colour depths, I'll seriously consider adding it to 
setup.

Max.
--
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: virus in cygwin-cvs mail archive

2004-10-31 Thread Christopher Faylor
On Sun, Oct 31, 2004 at 08:51:53AM +0100, Gerrit P. Haase wrote:
Hello Christopher,

there is a W32/[EMAIL PROTECTED] virus attachment in the cygwin-cvs
archives in an attachment file named Document.zip:
/var/ftp/pub/cygwin/mail-archives/cygwin-cvs-2004-q2.bz2

Um, yeah, I'm sure there are all sorts of viruses and spam in the archives.

Anyone who downloads and runs something from cvs archives deserves what they
get just from a Darwinian perspective.

--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Max Bowsher wrote:
http://194.95.224.180/apache2/apr-2.0.52-1.tar.bz2
http://194.95.224.180/apache2/apr-util-2.0.52-1.tar.bz2

*Please* don't use that version number.
Call it apr-0.9.5_2.0.52-0gph or something
Ok, renamed to:
http://194.95.224.180/apache2/apr2052-0.9.5-1.tar.bz2
http://194.95.224.180/apache2/apr-util2052-0.9.5-1.tar.bz2
Gerrit
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Max Bowsher wrote:
Have it running now at my home box:
Either the server is drastically overloaded, or those binaries aren't 
working so well after all. I tried to download the binary package, and 
it consistently fed only an 8K chunk before terminating the connection.
Yes, that was what I saw too as I tried to upload some packages via this 
apache to sourceware, I think it is a problem with MMAP, added this to 
httpd.conf now:

EnableMMAP off
seems to work:
$ wget -c http://194.95.224.180/apache2/httpd-2.0.52-1.tar.bz2
--01:23:06--  http://194.95.224.180/apache2/httpd-2.0.52-1.tar.bz2
   = `httpd-2.0.52-1.tar.bz2'
Connecting to 194.95.224.180:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2,536,595 [application/octet-stream]
100%[==] 2,536,595928.46K/s 

01:23:09 (928.46 KB/s) - `httpd-2.0.52-1.tar.bz2' saved [2536595/2536595]

Gerrit
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Gerrit P. Haase wrote:
Max Bowsher wrote:
Have it running now at my home box:
Either the server is drastically overloaded, or those binaries aren't 
working so well after all. I tried to download the binary package, and 
it consistently fed only an 8K chunk before terminating the connection.

Yes, that was what I saw too as I tried to upload some packages via this 
apache to sourceware, I think it is a problem with MMAP, added this to 
httpd.conf now:

EnableMMAP off
And additionally added 'bz2 tbz' to
 application/octet-stream   ... bz2 tbz
in /etc/apache2/mime.types, else Apache still thinks it should send it
as plain text and it looks like it behaves different then.
Gerrit
--
=^..^=
--
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: httpd-2.0.52 (Apache2) testers wanted / maintainer searched

2004-10-31 Thread Gerrit P. Haase
Gerrit P. Haase wrote:
Gerrit P. Haase wrote:
Max Bowsher wrote:
Have it running now at my home box:

Either the server is drastically overloaded, or those binaries aren't 
working so well after all. I tried to download the binary package, 
and it consistently fed only an 8K chunk before terminating the 
connection.

Yes, that was what I saw too as I tried to upload some packages via 
this apache to sourceware, I think it is a problem with MMAP, added 
this to httpd.conf now:

EnableMMAP off

And additionally added 'bz2 tbz' to
 application/octet-stream... bz2 tbz
in /etc/apache2/mime.types, else Apache still thinks it should send it
as plain text and it looks like it behaves different then.

It seems to be antoher porblem, regardless the settings in httpd.conf 
and mime.types, if I fetch locally I have a different speed:

$ wget -c http://192.168.1.1/apache2/httpd-2.0.52-1.tar.bz2
--02:15:01--  http://192.168.1.1/apache2/httpd-2.0.52-1.tar.bz2
   = `httpd-2.0.52-1.tar.bz2'
Connecting to 192.168.1.1:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2,536,595 [application/octet-stream]
100%[===] 2,536,595 80.96K/sETA 00:00
02:15:32 (80.00 KB/s) - `httpd-2.0.52-1.tar.bz2' saved [2536595/2536595]
Maybe it is some kind of weird proxy mechanism at the side of my
DSL provider, since I got the package much faster (10 times) when
using my external IP.  Weird.
I'll also try to use another router, tomorrow.
Gerrit
--
=^..^=
--
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/


GOJobs: Message Received - 85332 - Security (Cryptography)

2004-10-31 Thread GOJobs Resume Service
A recruiter for PDS Technical Services will be receiving your resume shortly.
While you are waiting to hear from PDS Technical Services, please
use the links below to find out more about us.

To view this job again:
http://www.gojobs.com/Seeker/JobDetail1.asp?JobNum=389989JBID=1098

To view other jobs from this company:
http://www.gojobs.com/Seeker/JobListbyCID.asp?CID=16454JBID=1098

To search for more jobs:
http://www.gojobs.com/Seeker/JobSearch1.asp?JBID=1098


** FREE 1 Year Subscriptions to Nearly 300 Career Related Magazines!
**
** As a valued member of the GoJobs.com community, we would like to extend the
** opportunity to subscribe to many leading magazines absolutely FREE. There
** are absolutely no hidden or trial offers, and no purchase necessary.
** Publications are absolutely free to those who qualify. Browse from the
** extensive list of titles currently offered and be sure to check back often
** as we will be adding new titles over the coming weeks and months.
** 
** Click here to subscribe! http://gojobs.tradepub.com


This is is an automated courtesy response, provided by GO Jobs, 
the trusted recruiting solution provider of PDS Technical Services.

If you need any assistance regarding your online job search,
please visit the GO Jobs site for more information.

Thank you,

The GO Jobs Job Seeker support Team.
http://www.gojobs.com


--
JobCode: 85332
Title: Security (Cryptography)
Company: PDS Technical Services
--
Subject: Mail Delivery (failure [EMAIL PROTECTED])
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
--


--
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: GOJobs: Message Received - 85332 - Security (Cryptography)

2004-10-31 Thread Bobby McNulty
All right, who signed the cygwin mailing list to this spammer?


GOJobs Resume Service wrote:
A recruiter for PDS Technical Services will be receiving your resume shortly.
While you are waiting to hear from PDS Technical Services, please
use the links below to find out more about us.
To view this job again:
http://www.gojobs.com/Seeker/JobDetail1.asp?JobNum=389989JBID=1098
To view other jobs from this company:
http://www.gojobs.com/Seeker/JobListbyCID.asp?CID=16454JBID=1098
To search for more jobs:
http://www.gojobs.com/Seeker/JobSearch1.asp?JBID=1098

** FREE 1 Year Subscriptions to Nearly 300 Career Related Magazines!
**
** As a valued member of the GoJobs.com community, we would like to extend the
** opportunity to subscribe to many leading magazines absolutely FREE. There
** are absolutely no hidden or trial offers, and no purchase necessary.
** Publications are absolutely free to those who qualify. Browse from the
** extensive list of titles currently offered and be sure to check back often
** as we will be adding new titles over the coming weeks and months.
** 
** Click here to subscribe! http://gojobs.tradepub.com


This is is an automated courtesy response, provided by GO Jobs, 
the trusted recruiting solution provider of PDS Technical Services.

If you need any assistance regarding your online job search,
please visit the GO Jobs site for more information.
Thank you,
The GO Jobs Job Seeker support Team.
http://www.gojobs.com
--
JobCode: 85332
Title: Security (Cryptography)
Company: PDS Technical Services
--
Subject: Mail Delivery (failure [EMAIL PROTECTED])
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
--
--
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/


Re: GOJobs: Message Received - 85332 - Security (Cryptography)

2004-10-31 Thread Christopher Faylor
On Sun, Oct 31, 2004 at 08:10:22PM -0600, Bobby McNulty wrote:
All right, who signed the cygwin mailing list to this spammer?

Please stop contributing to the spam by responding to the spammers.

--
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: Need an older gcc version on my cygwin due to poor performance on gcc-3.x series.

2004-10-31 Thread Danny Smith
Gerrit P. Haase wrote:
 Danny Smith wrote:

 Gerrit wrote:


 Ole Jacob Hagen wrote:


 Hi,

 I've compiled Octave-2.1.60 with gcc-3.3.3 successfully, but the
 performance is pretty bad with gcc-3.3.3.
 The performance should of Octave is much better, when compiling it
 with gcc-3.2.x instead.


 It would make more sense to identify the problem and do s.th.
 about it to resolve this issue then.


  http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14563

 Wow, this is an interesting story about exception handling.

 What I'm asking myself now:

 Should we try again to use dwarf2 exceptions?


My personal builds of gcc-3.4.x are bullt with dwarf2 EH enabled.  No
problems But  I don't use w32 callbacks within functions that throw.  I
had never even thought of doing that, but I don't think much.anymore

 Should we try to find the reason why SjLj exceptions are slower on
 Cygwin than for the rest of the world?

Most of the rest of the GCC world has abandoned sjlj EH as inefficient
Look  within function prologues.

Danny

 Gerrit


--
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: Need an older gcc version on my cygwin due to poor performance on gcc-3.x series.

2004-10-31 Thread Reini Urban
Danny Smith schrieb:
Gerrit P. Haase wrote:
Danny Smith wrote:
Gerrit wrote:
Ole Jacob Hagen wrote:
I've compiled Octave-2.1.60 with gcc-3.3.3 successfully, but the
performance is pretty bad with gcc-3.3.3.
The performance should of Octave is much better, when compiling it
with gcc-3.2.x instead.

It would make more sense to identify the problem and do s.th.
about it to resolve this issue then.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14563
Wow, this is an interesting story about exception handling.
What I'm asking myself now:
Should we try again to use dwarf2 exceptions?
My personal builds of gcc-3.4.x are bullt with dwarf2 EH enabled.  No
problems But  I don't use w32 callbacks within functions that throw.  I
had never even thought of doing that, but I don't think much.anymore
Max,
Do we use some win32 callbacks with exceptions in setup.exe?
I do see some candidates, but I didn't follow the codepath exactly.
On the other side, our setup.exe is not that performance critical as 
octave. But postgresql and apache are likely candidates for Dwarf2 
enabled builds. I experienced severe postgresql penalties with the 
latest builds, compared to earlier versions. current beta4 only allows 
MAX_CONNECTIONS=2, vs. ~50 with earlier gcc/postgresql. But postgresql 
internals also had changed a lot lately.

Should we try to find the reason why SjLj exceptions are slower on
Cygwin than for the rest of the world?
Most of the rest of the GCC world has abandoned sjlj EH as inefficient
Look  within function prologues.
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
--
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/