Re: [Review - Very minor issues] tcm

2003-11-27 Thread Harold L Hunt II
Harold L Hunt II wrote: 3) CYGWIN-PATCHES/tcm-2.20.README should be named CYWGIN-PATCHES/tcm.README. This isn't actually installed either, which requires that the "install" command in the build script be changed to the following: install() { (cd ${objdir} && \ make install prefix=${instdir

[Review - Very minor issues] tcm

2003-11-27 Thread Harold L Hunt II
Minor issues 1) In tcm.README, XFree86-base is listed as a runtime requirement. I have started listed XFree86-bin as a requirement instead. Same goes for setup.hint. Not critical. 2) In tcm.README, XFree86-devel is listed as a build requirement. There is no XFree86-devel packag

Re: [distcc] Patch for --with-docdir in configure.ac and Makefile.in

2003-11-27 Thread Harold L Hunt II
Martin, Martin Pool wrote: On 27 Nov 2003, Harold L Hunt II <[EMAIL PROTECTED]> wrote: The attached patch adds a --with-docdir=path flag for the configure script; the default when --with-docdir is not specified remains unchanged. The patch has been build tested on Cygwin. Thanks, taken. Coo

distcc - Addressed all minor issues - Should be good to go (with John M's approval)

2003-11-27 Thread Harold L Hunt II
John, John Morrison wrote: From: Harold L Hunt II John, Have you, or are you going to, addressed the isses listed in the PPL below for distcc? Once those minor issues have been addressed, I will try to review the package for you. I don't want to review it right now only to report the same

Re: [Review - Not yet] tcm

2003-11-27 Thread Harold L Hunt II
Daniel, Daniel Boesswetter wrote: Hi Harold, 1) yes, my changes are very likely to be integrated into the original TCM distribution (most are in fact already included there). Great. 2) I created a build script now and rebuilt the source and binary packages, available from the usual URLs (htt

Re: Pending Packages List, 2003-11-26

2003-11-27 Thread Harold L Hunt II
Daniel Reed wrote: ) >Package: joe 2.9.8-1 [2003-11-11] ) >Description: Fast and simple editor which emulates 5 other editors ) > Proposer: Jari Aalto ) > Proposal: mailto:[EMAIL PROTECTED] ) > http://tierra.dyndns.org:81/cygwin/joe/joe-2.9.8-1.tar.bz2 joe has now received enough v

Re: Pending Packages List, 2003-11-26

2003-11-27 Thread Daniel Reed
) >Package: joe 2.9.8-1 [2003-11-11] ) >Description: Fast and simple editor which emulates 5 other editors ) > Proposer: Jari Aalto ) > Proposal: mailto:[EMAIL PROTECTED] ) > http://tierra.dyndns.org:81/cygwin/joe/joe-2.9.8-1.tar.bz2 joe has now received enough votes for inclusion

Re: [Review - Not yet] tcm

2003-11-27 Thread Daniel Boesswetter
Hi Harold, 1) yes, my changes are very likely to be integrated into the original TCM distribution (most are in fact already included there). 2) I created a build script now and rebuilt the source and binary packages, available from the usual URLs (http://home.in.tum.de/~boesswet/tcm_cygwin.htm

RE: distcc - Awaiting another review, or waiting for fixes from first review?

2003-11-27 Thread John Morrison
> From: Harold L Hunt II > > John, > > Have you, or are you going to, addressed the isses listed in the PPL > below for distcc? > > Once those minor issues have been addressed, I will try to review the > package for you. I don't want to review it right now only to report the > same problems

Re: AW: HEADSUP: cygserver now has MSG, SEM and SHM support

2003-11-27 Thread Harold L Hunt II
Ralf, Ralf Habacker wrote: Corinna Vinschen wrote: Ok, I don't know how that's implemented in cygipc so I think it might be necessary to mention that: The implementation of the MSG, SEM and SHM functions in Cygwin are so that if the functions are not available (be it that CYGWIN doesn't contain th

AW: HEADSUP: cygserver now has MSG, SEM and SHM support

2003-11-27 Thread Ralf Habacker
> Corinna Vinschen wrote: > Ok, I don't know how that's implemented in cygipc so I think it might > be necessary to mention that: > > The implementation of the MSG, SEM and SHM functions in Cygwin are so > that if the functions are not available (be it that CYGWIN doesn't > contain the word "server

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Jörg Schaible
Morrison, John wrote on Thursday, November 27, 2003 4:08 PM: > Corinna Vinschen wrote: >> On Thu, Nov 27, 2003 at 01:24:15PM -, Morrison, John wrote: >>> OK, took some lunch time ;) >>> >>> Hows this for passwd-grp.sh >>> >>> - >>> >>> #!/bin/sh >>> >>>

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 01:24:15PM -, Morrison, John wrote: >> OK, took some lunch time ;) >> >> Hows this for passwd-grp.sh >> >> - >> >> #!/bin/sh >> >> if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then >> /bin/mkpasswd -l -

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 01:24:15PM -, Morrison, John wrote: > OK, took some lunch time ;) > > Hows this for passwd-grp.sh > > - > > #!/bin/sh > > if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then > /bin/mkpasswd -l -c > /etc/passwd > fi > > if [ ! -e /

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
OK, took some lunch time ;) Hows this for passwd-grp.sh - #!/bin/sh if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then /bin/mkpasswd -l -c > /etc/passwd fi if [ ! -e /etc/group -a ! -L /etc/group ] ; then /bin/mkgroup -l -c > /etc/group fi cp -f /etc/pa

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 12:53:01PM -, Morrison, John wrote: > Corinna Vinschen wrote: > > There is! The passwd tool in the current snapshots already have the > > option -e to switch expiry off. If you have another look into the > > script, you'll see that I check the version number of passwd,

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 11:37:11AM -, Morrison, John wrote: >> Corinna Vinschen wrote: >>> On Thu, Nov 27, 2003 at 11:24:55AM +0100, Corinna Vinschen wrote: On Thu, Nov 27, 2003 at 09:58:52AM -, Morrison, John wrote: > Corinna Vinschen wrote: >> I do

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 11:37:11AM -, Morrison, John wrote: > Corinna Vinschen wrote: > > On Thu, Nov 27, 2003 at 11:24:55AM +0100, Corinna Vinschen wrote: > >> On Thu, Nov 27, 2003 at 09:58:52AM -, Morrison, John wrote: > >>> Corinna Vinschen wrote: > I don't know exactly > but

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 11:24:55AM +0100, Corinna Vinschen wrote: >> On Thu, Nov 27, 2003 at 09:58:52AM -, Morrison, John wrote: >>> Corinna Vinschen wrote: I don't know exactly but it's possible that W2K doesn't have these SeDenyWhatever user rights.

Re: Pending Packages List, 2003-11-26

2003-11-27 Thread Ronald Landheer-Cieslak
On Wed, Nov 26, 2003 at 05:51:24PM -, Daniel Reed wrote: > rdesktop 1.3.0-1 [2003-11-08] > Description: client for Windows terminal server. Remote desktop display >Proposer: Jari Aalto >Proposal: mailto:[EMAIL PROTECTED] > http://tierra.dyndns.org:81/cygwin/rdesktop/rdeskt

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 11:24:55AM +0100, Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 09:58:52AM -, Morrison, John wrote: > > Corinna Vinschen wrote: > > > I don't know exactly > > > but it's possible that W2K doesn't have these SeDenyWhatever user > > > rights. > > > > editrights -a

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 09:58:52AM -, Morrison, John wrote: > Corinna Vinschen wrote: > > I don't know exactly > > but it's possible that W2K doesn't have these SeDenyWhatever user > > rights. > > editrights -a SeDenyRemoteInteractiveLogonRight -u root > > was the one that failed. Would i

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 09:05:02AM -, Morrison, John wrote: >> Corinna Vinschen wrote: >>> On Thu, Nov 27, 2003 at 08:33:24AM -, Morrison, John wrote: Corinna Vinschen wrote: > any chance you can poke the base-passwd script soon, to check for > a user

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 09:05:02AM -, Morrison, John wrote: > Corinna Vinschen wrote: > > On Thu, Nov 27, 2003 at 08:33:24AM -, Morrison, John wrote: > >> Corinna Vinschen wrote: > >>> any chance you can poke the base-passwd script soon, to check for a > >>> user and a group with SID S-1-1-

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > On Thu, Nov 27, 2003 at 08:33:24AM -, Morrison, John wrote: >> Corinna Vinschen wrote: >>> any chance you can poke the base-passwd script soon, to check for a >>> user and a group with SID S-1-1-0 in the existing /etc/passwd and >>> /etc/group files and remove them sil

Re: HEADSUP: cygserver now has MSG, SEM and SHM support

2003-11-27 Thread Corinna Vinschen
On Wed, Nov 26, 2003 at 10:38:29PM -0500, Harold L Hunt II wrote: > Christopher Faylor wrote: > >The gotcha here, though, is that you still have to install cygserver > >and get it running. Corinna has provided install scripts to make > >that to happen but experience shows us that there will probab

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 11:14:29AM +0800, Dean Scarff wrote: > Corinna Vinschen wrote: > I currently have an entry in /etc/passwd: > root:unused_by_nt/2000/xp:500:513:U-SCARFF-BOX\root,S-1-5-21-1606980848-1563985344-1060284298-500:/home/root:/bin/bash > > This is a side-effect of using mkpasswd wi

Re: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Corinna Vinschen
On Thu, Nov 27, 2003 at 08:33:24AM -, Morrison, John wrote: > Corinna Vinschen wrote: > > any chance you can poke the base-passwd script soon, to check for a > > user and a group with SID S-1-1-0 in the existing /etc/passwd and > > /etc/group files and remove them silently? > > > > Also it wou

RE: [RFC] Globally creating a user and a group "root"

2003-11-27 Thread Morrison, John
Corinna Vinschen wrote: > John, > > On Wed, Nov 12, 2003 at 03:44:44PM +0100, Corinna Vinschen wrote: >> On Wed, Nov 12, 2003 at 12:29:08PM -, Morrison, John wrote: >>> Corinna Vinschen wrote: Eh, no. I was thinking about a postinstall script, which checks for Everyone (S-1-0-0) in

Re: [Review - Not yet] libsmi

2003-11-27 Thread Harold L Hunt II
Abe, Here are some things I did: 1) Used a standard build script. 2) Passed -no-undefined on the LDFLAGS to allow the DLL to be built. 3) Ran 'make check' to see that only 1 of the 20 test failed (the last one, seems to be something trivial). 4) Relibtoolized the source to allow the DLL to be

Re: [Review - Not yet] libsmi

2003-11-27 Thread Harold L Hunt II
Abe, I have an interesting update for the libsmi package. I got it to build shared libraries and it passes 19 of the 20 tests. I am very close to having it build out of the source directory... the one remaining step is to get the mibs to install correctly. I should have an updated -src pack

cygbuild as build script [Was: Re: [Review - Not yet] rdesktop]

2003-11-27 Thread Harold L Hunt II
Charles Wilson wrote: Harold L Hunt II wrote: 4) The script builds in the same directory as the source code. I don't like that. I have not yet (I hope) released a package that does this and I don't give good reviews to packages that do it. If the package fails to build out of the source dir