Re: dumper.exe help/version patch

2002-03-09 Thread Christopher Faylor

On Fri, Mar 08, 2002 at 10:53:28PM -0800, Joshua Daniel Franklin wrote:
Here is the next in the series of patches to standardize the help and
version options in the utils. This also adds GNUish options to dumper.
I left the Compiled on __DATE__ out of
print_version since there is a #ifdef __GNUC__ in the file and I don't
know whether that trick works with all compilers.

2002-03-09  Joshua Daniel Franklin [EMAIL PROTECTED]
* dumper.cc (usage) Standardize usage output. Generalize to allow use for help.
(longopts) New struct. Added longopts for all options.
(print_version) New function. 
(main) Change getopt to getopt_long. Accommodate new help and 
version options. 

I'd like Egor to approve this patch, if possible.

cgf



getfacl.c help/version patch

2002-03-09 Thread Joshua Daniel Franklin

It would probably be good to have Corinna look at this one, too. 
I have been trying to verify that the utils in my build tree are
functioning identically (other than the help/version output) to the
ones in /bin/, but since I didn't write them there is always the
chance I missed a nuance.

2002-03-09  Joshua Daniel Franklin [EMAIL PROTECTED]
* getfacl.c (usage) Standardize usage output. Change return type to static
void.
Add exit point within function.
(longopts) Added longopts for all options.
(print_version) New function. 
(main) Accommodate new help and version options. 


__
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

--- getfacl.c-orig  Sun Feb 24 13:28:27 2002
+++ getfacl.c   Sat Mar  9 15:05:05 2002
@@ -1,6 +1,6 @@
 /* getfacl.c
 
-   Copyright 2000, 2001 Red Hat Inc.
+   Copyright 2000, 2001, 2002 Red Hat Inc.
 
Written by Corinna Vinschen [EMAIL PROTECTED]
 
@@ -20,6 +20,9 @@ details. */
 #include sys/stat.h
 #include string.h
 
+static const char version[] = $Revision: 1.13 $;
+static char *prog_name;
+
 char *
 permstr (mode_t perm)
 {
@@ -58,68 +61,86 @@ groupname (gid_t gid)
   return gbuf;
 }
 
-#define pn(txt)fprintf (fp, txt \n, name)
-#define p(txt) fprintf (fp, txt \n)
-
-int
-usage (const char *name, int help)
+static void
+usage (FILE * stream, int status)
 {
-  FILE *fp = help ? stdout : stderr;
-
-  pn (usage: %s [-adn] file...);
-  if (!help)
-pn (Try `%s --help' for more information.);
-  else
-{
-  p ();
-  p (Display file and directory access control lists (ACLs).);
-  p ();
-  p (For each argument that is a regular file, special file or);
-  p (directory, getfacl displays the owner, the group, and the ACL.);
-  p (For directories getfacl displays additionally the default ACL.);
-  p ();
-  p (With no options specified, getfacl displays the filename, the);
-  p (owner, the group, and both the ACL and the default ACL, if it);
-  p (exists.);
-  p ();
-  p (The following options are supported:);
-  p ();
-  p (-a   Display the filename, the owner, the group, and the ACL);
-  p ( of the file.);
-  p ();
-  p (-d   Display the filename, the owner, the group, and the default);
-  p ( ACL of the directory, if it exists.);
-  p ();
-  p (-n   Display user and group IDs instead of names.);
-  p ();
-  p (The format for ACL output is as follows:);
-  p ( # file: filename);
-  p ( # owner: name or uid);
-  p ( # group: name or uid);
-  p ( user::perm);
-  p ( user:name or uid:perm);
-  p ( group::perm);
-  p ( group:name or gid:perm);
-  p ( mask:perm);
-  p ( other:perm);
-  p ( default:user::perm);
-  p ( default:user:name or uid:perm);
-  p ( default:group::perm);
-  p ( default:group:name or gid:perm);
-  p ( default:mask:perm);
-  p ( default:other:perm);
-  p ();
-  p (When multiple files are specified on the command line, a blank);
-  p (line separates the ACLs for each file.);
-}
-  return 1;
+  fprintf (stream, usage: %s [-adn] FILE...\n, prog_name);
+  if (status)
+fprintf (stream, Try `%s --help' for more information.\n, prog_name);
+  else 
+fprintf (stream, \
+Display file and directory access control lists (ACLs).\n\
+\n\
+For each argument that is a regular file, special file or\n\
+directory, getfacl displays the owner, the group, and the ACL.\n\
+For directories getfacl displays additionally the default ACL.\n\
+\n\
+With no options specified, getfacl displays the filename, the\n\
+owner, the group, and both the ACL and the default ACL, if it\n\
+exists.\n\
+\n\
+The following options are supported:\n\
+\n\
+-a, --all  Display the filename, the owner, the group, and the ACL\n\
+   of the file.\n\
+-d, --dir  Display the filename, the owner, the group, and the default\n\
+   ACL of the directory, if it exists.\n\
+-n, --noname   Display user and group IDs instead of names.\n\
+\n\
+The format for ACL output is as follows:\n\
+ # file: filename\n\
+ # owner: name or uid\n\
+ # group: name or uid\n\
+ user::perm\n\
+ user:name or uid:perm\n\
+ group::perm\n\
+ group:name or gid:perm\n\
+ mask:perm\n\
+ other:perm\n\
+ default:user::perm\n\
+ default:user:name or uid:perm\n\
+ default:group::perm\n\
+ default:group:name or gid:perm\n\
+ default:mask:perm\n\
+ default:other:perm\n\
+\n\
+When multiple files are specified on the command line, a blank\n\
+line separates the ACLs for each file.\n\
+, prog_name);
+  exit (status);
 }
 
 struct option longopts[] = {
+  {all, no_argument, NULL, 'a'},
+  {dir, no_argument, NULL, 'd'},
+  {noname, no_argument, NULL, 'n'},
   {help, 

Re: getfacl.c help/version patch

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 01:19:01PM -0800, Joshua Daniel Franklin wrote:
It would probably be good to have Corinna look at this one, too. 
I have been trying to verify that the utils in my build tree are
functioning identically (other than the help/version output) to the
ones in /bin/, but since I didn't write them there is always the
chance I missed a nuance.

FWIW, I'm very happy to see all of this regularized, as you are doing.

Can I ask you to also take a look at the utils.sgml file and update the
documentation there, too?  It should be self-explanatory.

If you feel like regularizing the presentation in this file so that all
of the options are displayed in the same way that would be an added
plus.

cgf



Security patches

2002-03-09 Thread Pierre A. Humblet

Hello Corinna,

Attached are 7 diff files, implementing changes discussed
last weekend, with two differences:

1) I kept spawn.cc almost intact. I had not considered
the possibility of an outside token (from old applications).
Also RevertToSelf() is and will remain needed.

2) When a call is made to cygheap-user.sid() in __sec_user(),
after seteuid() has been called, it returns the NEW sid,
which is the same as sid2. Thus the new sid is put twice 
in the acl, and the old user is NOT put it.
That's a problem when the old user is not in admins.
I have replaced the call to cygheap-user.sid() by a new func
sec_process_sid(), whick looks up the user sid from the process
token. This is a cumbersone method to get a simple thing. 
There are better ways. The process sid could be in cygheap 
(it changes rarely), or there could be a NOCOPY variable 
hMainToken (set in dcrt0.c) to make it easy to access the 
process token (it's opened and closed quite often in a number
of places). Either can be added later. I prefer the second 
method.

Changelog entries appear below, I hope the format is OK.
Does RedHat have my copyright assignment after all?
As usual, feel free to improve.

Pierre

2002-03-08  Pierre Humblet [EMAIL PROTECTED]

* spawn.cc (spawn_guts): Move call to set_process_privilege()
to load_registry_hive().
* registry.cc (load_registry_hive): ditto.

* fork.cc (fork_parent): Call sec_user_nih() only once.

* shared.cc (sec_process_sid): Create.
(sec_acl): Create from part of __sec_user(), except creator/owner.
(__sec_user): Split into sec_acl(). Call sec_process_sid()
instead of cygheap-user.sid().
* security.h: Define new functions above and MAX_DACL_LEN.

* syscalls.cc (setegid): Reverse change from 2002-01-21. Also
call RevertToSelf and set primary group in impersonation token.

* syscalls.cc (seteuid): Set default dacl in process token.
Replace in-line code by call to verify_token().
* security.cc (create_token): Store pgrpsid in security descriptor,
except if it already appears in my_grps. Use sec_acl() in place
of get_dacl()
(verify_token): Create from code in seteuid(), with tighter checks.
(get_dacl) Deleted.
(get_group_sidlist): Add argument to indicate if pgrpsid is already
in the groups.
* autoload.cc: Load GetKernelObjectSecurity().



--- syscalls.cc.org Tue Feb 19 20:36:44 2002
+++ syscalls.cc Fri Mar  8 20:22:18 2002
@@ -1929,7 +1929,7 @@
}
   else
{
- cygsid usersid, pgrpsid, tok_pgrpsid;
+ cygsid usersid, pgrpsid, processsid;
  HANDLE sav_token = INVALID_HANDLE_VALUE;
  BOOL sav_impersonation;
  BOOL current_token_is_internal_token = FALSE;
@@ -1946,31 +1946,8 @@
 - if reasonable - new pgrp == pgrp of impersonation token. */
  if (allow_ntsec  cygheap-user.token != INVALID_HANDLE_VALUE)
{
- if (!GetTokenInformation (cygheap-user.token, TokenUser,
-   tok_usersid, sizeof tok_usersid, siz))
-   {
- debug_printf (GetTokenInformation(): %E);
- tok_usersid = NO_SID;
-   }
- if (!GetTokenInformation (cygheap-user.token, TokenPrimaryGroup,
-   tok_pgrpsid, sizeof tok_pgrpsid, siz))
-   {
- debug_printf (GetTokenInformation(): %E);
- tok_pgrpsid = NO_SID;
-   }
- /* Check if the current user token was internally created. */
- TOKEN_SOURCE ts;
- if (!GetTokenInformation (cygheap-user.token, TokenSource,
-   ts, sizeof ts, siz))
-   debug_printf (GetTokenInformation(): %E);
- else if (!memcmp (ts.SourceName, Cygwin.1, 8))
-   current_token_is_internal_token = TRUE;
- if ((usersid  tok_usersid  usersid != tok_usersid) ||
- /* Check for pgrp only if current token is an internal
-token. Otherwise the external provided token is
-very likely overwritten here. */
- (current_token_is_internal_token 
-  pgrpsid  tok_pgrpsid  pgrpsid != tok_pgrpsid))
+ if (!verify_token(cygheap-user.token, usersid, pgrpsid,
+current_token_is_internal_token))
{
  /* If not, RevertToSelf and close old token. */
  debug_printf (tsid != usersid);
@@ -2035,9 +2012,28 @@
pgrpsid, sizeof pgrpsid))
debug_printf (SetTokenInformation(user.token, 
  TokenPrimaryGroup): %E);
-
}
-
+ /* Set process def dacl to allow access to impersonated token */
+  

Re: getfacl.c help/version patch

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 04:48:49PM -0800, Joshua Daniel Franklin wrote:
--- Christopher Faylor [EMAIL PROTECTED] wrote:
 Can I ask you to also take a look at the utils.sgml file and update the
 documentation there, too?  It should be self-explanatory.
 
 If you feel like regularizing the presentation in this file so that all
 of the options are displayed in the same way that would be an added
 plus.

Yeah, I am meaning to do just one patch for utils.sgml after all the rest.
It appears that the regular way of showing options is to box up the
usage output. Everything except kill demonstrates options that way, but
after I standardize kill it will to. I can also add entries in utils.sgml
for dumper, getfacl, and setfacl. Is this what you had in mind?

Yes, please.

cgf



remote install of sshd

2002-03-09 Thread Christian Schmidt

I like to install the cygwin sshd on some NT/2000-hosts. Is there a way to remotely 
install the sshd-service?

How do I grant all the domain-users access to theses hosts with their NT-username and 
password? Is 'mkpasswd -d  /etc/passwd' sufficient?

Can I have the cygwin files on a network share (\\Server\cygwin\) and modify the 
cygwin registry entries to point to the unc-path? What problems will I run into, when 
several hosts access the same files?

How can I use environment variables in the registry entries, so that I can mount /tmp 
to %TEMP%?


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




ÇÔÚÇÑ

2002-03-09 Thread Ahmed Reda

Dear sir

We can send your Advirtise to 9 Emails in Egypt and 165000 in Middel East
and 33 million over World Wide
we're only Provide a new service in Egypt [Esh3ar SMS]
so, we can send your Advertise through SMS to each mobile numbers in Egypt
We're charge 100 L.E per 10,000 emails sent from our database
And we charge 1500 L.E per 10,000 sms messages sent by us

or Simply Call for more information +2-0123676375

ÇáÃä ÃÍÏË æÓÇÆá ÇáÇÚáÇä ÇáãÄËÑ æÇáÝÚÇá ÚÈÑ ÇáÇäÊÑäÊ
Úä ØÑíÞ ÇáÈÑíÏ ÇáÇáßÊÑæäí áÃÔÎÇÕ æÔÑßÇÊ æÌåÇÊ ãÊäæÚÉ
ãÚäÇ ÊÕá ÈÇÚáÇäß Çáì 90 ÃáÝ Çíãíá ÏÇÎá ãÕÑ
æ165ÃáÝ ÈÇáÔÑÞ ÇáÃæÓØ æ33 ãáíæä Ýí ÇáÚÇáã ÈÃßãáå
æÇáÇä ÎÏãÉ ÇÔÚÇÑ ÇáÍÏíËÉ ÇáÊí ääÝÑÏ ÈåÇ
 æÇáÊí ãä ÎáÇáåÇ ÊÕá ÈÇÚáÇäß Çáì Ãí ÊáíÝæä ãÍãæá ÏÇÎá ãÕÑ
ãÚäÇ ÇÕÈÍ ÈÇãßÇäß ÇÊÈÇÚ ÇÞæì ÇáÎØØ ÇáÊÓæíÞíÉ áãäÊÌÇÊß
 ÇáãÊÈÚÉ ãä ÇßÈÑ ÇáÔÑßÇÊ ÇáÚÇáãíÉ
áãÒíÏ ãä ÇáÊÝÇÕíá ÇÊÕá ÇáÇä 0123676375 ã/ÃÍãÏ ÑÖÇ
[EMAIL PROTECTED]
áÇÊäÓì ÇÎÈÇÑ ÇÕÏÞÇÆß áÊÝíÏåã ÈÎÏãÉ ÇÔÚÇÑ



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




cygwin update 1.3.9-1 == 1.3.10-1: sshd stops working

2002-03-09 Thread Martin Bene

Hi,

if I try updating cygwin from 1.3.9 to 1.3.10 sshd stops working: when trying to 
connect from a remote system, I get the followin messages: 

[root@backup full]# ssh martin.bene@myserver
martin.bene@myserver's password:
Fanfare!!!
You are successfully logged in to this server!!!
setgid: Invalid argument
Connection to myserver closed.

downgrading to 1.3.9 fixes the problem; installation is on a W2K server, completely 
new/clean install (openssh 3.1p1) using CYGWIN=ntsec tty in environment. sshd is run 
as a service with aditional binmode parameter.

Any idea why this doesn't work?

Thanks, Martin

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: loging in as root/superuser

2002-03-09 Thread Michael A Chase

- Original Message -
From: Paul Berg [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, March 08, 2002 22:40
Subject: loging in as root/superuser


 just got cygwin a couple of days ago and have been trying to login as
 root/superuser but can't get in.. what is the password set to when it is
 installed?

There is none; Cygwin is not a full OS, it runs within Windows.  Please read
the documentation at http://cygwin.com/docs.html .

The simplest way to get started is to click on the icon created for you by
setup.exe.
--
Mac :})
** I normally forward private questions to the appropriate mail list. **
Ask Smarter: http://www.tuxedo.org/~esr/faqs/smart-questions.html
Give a hobbit a fish and he eats fish for a day.
Give a hobbit a ring and he eats fish for an age.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Unsubscribe not working

2002-03-09 Thread Paul McFerrin

FOLKS:

I'm trying to exit this mailing list as it daily volume is too much for
me.

At the bottom of all postings, there is the following link:

Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple

If you visit that link, it says I should be able to unsubscribe by
sending mail to [EMAIL PROTECTED] which I did. 
Nothing came back expcept I'm still on the mailing list for cygwin.

Then I refered to my original subscribe email and it said to send the
mail to [EMAIL PROTECTED] which I did with the same results
(or lack of).

Can someone lead me to the real Exit Door for this mailing list that
isn't locked!

-paul mcferrin
-- 
NOTE***  This email looks it came from [EMAIL PROTECTED] but in
  reality it came from [EMAIL PROTECTED]  If you send
  a reply to this message, it *should* get delivered to the
  correct place.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Unsubscribe not working

2002-03-09 Thread Randall R Schulz

Paul,

At 07:44 2002-03-09, you wrote:
FOLKS:

I'm trying to exit this mailing list as it daily volume is too much for me.

...

-paul mcferrin
--
NOTE***  This email looks it came from [EMAIL PROTECTED] but in
   reality it came from [EMAIL PROTECTED]  If you send
   a reply to this message, it *should* get delivered to the
   correct place.

Perhaps your problem stems from this subterfuge? If the unsubscribe 
message's origination address is not in the subscription database, how can 
the software remove the true recipient address?

Randall Schulz
Mountain View, CA USA


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




read() problem ?

2002-03-09 Thread Nicolae Santean


Is anybody aware of any issue related to the system
call of read(filedescriptor, buffer, nbytes) under
cygwin? The function is supposed to return 0 if EOF
or # of bytes read otherwise. I get a 4GB read -
clearly not correct (nbytes == 277).

Appreciating,

Nic. Santean

_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




No libintl* package on mirrors

2002-03-09 Thread Michael Schwendt

Hi everyone!

After I had seen errors on new versions of grep and a couple of
others not finding libintl*.dll, I've searched the cygwin website
for info on where to get that missing library.

I've found a mentioning of two libintl* packages in the browsable
package list at

  http://cygwin.com/packages/

and I've also found a mentioning of it in the FAQ and in the list
archives.

*However*, none of the mirrors I've tried has this package available
for download.

So, where is the problem here? Where to get libintl and libintl1?

Sincerely,
Michael Schwendt


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




xdvi finally solved !

2002-03-09 Thread Nicolae Santean


I've finally made it: xdvi runs okay under cygwin+XFree86!

Needed a code change in the way read() is called by
mk_pk_get_results() in font_open.c

If you are interested in binaries/details, contact me at

[EMAIL PROTECTED] or
[EMAIL PROTECTED]

Thanks for your help, folks!

Cordially,

Nic. Santean

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Q: Status of GCC 3.1 port?

2002-03-09 Thread David A. Cobb

I read that gcc 3.1 is currently at phase 3 (bugfix) with a target 
date of 4/15 (?).
Is work in progress using the available sources to have a 3.1 port 
to the Cygwin platform some time reasonably soon?

-- 
David A. Cobb, Software Engineer, Public Access Advocate
By God's Grace I am a Christian man, by my actions a great sinner. -- The Way of a 
Pilgrim; R. M. French, tr.
Life is too short to tolerate crappy software.
.




--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Unsubscribe not working

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 10:44:04AM -0500, Paul McFerrin wrote:
FOLKS:

I'm trying to exit this mailing list as it daily volume is too much for
me.

At the bottom of all postings, there is the following link:

Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple

There is much more information on this page that will help you
unsubscribe.  Keep reading all of the steps:  1 - 4.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: No libintl* package on mirrors

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 05:56:09PM +0100, Michael Schwendt wrote:
Hi everyone!

After I had seen errors on new versions of grep and a couple of
others not finding libintl*.dll, I've searched the cygwin website
for info on where to get that missing library.

I've found a mentioning of two libintl* packages in the browsable
package list at

  http://cygwin.com/packages/

and I've also found a mentioning of it in the FAQ and in the list
archives.

*However*, none of the mirrors I've tried has this package available
for download.

So, where is the problem here? Where to get libintl and libintl1?

It's there.  It should have been automatically installed by setup.exe.
If it isn't then run setup.exe again, Click on Devel, and select it.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Q: Status of GCC 3.1 port?

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 01:37:53PM -0500, David A. Cobb wrote:
Is work in progress using the available sources to have a 3.1 port to
the Cygwin platform some time reasonably soon?

Pretty much all versions of gcc for the last four or five years have
worked on Cygwin.

If you are asking if there is work in progress for a new version of gcc
for cygwin, the answer is no.  There is no work in progress.

For more details check the mailing list archives.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




WinCvs hangs after upgrading CygWin on Win2k

2002-03-09 Thread Patrick Eisenacher

Greetings,

I use CygWin SSH for access to my repository with
WinCvs.

After upgrading CygWin, WinCvs 1.2 commands are
aborted by the server. WinCvs 1.3b7 works, but the dos
window hangs. The task manager shows, it's ssh that
hangs. So I have to close the dos window manually,
which is pretty annoying.

I saw that problem being mentioned in the FAQ, but
only for Win9x machines. I experience that problem on
Win2k.

Any insight whether there is a workaround, or work
ongoing to fix this issue is appreciated.

Thanx,
Patrick

__

Gesendet von Yahoo! Mail - http://mail.yahoo.de
Ihre E-Mail noch individueller? - http://domains.yahoo.de

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: No libintl* package on mirrors

2002-03-09 Thread Michael Schwendt

[Sorry for replying outside this thread. I haven't received the
next digest yet and reply to this from the list archive.]

: From: Christopher Faylor cgf at redhat dot com
: To: cygwin at cygwin dot com
: Date: Sat, 9 Mar 2002 14:16:25 -0500
:
: It's there.  It should have been automatically installed by
: setup.exe. If it isn't then run setup.exe again, Click on Devel,
: and select it.
:
: cgf

There is neither a libintl* directory nor a libintl* package in
the entire cygwin/latest tree. So, in which package do I find the
missing files?

These are alternative mirrors I've tried. My own mirror has
used ftp.franken.de so far, but I've never seen libintl*:

ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/sources.redhat.com/cygwin/
ftp://ftp.inf.tu-dresden.de/software/windows/cygwin32/
http://ftp-stud.fht-esslingen.de/pub/Mirrors/sources.redhat.com/cygwin/
http://ftp.inf.tu-dresden.de/software/windows/cygwin32/
ftp://gd.tuwien.ac.at/gnu/cygwin/latest/
ftp://ftp.easynet.be/cygwin/latest/
ftp://ftp.skynet.be/mirror/cygwin/latest/
ftp://mirrors.rcn.net/mirrors/sources.redhat.com/cygwin/latest/
ftp://sources.redhat.com/pub/cygwin/latest/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: No libintl* package on mirrors

2002-03-09 Thread Michael Schwendt

On 2002-03-09, Michael Schwendt wrote:

:There is neither a libintl* directory nor a libintl* package in
:the entire cygwin/latest tree. So, in which package do I find the
:missing files?

/contrib -- argh! :-)

That directory sounded as if it was optional.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: No libintl* package on mirrors

2002-03-09 Thread Christopher Faylor

On Sat, Mar 09, 2002 at 11:22:35PM +0100, Michael Schwendt wrote:
On 2002-03-09, Michael Schwendt wrote:
There is neither a libintl* directory nor a libintl* package in the
entire cygwin/latest tree.  So, in which package do I find the missing
files?

/contrib -- argh! :-)

That directory sounded as if it was optional.

I'm sorry, but I don't understand your dilemma.

I told you how to install what you needed.  There is no need whatsoever
to go rooting around in the cygwin directory structure.  That's why we
have setup.exe.  That's why I provided specific instructions on how
to get what you need.

If you actually have some inexplicable need to download the files
manually, you should have mentioned that.  I wouldn't have bothered
responding.

If you don't have a need to download files, you're making things much
harder for yourself than you need to.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




ShoppingNews

2002-03-09 Thread ShoppingNews

  www.Shop-Netz.de ®
Clever shoppen  finden statt suchen !
-

+++ N E W S  +++

-

Hinweise zum Austragen aus der Mailingliste finden Sie am Ende dieser eMail.
-

Sehr geehrte Online-Shopper,

es gibt wieder viele Neuigkeiten bei Shop-Netz.de® , eines der größten 
Online-Shop-Verzeichnisse des deutschsprachigen Raums!


--
1.) Shop-Netz.de ® -Update
--
Die erste Stufe unserer umfangreichen Software-Updates für Shop-Netz.de ® ist 
geschafft.
Ab sofort kann jeder registrierte User von Shop-Netz.de ® Meinungen/Erfahrungsberichte 
zu jedem Online-Shop schreiben.

Dies geschieht über den Link kommentieren unter jedem Shop-Eintrag.

Desweiteren kann jeder User, der eine Meinung liest, diese als hilfreich oder nicht 
hilfreich bewerten.

Dieser neue Dienst stellt eine Ergänzung zu unserem Informationsangebot bezüglich der 
eingetragenen Online-Shops dar.


Ist zu einem Shop-Eintrag eine oder mehrere Meinungen vorhanden, so wird unterhalb 
dieses Eintrags ein entsprechender Link mit der Anzahl der vorhandenen Meinungen 
angezeigt. 

Ist noch keine Meinung vorhanden, so wird auch kein entsprechender Verweis angezeigt. 


2.) Forum-Update

Im Rahmen unserer Software-Updates wurde auch unsere Foren-Software aktuallisiert. 
Damit stehen Ihnen nun weitere professionelle Werkzeuge zur Verfügung ! 

So zum Beispiel ein komfortabler Editor für Ihre Beiträge und Mitteilungen (benötigt 
MS Internet Explorer V5.5 oder höher!). 

http://www.shop-netz.de

--
Wenn Sie diese News nicht mehr erhalten möchten, benutzen Sie bitte den folgenden Link:

http://www.shop-netz.com/cgi-bin/shop/subscribe.cgi?list=mailingaction=unsubscribeemail=%Email%



--
Diese News sind KEIN SPAM.
Sie haben diese einmalig erhalten, da Sie sich bei uns oder einem unserer Partner in 
eine Mailing-Liste eingetragen haben oder uns oder unseren Partnern Ihre eMail-Adresse 
bekanntgegeben haben.

Sollten Sie trotzdem der Meinung sein diese eMail unerwünscht erhalten zu haben, 
wenden Sie sich bitte ZUERST an :

[EMAIL PROTECTED]

Vielen Dank.

 
---
Shop-Netz.de®-Forum:

http://www.shop-netz.com/cgi-bin/forum/gforum.cgi
---


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: No libintl* package on mirrors

2002-03-09 Thread Michael Schwendt

On 2002-03-09, Christopher Faylor wrote:

:/contrib -- argh! :-)
:
:That directory sounded as if it was optional.
:
:I'm sorry, but I don't understand your dilemma.
:
:I told you how to install what you needed.

You have assumed I would install from the Internet. But I've been
installing/updating Cygwin32 offline from a local mirror and on more
than one machine, and that for a long time without ever needing any
packages from /contrib. I don't remember when the contrib directory
got introduced. And I have assumed it would be similar to Red Hat
Contrib, i.e. optional, not strictly required.

:There is no need whatsoever
:to go rooting around in the cygwin directory structure.

I do need to know what to mirror locally because I let a script
preselect interesting packages and not download the rest.

Anyway, thanks for trying to help.

Regards,
Michael Schwendt


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




alternative to sigstack/sigaltstack

2002-03-09 Thread Stephen Weeks


Is there an equivalent to sigstack/sigaltstack in Cygwin?  I have some
code that handles signals and would like to use %esp to hold something
other than the C stack pointer.  Thanks for any advice.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Re: Status of GCC 3.1 port?

2002-03-09 Thread Dylan Cuthbert

Its pretty easy to grab the sources and recompile it for yourself, just
follow the directions on the gcc homepage.

I had some problems with the fastjar directory, whatever that is, but if you
just specify gcc to be compiled when you issue the make command I think it
will skip over that directory. (if not, mail me and I'll let you know what I
did to get past this error)

I haven't tried 3.1 yet, but 3.0.1 - 3.0.3 have worked fine and I doubt
there's too much difference.

-
Q-Games, Dylan Cuthbert.
http://www.q-games.com/personal/utils

David A. Cobb [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I read that gcc 3.1 is currently at phase 3 (bugfix) with a target
 date of 4/15 (?).
 Is work in progress using the available sources to have a 3.1 port
 to the Cygwin platform some time reasonably soon?

 --
 David A. Cobb, Software Engineer, Public Access Advocate
 By God's Grace I am a Christian man, by my actions a great sinner. --
The Way of a Pilgrim; R. M. French, tr.
 Life is too short to tolerate crappy software.
 .




 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Bug reporting: http://cygwin.com/bugs.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/






--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: Status of GCC 3.1 port?

2002-03-09 Thread Stephano Mariani

I have built gcc 3.1 snapshot of today and it works fine...

Stephano Mariani

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
Behalf
 Of Dylan Cuthbert
 Sent: Sunday, 10 March 2002 2:34 AM
 To: [EMAIL PROTECTED]
 Subject: Re: Status of GCC 3.1 port?
 
 Its pretty easy to grab the sources and recompile it for yourself,
just
 follow the directions on the gcc homepage.
 
 I had some problems with the fastjar directory, whatever that is, but
if
 you
 just specify gcc to be compiled when you issue the make command I
think it
 will skip over that directory. (if not, mail me and I'll let you know
what
 I
 did to get past this error)
 
 I haven't tried 3.1 yet, but 3.0.1 - 3.0.3 have worked fine and I
doubt
 there's too much difference.
 
 -
 Q-Games, Dylan Cuthbert.
 http://www.q-games.com/personal/utils
 
 David A. Cobb [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  I read that gcc 3.1 is currently at phase 3 (bugfix) with a
target
  date of 4/15 (?).
  Is work in progress using the available sources to have a 3.1
port
  to the Cygwin platform some time reasonably soon?
 
  --
  David A. Cobb, Software Engineer, Public Access Advocate
  By God's Grace I am a Christian man, by my actions a great sinner.
--
 The Way of a Pilgrim; R. M. French, tr.
  Life is too short to tolerate crappy software.
  .
 
 
 
 
  --
  Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
  Bug reporting: http://cygwin.com/bugs.html
  Documentation: http://cygwin.com/docs.html
  FAQ:   http://cygwin.com/faq/
 
 
 
 
 
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Bug reporting: http://cygwin.com/bugs.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/




--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




GCC 3.0.X and Cygwin

2002-03-09 Thread Dockeen

Is there a reason why base Cygwin still uses 2.95.3 of
gcc, other than you have about 50 x 10^9 other
more important things to do than deal with the
3 series. Is it somehow a poor match or messes
things up for Cygwin?

Thanks,
Wayne Keen

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: GCC 3.0.X and Cygwin

2002-03-09 Thread Stephano Mariani

Read the list archives. :)

If you need 3.x, build it yourself.

Stephano Mariani


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
Behalf
 Of Dockeen
 Sent: Sunday, 10 March 2002 3:6 AM
 To: [EMAIL PROTECTED]
 Subject: GCC 3.0.X and Cygwin
 
 Is there a reason why base Cygwin still uses 2.95.3 of
 gcc, other than you have about 50 x 10^9 other
 more important things to do than deal with the
 3 series. Is it somehow a poor match or messes
 things up for Cygwin?
 
 Thanks,
 Wayne Keen
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Bug reporting: http://cygwin.com/bugs.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/




--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




Cygwin doesnt work

2002-03-09 Thread Gavi Narra

Hello,

I have installed cygwin.. When i try to compile my program ,i get this
error.

abnormal program termination

Can anyone please help.

thanks in advance.

Gavi





--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/