[ANNOUNCEMENT] Updated: cppunit-0.12.0-1

2007-10-26 Thread Ross Smith II
I've updated the version of cppunit to 0.12.0-1.

This is a bugfix release.  The Cygwin release is the vanilla version,
no additional patches.

===

  New in CppUnit 1.12.0:
  --

* Portability:

  - autogen.sh can now be run on Mac OS X (patch #1449380
contributed by Sander Temme).

* MFC Test runner:

  - fixed bug #1498175: double click on failure would sometime
not goto failed assertion in visual studio.

* Documentation:

  - now generated with doxygen 1.4.7 new 'tabs' style.


  New in CppUnit 1.11.4:
  --


* Portability:

  - Support for Embedded Visual C++ 4 added. For this purpose, CppUnit now
provides a very simple stream implementation if none is provided.
This should also help porting on other platforms which have STL but
no stream support. Just make sure that CPPUNIT_NO_STREAM is defined
to 1 in your config header.

* Assertion:

  - Added missing _MESSAGE variants for the following assertions:

CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE
CPPUNIT_ASSERT_THROW_MESSAGE
CPPUNIT_ASSERT_NO_THROW_MESSAGE
CPPUNIT_ASSERT_ASSERTION_FAIL_MESSAGE
CPPUNIT_ASSERT_ASSERTION_PASS_MESSAGE

Notes: change made to CPPUNIT_ASSERT_THROW may cause compilation error
if you're expecting std::exception as it would be caught twice. Contact us
if it is an issue (we don't see much use for such a test).

Some assertions failure message are now more detailed (exception,
expression).
Thanks to Neil Ferguson who contributed this patch.

  - Assertion on real number now output expected and actual value using the
maximum available precision instead of the previous strategy of rounding
to 6 digits.

Thanks to Neil Ferguson who contributed this patch.

* Outputter:

  - XML Ouputter: patch #997006 contributed by Akos Maroy makes the
'stand-alone' attribute of the XML header optional.
See XmlOutputter::setStandalone() & XmlDocument::setStandalone().

  - Better integration of compiler output for gcc on Mac OS X with Xcode
(contributed by Claus Broch).

* MFC Test Runner

  - Integration with VC++ 7.0 & 7.1. Double clicking on a failure will now
to the failure location in the open IDE (no add-in necessary).
This was contributed by Max Quatember and Andreas Pfaffenbichler.

  - Progress bar: now use system color to draw border
(patch from bug #1165875 contributed by Pieter Van Dyck).

* QT Test Runner

  - Fixed display of multi-line messages (patch contributed by Karol 
Szkudlarek).

* Compilation:

  - The standard pkg-config file is now generated on unix (contributed by
Robert Leight).

  - MinGW: patch #1024428 contributed by astar, fixed compilation issue in
Win32DynamicLibraryManager.cpp.

  - MinGW, cygwin: enable build of shared library when using libtool.
patch #1194394 contributed by Stéphane Fillod.

  - autotool: applied patch #1076398 contributed by Henner Sudek. Quote:
 "This patch allows AM_PATH_CPPUNIT to accept version
numbers without minor and micro version.
Now you can do:
AM_PATH_CPPUNIT(1.9)
instead of
AM_PATH_CPPUNIT(1.9.0)"

  - Visual Studio 2005: removed deprecated warning.

* Documentation:

  - Corrected many typos in cookbook and money example. Thanks to all
those who helped !

* Bug Fix:

  - cppunit.m4: patch #946302, AM_PATH_CPPUNIT doesn't report result
if CppUnit is missing.

  - Message/SourceLine: copy constructor have been specifically implemented
to ensure they are thread-safe even if std::string copy constructor
is not (usually on reference count based implementation).

  - TestResultCollector: fixed memory leak occuring when calling reset().

* Contrib:

  - added XSLT for compatibility with Ant junit xml formatter.
Patch #1112053 contributed by Norbert Barbosa.
See xml-xsl/cppunit2junit.xsl and cppunit2junit.txt for details.

  - xml-xsl/report.xsl has been fixed to work with current xml output.

* (Possible) Compatiblity break:

  - All text output is now done on cout() instead of sometime cerr &
sometime cout depending on the component.

  - OStringStream definition has been removed from Portability.h. This
means that  is no longer included, and that ostringstream and
string might not be defined. In practice this should have no impact
since those includes have been moved to other CppUnit headers.

* Notes:

  - CppUnit now uses the alias OStream when refering to std::ostream for
portability.


  New in CppUnit 1.10.2:
  --

* Bug Fix:

  - Memory checker: bug #938753, array bound read in
splitPathString() with substr if an empty string is passed.

  - Memory leaks: bug #952912, many memory leaks removed in the
MFC test plug-in runner.

  - Crash when using CPPUNIT_TEST_SUITE_REGISTRATION with cpp

cygwin stable and cvs snapshot - fork() bug

2007-10-26 Thread michael.vogt
I tried to compile mpd for Windows using Cygwin. After adding some
workarounds (add fake_getaddrinfo.h, check
http://musicpd.org/mantis/view.php?id=1566) I was able to compile mpd.
But when I tried to start it, mpd failed:


$ ./mpd.exe --stdout --verbose
binding to any address
flushing warning messages
done flushing warning messages
current locale is "C"
setting filesystem charset to ISO-8859-1
setFsCharset: fs charset is: ISO-8859-1
reading DB
opening pid file
  1 [main] mpd 1736 C:\cygwin\home\mpx\mpd-test\mpd.exe:
*** fatal error - MapViewOfFileEx (0x1903),
Win3 2 error 6.  Terminating.
  68 [main] mpd 676 fork: child 1736 - died
waiting for dll loading, errno 11 problems fork'ing for daemon! 

cygserver is running and i did a "$ export CYGWIN=server "

I traced down the error in the file player.c, source:

static int playerInit(void)
{
...
LOG(" debug playerInit: 10\n");
pid = player_pid;
if (pid > 0) {
kill(pid, SIGCONT);
pc->wait = 0;
return 0;
}

LOG(" debug playerInit: 20\n");
player_pid = fork();<<< CRASH
LOG(" debug playerInit: 30  (pid: %i/%i)\n", pid, player_pid);
blockSignals();
LOG(" debug playerInit: 31 \n");
if (player_pid==0)


any hints?

regards

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



[ANNOUNCEMENT] Updated: gawk-3.1.6-1

2007-10-26 Thread Corinna Vinschen
I've updated the version of gawk to 3.1.6-1.

This is the new upstream release 3.1.6.  The Cygwin version is build from
the vanilla sources.

Changes from 3.1.5 to 3.1.6
---

1. `gawk 'program' /non/existant/file' no longer core dumps.

2. Too many people the world over have complained about gawk's use of the
   locale's decimal point for parsing input data instead of the traditional
   period.  So, even though gawk was being nicely standards-compliant, in
   a Triumph For The Users, gawk now only uses the locale's decimal point
   if --posix is supplied or if POSIXLY_CORRECT is set.  It is the sincere
   hope that this change will eliminate this FAQ from being asked.

3. `gawk -v BINMODE=1 ...' works again.

4. Internal file names like `/dev/user' now work again. (Note that these
   file names are obsolete and will go away eventually.)

5. Problems with wide strings in non "C" locales have been straightened
   out everywhere.  (At least, we think so.)

6. Use of `ansi2knr' is no longer supported. Please use an ANSI C compiler.

7. Updated to Autoconf 2.61, Automake 1.10, and Gettext 0.16.1.

8. The getopt* and regex* files were synchronized with current GLIBC CVS.
   See the ChangeLog for the versions and minor edits made.

9. There are additional --lint-old warnings.

10. Gawk now uses getaddrinfo(3) to look up names and IP addresses. This
allows the use of an IPv6 format address and paves the way for
eventual addition of `/inet6/...' and `/inet4/...' hostnames.

11. We believe gawk to now be valgrind clean. At least when run against
the test suite.

12. A number of issues dealing with the formatting and printing of very
large numbers in integer formats have been dealt with and fixed.

13. Gawk now converts "+inf", "-inf", "+nan" and "-nan" into the corresponding
magic IEEE floating point values. Only those strings (case independent)
work.  With --posix, gawk calls the system strtod directly. You asked
for it, you got it, you deal with it.

14. Defining YYDEBUG enables the -D command line option.

15. Gawk should now work out of the box on Tandem NSK/OSS systems.

16. Lint messages rationalized: many more of the messages are now printed
only once, instead of every time they are encountered.

17. The strftime() function now accepts an optional third argument, which
if non-zero or non-null, indicates that the time should be formatted
as UTC instead of as local time.

18. The precedence of concatenation and `| getline' (in something like
"echo " "date" | getline stuff) has been reverted to the earlier
behavior and now once again matches Unix awk.

19. New configure time flag --disable-directories-fatal which causes
gawk to silently skip directories on the command line.  This behavior
is also enabled for --traditional, since it's what Unix awk does.

20. A new option, --use-lc-numeric, forces use of the locale's decimal
point without the rest of the draconian restrictions imposed by
--posix. This softens somewhat the stance taken in item #2.

21. Everything relevant has been updated to the GPL 3.

22. Array growth should be faster now, at no cost in space.

23. Lots more tests.

24. One new translation.

25. Various bugs fixed, see the ChangeLog for details.


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

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

  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

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

[EMAIL PROTECTED]

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

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

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

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:cygwin@cygwin.com
Red Hat, Inc.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Image magic not working

2007-10-26 Thread Santhosh Kumar Yedidi
Hi all,
I have installed image magic. But why I use it

$ display x.jpg

The display shows the picture. But when I am about to change gamma or
any thing else it hangs and closes down showing.

assertion "!c->xlib.lock" failed: file
"/usr/src/ports/xorg/libxcb/libxcb-1.0-2/src/libxcb-1.0/src/xcb_xlib.c",
line 41
Aborted (core dumped)

What can be done to use it.

Santhosh

--
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 stable and cvs snapshot - fork() bug

2007-10-26 Thread Larry Hall (Cygwin)

[EMAIL PROTECTED] wrote:

I tried to compile mpd for Windows using Cygwin. After adding some
workarounds (add fake_getaddrinfo.h, check
http://musicpd.org/mantis/view.php?id=1566) I was able to compile mpd.
But when I tried to start it, mpd failed:


$ ./mpd.exe --stdout --verbose
binding to any address
flushing warning messages
done flushing warning messages
current locale is "C"
setting filesystem charset to ISO-8859-1
setFsCharset: fs charset is: ISO-8859-1
reading DB
opening pid file
  1 [main] mpd 1736 C:\cygwin\home\mpx\mpd-test\mpd.exe:
*** fatal error - MapViewOfFileEx (0x1903),
Win3 2 error 6.  Terminating.
  68 [main] mpd 676 fork: child 1736 - died
waiting for dll loading, errno 11 problems fork'ing for daemon! 


cygserver is running and i did a "$ export CYGWIN=server "

I traced down the error in the file player.c, source:

static int playerInit(void)
{
...
LOG(" debug playerInit: 10\n");
pid = player_pid;
if (pid > 0) {
kill(pid, SIGCONT);
pc->wait = 0;
return 0;
}

LOG(" debug playerInit: 20\n");
player_pid = fork();<<< CRASH
LOG(" debug playerInit: 30  (pid: %i/%i)\n", pid, player_pid);
blockSignals();
LOG(" debug playerInit: 31 \n");
if (player_pid==0)



any hints?



Have you eliminated the  factor?


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

_

A: Yes.
> Q: Are you sure?
>> A: Because it reverses the logical flow of conversation.
>>> Q: Why is top posting annoying in email?

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



[ANNOUNCEMENT] New package: pdftk-1.41.1-1 -- PDF utility

2007-10-26 Thread David Rothenberger
A new package, pdftk-1.41-1, is now available.

DESCRIPTION:

If PDF is electronic paper, then pdftk is an electronic
staple-remover, hole-punch, binder, secret-decoder-ring, and
X-Ray-glasses. Pdftk is a simple tool for doing everyday things with
PDF documents. Keep one in the top drawer of your desktop and use it
to:

* Merge PDF Documents
* Split PDF Pages into a New Document
* Rotate PDF Pages or Documents
* Decrypt Input as Necessary (Password Required)
* Encrypt Output as Desired
* Fill PDF Forms with FDF Data or XFDF Data and/or Flatten Forms
* Apply a Background Watermark or a Foreground Stamp
* Report on PDF Metrics such as Metadata, Bookmarks, and Page
  Labels
* Update PDF Metadata
* Attach Files to PDF Pages or the PDF Document
* Unpack PDF Attachments
* Burst a PDF Document into Single Pages
* Uncompress and Re-Compress Page Streams
* Repair Corrupted PDF (Where Possible)

Pdftk allows you to manipulate PDF easily and freely. It does not
require Acrobat.

DOWNLOAD:
=
Note that downloads from sources.redhat.com (aka cygwin.com) aren't
allowed due to bandwidth limitations.  This means that you will need to
find a mirror which has this update, please choose the one nearest to
you: http://cygwin.com/mirrors.html

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

CYGWIN-ANNOUNCE UNSUBSCRIBE INFO:
=
To unsubscribe to the cygwin-announce mailing list, look at the
"List-Unsubscribe: " tag in the email header of this message.  Send
email to the address specified there.  It will be in the format:

[EMAIL PROTECTED]

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

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

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

-- 
David Rothenberger    [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: Cygwin setup on XP/Vista (UNIX/DOS compatibilty question)

2007-10-26 Thread Steve Richmond

Is there a standard (read easy) way to bring over files and run D2U on each 
file?

I just found a tool called RSYNC.  Do you have experience with that?
Why isn't RCP and FTP included in Cygwin?

A cool new network tool would be a RCP that runs D2U as a option.
Does such a tool exist?

Thanks for your help!

> Date: Sat, 22 Sep 2007 06:28:38 -0600
> From: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]; cygwin@cygwin.com
> Subject: Re: Cygwin setup on XP/Vista (UNIX/DOS compatibilty question)
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> http://cygwin.com/acronyms/#PPIOSPE -> redirecting to the list.
>
> According to Steve Richmond on 9/22/2007 12:31 AM:
> However it behaves differently. After I install it using UNIX, bash 
> scripts
> fail with '\r' errors, meaning it can't find the CR. So after I 
> re-installed
> to be DOS compatible for CR/LF, the bash scripts execute successfully, but
> the resulting .CSV file has a '^M' added to each line. Subsequent
> manipulation with paste (as an example) fail because of the extra '^M'.
>> In your case, I'd recommend using a binary mount, and bash's igncr option.
>> Oh, and reread the announcements:
>> http://cygwin.com/ml/cygwin-announce/2007-08/msg00014.html
>>
>>> After I reinstalled with the UNIX install option, I logged in and set igncr 
>>> and
>>> verified with 'set | grep SHELLOPTS'. But grep adds an extra '^M' so
>>> when I do 'paste -d, a.txt b.txt', paste gets confused.
>
> The setup.exe UNIX vs. DOS option only affects new installations. My
> guess is that you have an existing text mount, which setup.exe won't
> change; but to confirm that, you need to follow directions:
>
>> Problem reports: http://cygwin.com/problems.html
>
> and include the output of 'cygcheck -svr' as a text attachment.
>
>>
>>> With the UNIX install option, I still can't run the bash scripts. It'll 
>>> fail with
>>> those '\r' errors still.
>
> Again, bash only warns about \r errors on binary mounts if you have not
> turned on the igncr option. Of course, the other alternative is to run
> 'd2u' (or the new 'flip') on your scripts so that they no longer have \r.
>
> - --
> Don't work too hard, make some time for fun as well!
>
> Eric Blake [EMAIL PROTECTED]
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.5 (Cygwin)
> Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
>
> iD8DBQFG9Qp284KuGfSFAYARAorTAJ9EtiET87eZ5k1brfTlKdCucP5lKACfbMJ2
> dGKBWkrkPsxOkrJD7WwdN1c=
> =3Xjv
> -END PGP SIGNATURE-

_
Peek-a-boo FREE Tricks & Treats for You!
http://www.reallivemoms.com?ocid=TXT_TAGHM&loc=us

--
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 setup on XP/Vista (UNIX/DOS compatibilty question)

2007-10-26 Thread Larry Hall (Cygwin)

Steve Richmond wrote:

Is there a standard (read easy) way to bring over files and run D2U on each 
file?



I'm guessing what you really mean is "automated".  Not anything in Cygwin
as far as I know.



I just found a tool called RSYNC.  Do you have experience with that?
Why isn't RCP and FTP included in Cygwin?






Don't use 'rcp'.  It woefully insecure.  Use 'ssh' and friends ('scp',
'sftp', etc).



A cool new network tool would be a RCP that runs D2U as a option.
Does such a tool exist?



Don't know.  But it's simple in principle to write a script that you invoke
to do what you want.



Thanks for your help!



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

_

A: Yes.
> Q: Are you sure?
>> A: Because it reverses the logical flow of conversation.
>>> Q: Why is top posting annoying in email?

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



problems installing cygwin on vista

2007-10-26 Thread Ruprecht Machleidt

In the past, I have installed cygwin on several Windows XP
systems with no problems.

However, I am encountering severe problems installing
cygwin on vista.
The installation process stalls quietly during the postinstall
phase. The only way to end the process is to 'cancel'.
No home diretory is created, no icons.

In principal, the
/var/log/setup.log.full
file should reveal what's going wrong.
I am not sufficiently knowledgeable to interpret
this file. So, I'm attaching it.

Repeatedly, statements of this nature occur in the log file:

2007/10/25 09:38:53 running: C:\cygwin\bin\bash.exe -c /etc/postinstall/email.sh
/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
sed: can't read /etc/passwd: No such file or directory
2007/10/25 09:38:56 abnormal exit: exit code=2
2007/10/25 09:38:56 running: C:\cygwin\bin\bash.exe -c 
/etc/postinstall/enscript.sh
/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
2007/10/25 09:38:56 running: C:\cygwin\bin\bash.exe -c /etc/postinstall/exim.sh
/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
sed: can't read /etc/passwd: No such file or directory
2007/10/25 09:38:57 abnormal exit: exit code=2

To a knowledgeable person this may provide an indication
of what's wrong.

I greatly appreciate any advice.

Thank you,

Rup
---
Ruprecht `Rupert' Machleidt
Department of Physics   Phone: 208-885-6380
Engineerin/Physics Building 327 FAX: 208-885-4055
University of Idaho e-mail: [EMAIL PROTECTED]
Moscow, ID 83844-0903
U. S. A.
---2007/10/25 09:36:43 Starting cygwin install, version 2.573.2.2

2007/10/25 09:36:43 Current Directory: C:\Users\francesca

2007/10/25 09:36:43 Changing gid to Users

2007/10/25 09:36:43 Could not open service McShield for query, start and stop. 
McAfee may not be installed, or we don't have access.

2007/10/25 09:36:51 source: from cwd

2007/10/25 09:36:54 root: C:\cygwin binary system

2007/10/25 09:36:56 Selected local directory: C:\Users\francesca

Found ini file - 
C:\Users\francesca/ftp%3a%2f%2fmirror.cpsc.ucalgary.ca%2fmirror%2fcygwin.com/setup.ini

Found ini file - 
C:\Users\francesca/http%3a%2f%2fmirror.cpsc.ucalgary.ca%2fmirror%2fcygwin.com/setup.ini

2007/10/25 09:38:35 Visited: 798 nodes out of 798.

2007/10/25 09:38:35 Dependency ordered install:

2007/10/25 09:38:35 terminfo

2007/10/25 09:38:35 libintl3

2007/10/25 09:38:35 texinfo

2007/10/25 09:38:35 _update-info-dir

2007/10/25 09:38:35 libncurses8

2007/10/25 09:38:35 libreadline6

2007/10/25 09:38:35 libintl8

2007/10/25 09:38:35 bash

2007/10/25 09:38:35 base-passwd

2007/10/25 09:38:35 libiconv2

2007/10/25 09:38:35 libintl2

2007/10/25 09:38:35 cygwin

2007/10/25 09:38:35 groff

2007/10/25 09:38:35 libbz2_1

2007/10/25 09:38:35 bzip2

2007/10/25 09:38:35 crypt

2007/10/25 09:38:35 coreutils

2007/10/25 09:38:35 gawk

2007/10/25 09:38:35 gzip

2007/10/25 09:38:35 termcap

2007/10/25 09:38:35 libpcre0

2007/10/25 09:38:35 less

2007/10/25 09:38:35 man

2007/10/25 09:38:35 libgdbm4

2007/10/25 09:38:35 libdb4.2

2007/10/25 09:38:35 libdb4.3

2007/10/25 09:38:35 libexpat0

2007/10/25 09:38:35 expat

2007/10/25 09:38:35 perl

2007/10/25 09:38:35 psutils

2007/10/25 09:38:35 a2ps

2007/10/25 09:38:35 pcre

2007/10/25 09:38:35 xorg-x11-bin-lndir

2007/10/25 09:38:35 zlib

2007/10/25 09:38:35 libfreetype26

2007/10/25 09:38:35 freetype2

2007/10/25 09:38:35 libfontconfig1

2007/10/25 09:38:35 fontconfig

2007/10/25 09:38:35 libncurses7

2007/10/25 09:38:35 gettext

2007/10/25 09:38:35 libintl1

2007/10/25 09:38:35 tar

2007/10/25 09:38:35 run

2007/10/25 09:38:35 xterm

2007/10/25 09:38:35 X-startup-scripts

2007/10/25 09:38:35 xorg-x11-xwin

2007/10/25 09:38:35 xorg-x11-fnts

2007/10/25 09:38:35 xorg-x11-fenc

2007/10/25 09:38:35 xorg-x11-libs-data

2007/10/25 09:38:35 xorg-x11-etc

2007/10/25 09:38:35 libXft1

2007/10/25 09:38:35 libXft2

2007/10/25 09:38:35 libXft

2007/10/25 09:38:35 xorg-x11-bin

2007/10/25 09:38:35 xorg-x11-base

2007/10/25 09:38:35 xorg-x11-bin-dlls

2007/10/25 09:38:35 libaa1

2007/10/25 09:38:35 aalib

2007/10/25 09:38:35 libncurses-devel

2007/10/25 09:38:35 libfreetype2-devel

2007/10/25 09:38:35 libfontconfig-devel

2007/10/25 09:38:35 libXft-devel

2007/10/25 09:38:35 xorg-x11-devel

2007/10/25 09:38:35 aalib-devel

2007/10/25 09:38:35 aewm++

2007/10/25 09:38:35 aewm++-goodies

2007/10/25 09:38:35 alternatives

2007/10/25 09:38:35 antiword

2007/10/25 09:38:35 apache

2007/10/25 09:38:35 libapr1

2007/10/25 09:38:35 libaprutil1

2007/10/25 09:38:35 openssl

2007/10/25 09:38:35 apache2

2007/10/25 09:38:35 apache2-devel

2007/10/25 09:38:35 apache2-manual

2007/10/25 09:38:35 apr1

2007/10/25 09:38:35 libdb4.2-devel

2007/10/25 09:38:35 libgdbm-devel

2007/10/25 09:38:35 aprutil1

2007/10/25 09:38:35 tcltk

2007/10/25 09:38:35 python

2007/10/25 09:38:35 archivemail

2007/1

problems installing cygwin on vista

2007-10-26 Thread Ruprecht Machleidt


In the past, I have installed cygwin on several Windows XP
systems with no problems.

However, I am encountering severe problems installing
cygwin on vista.
The installation process stalls quietly during the postinstall
phase. The only way to end the process is to 'cancel'.
No home diretory is created, no icons.

In principal, the
/var/log/setup.log.full
file should reveal what's going wrong.
I am not sufficiently knowledgeable to interpret
this file. So, I'm attaching it.

Repeatedly, statements of this nature occur in the log file:

2007/10/25 09:38:53 running: C:\cygwin\bin\bash.exe -c 
/etc/postinstall/email.sh

/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
sed: can't read /etc/passwd: No such file or directory
2007/10/25 09:38:56 abnormal exit: exit code=2
2007/10/25 09:38:56 running: C:\cygwin\bin\bash.exe -c 
/etc/postinstall/enscript.sh

/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
2007/10/25 09:38:56 running: C:\cygwin\bin\bash.exe -c 
/etc/postinstall/exim.sh

/usr/bin/bash: /cygdrive/c/Users/francesca/.bashrc: Bad address
sed: can't read /etc/passwd: No such file or directory
2007/10/25 09:38:57 abnormal exit: exit code=2

To a knowledgeable person this may provide an indication
of what's wrong.

I greatly appreciate any advice.

Thank you,

Rup
---
Ruprecht `Rupert' Machleidt
Department of Physics   Phone: 208-885-6380
Engineerin/Physics Building 327 FAX: 208-885-4055
University of Idaho e-mail: [EMAIL PROTECTED]
Moscow, ID 83844-0903
U. S. A.
---2007/10/25 09:36:43 Starting cygwin install, version 2.573.2.2

2007/10/25 09:36:43 Current Directory: C:\Users\francesca

2007/10/25 09:36:43 Changing gid to Users

2007/10/25 09:36:43 Could not open service McShield for query, start and stop. 
McAfee may not be installed, or we don't have access.

2007/10/25 09:36:51 source: from cwd

2007/10/25 09:36:54 root: C:\cygwin binary system

2007/10/25 09:36:56 Selected local directory: C:\Users\francesca

Found ini file - 
C:\Users\francesca/ftp%3a%2f%2fmirror.cpsc.ucalgary.ca%2fmirror%2fcygwin.com/setup.ini

Found ini file - 
C:\Users\francesca/http%3a%2f%2fmirror.cpsc.ucalgary.ca%2fmirror%2fcygwin.com/setup.ini

2007/10/25 09:38:35 Visited: 798 nodes out of 798.

2007/10/25 09:38:35 Dependency ordered install:

2007/10/25 09:38:35 terminfo

2007/10/25 09:38:35 libintl3

2007/10/25 09:38:35 texinfo

2007/10/25 09:38:35 _update-info-dir

2007/10/25 09:38:35 libncurses8

2007/10/25 09:38:35 libreadline6

2007/10/25 09:38:35 libintl8

2007/10/25 09:38:35 bash

2007/10/25 09:38:35 base-passwd

2007/10/25 09:38:35 libiconv2

2007/10/25 09:38:35 libintl2

2007/10/25 09:38:35 cygwin

2007/10/25 09:38:35 groff

2007/10/25 09:38:35 libbz2_1

2007/10/25 09:38:35 bzip2

2007/10/25 09:38:35 crypt

2007/10/25 09:38:35 coreutils

2007/10/25 09:38:35 gawk

2007/10/25 09:38:35 gzip

2007/10/25 09:38:35 termcap

2007/10/25 09:38:35 libpcre0

2007/10/25 09:38:35 less

2007/10/25 09:38:35 man

2007/10/25 09:38:35 libgdbm4

2007/10/25 09:38:35 libdb4.2

2007/10/25 09:38:35 libdb4.3

2007/10/25 09:38:35 libexpat0

2007/10/25 09:38:35 expat

2007/10/25 09:38:35 perl

2007/10/25 09:38:35 psutils

2007/10/25 09:38:35 a2ps

2007/10/25 09:38:35 pcre

2007/10/25 09:38:35 xorg-x11-bin-lndir

2007/10/25 09:38:35 zlib

2007/10/25 09:38:35 libfreetype26

2007/10/25 09:38:35 freetype2

2007/10/25 09:38:35 libfontconfig1

2007/10/25 09:38:35 fontconfig

2007/10/25 09:38:35 libncurses7

2007/10/25 09:38:35 gettext

2007/10/25 09:38:35 libintl1

2007/10/25 09:38:35 tar

2007/10/25 09:38:35 run

2007/10/25 09:38:35 xterm

2007/10/25 09:38:35 X-startup-scripts

2007/10/25 09:38:35 xorg-x11-xwin

2007/10/25 09:38:35 xorg-x11-fnts

2007/10/25 09:38:35 xorg-x11-fenc

2007/10/25 09:38:35 xorg-x11-libs-data

2007/10/25 09:38:35 xorg-x11-etc

2007/10/25 09:38:35 libXft1

2007/10/25 09:38:35 libXft2

2007/10/25 09:38:35 libXft

2007/10/25 09:38:35 xorg-x11-bin

2007/10/25 09:38:35 xorg-x11-base

2007/10/25 09:38:35 xorg-x11-bin-dlls

2007/10/25 09:38:35 libaa1

2007/10/25 09:38:35 aalib

2007/10/25 09:38:35 libncurses-devel

2007/10/25 09:38:35 libfreetype2-devel

2007/10/25 09:38:35 libfontconfig-devel

2007/10/25 09:38:35 libXft-devel

2007/10/25 09:38:35 xorg-x11-devel

2007/10/25 09:38:35 aalib-devel

2007/10/25 09:38:35 aewm++

2007/10/25 09:38:35 aewm++-goodies

2007/10/25 09:38:35 alternatives

2007/10/25 09:38:35 antiword

2007/10/25 09:38:35 apache

2007/10/25 09:38:35 libapr1

2007/10/25 09:38:35 libaprutil1

2007/10/25 09:38:35 openssl

2007/10/25 09:38:35 apache2

2007/10/25 09:38:35 apache2-devel

2007/10/25 09:38:35 apache2-manual

2007/10/25 09:38:35 apr1

2007/10/25 09:38:35 libdb4.2-devel

2007/10/25 09:38:35 libgdbm-devel

2007/10/25 09:38:35 aprutil1

2007/10/25 09:38:35 tcltk

2007/10/25 09:38:35 python

2007/10/25 09:38:35 archivemail